
/*----------------------------------------------------------------------------------------
*---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Property Type cssmain-menu ul li a:hover
06. Featured Property css
07. About us css
08. How It Works css
09. Why Choose us css
10. Infobar css
11. Property By City css
12. Latest Posts css
13. Footer css
14. About us Page css
17. Blog Archive Page css
18. Post Single css
19. Contact us page css
20. FAQ page css
21. Page Not Found Page css
22. Agents page css
23. Responsive css
-------------------------------------------------------------------------------------- */
/************************************/
/****    01. Global Variables   ****/
/************************************/
:root {
	--color1: #991A27;
	--color2: #2F6B3F;
	--bgcolor:#f7f8f9;
	--site-radius:4px;
	--text-color: #232323;
	--white-color: #ffffff;
	--dark-color: #333333;
	--divider-color: #d7d7d7;
	--gray-divider: #DDDBDB;
	--overlay-color: #0000004f;
	--dark-overlay-color: #2F3D7Eaa;
	--error-color: rgb(230, 87, 87);
	--accent-font: 'Sora', sans-serif;
	--default-font: 'Inter', sans-serif;
	--site-scale: scale(1.1);
}
.home_page_wiki .wiki_new_class p,
.services_wiki .wikibox p{
    display:none;
}
::selection {
    background-color:var(--color1);
    color:#fff;
}
.service_banner img ~ span {
    display:none;
}
a{
	color:var(--color1);
}
a:hover{
	--bs-link-color-rgb : var(--color2);
}
/************************************/
/**** 	   02. General css		 ****/
/************************************/
body{
	font-size: 16px;
	font-weight: 400;
	font-family: var(--default-font);
	color: var(--text-color);
	line-height: 1.5;
}
p{
	line-height: 1.5;
	margin-bottom: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--accent-font);
	margin-top:0;
	font-weight: 700;
	color: var(--color1);
}
figure{
	display: block;
	margin: 0;
	width: 100%;
}
.call_right {
    flex-direction:column;
}
img{
	max-width: 100%;
}
a{
	text-decoration: none;
	color: var(--color1);
}
a:hover,
a:focus{
	text-decoration: none;
	outline: 0;
	color: var(--color2);
}

::-webkit-scrollbar-track {background-color: #ededed;border-left: 1px solid #ededed;}
::-webkit-scrollbar {width: 6px;background-color: var(--color1);}
::-webkit-scrollbar-thumb {background: var(--color1);border-radius:var(--site-radius)}
.input-group-text{
    background-color:var(--colorbg);
}
.row {
	position: relative;
	z-index: 1;
}
.content_vid {
    padding:30px;
    background-color:var(--bgcolor);
    border-radius:var(--site-radius);
}
.form-control{
	box-shadow: none;
	outline: 0;
	background: #fff;
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--color1);
	padding: 14px;
	border-radius:var(--site-radius);
}
.faqs-vid video{
    border-radius:var(--site-radius);
}
.form-control:focus{
	box-shadow: none;
	outline: 0;
	border-color: var(--divider-color);
}
select.form-control{
	/*background-image: url(../images/icon-dropdown.svg);*/
	background-repeat: no-repeat;
	background-position: right 15px center;
}
.help-block.with-errors ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.help-block.with-errors ul li{
	font-size: 14px;
	color: var(--error-color);
	line-height: 1.2em;
	margin-top: 2px;
}
.btn-default{
	display: inline-flex;
	background: var(--color1);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 14px 30px;
	border-radius: var(--site-radius);
	position: relative;
	overflow: hidden;
	z-index: 0;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: 0.2s transform;
	justify-content: center;
    align-items: center;
}
.btn-default:hover,
.btn-default:focus{
    background-color:var(--color2);
    color:#fff;
}
.btn-default.btn-border{
	background: none;
	padding: 12px 30px;
	
}
.btn-default.btn-white{
    border: 2px solid #fff;
    color: #fff;
}
.btn-default.btn-color{
    border: 2px solid var(--color2);
    color: var(--color2);
}
.btn-default.btn-border:before{
	background: var(--color2);
}
.btn-default.btn-border:hover{
	color: var(--white-color);
	
}
.btn-default.btn-color:hover {
    background-color:var(--color2);
}
.btn-default.btn-white:hover {
    background-color:var(--color2);
}
#magic-cursor{
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index:1000000;
}
#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 10px !important;
	height: 10px !important;
	background: var(--color1);
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--color1);
	display: flex;
	align-items: center;
	justify-content: center;
}
.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}
.loading-container{
	margin: 40px auto
}
.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}
#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100px;
	transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.section-title{
	text-align: center;
	margin-bottom: 40px;
}
.process-section .section-title {
    margin-bottom: 45px;
}
.section-title h3,
.section-title .h3{
	display: inline-block;
	/*text-align: center;*/
	font-size: 14px;
	/*text-transform: uppercase;*/
	font-weight: 500;
	/*letter-spacing: 2px;*/
	color: var(--dark-color);
	position: relative;
	/*padding: 2px 0 2px 36px;*/
	margin-bottom: 10px;
	z-index: 2;
}
.section-title .h3.label {
    background-color: #e9e9e9;
}
.section-title .h3.label,
.section-title .h3:not(.label){
    padding: 10px;
    border-radius: var(--site-radius);
    color: var(--color1);
    display:inline-block;
}
.section-title .h3:not(.label) {
    background-color: #f1f1f1;
}
.section-title .h3:not(.label):before{
    color:var(--color2);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 4px;
}
.section-title .h3:not(.label):before{
        content: "\f6e3";
}
.section-title h3:before,
.section-title .h3:not(.label):before{
	/*content: '';
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: -6px;
	background-size: 30px !important;
	z-index: -1;*/
}
.section-title h1,
.section-title h2,
.section-title.text-start .h2{
	color: #000;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}
.section-title h1 {
    font-size:50px;
}
.section-title h2,
.section-title.text-start .h2{
    font-size:40px;
}
/************************************/
/**** 	   03. Header css		 ****/
/************************************/
header.main-header{
	position: relative;
	background: var(--white-color);
	border-bottom: 1px solid transparent;
	z-index: 9;
	transition: all ease .4s;
	position: fixed;
    width: 100%;
    top: 0;
}
header.main-header .header-sticky{
	/*padding: 10px 0;
	position: fixed;*/
	top: 0;
	z-index: 9;	
    background: #fff;
    width: 100%;
    /*box-shadow: 0px 0px 22px -15px;*/
}
header.main-header .header-sticky.hide{
	/*transform: translateY(-100%);
	transition: transform 0.4s ease-in-out;
	border-radius: 0;
	border-bottom: 1px solid #16330010;*/
}
header.main-header .header-sticky.active{
	/*
	border-bottom: 1px solid #16330010;
    transform: translateY(0);
	background: var(--white-color);*/
	box-shadow: 0px 0px 22px -15px;
}
.mobile-nav-open header.main-header .header-sticky.active {
    height:100%;
}
.navbar{
	padding: 0;
}
.navbar-brand{
	padding: 0;
	display: inline-block;
    aspect-ratio: 250 / 80;
    margin-right:0;
    
}
.navbar-brand img{
    display:block;
    width: 250px;
}
.main-menu{
	font-family: var(--default-font);
	justify-content: flex-end;
}
.main-menu ul{
	align-items: center;
}
.main-menu ul li{
	margin-left: 10px;
	position: relative;
}
.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
.main-menu > ul > li a{
	font-size: 16px;
	font-weight: 500;
	font-family: var(--accent-font);
	color: var(--color1);
}
.main-menu > ul > li > a {
    padding: 32px 6px !important;
}
.main-menu ul li.highlighted-menu a{
	display: block;
	background: var(--color2);
	color: var(--white-color);
	padding: 14px 20px !important;
	border-radius: var(--site-radius);
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
	display: flex;
    align-items: center;
}
.main-menu ul li.highlighted-menu a i {
    margin-right:8px;
}
.main-menu ul li.highlighted-menu a:hover,
.main-menu ul li.highlighted-menu a:focus{
    background-color:var(--color1);
    color:#fff;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--color2);
}
.main-menu:not(.mm) ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 250px;
	border-radius: var(--site-radius);
	position: absolute;
	left: 0;
	top: 100%;
	overflow-y: visible;
	background-color: var(--color1);
	transition: all .3s ease-in-out;
}
.main-menu ul ul ul{
	left: 100%;
	top: 0;
	max-height: 400px;
    overflow-y: scroll;
}
.main-menu ul ul li{
	margin: 0;
	padding: 0;
}
.main-menu:not(.mm) ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}
.main-menu:not(.mm) ul ul li a:hover{
	color: var(--white-color);
	background: #ffffff20;
}
.responsive-menu{
	top: 15px;
	position: relative;
}
.slicknav_btn{
	background: var(--color1);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: var(--site-radius);
}
.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	margin: 4px auto !important;
}
.slicknav_icon .slicknav_icon-bar{
    transition:none;
}
.slicknav_menu{
	padding: 0;
	background: #fff;
	border-radius: 5px;
}
.slicknav_nav{
	padding-top: 5px;
	padding-bottom: 5px;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	font-size: 16px;
	font-weight: 400;
	padding: 4px 0;
	font-family: var(--accent-font);
	color: var(--white-color);
	display:inline-block;
}
.slicknav_nav li a,
.slicknav_nav li a:hover,
.slicknav_nav li a:focus{
    color:var(--color1) ;
}
a.slicknav_item.slicknav_row {
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding-right:15px;
    margin:0;
    padding-top:0;
    padding-bottom:0;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--color1);
}
.slicknav_arrow{
	font-size: 0 !important;
}
.slicknav_arrow:after{
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--color1);
}
.slicknav_open > .slicknav_row > .slicknav_arrow:after {
    content: '\f107';
}
/************************************/
/**** 	    04. Hero css		 ****/
/************************************/
#services {
    scroll-margin-top: 80px;
}
#testimonial {
    scroll-margin-top: 80px;
}
.hero{
	position: relative;
}
.hero .hero-section{
	/*margin: 0 40px;*/
	overflow: hidden;
	/*border-radius: var(--site-radius);*/
	background-size: cover;
	padding: 30px 0;
	position: relative;
	background-position: center;
    /*margin-top: 150px;*/
    
}
.pb-70 {
    padding-bottom: 40px;
}
.pt-70 {
    padding-top: 40px;
}
.hero.service_hero.common_hero .hero-section {
    padding: 100px 0;
}
.hero.service_hero .hero-section:before{
	/*content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
	z-index: 1;*/
}
.hero.common_hero .hero-section {
    background: var(--color1);
}
.site-radius{
    border-radius:var(--site-radius);
}
.hero-content,
.page-header-box{
	/*max-width: 720px;*/
	margin: 0 auto;
	text-align: center;
}
.hero-video .hero-content-body p {
    /*max-width: 800px;*/
    /*margin: 0 auto;*/
}
.common_hero .hero-content,
.service_hero .hero-content {
    max-width:100%;
}
.hero-content .section-title,
.brand_hero .hero-content .section-title h1{
	margin-bottom: 20px;
}
.hero-content .section-title .h3:before{
	    filter: brightness(0) invert(1);
}
.hero-content .section-title h1{
	color: #000;
	font-size: 60px;
}
.hero.common_hero .hero-section .section-title h1 {
    color:#fff;
}
.base-color{
    color:var(--color2);
}
.hero-content-body p{
	/*color: var(--white-color);*/
}
.common_hero .hero-content-body p{
    margin-bottom:0;
}
.hero-content-footer{
	  margin: 30px 0;
        display: flex;
        flex-wrap:wrap;
    align-items:center;
    gap: 15px;
}
.hero-content-footer .btn-default {
    margin-bottom:4px;
}
.hero-content-footer .btn-default {
    background-color:var(--color1);
}
.hero-content-footer .btn-default:hover{
    background-color:var(--color2);
}
.hero-content-footer .btn-default.btn-border.btn-color {
    background-color:transparent;
    border-color:var(--color2);
    color:var(--color2);
}

.hero-content-footer .btn-default.btn-border:hover{
	border-color: var(--color2);
	background-color:var(--color2);
	color:#fff;
}
.hero.hero-video .hero-section{
	background: none;
}
.hero-video .hero-section .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.hero-video .hero-section .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-video .hero-section .hero-bg-video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .hero-search-form-section{
	position: absolute;
	z-index: 5;
	bottom: 70px;
	width: 100%;
	padding: 0 15px;
}
.hero-video .hero-search-form{
	margin: 0;
}
.hero-search-form{
	background-color: var(--white-color);
	padding: 30px;
	border-radius: var(--site-radius);
	position:relative;
	z-index:2;
}
.search-heading{
	display: none;
}
.search-heading h4{
	margin-bottom: 0;
	position: relative;
	font-size: 18px;
	text-align: center;
}
.read-more-less {
    color:var(--color1);
    font-size:14px;
}
.read-more-less:hover{
    color:var(--color2);
}
.hero-search-form .form-control{
	width: 100%;
	box-shadow: none;
	outline: 0;
	background: var(--color-white);
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--color1);
	padding: 14px 20px;
}
.hero-search-form select.form-control{
	/*background-image: url(../images/icon-dropdown.svg);*/
	background-repeat: no-repeat;
	background-position: right 15px center;
}
.hero-search-form .btn-default{
	width: 100%;
	padding: 13px 20px;
}
/******************************************/
/****   	 05. Property Type css 	   ****/
/******************************************/

.property-type-slider .swiper-wrapper{
    align-items: stretch;
}

.property-type-slider .swiper-slide{
    height: auto !important;
    display: flex;
}

.property-type-slider .property-type-item{
    height: 100%;
    width: 100%;
    position:relative;
}
.property-type-slider .property-type-item::before{
    content:'';
    background: var(--bgcolor);
    height: calc(100% - 30px);
    width:100%;
    bottom:0;
    left:0;
    border-radius: var(--site-radius);
    position: absolute;
}

.property-type-item{
    background: var(--bgcolor);
    display:flex;
	flex-direction: column;
	height:100%;
	border-radius: var(--site-radius);
}
.property-type-item .box-content {
    
    padding: 10px 20px 20px 20px;
    position: relative;
}


.property-type-item .icon-box{
	width: 60px;
	height: 60px;
	background: var(--color1);
	border-radius: var(--site-radius);
	transition: all 0.3s ease-out;
	flex: 0 0 60px;
	margin-top:-30px;
	 position: relative;
    left: 20px;
        justify-content: center;
    align-items: center;
    display: flex;
}
.property-type-item:hover .icon-box{
	/*background: var(--color1);*/
}
.property-type-item .icon-box img{
    width:50px;
    height:50px;
}
.property-type-item h3{
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0;
}
.property-type-item h3 a{
    color: var(--dark-color);
}
.property-type-item:hover h3 a{
    color:var(--color1);
}
.property-type-item p{
    font-size:15px;
	padding-top: 4px;
	margin-bottom:0;
}

.box-icon a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    height: 40px;
    width: 40px;
    border: 1px solid #0003;
    border-radius: var(--site-radius);
}
.property-type-item:not(:hover) .box-icon a i{
    transform:rotate(-45deg);
}
.property-type-item:hover .box-icon a{
    background-color:var(--color2);
    color:#fff;
    border-color:var(--color2);
}
.property-type-slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin-top: 0;
}
.property-type-slider .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background: var(--color1);
	transition: all 0.3s;
}
.service_page_testimonial .testimonials {
    background: #fff;
}
.service_page_testimonial .testimonials .testimonial-slide {
    background: var(--bgcolor);
}
.sitebg,
.service_page_list ~ .testimonials.py-70,
.process-section ~ .faqs-section:not(.faqs-home){
    background: var(--bgcolor);
}
.service_page_list .sitebg{
    background: var(--white-color);
}
.sitebg2{
    background: #f0f2f9;
}
/******************************************/
/****   06. Featured Property css      ****/
/******************************************/
.property-item{
	background: var(--color2);
	border-radius: var(--site-radius);
	overflow: hidden;
}
.featured-property .property-item{
	background-color: var(--white-color);
}
.property-item .property-header{
	position: relative;
	overflow: hidden;
	display:flex;
	padding: 20px 20px 0;
	align-items:center;
}
.property-header .property-icon {
     background-color:var(--color1);
    border-radius:var(--site-radius);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 45px;
    width:45px;
    height:45px;
    margin-right:8px
}
.property-header .property-icon img{
    height:35px;
    width:35px;
}
.property-item:hover .property-header .property-icon {
    background-color:var(--color2);
}
.property-header .property-icon ~ h3{
    font-size:18px;
    margin-bottom:0;
    font-weight:600;
    color:#333;
}
.property-item:hover .property-header .property-icon ~ h3 {
    color:var(--color1);
}
.property-item .property-body figure img,
.property-item .property-body figure{
    border-radius:var(--site-radius);
}


.property-item .property-body figure {
    margin-bottom:15px;
}
span.btn-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background-color: var(--bgcolor);
    border-radius: var(--site-radius);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.property-footer a{
    color:#333;
    font-weight:600;
}
.property-item:hover .property-footer a span.btn-icon {
    background-color: var(--color1);
    color:#fff;
}
.property-item:hover .property-footer a{
    color:var(--color1);
}
.property-item .property-header figure img{
	width: 100%;
	transition: all 0.5s ease-out;
}
.property-item:hover .property-header figure img{
	transform: var(--site-scale);
}
.property-item .property-header .property-label{
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--color1);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 4px 14px;
	border-radius: 5px;
}
.property-item .property-body{
	padding: 20px;
	background-color:var(--white-color);
}
.property-item.item__services .property-body,
.service-card{
    background-color:var(--bgcolor);
    padding:15px;
}
.service-card {
    background-color:var(--white-color);
    border-radius:var(--site-radius);
}
.service_page_list .property-item.item__services .property-body {
    background-color:var(--white-color);
}
.property-item.item__services .property-body h3,
.service-card h3{
    font-size:18px;
    margin-bottom:0;
    text-align:center;
}
.service-card h3{
    font-weight:600;
}
.service-card .service-image-wrap .service-main-image{
    border-radius:var(--site-radius);
}
.service-image-wrap {
    margin-bottom:15px;
}
.item__services figure,
.service-image-wrap{
    position:relative;
}
.item__services .seal-img,
.service-image-wrap .service-seal-image{
    bottom: 12px;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    left: 0;
    right:0;
    position: absolute;
    z-index:2;
}
.service-image-wrap .service-seal-image {
    object-fit:contain;
}
.property-item .property-body h3{
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}
.property-item .property-body p{
	margin-bottom: 0;
}
.property-item .property-meta{
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--gray-divider);
}
.property-item .property-meta .property-amenity-item{
	width: 48%;
	margin-right: 4%;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.property-item .property-meta .property-amenity-item:nth-of-type(2n + 2){
	margin-right: 0;
}
.property-item .property-meta .property-amenity-item .icon-box{
	width: 22px;
	margin-right: 10px;
}
.property-item .property-footer{
	padding: 0 20px 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background-color:var(--white-color);
}
.property-item .property-footer .property-price{
	margin-bottom: 0;
	font-weight: 600;
	font-size: 18px;
	color: var(--dark-color);
}
.property-item .property-footer .btn-default{
	font-size: 14px;
	padding: 10px 20px;
}
.property-slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin-top: 0;
}
.property-slider .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background: var(--color1);
	transition: all 0.3s;
}
/******************************************/
/****   	 07. About us css   	   ****/
/******************************************/
.about-images{
	position: relative;
	padding-left: 84px;
	padding-top: 0;
}
.about-image img{
	width: 100%;
	border-radius: var(--site-radius);
}
.about-video{
	width: 45%;
	position: absolute;
	bottom: 40px;
	left: 0;
	z-index: 2;
	border-radius: var(--site-radius);
	overflow: hidden;
}
.about-video figure img{
	width: 100%;
	border: 4px solid var(--white-color);
	border-radius: var(--site-radius);
}
.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:2;
}
.video-play-button a{
	position: relative;
    font-size: 24px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-play-button a img{
	width: 50px;
}
.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--color2);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}
.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--color2);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}
@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}
.about-content{
	padding-top: 0;
}
.about-us .section-title{
	text-align: left;
	margin-bottom: 20px;
}
.about-content-body ul{
	padding: 0;
	margin: 0;
	list-style: none;
	/*display: flex;*/
	flex-wrap: wrap;
	margin-bottom:20px;
}
.about-content-body ul li{
	display: flex;
	flex-wrap: wrap;
	/*align-items: center;*/
	/*width: 50%;*/
	justify-content:space-between;
	margin-bottom: 15px;
}
.about-content-body ul li:nth-child(2n + 2){
	margin-right: 0;
}
.about-content-body ul li .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	margin-right: 15px;
	background-color:var(--color1);
}
.about-content-body ul li .icon-box i {
    font-size:18px;
    color:#fff;
    
}
.about-content-body ul li span{
	display: block;
	width: calc(100% - 75px);
}
/* Info Item */
.custom-cta-bg{
    background-color:var(--color2);
}
.contact-section .info-box{
    display:flex;
    align-items:center; /* perfectly vertical center */
    gap:15px;
    margin-bottom:45px;
}
.contact-section .info-icon{
    font-size:26px;
    color:var(--color2);
    min-width:40px;
    text-align:center;
}
.contact-section .info-divider{
    width:2px;
    height:35px;
    background:var(--color2);
    border-radius:var(--site-radius);
    flex:0 0 2px;
}
.contact-section .info-text span {
    display: block;
    color: var(--color1);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
}
.contact-section .address{
    font-size: 14px;
    font-weight: 500;
}
.contact-section .phone a,
.contact-section .address,
.contact-section .email a{ 
    color: var(--color2);
}
.contact-section .phone a:hover,
.contact-section .email a:hover{ 
    color: var(--color1);
}
.contact-section .phone,
.contact-section .email {
    font-size: 22px;
    font-weight: 600;
}

/* When menu is OPEN */
.slicknav_open .slicknav_icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}
.slicknav_open .slicknav_icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
/* Smooth transition */
.slicknav_icon-bar {
    transition: all 0.3s ease;
}
/* RIGHT FORM CARD */
.contact-section .form-card{
    background:#fff;
    padding:30px;
    border-radius:var(--site-radius);
}
.contact-section .form-label{
    color: #000;
    font-weight:500;
    margin-bottom:8px;
}
.contact-section .form-control{
    background:#fff;
    border-radius:var(--site-radius);
    padding:15px 22px;
}
.contact-section .form-control:focus{
    background:#fff;
    box-shadow:none;
}
.contact-section textarea.form-control{
    border-radius:var(--site-radius);
    min-height:150px;
}
/******************************************/
/****   	 08. How It Works css  	   ****/
/******************************************/
.how-it-work-item{
	text-align: center;
	background: var(--bgcolor);
	padding: 20px 30px;
	height:100%;
	border-radius: var(--site-radius);
}
.service_how_it_work .how-it-work-item {
    background: var(--white-color);
}
.how-it-work-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--color1);
	border-radius: 50%;
	margin: 0 auto 25px;
	transition: all 0.3s ease-out;
}
.how-it-work-item:hover .icon-box{
	background: var(--color2);
}
.how-it-work-item h3{
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark-color);
	font-weight: 600;
}
.how-it-work-item p{
	margin-bottom: 0;
}
/******************************************/
/****     09. Why Choose us css   	   ****/
/******************************************/
.why-choose-us .section-title{
	text-align: left;
	margin-bottom: 20px;
}
.why-choose-us-body ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.why-choose-us-body ul li,
.about-content-body ul li,
.post-entry ul li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}
.why-choose-us-body ul li:before,
.about-content-body ul li::before,
.post-entry ul li:before{
	background-color: var(--color2);
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
    font-family: 'FontAwesome';
    content: "\f00c";
    font-size: 12px;
    color: #fff;
    justify-content: center;
    align-items: center;
}
.why-choose-us-body .btn-default{
	margin-top: 5px;
}
.why-choose-us-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 0;
}
.why-choose-us-image1,
.why-choose-us-image2{
	width: 100%;
}
.why-choose-us-image2{
	margin-bottom: 30px;
}
.why-choose-us-image1 img,
.why-choose-us-image2 img{
	width: 100%;
	border-radius: var(--site-radius);
}
.exclusive-agents {
    background: var(--white-color);
    padding: 30px 20px 20px 20px;
    border-radius: var(--site-radius);
    position: absolute;
    left: 50%;
    bottom: 0;
    box-shadow: 0px 4px 5px #ebebeb;
    transform: translateX(-50%);
    text-align: center;
    min-width: 248px;
    z-index:2;
}
.why-choose-us-service .exclusive-agents{
    bottom:-24px;
}
.rating-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color2);
    padding: 10px 18px;
    border-radius: var(--site-radius);
    width: 85%;
    align-items: center;
    gap: 10px;
}
.rating-number {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.rating-badge i {
    color: #fec208;
}
.exclusive-agents img {
    margin: 5px auto;
    display: block;
}
.reviews-link {
    margin-top: 18px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.exclusive-agents h5{
	font-size: 18px;
	font-weight: 600;
}
@keyframes moveobject{
	50%{
		left: 45%;
	}
}
/******************************************/
/****    	  10. Infobar css   	   ****/
/******************************************/

.cta-content h2{
	font-size: 40px;
	font-weight: 700;
}
.cta-content p{
	margin-bottom: 0;
}
.cta-button{
	text-align: right;
}
.cta-button .btn-default{
	margin-left: 10px;
}
.cta-button .btn-default i{
	margin-right: 10px;
}
/******************************************/
/****   11. Property By City css 	   ****/
/******************************************/
.location-item{
	border-radius: var(--site-radius);
	overflow: hidden;
	position: relative;
}
.location-item .location-image img{
	width: 100%;
	transition: all 0.5s ease-out;
}
.location-item .location-content{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background: var(--overlay-color);
	z-index:2;
}
.location-item .location-content .location-header h3{
	font-size: 24px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom:0;
}
.location-item .location-content .location-header h3 a{
    color: var(--white-color);
}
.location-item .location-content .location-header h3 a:hover{
    text-decoration:underline;
}
.location-item .location-content .location-header p{
	color: var(--white-color);
	font-size: 16px;
}
.location-item .location-content .location-footer{
	position: absolute;
	left:30px;
	bottom: 10px;
	opacity: 0;
	transition: all 0.3s ease-out;
}
.location-item:hover .location-content .location-footer{
	bottom: 25px;
	opacity: 1;
}
.location-item:hover .location-image img{
	transform: var(--site-scale);
}
/******************************************/
/****   	12. Latest Posts css   	   ****/
/******************************************/
.post-item .post-featured-image{
	/*border-radius: var(--site-radius);*/
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
}
.post-item .post-featured-image {
    border-radius: var(--site-radius) var(--site-radius) 0 0;
}
.post-item .post-body {
    position: relative;
    /*    background-color: var(--bgcolor);*/
    padding: 20px;
    border-radius: 0 0 var(--site-radius) var(--site-radius);
}
.post-category {
    background: var(--color1);
    border-top-right-radius: var(--site-radius);
    padding: 10px 10px;
    margin-bottom: 5px;
    left: 0;
    z-index: 1;
    position: absolute;
    top: -44px;
}
.post-category li{
    color:#fff;
}
.post-category li a{
    color:#fff !important;
}
.post-item .post-body p{
    margin-bottom:0;
}
.post-item .post-featured-image figure img{
	width: 100%;
	transition: all 0.4s ease-out;
}
.post-item .post-featured-image .post-read-more{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--overlay-color);
	opacity: 0;
	transition: all 0.3s ease-out;
}
.post-item .post-featured-image .post-read-more .btn-default{
	top: 20px;
	opacity: 0;
	transition: all 0.3s ease-out;
}
.post-item:hover .post-featured-image .post-read-more{
	opacity: 1;
}
.post-item:hover .post-featured-image .post-read-more .btn-default{
	top: 0;
	opacity: 1;
}
.post-item:hover .post-featured-image figure img{
	transform: var(--site-scale);
}
.post-item .post-body .post-category ul {
    padding: 0;
    margin: 0 0 0px;
    gap: 8px;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.post-item {
    background: #f7f7f7f7;
    border-radius: var(--site-radius);
}
.post-item .post-body .post-category ul li i{
    display:inline-block;
    margin-right:6px;
}
.post-item .post-body .post-category ul li a{
	color: var(--text-color);
}
.post-item .post-body .post-category ul li a i{
    margin-right:2px;
}
.post-item .post-body .post-category ul li a:hover{
    color:var(--color2);
}
.post-item .post-body h3{
	margin-bottom: 8px;
}
.post-item .post-body h3 a{
	font-size: 22px;
	font-weight: 600;
	color: var(--color1);
}
.post-item .post-body h3 a:hover{
    color: var(--color2);
}
/******************************************/
/****   	 	13. Footer css   	   ****/
/******************************************/
footer.footer{
	background: var(--color1);
	margin: 70px 40px 0;
	padding: 0 0 70px;
	border-radius: var(--site-radius);
}
.newsletter-box{
	background: var(--bgcolor);
	padding: 30px;
	border-radius: var(--site-radius);
	margin-top: -70px;
	margin-bottom: 70px;
}
.newsletter-title h2{
	font-size: 36px;
}
.newsletter-title p{
	margin-bottom: 0;
}
.newsletter-form .row > *{
	padding-left: 0;
	padding-right: 0;
}
.newsletter-form .form-control{
	background-color: var(--white-color);
	font-family: var(--default-font);
	padding: 0;
	border: none;
	height: 56px;
	padding: 0 20px;
	border-radius: var(--site-radius) 0 0 var(--site-radius);
	box-shadow: none;
	outline: 0;
}

.footer-about{
	padding-right: 60px;
}
.footer-about .footer-logo{
	margin-bottom: 20px;
}
.footer-about-content p{
	color: var(--white-color);
}
.footer-social-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-social-links ul li{
	display: inline-block;
	margin-right: 8px;
}
.footer-social-links ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 18px;
	border-radius: var(--site-radius);
	color: var(--white-color);
	transition: all 0.3s ease-out;
}
.footer-social-links ul li a:hover{
	background-color: var(--bgcolor);
	color: var(--color1);
}
.footer-contact-info h3,
.footer-quick-links h3,
.footer-appointment h3{
	font-size: 22px;
	color: #fff;
	margin-bottom: 20px;
}
.footer-info-box{
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}
.footer-info-box .icon-box{
	position: absolute;
	top: 0;
	left: 0;
}
.footer-info-box .icon-box~ a{
    color:#fff;
}
.footer-info-box .icon-box ~ a:hover{
    opacity:.8;
}
.footer-info-box p,
.footer-info-box address{
	color: var(--white-color);
	margin-bottom: 0;
}
.footer-quick-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-quick-links ul li{
	margin-bottom: 8px;
}
.footer-quick-links ul li a{
	color: var(--white-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-out;
}
.footer-quick-links ul li a:hover{
	opacity:.8
}
.footer-quick-links ul li a:before{
	content: '\f105';
	display: block;
	position: absolute;
	top:0;
	left: 0;
	/*background: url(../images/icon-menu-item.svg) no-repeat left center;*/
	 font-family: 'FontAwesome';
	 font-size: 14px;
}
.footer-appointment .footer-appointment-content p{
	color: var(--white-color);
}
.footer-appointment .footer-appointment-content .btn-default:before{
	background: var(--color2);
}
.footer-appointment .footer-appointment-content .btn-default:hover{
	color: var(--color1);
}
.footer-copyright-links{
	padding: 20px 0;
}
.footer-copyright p{
	margin: 0;
}
.footer-policy-links{
	text-align: right;
}
.footer-policy-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-policy-links ul li{
	display: inline-block;
	margin-left: 16px;
	position: relative;
	padding-left: 20px;
}
.footer-policy-links ul li:before{
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background: var(--text-color);
	position: absolute;
	top: 5px;
	left: 0;
}
.footer-policy-links ul li:first-child{
	padding-left: 0;
}
.footer-policy-links ul li:first-child:before{
	display: none;
}
.footer-policy-links ul li a{
	color: var(--text-color);
	transition: all 0.4s ease-out;
}
.footer-policy-links ul li a:hover{
	color: var(--color1);
}
/******************************************/
/****     14. About us Page css 	   ****/
/******************************************/
.page-header{
	padding: 150px 0;
	background: url(../images/hero.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	margin: 0 40px;
    border-radius: var(--site-radius);
	overflow: hidden;
}
.page-header:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
}
.page-header-box{
	text-align: center;
}
.page-header-box h1{
	font-size: 70px;
	font-weight: 600;
	color: var(--white-color);
}
.page-header-box .breadcrumb{
	justify-content: center;
	margin-bottom: 0;
}
.page-header-box ol li.breadcrumb-item{
	color: var(--white-color);
}
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--white-color);
}
.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}
.photo-gallery{
	padding: 100px 0 20px;
}
.gallery-item{
	border-radius: var(--site-radius);
	overflow: hidden;
	margin-bottom: 30px;
}
.gallery-item figure img{
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
	transition: all 0.5s ease-out;
}
.gallery-item:hover figure img{
	transform: var(--site-scale);
}
.testimonial-slider .swiper-wrapper,
.property-slider .swiper-wrapper{
  align-items: stretch;
}
.testimonial-slider .swiper-slide,
.property-slider .swiper-slide {
  display: flex;
  height: auto; /* important */
}
.testimonial-slider .swiper-slide .testimonial-slide,
.property-slider .swiper-slide .testimonial-slide{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content:space-between;
}
.testimonial-slide{
	background: var(--white-color);
	border-radius: var(--site-radius);
	padding: 30px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}
.service_page_list ~ .testimonials.py-70 .testimonial-slide{
  background:var(--white-color);  
}
 
.testimonial-slide .testimonial-rating{
	margin-bottom: 8px;
}
.testimonial-slide .testimonial-rating img{
	width:40%;
}
.testimonial-slide .testimonial-author-info h3,
.testimonial-slide .testimonial-author-info .r_name{
	font-size: 16px;
	font-family: var(--default-font);
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}
.testimonial-slide .testimonial-author-info figure{
	max-width: 60px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 50%;
	background-color: var(--white-color);
	box-shadow:0 0 10px rgba(0, 0, 0, 0.1);
	height:60px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.testimonial-slider .swiper-slide-active .testimonial-author-info figure {
    background-color: var(--white-color);
}
.testimonial-slide .testimonial-author-info figure img{
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	max-width:50px;
}
.testimonial-slider .swiper-slide-active .testimonial-slide,
.service_page_list ~ .testimonials.py-70 .swiper-slide-active .testimonial-slide{
	background: var(--color1);
}
.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-content,
.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-author-info h3,
.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-author-info .r_name{
	color: var(--white-color);
}
.testimonial-slider .swiper-pagination{
	position: relative;
	bottom: 0;
	margin-top: 0;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background: var(--color1);
	transition: all 0.3s;
}
.stat-counter{
	padding: 100px 0;
}
.counter-item{
	background: var(--color2);
	text-align: center;
	padding: 30px;
	border-radius: var(--site-radius);
}
.counter-item .icon-box{
	margin: 0 auto 25px;
	width: 80px;
	height: 80px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color1);
	transition: all 0.3s ease-in-out;
}
.counter-item:hover .icon-box{
	background-color: var(--color1);
}
.text-holder img{
    border-radius:var(--site-radius);
}
.counter-item .icon-box img{
	max-width: 50%;
}
label.error{
    display:none !important;
}
.required.error {
    padding-right: calc(1.5em + .75em);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-size: 18px;
    border-radius:var(--site-radius) !important;
}
.required.valid {
    padding-right: calc(1.5em + .75em);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-size: 18px;
    border-radius:var(--site-radius) !important;
}
input.error{
    border-color:#dc3545 !important;
}
.counter-item h3{
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 5px;
}
.counter-item p{
	margin-bottom: 0;
}
.client-logo{
	/*background: var(--bgcolor);*/
	background-color:var(--white-color);
	border-radius: var(--site-radius);
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 20px 25px;
	box-shadow: 0 0 6px 0 #0002;
	margin:6px;
}
.client-logo img{
    max-width:150px;
}
.need-help-content-logo {
    background-color:#fff;
    padding:5px;
    border-radius:var(--site-radius);
    margin-bottom:20px;
}
.need-help-box{
	position: relative;
	text-align: center;
	border-radius: var(--site-radius);
	overflow: hidden;
}
.need-help-box:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	opacity:.75;
}
.need-help-box .need-help-img img{
	width: 100%;
	transition: all 0.5s ease-in-out;
}
.need-help-box:hover .need-help-img img{
	/*transform: var(--site-scale);*/
}
.need-help-box .need-help-content{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	z-index: 2;
}
.need-help-box .need-help-content h3{
	color: var(--white-color);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
	width: 100%;
}

/******************************************/
/****  	  17. Blog Archive Page css    ****/
/******************************************/
.blog-archive-page{
	padding: 100px 0;
}
.blog-archive-page .post-item{
	margin-bottom: 40px;
}
/******************************************/
/****   	 18. Post Single css  	   ****/
/******************************************/
.post-meta ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.post-meta ul li{
	display: inline-block;
	color: var(--white-color);
}
.post-meta ul li:after{
	content: '/';
	margin-left: 10px;
	margin-right: 6px;
}
.post-meta ul li:last-child::after{
	display: none;
}
.post-meta ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}
.post-meta ul li a:hover{
	color: var(--color1);
}
.blog-single-page{
	padding: 100px 0 50px;
}
.post-sidebar{
	padding-left: 20px;
}
.search-box-widget{
	background: var(--color2);
	padding: 40px;
	border-radius: var(--site-radius);
	margin-bottom: 40px;
}
.search-form .form-control{
	background: var(--white-color);
	border-right: none;
}
.search-form .btn-default{
	border-radius: 0 5px 5px 0;
	padding: 14px 20px;
}
.category-box-widget{
	background: var(--color2);
	padding: 40px;
	border-radius: var(--site-radius);
	margin-bottom: 40px;
}
.category-box-widget h3{
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 15px;
}
.category-box-widget ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.category-box-widget ul li{
	border-bottom: 1px solid var(--divider-color);
	padding: 10px 0;
}
.category-box-widget ul li:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.category-box-widget ul li a{
	display: block;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-in-out;
}
.category-box-widget ul li a:before{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	/*background: url(../images/icon-list.svg) no-repeat left center;*/
	position: absolute;
	left: 0;
	top: 2px;
}
.category-box-widget ul li a:hover{
	color: var(--color1);
}
.recent-posts-widget{
	background: var(--bgcolor);
	padding: 20px;
	border-radius: var(--site-radius);
	margin-bottom: 40px;
}
.recent-posts-widget h3{
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 12px;
}
.recent-post-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.recent-post-item:last-child{
	margin-bottom: 0;
}
.recent-post-item .post-image{
	width: 36%;
}
.recent-post-item .post-image img{
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: var(--site-radius);
}
.recent-post-item .post-info{
	width: 60%;
}
.recent-post-item .post-info p.meta{
	margin: 0 0 8px;
	color: var(--text-color);
}
.recent-post-item .post-info p.meta a{
	color: var(--color1);
}
.recent-post-item .post-info p.meta a:hover{
    color: var(--color2);
}
.recent-post-item .post-info h4{
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-color);
	margin: 0;
}
.recent-post-item .post-info h4 a{
	color: var(--color1);
}
.recent-post-item .post-info h4 a:hover{
    color: var(--color2);
}
.popular-tags-widget{
	background: var(--color2);
	padding: 40px;
	border-radius: var(--site-radius);
}
.popular-tags-widget h3{
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 25px;
}
.tag-clouds ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.tag-clouds ul li{
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 10px;
}
.tag-clouds ul li a{
	display: block;
	background: var(--white-color);
	padding: 10px 16px;
	color: var(--text-color);
	border-radius: 5px;
	border: 1px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
}
.tag-clouds ul li a:hover{
	background: var(--color1);
	color: var(--white-color);
}
.post-featured-image{
	border-radius: var(--site-radius);
	overflow: hidden;
	margin-bottom: 15px;
}
.post-entry{
	margin-bottom: 30px;
	margin-top:30px;
}
.property-inquiry-box{
	background: var(--bgcolor);
	padding: 20px;
	border-radius: var(--site-radius);
}
.property-inquiry-box:not(:last-child){
    margin-bottom:30px;    
}
.property-inquiry-box h3{
	font-size: 24px;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 10px;
    line-height:1.5;
}
.property-inquiry-form .form-control{
	background: var(--white-color);
}
.property-inquiry-form .btn-default{
	width: 100%;
}
ul.blog-meta {
    list-style: none;
    display: flex;
    padding-left: 0;
    gap: 20px;
    margin-bottom:0;
}
.post-entry a,
ul.blog-meta li a{
	color: var(--color1);
}
ul.blog-meta li a:hover{
    color: var(--color2);
}
.quick-fact {
  background: #edf3f8;
  border-left: 6px solid var(--color1);
  padding: 1.2rem 1.6rem;
  border-radius: var(--site-radius);
  margin-bottom: 1rem;
  font-style: normal;
  box-shadow: 0 4px 10px -6px rgba(0,0,0,0.1);
}

.quick-fact strong {
  font-weight: 700;
  color: var(--color1);
  display: inline-block;
}
.pros-cons-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem 0;
}

.pros-box, .cons-box {
  flex: 1;
  padding: 2rem;
}

.pros-box {
  background-color:var(--color1);
  border-radius:var(--site-radius) 0 0 var(--site-radius);
}

.cons-box {
  background-color:var(--color2);
  border-radius:0 var(--site-radius) var(--site-radius) 0;
}

.pros-box p, .cons-box p {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}
.pros-box p:before,
.cons-box p:before{
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    display: inline-block;
    margin-right: 10px;
}
.pros-box p:before{
    content: "\f00c";
}
.cons-box p:before {
    content: "\f00d";
}
.post-entry .pros-box ul, .post-entry  .cons-box ul {
    margin-bottom:0;
}
.post-entry .table-responsive {
    border:1px solid #dee2e6;
    margin-bottom:1rem;
    border-radius:var(--site-radius);
}
.post-entry .table>thead tr {
    border-top:0;
}
.post-entry .table>thead tr th {
    background-color:var(--color1);
    color:#fff;
    vertical-align: middle;
}
.post-entry .table tr td:first-child,
.post-entry .table>thead tr th:first-child{
    border-left:0;
}
.post-entry .table tr td:last-child,
.post-entry .table>thead tr td:last-child{
    border-right:0;
}
.post-entry .table tr:last-child {
    border-bottom:0;
}
.post-entry .table-responsive table{
    margin-bottom:0;
}
.pros-box li, .cons-box li {
  
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color:#fff;
}

.post-entry .cons-box li,
.post-entry .pros-box li{
    padding-left:0;
}
.post-entry .cons-box li::before,
.post-entry .pros-box li::before{
  display:none;
}
.post-entry h1{
	font-size: 36px;
}
.post-entry h2{
	font-size: 30px;
	margin-bottom:12px;
}
.post-entry h3{
	font-size: 26px;
	margin-bottom:12px;
}
.post-entry h4{
	font-size: 22px;
}
.post-entry h5{
	font-size: 18px;
}
.post-entry h6{
	font-size: 16px;
}
.post-entry blockquote{
	border-left: 4px solid var(--color1);
	padding-left: 20px;
	margin-left: 20px;
}
.post-entry blockquote p{
	font-size: 18px;
	font-weight: 600;
}
.post-entry ul{
	list-style: none;
	padding: 0;
	margin: 0 0 1.7em;
}

.post-content .post-tags{
	font-size: 20px;
	color: var(--color1);
	font-weight: 700;
	font-family: var(--accent-font);
}
.post-content .post-tags a{
	display: inline-block;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	background: var(--color1);
	padding: 8px 20px;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}
.post-content .post-tags a:hover{
	background: var(--color1);
}
.post-social-sharing ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap;
	justify-content:end;
	gap:6px
}
.post-social-sharing ul li{
	display: flex;
}
.post-social-sharing ul li a{
	display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color1);
	color: var(--white-color);
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: var(--site-radius);
    transition: all 0.3s ease-out;
}
.post-social-sharing ul li a:hover{
	background: var(--color2);
	color: var(--white-color);
}
/******************************************/
/**** 	 19. Contact us page css	   ****/
/******************************************/
.contact-details{
	padding: 100px 0;
}
.contact-detail-item{
	background: var(--white-color);
	padding: 40px 60px;
	border-radius: var(--site-radius);
	text-align: center;
}
.contact-detail-item .icon-box{
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	background: var(--color1);
	border-radius: 50px;
}
.contact-detail-item .icon-box img{
    max-width: 50px;
}
.contact-detail-item h3{
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom:0;
}
.contact-detail-item p,
.contact-detail-item address{
	margin: 0;
}
.contact-form .form-control{
	background-color: var(--bgcolor);
}
.google-map-box iframe{
	border-radius: var(--site-radius);
	width: 100%;
	height: 450px;
}
.google-badge_rating {
    display: inline-flex;
    align-items: center;
    padding: 14px 10px;
    border-radius: var(--site-radius);
    border: 1px solid #cdcdcd;
    gap: 8px;
    position: fixed;
    bottom: 40px;
    left:20px;
    z-index: 11;
    background-color: #fff;
}
.google-badge_rating::after{
    position: absolute;
    bottom: -15px;
    content: "";
    left: 20px;
    background-image: url(/images/review-quot.png);
    background-repeat: no-repeat;
    width: 23px;
    height: 16px;
}

/* Left Logo */
.badge-left img {
    width: 40px;
    height: auto;
}


.google-badge_rating .divider {
    width: 1px;
    height: 40px;
    background: #ccc;
}

/* Right Content */
.badge-right {
    display: flex;
    flex-direction: column;
}

.badge-right .title {
    font-weight: 400;
    font-size:12px;
    color:#333;
}

/* Rating Row */
.rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height:normal;
}

.rating-row .rating {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
.rating-row .stars img {
    width:80px;
}


/* Count */
.rating-row .count {
    font-size: 14px;
    color:#333;
}
/******************************************/
/**** 	 		20. FAQ page css	   ****/
/******************************************/
.faq-accordion .accordion-item{
	background: var(--bgcolor);
	margin-bottom: 20px;
	border: none;
	border-radius: var(--site-radius);
	overflow: hidden;
}
.process-section ~ .faqs-section:not(.faqs-home) .faq-accordion .accordion-item  {
    background-color:#fff;
}
.faq-accordion .accordion-item .accordion-header{
    line-height:1.5;
}
.faq-accordion .accordion-item .accordion-body{
    padding-top:0;
}
 
.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}
.faq-accordion .accordion-item .accordion-header .accordion-button{
	box-shadow: none;
	outline: 0;
	border: none;
	background: none;
	font-size: 20px;
	font-weight: 500;
	padding: 18px 20px;
	color: var(--dark-color);
}
.faq-accordion .accordion-item .accordion-button::after{
	width: auto;
	height: auto;
	flex:0 0 20px;
	display: block;
	font-family: 'FontAwesome';
	content: "\f055";
	background-image:none;
	color: var(--color2);
	transition:none
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform:none;
    content: "\f056";
}
.faq-accordion .accordion-body{
	padding-top: 10px;
	color: var(--text-color);
}
.faq-accordion .accordion-body p:last-child{
	margin-bottom: 0;
}
/******************************************/
/**** 	21. Page Not Found Page css	   ****/
/******************************************/
.not-found-page{
	padding: 100px 0;
}
.page-not-found-box{
	text-align: center;
}
.page-not-found-box h2{
	font-size: 36px;
	margin-top: 40px;
	margin-bottom: 30px;
}
/******************************************/
/**** 	 	22. Agents page css	       ****/
/******************************************/
.agents-page{
	padding: 100px 0 60px;
}
.agents-page .agent-item{
	margin-bottom: 40px;
}
.our-partners {
	padding-top: 70px;
	padding-bottom: 180px;
}

.our-partners.pb-70{
    padding-bottom: 70px;
}
.blog-single-area.main-content-area ~ .our-partners{
    background-color:var(--bgcolor);
}
.wg-appraisal{
    position:relative;
    padding-bottom:70px;
}
.wg-appraisal .content__2 p a{
    color:#fff;
}
.wg-appraisal .content__2 p a:hover{
    text-decoration:underline;
}
.wg-appraisal:before{
    content:'';
    position:absolute;
    left:0;
    right:0;
    width:100%;
    height:50%;
    background-color:var(--white-color);
}
.blog-single-area.main-content-area ~ .our-partners ~ .wg-appraisal:before {
    /*background-color:var(--bgcolor);*/
}
.wg-appraisal .heading-section h2{
	color: #fff;
}
.wg-appraisal .heading-section p{
	color: #fff;
}
.wg-appraisal .content {
    background-color: var(--color2);
    padding: 80px 0 80px 50px;
    border-radius: var(--site-radius);
    position: relative;
    z-index: 2;
}
.wg-appraisal .content .person {
    position: absolute;
    bottom: 0;
    right: 103px;
    z-index: 2;
}
.wg-appraisal .content::after {
    content: "";
    position: absolute;
    background-image: url(/images/bg-cta.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat:no-repeat;
    background-position: bottom;
    opacity:.2;
}
.py-70 {
    padding:70px 0;
}
.other-services .grid{
  
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  overflow:hidden;
}
/* Diagonal Effect */
.column-1{ margin-top:150px; }
.column-2{ margin-top:60px; }
.column-3{ margin-top:0px; }
.column-4{ margin-top:60px; }
.column-5{ margin-top:150px; }
/* custom-card */
.custom-card{
  position:relative;
  border-radius:var(--site-radius);
  overflow:hidden;
  margin-bottom:20px;
  cursor:pointer;
}
.custom-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:0.5s ease;
}
.custom-card:hover img{
  transform:scale(1.05);
}
/* Heights */
.h-300{ height:250px; }
.h-310{ height:260px; }
/*.h-400{ height:350px; }
*/
/* Gradient */
.custom-card::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:60%;
  z-index:1;
  background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
}
/* Arrow Icon */
.arrow{
  position:absolute;
  top:15px;
  right:15px;
  width:42px;
  height:42px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:14px;
  z-index:2;
  transition:0.3s;
}
.custom-card:hover .arrow{
  background:var(--color1);
  color:#fff;
}
.custom-card:hover .arrow i{
  color:#fff;
}
.custom-card .arrow i {
    transform: rotate(-45deg);
}
/* Content Bottom */
.custom-card .content{
  position:absolute;
  bottom:18px;
  left:20px;
  z-index:2;
}
.custom-card .number{
  color: #fff;
  font-size:14px;
  opacity:0.8;
  margin-bottom:5px;
}
.custom-card .title{
  color: #fff;
  font-size:16px;
  font-weight:600;
  line-height:1.3;
}
.custom-card .title a{
    color: #fff;
}
.custom-card .title a:hover {
    text-decoration: underline;
}
/* Promo */
.promo {
  text-align: center;
    background: var(--color1);
    height: 350px;
    display:flex;
    border-radius: var(--site-radius);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
.promo-btn {
    margin-top: auto;
}
.promo h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 7px;
}
.promo p{
  color: #fff;
  font-size:14px;
  opacity:1;
  margin-bottom:8px;
}

/* Responsive */
@media(max-width:1200px){
.other-services{
  padding: 0px 20px;
}
  .other-services .grid{
    grid-template-columns:repeat(3,1fr);
    gap: 0px 15px;
  }
  /* Remove diagonal margins */
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5{
    margin-top:0;
  }
  /* Flatten column wrappers so custom-cards flow naturally */
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5{
    display:contents;
  }
  /* Equal heights for clean grid */
  .h-300,
  .h-310,
  .h-400{
    height:300px !important;
  }
  .promo {
    height: 300px;
    padding: 25px 20px 25px 20px;
    border-radius: 18px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
}
@media(max-width:768px){
 .other-services{
  padding: 0px 20px;
}
  /* Hide promo */
  .promo{
    display:none !important;
  }
  /* Remove diagonal layout */
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5{
    margin-top:0;
    display:contents; /* flatten columns */
  }
  /* Make grid a horizontal slider */
  .other-services .grid{
    display:flex;
    gap:20px;
    overflow:hidden;   /* hide overflow */
    white-space:nowrap;
  }
  /* custom-cards inline */
  .custom-card{
    flex:0 0 280px;
    height:320px !important;
  }
}
/* @media(max-width:768px){
  .grid{ grid-template-columns:repeat(2,1fr); }
}
 */
@media(max-width:480px){
  .grid{ grid-template-columns:1fr; }
}
.swiper-pagination {
    display:none;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color2);
    padding: 8px 10px;
    border-radius: var(--site-radius);
    color: #ffffff;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}
  /* Left image box */
.favicon-box {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: var(--site-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.service-item a {
    width: 100%;
    line-height:normal;
    color: #fff;
}
  .favicon-box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
  /* Text */
  .service-item span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
  }
  /* Right angle icon */
  .arrow-circle {
    color: #fff;
    font-size: 18px;
  }
  /* Hover effect */
  .service-item:hover {
    background: var(--color1);
  }
  
  
  .widget {
    /* padding: 28px; */
    margin-bottom: 0;
    background-color: var(--smoke-color);
    border-radius: var(--site-radius);
}
.widget.widget_categories.service .widget_title {
    background: var(--color1);
    color: #fff;
    padding: 10px 10px 10px 27px;
    border-top-left-radius: var(--site-radius);
    margin-bottom:0;
    border-top-right-radius: var(--site-radius);
    font-weight:600;
}
.property-inquiry-box .wikibox h3{
    display:none;
}
.property-inquiry-box .wikibox img,
.property-inquiry-box iframe,
.not_for img{
    border-radius:var(--site-radius);
}
.wiki-p:not(.not_for) {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--divider-color);
    border-radius: 0 0 var(--site-radius) var(--site-radius);
}

.widget.widget_categories.service .wikibox h3 {
    display: none;
}
.widget.widget_categories.service .wiki-p img {
    width: 100%;
    border-radius: var(--site-radius);
}
.bottom-cta {
    display: flex;
    flex-wrap:wrap;
    gap:10px
}
.call-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.bottom-cta .call-btn i {
    color: var(--color1);
}
.call-btn i {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid var(--color1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 1.25rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.call-btn span small {
    color: #1c1c1c;
    font-size: 0.875rem;
    display: block;
}
.call-btn span strong {
    font-weight: 500;
    font-size: 1.125rem;
}
.bottom-cta .email {
    margin-left: 0;
}
 .call-btn:hover i {
    background-color: var(--color2);
    color: #fff !important;
    border-color:var(--color2);
}
.service-about .about-images {
    padding-left: 0;
    position:relative;
}
.service-about .about-images::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px; /* adjust as needed */
    background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
    pointer-events: none;
    z-index: 2;
}
.about-images .seal-img {
    position:absolute;
    left: 0;
    bottom: 10px;
    z-index: 3;
    width: 95%;
    margin: 0 auto;
    right: 0;
    text-align:center;
}

/* ================================
   WHY SEALS WRAPPER
================================ */
.why-seals {
    margin: 20px 0;
}

/* ================================
   SEAL CARD
================================ */
.why-seals .seal-card {
    background: #ffffff;
    border-radius: var(--site-radius);
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(13, 110, 253, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease,
                box-shadow 0.3s ease,
                border-color 0.2s;
}

/* Top gradient line (hover effect ready) */
.why-seals .seal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}


.why-seals .seal-card:hover::before {
    transform: scaleX(1);
}

/* ================================
   ICON / IMAGE
================================ */
.why-seals .seal-icon {
    flex-shrink: 0;
    width: 106px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--site-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.why-seals .seal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================================
   TEXT
================================ */
.why-seals .seal-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.why-seals .seal-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: var(--color1);
}
.why-choose-us-service .why-choose-us-image1 {
    width: 100%;
}
.bread-crum{
    text-align:center
}
.bread-crum a,
.bread-crum i{
    color:#fff;
}
.bread-crum a:hover{
    text-decoration:underline;
}
.page-header-box p{
    color:#fff;
    margin-bottom:0;
}
.ul3 {
    list-style: none;
    gap: 20px;
    padding-left: 0;
}
.ul3 li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 14px; /* extra left space for icon */
    border-radius: var(--site-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.ul3 li:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: var(--color1);
}
.ul3 li:hover a {
	color:#fff;
}
 
.ul3 li:hover::before {
	color:#fff;
	background:var(--color2);
}
/* ICON USING ::before */
.ul3 li::before {
    content: "\f3c5"; /* Font Awesome location-dot unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 36px;
    height: 36px;
    border-radius: var(--site-radius);
    background: linear-gradient(
        45deg,
        var(--color2),
        var(--color1),
        var(--color1),
        var(--color2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

.all-services-brand .ul3,
.service-image-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
    padding-left: 0;
}
.service-image-grid {
    margin-bottom:10px;
}
.all-services-brand .ul3 li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color2);
    padding: 12px 14px;
    border-radius: var(--site-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0;

    /* important for column layout */
    break-inside: avoid;
}
.all-services-brand .ul3 li a{
    color:#fff;
}
.all-services-brand .ul3 li::before {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: var(--site-radius);
    background-color: #fff;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.all-services-brand .ul3 li:hover {
    background: var(--color1);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  cursor: pointer;
  display: none; /* hidden by default */
  z-index: 1000;
}
.back-to-top.show{
    display:inline-flex;
    justify-content: center;
    align-items: center;
}
.hero-search-form.after-hero {
    /*position: fixed;*/
    /*top: 10px;*/
    /*left: 0;*/
    /*box-shadow: 0 0 6px 0 #0003;*/
    /*z-index: 99;*/
    /*max-width: calc(95% - 15px);*/
    /*margin: 0 auto;*/
    /*right: 0;*/
}
.bottom-cities ul.ul3 {
    padding-left: 0px;
}
.bottom-cities ul.ul3 {
    display:grid;
    grid-template-columns: repeat(5, 1fr);
}
.sidebar {
  z-index: 500;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 450px;
  background-color: var(--color1);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(100%);
}

.sidebar.is-open {
  transform: none;
}

.sidebar__cross {
  z-index: 20;
  position: absolute;
  top: 2.75rem;
  right: 3.75rem;
}

.sidebar__cross .button {
  font-size: 1.5rem;
  color: #fff;
  background-color:transparent;
  border:0;
 justify-content:end
}

.sidebar__header .title {
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-top: 1rem;
  color: white;
}

.sidebar__header .subtitle {
  font-size: 16px;
  line-height: 1.5rem;
  margin-top: 0.625rem;
  color: #fff;
}
@media (max-width: 991px) {
    .google-badge_rating {
        display:none;
    }
    .mobile-logo img{
        width: 170px;
        max-width: fit-content !important;
        max-height: fit-content !important;
    }
    section.process-section.pb-0.py-70 {
        padding-bottom:0;
    }
    
    .slicknav_nav ul {
        margin: 0;
    }
    .slicknav_menu  li a,
    .slicknav_nav .slicknav_item a{
        padding:15px;
        margin:0
    }
    .slicknav_menu  li:not(:last-child),
    .slicknav_parent.slicknav_open >  a.slicknav_item.slicknav_row{
        border-bottom:1px solid #e9e9e9;
    }
    .sidebar{
      display:none;
  }
  
  .slicknav_nav ul li > ul:not(.slicknav_hidden) {
      max-height:320px;
  }
    .slicknav_nav ul li > ul {
        overflow-y: auto;        /* enable scroll */
        -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
        transition: max-height 0.3s ease;
        box-sizing: border-box;
        padding-right: 10px;            /* add space for scrollbar */
        scrollbar-width: thin; 
      }
  li.slicknav_parent.slicknav_open .slicknav_row a{
      padding-left:20px;
  }
  li.slicknav_parent.slicknav_open .slicknav_row .slicknav_arrow {
      padding-right:10px;
  }
  li.slicknav_parent.mega-menu > .slicknav_row a {
      padding-left:15px;
  }
  li.slicknav_parent.mega-menu > .slicknav_row .slicknav_arrow {
      padding-right:0;
  }
  .slicknav_nav ul li > ul li {
      padding-left:15px;
  }
  .slicknav_nav .mob_brands {
      margin-left:10px !important;
  }
  .slicknav_open > .mob_brands{
      display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
  .mob_brands {
    display: none !important;
}
    .brand_img_menu {
        border-radius:0 !important;
        padding: 10px !important;
    }
    .brand_img_menu a{
        padding:5px 10px !important;
    }
    .brand_img_menu img{
        display:inline-block;
        margin-bottom:4px;
    }
    .blog-posts{
        margin-bottom:30px;
    }
   .brand_img_menu a     {
        color: var(--color1) !important;
        font-size: 12px !important;
    }
    
    .call-btn i {
        width: 3rem;
        height:3rem;
    }
    .hero.service_hero.common_hero .hero-section {
        padding: 40px 0;
    }
    a.slicknav_btn.slicknav_open {
        background:var(--color2);
        z-index:111;
        top:4px;
    }
    .bottom-cities ul {
        padding-left: 0px;
        column-count: 3;
    }
    .bottom-cities ul.ul3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    
    .bottom-cities ul.ul3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 390px) {
    .bottom-cities ul.ul3 {
        grid-template-columns: repeat(1, 1fr);
    }
}
.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  /* border: 1px solid #ddd; */
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
}
.suggestion-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}
.suggestion-item:hover {
  background: #f7f7f7;
}
.service-brand-page .info-card h3 {
    font-size:18px;
}
.service-brand-page .info-card ul li {
    font-size: 15px;
}
.service-brand-page .info-card h3 .heading-icon {
    flex: 0 0 50px; /* prevents resizing */
}
.service-brand-page .info-card {
    padding: 25px 18px;
}
.service-brand-page .info-card:hover {
    background: #fff;
    background-image:none !important;
}
.service-brand-page .info-card:hover::before {

    background-color: #fff;
}
.service-brand-page .info-card:hover ul li {
    color: #232323;
}
.service-brand-page .info-card:hover h3 {
    color: var(--color1);
}
.service-brand-page .info-card:hover ul li::before {
    color: var(--color2);
}


.info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--site-radius);
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}
/* Heading with left icon */
.info-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
/* Circular icon container */
.info-card h3 .heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
}
/* List styling with check icons */
.info-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom:0;
}
.info-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}
.info-card ul li a{
    color:#232323;
}
.info-card ul li a:hover{
    color:var(--color2);
}
.info-card ul li::before {
    content: "\f058"; /* Font Awesome solid check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color2);
    font-size: 16px;
}
.info-card.h-100:hover {
    /*position:relative;*/
    /*background-image:url(/images/home/trusted-home-appliances-company-img.webp);*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}
.info-card.h-100:hover a{
    /*color:#fff;*/
    
}
.info-card.h-100 a:hover {
    text-decoration:underline;
}
.info-card:hover::before{
    /*content:'';*/
    position:absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    width:100%;
    height:100%;
    background-color: var(--color1);
    opacity:.8;
    border-radius:var(--site-radius);
}
.info-card:hover ul li {
    color: #fff;
}
.info-card:hover h3,
.info-card:hover p{
    /*color: #fff;*/
    /*position:relative;*/
    /*z-index:2;*/
}
.info-card:hover ul li::before {
    /*color: #fff;*/
}
.ttm-big-icon {
    margin-bottom: 15px;
    font-size: 70px;
    color: var(--color2);
}
/*Shift Layer on images*/
.main-content-image {
    max-width: 100%;
    overflow: hidden;
    background: #dfdfdf;
    aspect-ratio: 1 / 1;
    /*display:inline-block;*/
}
.recent-post-item .post-image.main-content-image {
    aspect-ratio: 126 / 70;
}
.about-image.main-content-image {
    aspect-ratio: 573 / 537;
}
.about-video.main-content-image {
        aspect-ratio: 282 / 232;
}
.why-choose-us-image1.main-content-image {
    aspect-ratio: 301 / 422;
}

.service-about .about-image.main-content-image {
    aspect-ratio: 692 / 574;
}
.why-choose-us-service .why-choose-us-image1.main-content-image {
    aspect-ratio: 652 / 556;
}
.text-holder .main-content-image {
    aspect-ratio: 843 / 397;
}
.why-choose-us-image2.main-content-image {
    aspect-ratio: 692 / 654;
}
.property-slider .image-anime.main-content-image {
    aspect-ratio: 297 / 200 !important;
}
.item__services .image-anime.main-content-image,
.service-main-image-box.main-content-image{
    aspect-ratio: 297 / 190 !important;
} 
.post-featured-image.main-content-image {
    aspect-ratio: 454 / 252;
}
.post-featured-image .image-anime.main-content-image {
    aspect-ratio: 843 / 468;
}
.author-card .main-content-image {
    display:inline-flex;
}
.author-card .main-content-image img {
    flex:0 0 200px;
}
.main-content-image:not(.image-anime, .post-featured-image) {
    border-radius:var(--site-radius);
}
.main-content-image:not(.about-video) {
    position: relative;
}
.location-image figure.main-content-image {
    aspect-ratio: 301 / 408;
}
.client-logo figure img{
    aspect-ratio:150/75;
    display:block;
    overflow: hidden;
    margin:0 auto;
}
 
.main-content-image .shimmer-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, #f0f0f0 20%, #e0e0e0 50%, #f0f0f0 80%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    pointer-events: none;
}
 
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
 
.main-content-image img:not(.brand_mob_img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
 
.main-content-image.img-error {
    background: #e0e0e0;
}
/* Sticky Bottom Mobile Call Box */
.call-wrapper-mobile {
    position: fixed;
    bottom: 95px;
    right: 30px;
    margin: 0 auto;
    width: 195px;
    /* border-radius: 0 !important; */
    z-index: 6;
}
/* Main Box */
.call-wrapper-mobile .call-box {
    position: relative;
    background: var(--color1);
    padding: 22px 10px 6px 45px;
    border-radius: 35px;
    color: #fff;
    max-width: 240px;
    border: 1px solid var(--bgcolor);
}
/* Top Label */
.call-wrapper-mobile .call-label {
    position: absolute;
    top: 4px;
    left: 32px;
    /* background: var(--color2); */
    padding: 2px 15px;
    border-radius: var(--site-radius);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 10px;
}
/* Phone Number */
.call-wrapper-mobile .call-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}
/* Bottom Strip */
.call-wrapper-mobile .bottom-strip,
.call-wrapper-mobile .call-icon {
    position: absolute;
}
.call-wrapper-mobile .bottom-strip {
    bottom: -5px;
    left: 4%;
    z-index: -1;
    width: 75%;
    /* border: 1px solid var(--bgcolor); */
    height: 10px;
    background: var(--color2);
    border-radius: var(--site-radius);
}
/* Icon Circle */
.call-wrapper-mobile .call-icon {
    bottom: -2px;
    left: -15px;
    width: 55px;
    height: 55px;
    background: var(--color1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid var(--color2);
    z-index: 2;
}
.call-wrapper-mobile .call-icon i {
    color: #fff;
    font-size: 20px;
}
.call-number a {
    color: #fff;
}
/******************************************/
/****   	 23. Responsive css   	   ****/
/******************************************/
.realted-posts .post-item .post-body {
    background: var(--bgcolor);
}
.blog-page .post-item .post-body {
    background-color: var(--bgcolor);
}

.bread-crum {
    margin-bottom:10px;
}
.bread-crum.mb-0 i {
    color: var(--color1);
}
.bread-crum.mb-0 a {
    color: var(--color1);
}
.bread-crum.mb-0.breadcrumb-brand-service a {
    color: var(--color1);
}
.bread-crum.mb-0.breadcrumb-brand-service i {
    color: var(--color1);
    margin-right: 3px;
}
.author-card {
  background: var(--white-color);
  border-radius: var(--site-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
}
.author-card .author-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: var(--site-radius);
  object-fit: cover;
}
.author-card .author-role {
     color: #919191;
    font-weight: 500;
}
.author-card .divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 18px 0;
}

@media (min-width:992px) and (max-width:1200px) {
    .hero {
        margin-top:85px;
    }
    .hero.service_hero .hero-section {
        padding: 50px 0;
    }
    .hero.service_hero .hero-search-form-section {
        bottom:50px;
    }
    .main-menu > ul > li a {
        font-size:14px;
    }
}
.hero.hero-video .hero-section .hero-content {
    /*background: rgba(255, 255, 255, 0.15);
    background:linear-gradient(90deg, #E1E7FD70 15%, #FFFFFF20 75%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--site-radius);*/
    /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); */
    padding: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  flex:1;
  gap: 10px;
  color: #333;
  padding:  10px;
  position: relative;
  /*justify-content:center;*/
}
.feature-item:first-child{
    padding-left:0;
}

.feature-item:not(:last-child) {
    border-right:1px solid #0002;
    
}
.feature-item i {
  color: var(--color1);
  font-size: 26px;
}
.feature-item span.content span{
    display:block;
}
.feature-item span.content span:first-child{
    font-weight:600;
    font-size: 14px;
}
.feature-item span.content span:not(:first-child){
    font-size: 12px;
}

.brands-section {
  display: flex;
  align-items: center;
  /*flex-wrap: wrap;*/
  gap: 20px;
  margin-top:30px;
    border: 2px solid #0001;
    border-radius: var(--site-radius);
    padding: 12px;
    background-color: #fff;
    justify-content:space-between;
}

.brands-section p,
p.service_all,
.proudly_american{
  color: var(--color1);
    margin: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}
.proudly_american {
    color:#000;
    font-weight: 400;
    font-style:italic;
}
p.service_all,
.proudly_american{
    position:relative;
}
p.service_all::before,
.proudly_american::before{
    width:100%;
    position:absolute;
    left:0;
    height:2px;
    background-color:#0002;
    right:0;
    top:50%;
    content:'';
}
.proudly_american::before {
    border-radius:var(--site-radius);
    height:1px;
    background-color:#00000020;
}
.proudly_american {
    text-align:center
}
.proudly_american span{
    
    display:inline-flex;
    align-items:center;
}
.proudly_american img{
    display:inline-block;
    margin-right:6px;
    width:26px;   
}
p.service_all span,
.proudly_american span{
    background-color:#f9f9fb;
}
.brands-list li img {
  max-width: 85px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.rating_banner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-img img{
    width:130px;   
}
@media(min-width:992px) and (max-width: 1358px){
    .rating_banner {
        font-size:14px;
        gap:5px
    }
    .rating-img img {
        width: 100px;
    }
    .rating_banner .star img{
        width:80px;
    }
}
@media (min-width:992px) and (max-width:1600px){
    .feature-item{
        padding:8px;
    }
    .hero.hero-video .hero-section .hero-content .hero-content-footer{
        /*padding-bottom:60px;*/
        /*padding: 40px;*/
    }
    .hero.hero-video .hero-section {
        padding: 60px 0;
    }
    .hero.hero-video .hero-content .section-title {
        margin-bottom:8px;
    }
    .hero-content-body p {
        margin-bottom:0;
    }
    .hero.hero-video .hero-search-form-section {
        bottom:40px;
    }
    .hero-content .section-title h1 {
        font-size:45px;
    }
    .hero-content-footer {
        margin:1.25rem 0;
    }
    .hero-content .section-title h1 {
        line-height:1.1;
    }
    .hero-search-form {
        padding:20px;
    }
    .hero-content-footer .btn-default {
        padding-left:20px;
        padding-right:20px;
    }
    .feature-item span.content span:first-child {
        font-size:12px;
    }
    .feature-item span.content span:not(:first-child) {
        font-size:10px;
    }
    .hero.hero-video .hero-section .hero-content {
        padding:0;
        padding-left:20px !important;
    }
    .brands-section {
        margin-top:1.25rem;
    }
    
}
.text-holder h2 {
    font-size:26px;
}
.text-holder h3{
    font-size:22px;
}

.nav-button-open{
    background-color:var(--color1);
    border:1px solid var(--color1);
    border-radius:var(--site-radius);
    min-height:52px;
    min-width:52px;
}
.nav-button-open i{
    color:#fff;
    font-size:24px;
}
.nav-button-open:hover{
    background-color:var(--color2);
    border:1px solid var(--color2);
}
.social-links.sidebar_social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: start;
    align-items: self-start;
}
.social-links.sidebar_social a {
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    gap: 12px;
    font-family: var(--font-primary);
    letter-spacing: .5px;
        align-items: center;
}
.social-links.sidebar_social a:hover{
    color:#fff9;
}
.sidebar__info .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.sidebar__info .text {
  font-size: 16px;
  line-height: 1.5rem;
  color:#fff;
}
.sidebar__info .text a{
    color:#fff;
}
.sidebar__info .text a:hover{
     color: #fff9;
}
.sidebar__info .text i{
    display:inline-block;
    margin-right:8px;
}

.sidebar__info .text + .text {
  margin-top: .5rem;
}

.sidebar__info .button {
  margin: 0 auto;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #B88768;
}
.sidebar-search-box video {
    border-radius: var(--site-radius);
}

@media(min-width:1600px) {
    .sidebar {
        padding: 40px;
        justify-content: space-around;
    }
    .social-links.sidebar_social {
        gap:15px
    }
    .hero.hero-video:not(.service_hero) .hero-section {
        min-height:700px !important;
        display:flex;
        align-items:center;
    }
}
.header-links-rating {
    display: flex;
    gap: 10px;
}
.property-types .section-title {
    margin-bottom:45px;
}
.troubleshooting-section {
    scroll-margin-top:40px;
}
.about-info-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.about-info-card p{
    margin-bottom:0;
}

.about-info-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--site-radius);
  border: 1px solid #dadada;
  transition: 0.3s ease;
}
 
.about-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;

}
 
.about-card-title i {
  font-size: 24px;
  color: var(--color1);
  background: #ebebeb;
  padding: 8px;
  border-radius: var(--site-radius);
}
 
.about-info-card h3 {
  font-size: 18px;
  margin: 0;
    color:var(--color2);
}
 
@media(min-width:992px){
    .pb-70 {
        padding-bottom: 70px;
    }
    .pt-70 {
        padding-top: 70px;
    }
    .about-images .seal-img img {
        width: 68%;
    }
    .troubleshooting-section {
        scroll-margin-top:80px;
    }
    .property-types .section-title {
       margin-bottom:55px;
    }
    
     /* ONLY TARGET MEGA MENU */
    .mega-menu {
        position: static !important;
    }
    .mega-menu-wrapper {
        max-width: calc(960px - 24px);
    }
    /* SHOW ON HOVER (DESKTOP) */
    .mega-menu:hover .mega-menu-wrapper {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1) translateZ(0px);
        width:100%;
    }
    .why-choose-us-images {
        padding-right:20px;
    }
    .our-partners:not(.pb-70){
        padding-bottom: 160px;
    }
    .left-content {
        padding-left: 40px;
    }
    .hero.hero-video .hero-section .hero-content {
        /*padding-bottom:10px;*/
    }
    .hero.hero-video .hero-section .hero-content {
        max-width:950px;
        margin:0;
    }
    .hero.hero-video .hero-section .hero-content {
        padding-left:30px;
    }
    
    .newsletter-form {
        text-align: end;
    }
    .text-holder h2 {
        font-size:34px;
    }
    .text-holder h3{
        font-size:28px;
    }
    .level_2 > a::after{
        content: '\f105';
        font-family: 'FontAwesome';
        font-weight: 900;
        font-size: 14px;
        margin-left: 8px;
    }
    .level_2 > a{
        display:flex;
        justify-content: space-between;
    }
    .hero.service_hero .hero-search-form-section {
        bottom: 70px;
    }
    .responsive-menu,
    .navbar-toggle{
	display: none;
    }
    .author-card {
        padding:30px;
    }
    .hero.service_hero .hero-content {
        text-align: center;
        max-width: 1010px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom:55px;
    }
    .hero.common_hero .hero-content{
        padding-bottom:0;
    }
    .hero.common_hero .hero-content.mw{
        max-width:100%;
    }
}
.menu_favicon img{
    max-width:25px;
    display:inline-block;
    margin-right:6px;
}
@media(min-width:1200px){
    .main-menu ul li{
	    margin-left: 12px;
    }
    .hero.hero-video .hero-section {
        min-height: fit-content;
    }
    .hero.service_hero:not(.common_hero) .hero-section {
        min-height:550px;
    display: flex;
        align-items: center;
    /*margin-top: 150px;*/
    }
    .hero.service_hero:not(.common_hero) .hero-bg-video {
        /*height:550px;*/
    }
    .hero {
        margin-top:88px;
    }
    
}
/* Badge container */
.brand_hero .brand-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
 
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
 
    border-radius: var(--site-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
 
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* Logo image */
.brand_hero .brand-badge img {
    max-width: 120px;
    height: auto;
    display: block;
}
.process-section .container {
  overflow-x:hidden;   
}
.process-section .swiper {
    overflow:visible;
}
@media(min-width:1200px){
    .mega-menu-wrapper {
        max-width: calc(1140px - 24px);
    }
}
@media(min-width:1400px){
    .mega-menu-wrapper {
        max-width: calc(1320px - 24px);
    }
}
@media(min-width:1600px){
    .container{
	    max-width: 75%;
    }
    .mega-menu-wrapper {
        max-width: calc(75% - 30px);
    }
}
@media only screen and (max-width: 1360px){
	.hero .hero-section,
	.page-header{
		/*margin: 0 15px;*/
	}
	footer.footer{
		margin: 70px 15px 0;
	}
}
.form-heading-mbl{
    display:none;
}
@media only screen and (max-width: 991px){
    .hero-search-form button[type="submit"]:disabled, .hero-search-form input[type="submit"]:disabled {
	    opacity:.8;
	    cursor: not-allowed;
	}
	.hero-search-form.mobile-active .col-lg-3:first-child .form-control {
	    margin-bottom:0;
	}
	.hero-search-form.mobile-active .col-lg-3:first-child {
	    width:calc(100% - 135px);
	}
	.hero-search-form .btn-default {
    width: 100%;
    padding: 15px 10px;
}
	.hero-search-form.mobile-active .col-lg-2{
	    position: absolute;
	    right: 0;
        z-index: 2;
	}
	.hero-search-form.mobile-active .col-lg-2 {
	    width:auto;
	}
    .wg-appraisal{
        padding-bottom:40px;
    }
    .footer-info-box{
        margin-bottom:0;
    }
    .our-partners {
        padding-bottom:40px;
    }
    .our-partners.bg-white{
        padding-top:40px;
    }
    .wg-appraisal .content {
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 40px;
    }
    .wg-appraisal .content{
        padding-bottom:0;
        text-align: center;
    }
    .wg-appraisal .content .person {
         position: relative;
        bottom: 0;
        right: 0;
        margin-top:40px;
    }
    .py-70 {
        padding:40px 0;
    }
    .why-choose-us-service.py-70 {
        padding-bottom:60px;
    }
    .navbar-toggle{
        display: block;
        background: var(--color1);
        height: 38px;
        width: 38px;
        border-radius: var(--site-radius);
    }
    
    .navbar-toggle a{
        transition:none;
    }
    
    
   body.mobile-nav-open .responsive-menu::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 11; 
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    body:not(.mobile-nav-open) .responsive-menu::after {
        opacity: 0;
        pointer-events: none;
    }
    .hero-content .section-title{
        margin-bottom: 0px;
    } 
    .brand_hero .hero-content .section-title h1 {
        margin-bottom:5px;
    }
    .section-title{
        margin-bottom: 30px;
    }
	.section-title h1{
		font-size: 40px;
	}
    .section-title h2,
    .section-title.text-start .h2{
        font-size:36px;
    }
    .main-menu ul li{
        margin: 0 10px;
    }
	header.main-header{
		border-radius: 0;
	}
	header.main-header .header-sticky{
		padding: 8px 0;
	}
	.slicknav_menu{
		border-radius: 0;
		position: fixed;
        top: 0;
        height: 100%;
        width:100%;
         /* Initial hidden state */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        
        /* Transition must be on base element */
        transition: transform 0.5s ease, opacity 0.4s ease;
	}
	.mobile-nav-open .slicknav_menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        z-index:99;
        overflow-y: scroll;
        scrollbar-width: thin;
        
    }
	.mobile-nav-open {
	    overflow:hidden;
	}
    .mob-logo.py-4.mobile-logo {
        border-bottom: 1px solid #fff2;
    }
    .mobile-logo {
        padding:15px 15px 0;
    }
    .slicknav_nav {
        padding-top:30px;
    }
    .hero .hero-section{
		padding: 30px 0;
    }
	.form-heading-mbl{
	    margin-top:20px;
        display:block;
    }
	
	.hero .hero-search-form-section{
		position: relative;
		bottom: 0;
		border: 1px solid var(--divider-color);
		border-radius: var(--site-radius);
		margin-top: 20px;
		padding: 30px 15px 15px 15px;
		background: var(--bgcolor);
		width: auto;
		margin-left: 15px;
		margin-right: 15px;
	}
	.search-heading{
		display: block;
		margin-bottom: 20px;
	}
	.hero-search-form:not(.after-hero){
		background: transparent;
		padding:0;
	}
	.hero-search-form-section .container{
	    max-width:100%;
	    padding:0;
	}
	.hero-search-form .form-control{
		margin-bottom: 15px;
		background: var(--white-color);
	}
	.section-title h1{
		font-size: 36px;
	}
	.hero-content .section-title h1{
		font-size: 56px;
	}
	.property-slider .swiper-pagination{
		margin-top: 0;
	}
	.about-images{
		margin-top: 30px;
	}
	.about-content{
		padding: 0;
	}
	
	.how-it-works .col-lg-3:not(:last-child) .how-it-work-item{
		margin-bottom: 30px;	
	}
	.why-choose-us-images{
		margin-top: 30px;
	}
	
	.cta-content{
		text-align: center;
		margin-bottom: 30px;
	}
	.cta-button{
		text-align: center;
	}
	.cta-button .btn-default{
		margin: 0 4px;
	}
	.location-item{
		margin-bottom: 20px;
	}
	.latest-posts .col-lg-4:not(:last-child) .post-item{
		margin-bottom: 30px;
	}
	.newsletter-box{
		padding: 20px;
		margin-bottom: 50px;
	}
	.newsletter-form{
	    text-align:center;
	}
	.newsletter-title{
		text-align: center;
		margin-bottom: 30px;
	}
	
	.mega-footer{
		padding: 0 0px;
	}
	.footer-info-box {
    padding-left: 25px;
}
	.footer-about{
		padding: 0;
		margin-bottom: 40px;
	}
	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3{
		margin-bottom: 20px;
	}
	.footer-info-box:not(:last-child){
		margin-bottom: 20px;
	}
	.footer-contact-info{
		margin-bottom: 0;
		padding-right: 50px;
	}
	.footer-quick-links{
		margin-bottom: 30px;
	}
	footer.footer{
		padding-bottom: 40px;
	}
	.page-header{
		padding: 60px 0; 
	}
	.page-header-box h1{
		font-size: 36px;
	}
	.photo-gallery{
		padding: 60px 0 0;
	}
	.testimonial-slider{
		margin-left: -15px;
		margin-right: -15px;
	}
	.stat-counter{
		padding: 60px 0 30px;
	}
	.counter-item{
		margin-bottom: 30px;
	}
	.client-logo{
		margin-bottom: 15px;
	}
    .contact-section .info-box {
        gap:8px;
        margin-bottom: 20px;
    }
	.our-agents{
		padding: 60px 0 30px;
	}
	.agent-item{
		margin-bottom: 30px;
	}
	.page-property-listing{
		padding: 60px 0;
	}
	.property-sidebar{
		padding: 0;
		margin-top: 40px;
	}
	.post-pagination{
		margin-top: 10px;
	}
	.page-property-single{
		padding: 60px 0;
	}
	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location{
		margin-top: 30px;
	}
	.porperty-single-sidebar{
		padding: 0;
		margin-top: 50px;
	}
	.property-inquiry-box{
		position: initial;
	}
	.blog-archive-page{
		padding: 60px 0;
	}
	.blog-single-page{
		padding: 60px 0 30px;
	}
	.post-sidebar{
		padding: 0;
		margin-top: 0px;
	}
	.recent-post-item .post-info h4 a {
    font-size: 14px;
    }
	.post-social-sharing ul{
		justify-content: start;
	}
	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget{
		margin-bottom: 30px;
	}
	.contact-details{
		padding: 60px 0;
	}
	.contact-detail-item{
		padding: 30px 20px;
	}
	.contact-detail-item .icon-box{
		width: 70px;
		height: 70px;
		margin: 0 auto 20px;
	}
	.contact-detail-item .icon-box img{
		max-width: 40%;
	}
	.not-found-page{
		padding: 60px 0;
	}
	.agents-page{
		padding: 60px 0 20px;
	}
}
.mbl-img {
    display:none;
}
.service_hero.hero.hero-video .section-title .h3.label, 
.brand_hero.hero.hero-video .section-title .h3.label 
{
    padding:0;
    background-color:transparent;
    margin-bottom:5px;
}

@media only screen and (max-width: 767px){
    
    .hero.hero-video:not(.service_hero,.brand_hero) .section-title .h3.label,
    .hero-content-footer .btn-default,
    .brand_hero .hero-content .section-title p{
        display:none;
    }
    
    .rating_banner {
        gap:6px;
        font-size:12px;
    }
    
    .rating-img img{
        max-width:100px;
    }
    .rating_banner .star {
        line-height:normal;
    }
    .rating_banner .star img{
        width:80px;
    }
    .all-services-brand .ul3,
    .service-image-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .about-info-cards {
        gap: 10px;
        margin: 15px 0;
    }
    
    .hero-content-footer .btn-default.btn-border.btn-color {
        display:none;
    }
 
    
 .hero.hero-video .hero-section .hero-content {
        padding:0;
    }
    .hero-content .section-title h1 {
        margin-bottom:5px;
    }
    .hero-video .hero-content-body p {
        margin-bottom:10px;
    }
    .hero-video.service_hero .hero-content-body p:not(.d-md-none) {
        display:none;
    }
    .bread-crum.mb-0 {
        margin-bottom:6px !important;
    }
    .mob-banner img:not(.brand_mob_img) {
        border-radius:var(--site-radius);
        /*height:300px;*/
        object-fit:cover;
        object-position: top;
    }
    .why-features{
        margin-bottom:10px;
    }
    .mob-banner.main-content-image {
        aspect-ratio: 2/1.4 !important;
    }
    
    .brand_hero .mob-banner.main-content-image {
        aspect-ratio: 2/1.19 !important;
    }
    .service_hero .mob-banner.main-content-image {
        aspect-ratio: 2/1.19 !important;
    }
    
    .brands-section p{
        display:none;
    }
    .hero-content-footer .btn-default {
        /*display: none;*/
    }
    .header-links-rating {
        position: absolute;
        z-index: 11;
        bottom: 10px;
        width: auto;
        right: 10px;
        /* left: 0; */
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: var(--site-radius);
        padding: 5px 8px;
        text-align: center;
        color: #fff;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        justify-content: center;
    }
    .brands-section {
        margin-top: 0px;
    }
    .hero-content-footer {
        margin: 10px 0 14px;
    }
    .service_hero .hero-content-footer {
        margin-top:12px;   
    }
.brands-section p {
    font-size: 13px;
}
    .mbl-img.main-content-image {
        aspect-ratio:auto !important;
    }
    .mbl-img {
        display:block;
        margin-top: 15px;
        border-radius: var(--site-radius);
        overflow: hidden;
    }
    .hero-content-body.mob-hero-body {
        display: flex;
        flex-direction: column-reverse;
    }

    .mbl-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: var(--site-radius);
    }
.hero.service_hero .hero-section {
    /*background-color: var(--color1) !important;*/
    background-image: none !important;
}
    .property-type-item p {
    text-align: left;
}
    .quick-fact {
        padding:1.35rem;
    }
    .pros-box, .cons-box {
        flex:auto;
        padding:1.5rem;
    }
    .pros-box {
        border-radius: var(--site-radius) var(--site-radius) 0 0;
    }
    .cons-box {
        border-radius: 0 0 var(--site-radius) var(--site-radius);
    }
    .how-it-works.py-70.sitebg.service_how_it_work .row .col-lg-3 {
        margin-bottom: 15px;
    }
    .location-item .location-content .location-footer {
        left: 0;
        right: 0;
        bottom: 10px;
    }
    .location-item .location-content {
        text-align: center;
        padding: 15px;
    }
    .info-card {
        padding: 25px 15px;
    }
    .contact-section .form-card,
    .wiki-p:not(.not_for),
    .content_vid,
    .faq-accordion .accordion-item .accordion-header .accordion-button,
    .hero-search-form{
        padding: 15px;
    }
    .newsletter-form .btn-default {
        height: auto; 
    }
    .btn-default{
        padding: 10px 20px;
    }
	.btn-default.btn-border{
		padding: 8px 20px;
	}
	.section-title h1{
		font-size: 28px;
	}
	.section-title h2,
	.section-title.text-start .h2{
	    font-size:26px;
	}
    
	
	.hero .hero-section{
		padding: 25px 0;
	}
	.service_hero .hero-section{
	    padding: 35px 0 !important;
	}
	.hero.common_hero .hero-section {
	    padding: 50px 0 !important;
	}
	.hero .hero-search-form-section{
		padding: 10px;
	}
    .hero-search-form.after-hero {
        left:15px;
		right:15px;
    }
	.search-heading{
		display: block;
	}
	.section-title h1{
		font-size: 28px;
	}
	.hero-content .section-title h1{
		font-size: 28px;
	}
	.hero-content-footer{
		
        justify-content: center;
        gap:0
	}
	.btn-default{
		font-size: 14px;
	}
	.hero-content-footer .btn-default{
		margin: 0 4px;
	}
	.property-type-item{
		text-align: center;
	}
	.property-type-item h3{
		font-size: 20px;
		text-align: left;
	}
	.property-type-slider .swiper-pagination{
		margin-top: 0;
	}
	.property-type-slider .swiper-pagination .swiper-pagination-bullet{
		width: 12px;
		height: 12px;
	}
	.property-item .property-header .property-label{
		font-size: 14px;
	}
	.property-item .property-body h3{
		font-size: 20px;
	}
	.property-item .property-body{
		padding: 20px;
	}
	.property-item .property-footer .property-price{
		font-size: 16px;
	}
	.about-images{
		padding-top: 0;
		padding-left: 40px;
		background-size: 100px auto;
	}
	.about-content{
		padding-top: 0;
	}
	.about-content-body ul li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.about-content-body ul li .icon-box{
		width: 31px;
		height: 31px;
	}
	
	.about-content-body ul li span{
		font-size: 16px;
	}
	.about-content-body .btn-default{
		margin-top: 0;
	}
	.how-it-work-item .icon-box{
		width: 60px;
		height: 60px;
	}
	.how-it-work-item .icon-box img{
		max-width: 50%;
	}
	.how-it-work-item h3{
		font-size: 20px;
	}
	.why-choose-us-body ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.exclusive-agents{
		padding: 24px 0px 10px 0px;
	}
	.rating-badge {
        padding: 6px 18px;
        width: 78%;
    }
    .rating-number {
        font-size: 16px;
    }
    .rating-badge i {
        font-size: 14px;
    }
    ul.blog-meta {
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 6px;
    }
	.exclusive-agents h5{
		font-size: 16px;
	}
	
	.cta-content h2{
		font-size: 26px;
		margin-bottom: 10px;
	}
	.location-item .location-content .location-header h3{
		font-size: 20px;
	}
	.post-item .post-body h3 a{
		font-size: 20px;
	}
	.newsletter-title{
		margin-bottom: 20px;
	}
	.newsletter-title h2{
		font-size: 26px;
	}
	.newsletter-box{
		padding: 15px;
		margin-bottom:30px;
	}
	.footer-logo img{
	    width:200px;
	}
	.newsletter-form .form-control{
		border-radius: 5px;
		margin-bottom: 10px;
	}
	.newsletter-form .btn-default{
		border-radius: 5px;
	}
	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3{
		font-size: 20px;
	}
	.footer-contact-info{
		padding: 0;
	}
	.footer-copyright{
		text-align: center;
		margin-bottom: 8px;
	}
	.footer-copyright p {
    font-size: 14px;
    }
    .footer-policy-links ul li a {
    font-size: 14px;
    }
	.footer-policy-links{
		text-align: center;
	}
	.footer-policy-links ul li{
		margin-left: 0px;
		margin-right: 10px;
	}
	.page-header-box h1{
		font-size: 26px;
	}
	.photo-gallery{
		padding: 50px 0 0;
	}
	
	.testimonial-slider{
		margin-left: 0;
		margin-right: 0;
	}
	.testimonial-slider .swiper-pagination{
		margin-top: 0px;
	}
	.stat-counter{
		padding: 50px 0 20px;
	}
	
	.client-logo{
		padding: 10px 10px;
	}
    .client-logo img{
        max-width:100%;
    }
	.our-agents{
		padding: 50px 0 20px;
	}
	.agent-item .agent-header{
		margin-bottom: 20px;
	}
	.agent-item .agent-body h3{
		font-size: 20px;
	}
	.page-property-listing{
		padding: 50px 0;
	}
	.property-category-box{
		padding: 30px;
	}
	.property-category-box h3{
		font-size: 20px;
	}
	.need-help-box .need-help-content h3{
		font-size: 22px;
	}
	.page-property-single{
		padding: 50px 0;
	}
	.property-photos-slider .swiper-arrow-prev,
	.property-photos-slider .swiper-arrow-next{
		width: 40px;
		height: 40px;
	}
	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location{
		padding: 20px;
	}
	.property-single-subtitle{
		margin-bottom: 20px;
	}
	.property-single-subtitle h3{
		font-size: 26px;
	}
	.property-overview-box .property-overview-item{
		width: calc(50% - 15px);
	}
	.property-overview-box .property-overview-item:nth-of-type(3n + 3){
		margin-right: 30px;
	}
	.property-overview-box .property-overview-item:nth-of-type(2n + 2){
		margin-right: 0;
	}
	.property-overview-box .property-overview-item .icon-box{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}
	.property-overview-box .property-overview-item .icon-box img{
		max-width: 50%;
	}
	.property-overview-box .property-overview-item .property-overview-content{
		width: calc(100% - 50px);
	}
	.property-overview-box .property-overview-item .property-overview-content h3{
		font-size: 16px;
		margin-bottom: 2px;
	}
	.property-overview-box .property-overview-item .property-overview-content p{
		font-size: 14px;
	}
	.property-amenities-box ul li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.property-info-box{
		padding: 30px;
	}
	.blog-archive-page{
		padding: 50px 0;
	}
	.blog-archive-page .post-item{
		margin-bottom: 30px;
	}
	.blog-single-page{
		padding: 50px 0 30px;
	}
	
	.post-entry blockquote{
		margin-left: 0;
	}
	.post-entry blockquote p{
		font-size: 16px;
	}
	.post-entry h1{
		font-size: 26px;
	}
	.post-entry h2{
		font-size: 24px;
	}
	.post-entry h3{
		font-size: 22px;
	}
	.post-entry h4{
		font-size: 20px;
	}
	.post-entry h5{
		font-size: 16px;
	}
	.post-entry h6{
		font-size: 14px;
	}
	.post-content .post-tags a{
		padding: 8px 10px;
	}
	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget,
	.popular-tags-widget{
		padding: 20px;
	}
	.tag-clouds ul li a{
		padding: 8px 10px;
	}
	
	.contact-details{
		padding: 50px 0 20px;
	}
	.contact-detail-item{
		margin-bottom: 30px;
	}
	.contact-detail-item h3{
		font-size: 20px;
	}
	.faq-accordion .accordion-item .accordion-header .accordion-button{
		font-size: 16px;
	}
	.not-found-page{
		padding: 50px 0;
	}
	.page-not-found-box h2{
		font-size: 22px;
	}
	.agents-page{
		padding: 50px 0 10px;
	}
	.location-item .location-content{
    	position: absolute;
    	top: 0;
    	left: 0;
    	right: 0;
    	bottom: 0;
    	padding: 30px;
    	background: var(--overlay-color);
    	z-index:2;
    	display: flex;
        justify-content: center;  /* Horizontal center */
        align-items: center;      /* Vertical center */
        text-align: center;
    }
    .location-item .location-content .location-footer {
        display:none;
    }
	
}
.sm-mob,
.sm-mob .btn-default{
    transition:none;
}
/*767 ends*/

@media(max-width:375px) {
    .hero.hero-video {
        margin-top: 57.5938px;
    }
}
@media(min-width:376px) and (max-width:991.98px){
     .hero.hero-video {
        margin-top: 80px;
    }
}
@media only screen and (max-width: 576px){
    
    
    .back-to-top.show {
    display: none;
    }
    .footer-contact-box .footer-info-box .icon-box~ a {
    font-size: 15px;
    }
    .footer-contact-box .footer-info-box p{
        font-size: 15px;
    }
    .footer-contact-box .footer-info-box:not(:last-child) {
    margin-bottom: 14px;
}
.bottom-cta .call-btn span strong{
    font-size: 14px;
}
     .bottom-cta .call-btn {
    align-items: center;
    gap: 8px;
}
.bottom-cta .call-btn i{
        font-size:18px;
        width: 2.5rem;
        height: 2.5rem;
}
    .hero-content-footer .btn-default,
    .cta-button .btn-default{
        margin: 0 2px;
    }
    .hero-content-footer .btn-default.btn-border,
    .hero-content-footer .btn-default.btn-border,
    .cta-button .btn-default.btn-border{
        padding: 8px 10px;
    }
    .hero-content-footer .btn-default,
    .cta-button .btn-default{
        font-size: 13px;
    }
    .hero-content-footer .btn-default,
    .btn-default{
        padding: 10px;
    }
    
    .cta-button .btn-default i {
        margin-right: 5px;
    }
    .contact-section .email,
    .contact-section .phone{
        font-size: 14px;
    }
}
.grecaptcha-badge {
    display: none !important;
}
.blog-posts ul li:before {
    background-color: var(--color1);
    display: flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    font-family: 'FontAwesome';
    content: "\f00c";
    font-size: 12px;
    color: #fff;
    justify-content: center;
    align-items: center;
}
.blog-posts ul{
    list-style-type:none;
    margin-bottom:20px;
    padding:0;
}
.blog-posts ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 3px;
}
form#ewebcontact_id_2 {
    margin-bottom: 0;
}
/* Table base */
.new-table table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom:10px;
}
/* Cells */
.new-table th,
.new-table td {
    padding: 9px 12px;
    border: 1px solid var(--color1);
    color: #1c1c1c;
}
/* Remove duplicate borders */
.new-table tr th + th,
.new-table tr td + td {
    border-left: none;
}
.new-table tr + tr td {
    border-top: none;
}
/* Header */
.new-table thead th {
    background: var(--color2);
    color: #fff;
    border-color: var(--color2);
}
/* Header – remove internal borders */
.new-table thead th + th {
    border-left: none;
}
/* Rounded corners */
.new-table thead th:first-child {
    border-top-left-radius: var(--site-radius);
}
.new-table thead th:last-child {
    border-top-right-radius: var(--site-radius);
}
/* Bottom border */
.new-table tbody tr:last-child td {
    border-bottom: 1px solid var(--color1);
}




        .section-top-brand-sec {
            margin-bottom: 60px;
        }

        .top-brand-sec-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(39, 174, 96, 0.1);
            color: var(--accent-color);
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .top-brand-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .top-brand-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Unique Brand Card Layout */
        .brand-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }

        .brand-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: var(--site-radius);
            padding: 30px 20px;
            text-align: center;
            transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--card-shadow);
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform var(--transition-speed) ease;
            transform-origin: left;
        }

        .brand-card:hover {
   
            box-shadow: var(--card-hover-shadow);
           
        }

    

        .brand-logo-wrapper {
            height: 60px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all var(--transition-speed) ease;
        }

        .brand-card:hover .brand-logo-wrapper {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .brand-logo-wrapper img {
            max-width: 120px;
            max-height: 50px;
            object-fit: contain;
        }

        .brand-info {
            transition: all var(--transition-speed) ease;
        }

        .brand-name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 4px;
    color: #333;
}

        .brand-service {
    font-size: 16px;
    color: var(--color2);
    font-weight: 500;
    opacity: 0.8;
}

        .brand-location {
    font-size: 16px;
    color: #000;
    margin-top: 3px;
}

        /* Glassmorphism variation for a premium feel */
        .glass-effect {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

/* Custom Responsive Adjustments */
@media (max-width: 1200px) {
    .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    
}
@media (max-width: 480px) {
    .brand-grid { grid-template-columns: repeat(1, 1fr); }
    .brand-card { padding: 25px 15px; }
}

@media(min-width:768px){
    .hero.service_hero .hero-content p {
        margin-bottom:0;
    }
    .brand_img_menu:nth-child(2n+1){
        background-color: #efefef; /* grey */
    }
}
        
/*brand sec css end*/
@media (max-width: 768px) {
    .form-control{
        font-size:16px !important;
    }
    .post-entry .table tr td,
    .post-entry .table tr th{
        white-space:nowrap;
    }
    .new-table {
        overflow-x: auto;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .new-table table {
        min-width: 600px; /* force scroll instead of squish */
    }
    .new-table::-webkit-scrollbar,
    .table-responsive::-webkit-scrollbar{
        height: 5px;   /* controls horizontal scrollbar thickness */
    }
}
@media only screen and (max-width: 400px){
 .hero.hero-video .section-title .h3:before{
        left:20px;
    }
    .post-category li {
        font-size:12px;
    }
    .post-category {
        top:-38px;
    }
}


@media only screen and (max-width: 386px){
    .property-types .section-title .h3:before{
        left:14%;
    }
}
@media only screen and (max-width: 355px){
     .hero.hero-video .section-title .h3:before{
        left:10px;
    }
    .property-types .section-title .h3:before{
        left:10%;
    }
}

.row.brand_row .col-sm-4.col-md-4.col-lg-3 {
    position: relative;
}

.col-sm-4.col-md-4.col-lg-3 .slider_service_box::after {
    /*content: '';*/
    position: absolute;
    right: 0;
    top: 20%;
    height: 100%;
    width: 1px;
    background-image: url(/images/line.png);
}
/* Default white */
.slider_service_box {
    background-color: #ffffff;
    /* padding: 15px; */
    margin-bottom: 20px;
    border-radius: 0;
}

/* Checkerboard pattern */
.brand_row > div:nth-child(8n+2) .slider_service_box,
.brand_row > div:nth-child(8n+4) .slider_service_box,
.brand_row > div:nth-child(8n+5) .slider_service_box,
.brand_row > div:nth-child(8n+7) .slider_service_box {
    background-color: #efefef;
}
/* Remove line from every 4th item (last in row) */
.col-sm-4.col-md-4.col-lg-3:nth-child(4n) .slider_service_box::after {
    display: none;
}
.features-bar {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  gap: 0;
  position:relative;
  z-index:9;
}
.hero-content-footer .btn-tagline{
    display:block;
    font-size:14px;
    text-align:center;
}
.hero.hero-video {
    background-color:var(--bgcolor);
    /*background-image: url(/images/bg_pattern.png);
    background-repeat: no-repeat;
    background-position: right;*/
}


 
.hero.hero-video > * {
    position: relative;
    z-index: 1;
}
 


.brand-banner-slider {
    overflow: hidden;
    flex:1;
}
.brand-banner-slider .swiper:not(.swiper-initialized) .swiper-wrapper{
    display: flex;
    flex-wrap: nowrap;
}
.brand-banner-slider .swiper:not(.swiper-initialized) .swiper-slide{
    width: 18%;
    flex-shrink: 0;
}
.brand-banner-slider .swiper-slide {
    background: #e9e9e957;
    padding: 3px 8px;
    border-radius: var(--site-radius);
}

.brand_banner_servic .brand_b_img,
.brand_banner_servic .brand_mob_img{
    position:absolute;
    top: 15px;
    right: 15px;
    background-color: #fff8;
    border-radius: var(--site-radius);
    filter: opacity(0.9);
    padding: 8px;
}
.brand_banner_servic .brand_mob_img {
    z-index:2;
    padding: 4px;
    top: 10px;
    height: 45px;
    right: 10px;
}
@media(min-width:992px){
    .about-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-list li img {
        max-width: 100px;
    }
    .hero-video .hero-section .hero-bg-video{
        width: 50%;   
        
    }
    .hero-video .hero-section .hero-bg-video img:not(.brand_b_img),
    .hero-video .hero-section .hero-bg-video{
        border-radius: 0 var(--site-radius) var(--site-radius) 0;
        overflow:hidden;
        height:100%;
        
    }
    .hero-video .hero-section .hero-bg-video img:not(.brand_b_img){
        object-fit:cover;
        width:100%;
    }
}
@media (max-width: 991.98px) {
    .hero-content-footer  {
        justify-content:center;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding:15px;
        padding-top:0;
        font-size:15px;
    }
    .post-item .post-body {
        padding:15px;
    }
    .faq-accordion .accordion-item .accordion-header .accordion-button {
        font-weight:600;
    }
    .hidden.slicknav_hidden{
        display:none;
    }
    .service_hero .hero-content-footer {
        margin-bottom:0;
    }
    .hero-video .hero-section .hero-bg-video:before {
        content:'';
        position:absolute;
        left:0;
        right:0;
        bottom:0;
        top:0;
        background-color:var(--bgcolor);
    }
    .hero-video .hero-section .hero-bg-video img{
        height:100%;
        width:100%;
        object-fit:cover
    }
    .features-bar{
        display:none;
    }

    /* Reset all to white */
    .brand_row > div .slider_service_box {
        background-color: #ffffff !important;
    }

    /* 3-column checkerboard */
    .brand_row > div:nth-child(6n+2) .slider_service_box,
    .brand_row > div:nth-child(6n+4) .slider_service_box,
    .brand_row > div:nth-child(6n+6) .slider_service_box {
        background-color: #efefef !important;
    }
}

.hero-search-form .btn-default:hover {
    color: #fff;
}
.slider_service_box {
    overflow: unset;
    height: 100%;
    margin-bottom: 0px;
    /*border-radius: var(--site-radius);*/
}
.brand_img:not(.brand_img_menu) {
    position: relative;
    text-align: -webkit-center;
    padding: 18px;
    border-radius: var(--site-radius);
}
.slider_service_box span {
    font-size: 14px;
    font-weight: 400;
    display:inline-block;
    line-height:normal;
}
.slider_service_box h3.brand_img a:hover{
    color:var(--color2);
}
.slider_service_box .brand_img{
    margin-bottom:0;
}

.brand_img_menu {
    background-color:#fff;
    padding:10px !important;
    text-align:center;
}
.brand_img_menu a img{
    
    margin-left:auto;
    margin-right:auto;
}
/*services new section */
.custom-appliance-services {
    background: var(--color1);
    padding: 60px 0;
}

/* Grid */
.custom-appliance-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Card */
.custom-appliance-services-card {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 25px;
    z-index: 2;
    background: var(--color1);
    color: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

/* Icon */
.custom-appliance-services-icon {
    width: 50px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
 
}

/* Hover flip */
.custom-appliance-services-card:hover .custom-appliance-services-icon {
    transform: rotateY(180deg);
}

/* Title */
.custom-appliance-services-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.custom-appliance-services-card h3 a {
    color: #fff;
    text-decoration: none;
}

/* Text */
.custom-appliance-services-card p {
    font-size: 14px;
    color: #b0c4cc;
    margin: 0;
}

/* Read more */
.custom-appliance-services-readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.custom-appliance-services-readmore::after {
    content: " +";
}

/* Image */
.custom-appliance-services-image {
    grid-row: span 2;
}



.custom-appliance-services-image {
    grid-row: span 2;
    position: relative;
}

.custom-appliance-services-image img {
    width: calc(100% + 75px);
    height: 100%;
    top: -60px;
    z-index: 0;
    object-fit: cover;
    position: relative;
    right: 0px;
}
span.circle {
    background-color: var(--color1);
    border-radius: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    justify-content: center;
    height: 50px;
}

span.right_side span{
    text-align:left;
    display:block;
    line-height:normal;
}
/* Responsive */
@media (max-width: 991px) {
    .custom-appliance-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-appliance-services-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .custom-appliance-services-grid {
        grid-template-columns: 1fr;
    }
}
/*about new section 28 april 2026*/
.about-three__count-box {
	z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--color1);
    max-width: 180px;
    border-radius: var(--site-radius);
    width: 100%;
    text-align: center;
    padding-bottom: 14px;
    padding-top: 10px;
}

.odometer-digit {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
}
.odometer-digit  sup {
    margin-left: -4px;
    font-size:20px;
}
.about-three__count-text {
    font-size: 16px;
    margin-top: 0;
    font-weight: 500;
    color: #fff;
    margin-bottom:0;
}
.about-three__img-2 {
        position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
}
.about-three__img-2 img {
    width: 65px;
}

@media(min-width:992px){
    .slider_service_box span {
        font-size:16px;
    }
    .brand_img:not(.brand_img_menu) {
        padding: 20px 16px;
    }
    .about-us.py-70.sitebg {
        padding-bottom:110px;
    }
    .odometer-digit {
        font-size: 55px;
    }
    .about-three__count-text {
        font-size: 18px;
    }
    .about-three__count-box {
        left: -33px;
        bottom: -60px;
    }
    .about-three__count-box {
        max-width: 240px;
        padding-bottom: 26px;
        padding-top: 20px;
    }
    .odometer-digit sup {
        font-size:40px;
        margin-left: -10px;
    }
    .about-three__img-2 {
        top: 20px;
    right: 20px;
    }
    .about-three__img-2 img {
        width: 100px;
    }
}
.brand_img a {
    color: var(--color1);
    display: block;
}
.brand_img a img {
    display: block;
    margin-bottom:6px
}
.brand_row {
  position: relative;
}
 
.brand_row .col-sm-4,
.brand_row .col-md-4,
.brand_row .col-lg-3 {
  position: relative;
}
 
/* Vertical separator line */
.brand_row .col-lg-3::after {
  /*content: "";*/
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  /* Gradient for same opacity effect */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05)
  );
}
 
/* Remove border from last column in row */
.brand_row .col-lg-3:nth-child(4n)::after {
  display: none;
}

/* Tablet (3 columns) */
@media (max-width: 991px) {
    .col-md-4:nth-child(3n) .slider_service_box::after {
        display: none;
    }
}

/* Mobile (2 columns) */
@media (max-width: 767px) {
    .call-message-section .row,
    .call-wrapper-title{
        text-align:center !important;
    }
    .call-item {
            justify-content: center !important;
    }
    .brand_img_menu {
    background-color: #fff;
}
 
/* grey cells */
.brand_img_menu:nth-child(4n+1),
.brand_img_menu:nth-child(4n+4) {
    background-color: #efefef;
}
.brand_img_menu:nth-child(4n+2),
    .brand_img_menu:nth-child(4n+3) {
        background-color: #ffffff; /* white */
        border: 1px solid #dfdfdf;
    }
    .our-partners.pb-70{
        padding:40px 0;
    }
    
    .col-sm-4:nth-child(2n) .slider_service_box::after {
        display: none;
    }
    .brand_row > div:nth-child(4n+2) .slider_service_box,
  .brand_row > div:nth-child(4n+3) .slider_service_box {
    background-color: #efefef !important;
  }
 
  .brand_row > div:nth-child(4n+1) .slider_service_box,
  .brand_row > div:nth-child(4n+4) .slider_service_box {
    background-color: #ffffff !important;
  }
  .brand_img a {
        font-size: 15px;
        line-height: normal;
    }
}
/*Why choose*/

.why-features{
    margin-bottom:20px;
    margin-top:20px;
}

/* ================================
   FEATURE CARD
================================ */
.why-features .feature-card {
    background: #ffffff;
    border-radius: var(--site-radius);
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.06),
                0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(13, 110, 253, 0.08);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.25s ease,
                box-shadow 0.3s ease,
                border-color 0.2s;
}


/* Top animated gradient line */
.why-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, var(--color1), var(--color2), var(--color1), var(--color2)); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}





/* ================================
   ICON
================================ */
.why-features .feature-card .feature-icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--color1) 10%, transparent);
    border-radius: var(--site-radius);
    transition: all 0.25s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}




/* Icon inside */
.why-features .feature-card .feature-icon i {
    font-size: 2.2rem;
    color: var(--color2);
    transition: transform 0.2s ease;
}



/* ================================
   TEXT CONTENT
================================ */
.why-features .feature-card .feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Title */
.why-features .feature-card .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: normal;
    color: var(--color1);
    display: inline-block;
    position: relative;
}


/* Description */
.why-features .feature-card .feature-description {
    font-size: 15px;
    line-height: 1.29;
    margin-bottom: 0;
    font-weight: 500;
}


/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
    .why-features {
        margin-top:0;
    }
    .why-features .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }

    .why-features .feature-card .feature-title {
        font-size: 18px;
    }
}


/* CALL 2 Action */
.call-message-section {
    position: relative;
    z-index: 1;
}

/* WRAPPER */
.call-wrapper {
    position: relative;
    background-color: var(--color2);
    overflow: hidden;
    z-index: 1;
}

/* LEFT ANGLED SHAPE */
.call-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 56%;
    height: 100%;
    background-color: var(--color2);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    z-index: -1;
}

/* RIGHT IMAGE WITH PARALLAX */
.call-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* increased */
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/home/fast-reliable-appliance.webp');
    background-size: cover;
    background-position: right center; /* KEY FIX */
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.05); /* helps sharpness */
    z-index: -2;
}

.call-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.call-wrapper-details {
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom:0;
}
.call-wrapper-details a{
    color:#fff;
}
.call-wrapper-details a:hover{
    text-decoration:underline;
}
/* CALL ITEM */
.call-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:15px
}

.call-item-icon {
    color: var(--color2);
    width: 70px;
    height: 70px;
    font-size: 36px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-about.brand-about .about-images::before {
    display: none;
}

.call-item-time {
    color: #fff;
    margin-bottom: 0;
    text-align:left;
}

.call-item-number {
    font-size: 36px;
    font-weight: 600;
    margin-bottom:0;
}

.call-item-number a {
    color: #fff;
    text-decoration: none;
}
h3.call-item-number:hover a {
    text-decoration: underline;
}

.call-item:hover .call-item-icon {
    background:var(--color1);
    color:#fff;
}


/* MOBILE FIX (parallax off) */
@media (max-width: 991px) {
    
    .call-bg {
        width: 100%;
        background-attachment: scroll;
    }
    .call-item-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .call-shape {
        width: 100%;
        clip-path: none;
        opacity: 0.9;
    }
    .call-item-number {
        font-size:24px;
    }

    .call-item {
        justify-content:start;
        flex-wrap:wrap;
    }
    .about-content-body ul li span {
        width:100%;
    }
}

/* Section */

/* Card */
.step-card {
    border: 1px solid var(--color2);
    position: relative;
    border-radius: var(--site-radius);
    height:100%;
    margin-right:1px;

}
.step-inner{
    height:100%;
}
.process-slider .swiper-slide {
    height:auto;
}

/* White Card Design */
.step-inner{
    position: relative;
    background: #fff;
    border-radius: var(--site-radius);
    padding: 40px 25px 20px;
    text-align: center;
    box-shadow: 0 0px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Decorative Bottom Line */
.step-inner::after{
    /*content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:10px;
    background:var(--color1);
    border-radius:12px 12px 0 0;*/
}

/* Badge (Half Inside / Half Outside) */
.step-badge{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color2);
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 0 10px rgba(0,0,0,0.20);
    z-index: 5;
}

/* Title */
.step-inner h3{
    color:var(--color1);
    font-weight:600;
    margin-bottom:20px;
    font-size:20px;
    position: relative;
    text-align: center;
}
.step-inner h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--color1);
    margin: 8px auto 0;
    border-radius:var(--site-radius);
}

.step-inner p{
    margin-bottom:0;
}

/* Text */


/* Fix top space for badge */
.process-section .owl-stage-outer{
    padding-top:40px;
}

/*troboshoting*/
.troubleshooting-section {
  width: 100%;
  /*background:*/
  /*  radial-gradient(circle at top left, rgba(47, 143, 47, 0.08), transparent 30%),*/
  /*  linear-gradient(180deg, #f8faff 0%, #ffffff 100%);*/
}



.troubleshooting-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.troubleshooting-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--tr-green);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.troubleshooting-label span {
  font-size: 22px;
  line-height: 1;
}

.troubleshooting-title {
  margin: 0;
  color: var(--tr-blue);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.troubleshooting-intro {
  margin: 18px auto 0;
  color: #616a80;
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
}

.troubleshooting-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0 0 40px;
}

.tr-tab {
  border: 1px solid var(--color1);
    background: #fff;
    color: var(--color1);
    border-radius: var(--site-radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    /* box-shadow: 0 0px 2px rgba(7, 27, 115, 0.22); */
    transition: 0.25s ease;
}

.tr-tab:hover {
  border-color: var(--color1);
    background: var(--color1);
    color:#fff;
}

.tr-tab.active {
  background: var(--color1);
  color: #fff;
  /*border-color: var(--color1);
  box-shadow: 0 0px 2px rgba(7, 27, 115, 0.22);*/
}

.tr-tab-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tr-tab-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.troubleshooting-content {
  display: grid;
  gap: 16px;
}

.tr-card {
  background: var(--bgcolor);
    border: 1px solid var(--tr-border);
    border-radius: var(--site-radius);
    /* box-shadow: var(--tr-shadow); */
    padding: 25px 30px;
    overflow: hidden;
}

.tr-question-btn {
  border: 0;
  padding: 0;
  cursor: pointer;
  gap: 20px;
}


.tr-appliance-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tr-appliance-icon i {
    font-size: 25px;
}

.tr-appliance-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-appliance-icon .tr-mini-drop,
.tr-appliance-icon .tr-mini-heat {
  position: absolute;
  right: 17px;
  bottom: 12px;
  color: var(--tr-green);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.tr-main {
  min-width: 0;
}

.tr-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.tr-question {
  margin: 0;
  color: var(--color1);
  font-size: 22px;
  font-weight: 600;
}

.tr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.tr-badge.basic {
  color: #1664d9;
  background: #edf5ff;
  border: 1px solid #b7d3ff;
}

.tr-badge.safe {
  color: #2f842f;
  background: #ecf8e9;
  border: 1px solid #c5e6bc;
}

.tr-badge.tech {
  color: #a76800;
  background: #fff6df;
  border: 1px solid #f4d98a;
}

.tr-answer {
  margin: 0;
  color: var(--tr-text);
  font-size: 16px;
  line-height: 1.65;
}

.tr-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--tr-blue);
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  transition: 0.2s ease;
}

.tr-cta:hover {
  color: var(--tr-green);
}

.tr-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-tip {
  background: color-mix(in srgb, var(--color2) 10%, transparent);
  border: 1px solid #cce7c5;
  border-radius: var(--site-radius);
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.troubleshooting_content {
    display: flex;
    align-items: center;
    gap: 15px;

}
.tr-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-tip-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-tip-title {
  display: block;
  color: var(--tr-green-dark);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
}

.tr-tip-text {
  margin: 0;
  color: #445064;
  font-size: 15px;
  line-height: 1.55;
}

.tr-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--tr-border);
  color: var(--tr-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.tr-toggle svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-card.collapsed .tr-card-inner {
  grid-template-columns: 96px 1fr 34px;
}

.tr-card.collapsed .tr-tip,
.tr-card.collapsed .tr-answer,
.tr-card.collapsed .tr-cta {
  display: none;
}

.tr-card.collapsed .tr-toggle {
  transform: rotate(180deg);
}

.tr-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.tr-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 28px;
  border: 2px solid var(--tr-blue);
  border-radius: 999px;
  color: var(--tr-blue);
  background: transparent;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  transition: 0.25s ease;
}

.tr-view-all:hover {
  background: var(--tr-blue);
  color: var(--tr-white);
  transform: translateY(-2px);
}

.tr-view-all svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1000px) {

  .tr-card-inner {
    grid-template-columns: 80px 1fr 34px;
    gap: 18px;
  }

  .tr-tip {
    grid-column: 2 / 4;
  }

  .tr-appliance-icon {
    width: 40px;
    height: 40px;
  }
  .tr-question-btn {
      gap:15px
  }
    .tr-tip {
        margin-top:0 !important;
    }
  .tr-appliance-icon svg {
    width: 40px;
    height: 40px;
  }
  .troubleshooting_content {
        padding-top:16px;
    }
}

@media (max-width: 700px) {
    p.service_all {
    font-size: 14px;
    position: relative;
}

  .troubleshooting_content {
      flex-wrap:wrap;
  }

  .troubleshooting-header {
    margin-bottom: 24px;
  }

  .troubleshooting-intro {
    font-size: 16px;
  }

  .troubleshooting-tabs {
    display: grid;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 8px;
    padding-top:3px;
    margin: 0 0 22px;
    scroll-snap-type: x mandatory;
  }

  .troubleshooting-tabs::-webkit-scrollbar {
    height: 6px;
  }

  .troubleshooting-tabs::-webkit-scrollbar-thumb {
    background: #cdd5e5;
    border-radius: 20px;
  }

  .tr-tab {
    font-size: 16px;
    scroll-snap-align: start;
    padding: 6px 12px;
    font-weight: 400;
  }

  .tr-card-inner {
    grid-template-columns: 1fr 34px;
    gap: 12px;
    padding: 10px;
  }

  .tr-appliance-icon {
    flex:0 0 50px;
    width: 50px;
    height: 50px;
  }
    .troubleshooting_content{
        padding-top:10px;
    }
  .tr-main {
    grid-column: 1 / 3;
  }

  .tr-tip {
    grid-column: 1 / 3;
    grid-template-columns: 38px 1fr;
    padding: 12px 10px;
  }

  .tr-toggle {
    position: absolute;
    right: 18px;
    top: 22px;
  }

  .tr-card {
    position: relative;
    padding:0;
  }

  .tr-question {
    font-size: 16px;
    padding-right: 32px;
  }

  .tr-answer {
    font-size: 15px;
  }

  .tr-bottom {
    justify-content: stretch;
  }

  .tr-view-all {
    width: 100%;
    text-align: center;
  }
}

/* HIDE BY DEFAULT */
.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 300ms ease;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px RGBA(var(--theme-white-rgb), 0.07);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: 0 var(--site-radius);
    margin: 0 auto;
    right: 0;
}
/* LEFT SIDE */
.mega-left {
    width: 25%;
    border-right: 1px solid #eee;
    padding: 10px;
    list-style: none;
}
.mega-left img{
    max-width:25px;
}

/* RIGHT SIDE */
.mega-right {
    width: 100%;
    padding: 10px;
    max-height: 400px;   /* adjust height */
    overflow-y: auto; 
    scroll-behavior: smooth;
}
/* CONTENT */
ul#brands {
    column-gap: 0;
}
ul#brands li{
    border-radius: 0;
}
ul#brands li a{
    font-size:14px;
}
.mega-content {
    display: none;
    padding-left:0;
    grid-template-columns:repeat(3,1fr);
    list-style:none;
}
.main-menu .main-menu__list li ul li > a,
.main-menu .main-menu__list li ul.mega-content li > a{
    font-size:16px;
}
.mega-content.active {
    display: grid;
}

/* LINKS */
.mega-content a{
    display:inline-block;
    padding:6px 10px;
}
.mega-content a,
.mega-left a{
    color: var(--color1);
    text-decoration: none;
}
.mega-right a {
    font-weight:400 !important;

}
.mega-left a {
    display:flex;
    padding:14px 12px;
    align-items:center;
    line-height:normal;
}
.mega-left a img{
    margin-right:8px!important;
}
.main-menu .for_icon li a{
    display:flex;
    align-items:center;
    line-height:normal;
}
.main-menu .for_icon li a::before
{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display:inline-block;
    margin-right:6px;
    font-size:14px;
}

.mega-content a:hover,
.mega-left a:hover,
.mega-left li.active a{
    color: var(--color2) !important;
}
.mega-left a:hover,
.mega-left li.active a{
    background-color:#f2f2f2;
    border-radius:var(--site-radius);
}
@media(max-width:430px) {
    .sm-mob .btn-default {
        font-size:12px;
        padding-left:8px;
        padding-right:8px;
    }
    .navbar-brand img {
        max-width: 160px
    }
    
}

@media(max-width:375px) {
    a.cta-chat {
    display: none;
}
.navbar-brand img {
        max-width: 130px
    }


}




/* Hide by default (desktop) */
.mobile-cta {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .footer-copyright-links {
        margin-bottom:55px;
    }
    .service_hero .hero-content-footer .header-links-rating {
        bottom: 70px;
    }
    .brand_hero .hero-content-footer .header-links-rating {
        position: inherit;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        color: inherit;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        gap: 5px;
        font-size: 12px;
    }
    .brand_hero span.circle {
        font-size: 12px;
        width: 40px;
        height: 40px;
    }
.mob-banner{
    position:relative;
}
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 12px;
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    border-top: 1px solid #eee;
  }

  /* Left side */
  .cta-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9f9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 18px;
  }

  .cta-text small {
    font-size: 11px;
    color: var(--color2);
    font-weight: 600;
    display: block;
    line-height: 1.6;
  }

  .cta-text div.h3 {
    margin: 2px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color1);
  }

  /* Right side */
  .cta-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cta-chat {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    text-decoration: none;
  }

  .cta-call {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: var(--site-radius);
    background: #0e8e45;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.cta-call:hover,.cta-call:focus{
    background-color:var(--color1);
    color:#fff;
}

  .cta-call i {
    font-size: 14px;
  }
}
@media(max-width:325px){
    .sm-mob .btn-default {
        display:none;
    }
}

