/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/*
 * Global CSS
 * */

body{
	--white-color: var(--e-global-color-3f69056);
	--accent-color: var(--e-global-color-b509e78);
	--divider-color: var(--e-global-color-3ae9476);
	--light-color: var(--e-global-color-97f2af2);
}

.br-desktop-none br{
    display: none;
}

figure,
.elementor-widget-image-carousel .swiper .swiper-slide figure{
    line-height: 0;
}

.elementor-widget-theme-post-excerpt p:last-child,
.elementor-widget-text-editor p:last-child{
    margin-bottom: 0;
}

.elementor-widget-icon .elementor-icon-wrapper,
.elementor-widget-icon-box .elementor-icon-box-icon{
    line-height: 0;
}

.icon-height-size.elementor-widget-icon .elementor-icon-wrapper .elementor-icon svg{
    height: auto;
}

.elementor-widget-icon-box .elementor-icon-box-title,
.elementor-widget-image-box .elementor-image-box-title{
    margin-top: 0;
}

.icon-box-icon-center.elementor-widget-icon-box .elementor-icon-box-wrapper{
    align-items: center;
}

/* Button CSS */

.elementor-widget-button .elementor-button-wrapper{
	line-height: 0;
}

.elementor-widget-button .elementor-button{
	position: relative;
    transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.elementor-widget-button .elementor-button:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
	background: var(--accent-color);
    width: 0;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.elementor-widget-button .elementor-button:hover:before{
	width: 100%;
    left: 0;
    right: 0;
    opacity: 1;
}

.yellow-btn.elementor-widget-button .elementor-button:before{
	background: var(--e-global-color-accent);
}

.no-bg.elementor-widget-button .elementor-button:before{
	display: none;
}

.elementor-widget-button .elementor-button .elementor-button-content-wrapper{
	align-items: center;
}

.elementor-widget-button .elementor-button .elementor-button-content-wrapper .elementor-button-icon{
	line-height: 0;
}

/* Icon & Images Box CSS */
.elementor-widget-icon-box .elementor-icon-box-description a,
.elementor-widget-image-box .elementor-image-box-description a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

/*  Tab Widget CSS */
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:hover,
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title:focus{
    border-radius: var(--n-tabs-title-border-radius);
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title{
    transition: all 0.3s ease-in-out;
}

.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title .e-n-tab-icon svg path{
    transition: all 0.3s;
}

/* Menu Border CSS */
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a, 
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a:focus, 
.elementor-widget-nav-menu ul.elementor-nav-menu--dropdown a:hover{
	border-inline-start: 0 !important;
}

/* Counter Text Center CSS */

.counter-text-center .elementor-counter{
	justify-content: center;
}

/* Section Title CSS */

.section-title h3.elementor-heading-title {
    display: inline-block;
    position: relative;
    padding-left: 20px;
	padding-right: 20px;
	z-index: 1;
}

.section-title h3.elementor-heading-title::before,
.section-title h3.elementor-heading-title::after{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    mask-image: url("./images/section-title-left.svg");
    mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center left;
	width: 14px;
	height: 100%;
	z-index: -1;
}

.no-color.section-title h3.elementor-heading-title::before,
.no-color.section-title h3.elementor-heading-title::after{
	background-color: currentcolor;
}

.section-title h3.elementor-heading-title::after{
	left: auto;
	right: 0;
	mask-image: url("./images/section-title-right.svg");
	mask-position: center right;
}

/* Icon Box Hover CSS */

.icon-hover-box .elementor-icon{
	position: relative;
	z-index: 1;
} 

.icon-hover-box .elementor-icon:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--e-global-color-primary);    
    width: 100%;
    height: 100%;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.icon-hover-box:hover .elementor-icon:before{
	transform: scale(1) rotate(0deg);
}

/* Column-2 CSS */

.column-2 .elementor-icon-list-items{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.column-2 .elementor-icon-list-items .elementor-icon-list-item{
	width: calc(50% - 15px);
}

/* Page Breadcrumbs CSS */
.page-breadcrumbs ul li:after {
    transform: rotate(15deg);
}

/* container-padding-left */

@media only screen and (max-width: 1320px) {
	
	.container-padding-left{
		padding-left: 10px;
	}
	
	.container-padding-right{
		padding-right: 10px;
	}
}

@media only screen and (max-width: 1024px) {
	
	.br-tablet-none br{
		display: none;
	}
	
	.container-padding-left{
		padding-left: var(--padding-left);
	}
	
	.container-padding-right{
		padding-right: var(--padding-right);
	}
}

@media only screen and (max-width: 767px) {
	
	.br-mobile-none br{
		display: none;
	}
	
	.word-break .elementor-heading-title{
		word-break: break-all;
	}
	
	.section-title h3.elementor-heading-title{
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.section-title h3.elementor-heading-title::before, 
	.section-title h3.elementor-heading-title::after{
		mask-size: 100% 100%;
		width: 7px;
	}
	
	.column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: 100%;
	}
}

/* 
 * Header CSS 
 * */

body .site-header,
body.hello-elementor-default:not(.elementor-widget-maxmegamenu) .elementor-location-header,
body.elementor-editor-active .elementor-location-header,
body.elementor-template-full-width:not(.elementor-widget-maxmegamenu) .elementor-location-header{
	background-color: var(--e-global-color-secondary);
}

body.hello-elementor-default .elementor-widget-maxmegamenu .elementor-location-header,
body.elementor-template-full-width .elementor-widget-maxmegamenu .elementor-location-header{
	background-color: transparent;
}

.header2-container{
	position: fixed !important;
	top: -110px !important;
	left: 0;
	right: 0;
	z-index: 9999;
	transition: all 0.4s ease-in-out !important;
	backdrop-filter: blur(50px);
}

.header2-container.header-show{
	top: 0 !important;
}

.main-header.elementor-sticky{
	transition: all 0.3s ease-in-out
}

.header-logo img[src$=".svg"]{
	width: auto !important;
}

.header-logo{
	position: relative;	
	margin-top: -52px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
}

.header2-container .header-logo{
	margin-top: 0;
}

.header-logo:before,
.header-logo:after{
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: -30px;
	background-color: var(--e-global-color-secondary);
	mask-image: url("./images/header-logo-shape.svg");
	mask-repeat: no-repeat;
	mask-position: bottom center;
	mask-size: 100.6% auto;
	width: 100%;
	height: 50px;
	z-index: 0;
}

.header-logo:after{
	top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background-color: var(--accent-color);
    width: calc(100% + 10px);
    height: calc(100% + 36px);
    z-index: -1;
}

.header2-container .header-logo:before{
	bottom: -25px;
}

.header2-container .header-logo:after{
	height: calc(100% + 30px);
}

.header-logo.elementor-widget-image a{
	display: block;
}

.header-logo img{
	position: relative;
	z-index: 2;
	transition: all 0.5s ease-in-out;
}

.header-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-nav-menu--dropdown, 
.header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
	transition: all 0.3s ease-in-out;
}

.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu--main > .elementor-nav-menu > li > .elementor-nav-menu--dropdown, 
.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
	margin-top: 39px !important;
}

.canadian-made-img{
	animation: infiniterotate 20s infinite linear;
}

/* Mega Menu CSS */
.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mobile-menu{
	display: none !important;
}

/* menu visiable css */
.header-menu ul li.mega-menu-visiable ul{
    opacity: 1 !important;
	visibility: visible !important;
}

.header-menu .mega-menu-wrap > ul > li > ul{
	margin-top: 21px !important;
}

.header2-container .header-menu .mega-menu-wrap > ul > li > ul{
	margin-top: 19px !important;
}

/* Mega Menu Templated CSS */

.mega-menu-img-box .elementor-image-box-wrapper figure img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}


@media only screen and (max-width: 1466px) {
	
	.header-menu nav ul li a{
		font-size: 18px !important;
	}
	
	.header-btn .elementor-button{
		font-size: 16px !important;
	}
	
}

@media only screen and (max-width: 1366px) {
	
	.header-menu nav ul li a{
		font-size: 16px !important;
	}
	
}

@media only screen and (max-width: 1024px) {
	
	.header-logo{
		margin-top: -24px;
	}
	
	.header2-container .header-logo {
		margin-top: -10px;
	}
	
/* 	.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
		margin-top: 28px !important;
	}
	 */
	
	/* Mega Menu CSS */ 
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mobile-menu{
		display: block !important;
	}
	
	.header-menu #mega-menu-wrap-menu-1 .mega-menu-toggle,
	.header-menu .mega-menu-wrap .mega-menu-toggle{
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
	}
	
	.header-menu #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box{
		width: 30px;
    	height: 24px;
	}
	
	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner,
	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner:before,
	.header-menu .mega-menu-wrap .mega-menu-toggle .mega-toggle-animated-box .mega-toggle-animated-inner:after{
		width: 30px !important;
	}
	
	.header-menu ul.mega-menu{
		margin-top: 19px !important;
		max-height: calc(100vh - 200px) !important;
		overflow: auto !important;
		filter: drop-shadow(0px 10px 5px rgb(from var(--e-global-color-text) r g b / 10%));
	}
	
	.header2-container .header-menu .mega-menu-wrap > ul > li > ul{
		margin-top: 0 !important;
	}
	
	.header-menu .mega-menu-wrap > ul > li > ul{
		margin-top: 0 !important;
		box-shadow: none;
		filter: none;
	}	
	
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link{
		display: flex;
		padding: 0 20px;
	}
	
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item> ul li a.mega-menu-link{
		padding: 0 30px !important;
	}
	
	/* Template CSS */
	.header-menu ul.mega-menu li > ul.mega-sub-menu .service-menu-list-wrapper{
		box-shadow: none;
	}
}

@media only screen and (max-width: 767px) {
	
	.header-logo{
		margin-top: -12px;
	}
	
	.header-menu nav ul li a{
		font-size: 14px !important;
	}
	
/* 	.main-header.elementor-sticky.elementor-sticky--effects .header-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown{
		margin-top: 23px !important;
	}	 */
	
	/* Mega Menu CSS */ 
	
	.header-menu ul.mega-menu{
		margin-top: 14px !important;
	}
	
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link,
	.header-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout.mega-menu-item-has-children ul li >a.mega-menu-link{
		font-size: 14px;
		line-height: 35px;
		height: 35px;
	}
}


/*
 * Footer CSS
 * */

.footer-menu nav ul li{
	position: relative;
	padding-left: 14px;
}

.footer-menu nav ul li:before{
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	background-color: var(--accent-color);
	width: 4px;
	height: 4px;
}

.footer-menu.footer-location--menu nav ul{
	display: flex;
	flex-wrap: wrap;
}

.footer-menu.footer-location--menu nav ul li{
	width: 50%;
}

/* Footer */

.footer-form-container{
	position: fixed !important;
	bottom: -104px !important;
	left: 0;
	right: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out !important;
}

.footer-form-container.footer-form-show{
	bottom: 0 !important;
	opacity: 1;
	visibility: visible;
}

@media only screen and (max-width: 1024px){
	
	.footer-form-container{
		bottom: -200px !important;
	}
	
}

@media only screen and (max-width: 767px){
	
	.footer-form-container{
		bottom: -300px !important;
	}
	
}

/*
 * Home Page CSS
 * */

.page-header-form-title .elementor-widget-container{
	clip-path: polygon(0 0, calc(100% - 31px) 0%, 100% 100%, 0% 100%);
}

.page-header-form-title .elementor-heading-title {
	display: inline-block;
	background-color: var(--e-global-color-secondary);
	padding: 10px 40px 10px 20px;
	clip-path: polygon(0 0, calc(100% - 25px) 0%, 100% 100%, 0% 100%);
}

.hero-google-review .review-widget-badge-two > div > div{
	flex-direction: row !important;
    justify-content: center;
    gap: 20px;
	width: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.hero-google-review .review-widget-badge-two > div p{
	color: var(--white-color);
	margin: 0;
}

.hero-google-review .review-widget-badge-two > div > div > div > div:first-child img{
	width: 40px !important;
    height: 40px !important;
}

.hero-google-review .review-widget-badge-two > div > div > div{
	margin-top: 0 !important;
	gap: 15px !important;
}

.hero-google-review .review-widget-badge-two > div > div > div > div{
	display: flex;
	align-items: flex-start;
	flex-direction: column-reverse;
	gap: 10px;
}

.hero-google-review .review-widget-badge-two > div > div > div > div span{
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 16px;
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
    font-style: var(--e-global-typography-text-font-style);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--white-color);
}

.hero-google-review .review-widget-badge-two > div > div a{
	display: none !important;
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
	font-size: 16px !important;
	font-weight: var(--e-global-typography-accent-font-weight);
	text-transform: var(--e-global-typography-accent-text-transform);
	font-style: var(--e-global-typography-accent-font-style);
	line-height: var(--e-global-typography-accent-line-height);
	background-color: var(--e-global-color-accent) !important;
	color: var(--white-color) !important;
	padding: 16px 20px !important;
	margin: 0 !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	transition: all 0.4s ease-in-out;
	align-self: unset !important;
}

.hero-google-review .review-widget-badge-two > div > div a:hover,
.hero-google-review .review-widget-badge-two > div > div a:focus{
	background-color: var(--accent-color) !important;
}

.about-img-container:before{
	position: absolute;
    width: 95%;
    height: auto;
    aspect-ratio: 1 / 1;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-img-title-1 .elementor-heading-title{
	transform: rotate(-3.813deg);
}

.about-img-title-2 .elementor-heading-title{
	transform: rotate(-1.748deg);
}

.about-dot-title{
	position: relative;
	padding-left: 22px;
}

.about-dot-title:before{
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	background-color: var(--accent-color);
	width: 8px;
	height: 8px;
}

.about-award-container:before{
	position: absolute;
	top: 20px;
	left: auto;
	right: -30px;
	width: 1px;
    height: 100px;
}

.about-award-container:last-child:before{
	right: 0;
	display: none;
}

.home-best-section{
	position: relative;
	z-index: 1;
}

.home-best-section:before{
	z-index: -1;
}

.home-best-section:after{
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	width: 100%;
	height: 215px;
	z-index: -1;
}

.services-tab .e-n-tabs{
	counter-reset: services_counter;
}

.services-tab .e-n-tabs-heading{
	counter-reset: services_counter;
}

.services-tab .e-n-tabs-heading .e-n-tab-title{
	position: relative;
	counter-increment: services_counter;
	max-width: calc(33.33% - 26.667px);
}

.services-tab .e-n-tabs-heading .e-n-tab-title:before{
	content: "0"counter(services_counter) "";
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    font-style: var(--e-global-typography-secondary-font-style);
    line-height: var(--e-global-typography-secondary-line-height);
	color: var(--e-global-color-text);
	background-color: #F6F9FD;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out;
}

.services-tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:before{
	color: var(--white-color);
	background-color: var(--e-global-color-secondary);
}

.services-tab .e-n-tabs-heading .e-n-tab-title:after{
	content: '';
	position: absolute;
	top: 15px;
	left: 50px;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid var(--e-global-color-secondary);
	transition: all 0.3s ease-in-out;
}

.services-tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:after{
	border-left-color: var(--accent-color);
}

.services-tab .e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text{
	word-break: break-all;	
}

.services-tab .e-n-tabs-heading .e-n-tab-title span{
	margin-left: 30px;
	height: 100%;
	width: calc(100% - 87px);
	border-bottom: 1px solid rgb(from var(--e-global-color-primary) r g b / 14%);
}

.home-counter .elementor-widget-container{
	background-clip: text;
}

.home-counter .elementor-counter{
	gap: 10px;
}

.home-counter .elementor-counter-number-wrapper{
	min-width: 400px;
}

.home-counter .elementor-counter-title{
	writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: fit-content;
}

.home-client-logos .elementor-widget-container{
	position: relative;
}

.home-client-logos .elementor-widget-container:before,
.home-client-logos .elementor-widget-container:after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    background: linear-gradient(90deg, #FFF 0%, transparent 100%);
    width: 250px;
    height: 100%;
    z-index: 2;
}

.home-client-logos .elementor-widget-container:after{
	left: auto;
	right: 0;
    transform: scaleX(-1);
}

.home-client-logos .swiper .swiper-wrapper{
	-webkit-transition-timing-function:linear!important;
	transition-timing-function:linear!important; 
}

.home-client-logos .swiper .swiper-wrapper figure img{
	width: 100%;
	height: 40px;
	object-fit: contain;
}

.awards-images .elementor-widget-container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.awards-images:nth-of-type(even) .elementor-widget-container{
	background: rgb(from var(--white-color) r g b / 20%);
	backdrop-filter: blur(25px);
}

.awards-images .elementor-widget-container img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.services-areas-img img{
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
}

.services-areas-list ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap: 30px;
}

.services-areas-list ul li.elementor-icon-list-item{
	border: 1px solid rgb(from var(--e-global-color-primary) r g b / 10%);
	padding: 10px 15px;
	transition: all 0.3s ease-in-out;
}

.services-areas-list ul li.elementor-icon-list-item:hover{
	background-color: var(--accent-color);
}

.services-areas-list ul li.elementor-icon-list-item:hover span{
	color: var(--white-color) !important;
}

.services-areas-list ul li.elementor-icon-list-item:hover span svg{
	fill: var(--white-color) !important;
}


@media only screen and (max-width: 1320px){
	
	.services-tab .e-n-tabs-heading .e-n-tab-title span{
		margin-left: 20px;
		width: calc(100% - 77px);
	}
	
}


@media only screen and (max-width: 1024px){
	
	.about-img-container:before{
		width: 85%;
		top: 52%;
	}
	
	.services-areas-img img{
		aspect-ratio: 1 / 0.87;
	}
	
	.home-best-section:after{
		height: 400px;	
	}

}

@media only screen and (max-width: 767px){
	
	.hero-google-review .review-widget-badge-two > div > div{
		flex-wrap: wrap;
	}
	
	.hero-google-review .review-widget-badge-two > div > div > div > div:first-child img{
		width: 30px !important;
		height: 30px !important;
	}
	
	.hero-google-review .review-widget-badge-two > div > div{
		gap: 10px;
	}
	
	.hero-google-review .review-widget-badge-two > div > div > div > div{
		gap: 5px;
	}
	
	.hero-google-review .review-widget-badge-two > div > div > div > div span{
		font-size: 14px;
	}
	
	.hero-google-review .review-widget-badge-two > div > div a{
		font-size: 14px !important;
		padding: 10px !important;
	}
	
	.about-award-container:before{
		top: auto;
		left: 50%;
		bottom: -15px;
		right: 0;
		width: 80%;
		height: 1px;
		transform: translateX(-50%);
	}
	
	.about-img-container:before{
		width: 100%;
	}
	
	.services-tab .e-n-tabs-heading .e-n-tab-title{
		max-width: 100%;
	}
	
	.services-tab .e-n-tabs-heading .e-n-tab-title:before{
		width: 40px;
		height: 40px;
	}
	
	.services-tab .e-n-tabs-heading .e-n-tab-title:after{
		top: 12px;
		left: 40px;
		border-width: 8px 0 8px 8px;
	}
	
	.services-tab .e-n-tabs-heading .e-n-tab-title .e-n-tab-title-text{
		word-break: break-all;
	}
	
	.services-tab .e-n-tabs-heading .e-n-tab-title span{
		margin-left: 20px;
		width: calc(100% - 70px);
		height: 40px;
	}
	
	.home-counter .elementor-counter-number-wrapper{
		min-width: auto
	}
	
	.home-counter .elementor-counter-title{
		writing-mode: unset;
		transform: rotate(0deg);
		width: auto;
	}
	
	.home-client-logos .elementor-widget-container:before,
	.home-client-logos .elementor-widget-container:after{
		width: 40px;
	}
	
	.awards-images{
		height: 100px;
	}
	
	.awards-images:nth-of-type(3n + 3) .elementor-widget-container{
		background: rgb(from var(--white-color) r g b / 20%);
		backdrop-filter: blur(25px);
	}
	
	.awards-images:nth-of-type(4n + 4) .elementor-widget-container{
		background: transparent;
		backdrop-filter: blur(0px);
	}
	
	.services-areas-list ul{
		gap: 10px;
	}
	
	.services-areas-list ul li.elementor-icon-list-item{
		width: calc(50% - 5px);
		padding: 10px;
        justify-content: center;
	}

}

/*
 * About Us CSS
 * */

.our-mission-tab .e-n-tabs .e-n-tabs-heading{
	border: 1px solid var(--divider-color);
}

.our-mission-tab .e-n-tabs .e-n-tabs-heading .e-n-tab-title:last-child{
	border-width: 0 !important;
}

.our-mission-tab .e-n-tabs-heading .e-n-tab-title{
	position: relative;
}

.our-mission-tab .e-n-tabs-heading .e-n-tab-title:after{
	position: absolute;
	content:'';
	top: auto;
	bottom: -12px;
	left: 50%;
	transform:translatex(-50%);
	border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--accent-color);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition:all 0.3s ease-in-out;
}

.our-mission-tab .e-n-tabs-heading .e-n-tab-title:hover:after,
.our-mission-tab .e-n-tabs-heading button[aria-selected="true"]:after{
	opacity:1;
	visibility: visible;
}

.feature-image img{
	aspect-ratio: 1 / 1.12;
	object-fit: cover;
}

.feature-verticle-title{
	transform: translate(0% , -50%);
}

.feature-verticle-title .elementor-widget-container{
	background-clip: text;
}

.feature-verticle-title .elementor-heading-title{
	writing-mode: sideways-lr;
}

.why-choose-us:before{
	content: ' ';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(44.58% 68.64% at 0% 46.8%, rgba(255, 255, 255, 0.00) 0%, var(--white-color) 100%);
	z-index: 0;
}

.about-why-choose-box{
	counter-reset: section;
}

.about-why-choose-icon-box{
	counter-increment: section;
}

.about-why-choose-icon-box .elementor-widget-container{
	position: relative;
}

.about-why-choose-icon-box .elementor-widget-container:before{
	content: "0" counter(section) " ";
	position: absolute;
	top: 30px;
	right: 30px;
	left: auto;
	bottom: auto;
	width: auto;
	height: auto;
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 30px;
	font-weight: var(--e-global-typography-secondary-font-weight);
	line-height: normal;
	color: rgb(from var(--white-color) r g b / 20%);
}

.team-icon-box .elementor-icon-box-content .elementor-icon-box-description{
	display: inline-block;
	background-color: var(--white-color);
	border-radius: 5px;
	padding: 5px 20px;
}

.team-image img{
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
	object-position: top;
}

@media only screen and (max-width: 1024px){
	
	.about-why-choose-icon-box .elementor-widget-container:before{
		font-size: 26px;
	}
	
	.why-choose-us:before{
		background: rgb(from var(--white-color) r g b / 80%);
	}
	
	.team-social-icon .elementor-widget-container .elementor-social-icons-wrapper{
		gap: 0;
	}	
	
}

@media only screen and (max-width: 767px){
	
	.feature-verticle-title{
		transform: translate(-50%, -50%);
	}
	
	.feature-verticle-title .elementor-heading-title{
		writing-mode: lr;
	}
	
	.our-mission-tab .e-n-tabs .e-n-tabs-heading{
		border: none;
	}

	.our-mission-tab .e-n-tabs .e-n-tabs-heading .e-n-tab-title:last-child{
		border-width: 1px !important;
	}
	
}


/*
 * Windows Page CSS
 * */

.custom-windows-slider .elementor-swiper-button{
	margin-top: -25px;
}

.custom-windows-slider .elementor-swiper-button.elementor-swiper-button-prev{
	left: -80px !important;
}

.custom-windows-slider .elementor-swiper-button.elementor-swiper-button-next{
	right: -80px !important;
}

.custom-windows-slider .swiper-pagination .swiper-pagination-bullet{
	opacity: 1 !important;
	transition: all 0.4s ease-in-out;
}

.custom-windows-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: var(--e-global-color-secondary);
	width: 30px;
    border-radius: 10px;
}

.custom-windows-imgbox .elementor-image-box-img,
.custom-windows-imgbox .elementor-image-box-img a{
	padding: 40px 25px;
	background-color: rgb(from var(--e-global-color-secondary) r g b / 5%);
}

.custom-windows-imgbox .elementor-image-box-img a{
	width: 100%;
	display: inline-block;
}

.custom-windows-imgbox .elementor-image-box-img:has(a){
	padding: 0;
	background-color: transparent;
}

.custom-windows-imgbox .elementor-image-box-img img{
	width: 100%;
	aspect-ratio: 1 / 0.86;
	object-fit: contain;
}

.windows-options-main{
	position: relative;
	z-index: 1;
}

.windows-options-main:before{
	z-index: -2;
}

.windows-options-main:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 240px;
	background-color: var(--white-color);
	z-index: -1;
}

.windows-options-img img{
	aspect-ratio: 1 / 0.66;
    object-fit: cover;
}

body.page-id-15 .windows-options-main:after{
	height: 350px;
}

.windows-options-img-carousel .windows-options-img img{ 
	aspect-ratio: 1 / 1.21;
}

.windows-options-img-carousel .swiper-slide > .e-con.e-child,
.windows-options-img-carousel .swiper-slide > .e-con.e-child .e-con-inner > .e-con {
	height: 100%;
}

.windows-options-img-carousel .elementor-swiper-button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}

.windows-options-tag > .elementor-widget-container{
	backdrop-filter: blur(5px);
}

.our-benefits-windows-left .elementor-widget-icon-box,
.our-benefits-windows-right .elementor-widget-icon-box{
	position: relative;
}

.our-benefits-windows-left .elementor-widget-icon-box:before,
.our-benefits-windows-right .elementor-widget-icon-box:before{
	content: '';
	position: absolute;
	top: 10px;
	left: auto;
	right: -50px;
	background-color: var(--e-global-color-primary);
	mask-image: url("./images/our-benefits-windows-lines.svg");
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 53.398px;
	height: 20.803px;
}

.our-benefits-windows-left .elementor-widget-icon-box:nth-of-type(2):before{
	transform: scaleY(-1);
	top: 20px;
}

.our-benefits-windows-right .elementor-widget-icon-box:before{
	left: -60px;
	right: auto;
	transform: scaleX(-1);
}

.our-benefits-windows-right .elementor-widget-icon-box:nth-of-type(2):before{
	transform: scale(-1);
	top: 60px;
}

.our-benefits-windows-center .elementor-widget-image,
.our-benefits-windows-center .elementor-widget-image .elementor-widget-container{
	position: relative;
}

.our-benefits-windows-center .elementor-widget-image:before,
.our-benefits-windows-center .elementor-widget-image:after,
.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:before,
.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:after{
	content: '\f111';
	position: absolute;
	top: 40px;
    left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Font Awesome 5 free';
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
	color: var(--e-global-color-secondary);
	border: 1px solid rgb(from var(--e-global-color-primary) r g b / 10%);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	z-index: 1;
}

.our-benefits-windows-center .elementor-widget-image:after{
	top: auto;
	bottom: 40px;
}

.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:before{
	right: 20px;
	left: auto;
}

.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:after{
	right: 20px;
	left: auto;
	top: auto;
	bottom: 40px;
}

.benefit-boxes-wrapper .benefit-box:before{
	content: "";
	position: absolute;
	top: 0;
	left: auto;
	bottom: auto;
	right: -15px;
	width: 1px;
	height: 100%;
	background-color: rgb(from var(--e-global-color-primary) r g b / 10%);
}


.benefit-boxes-wrapper .benefit-box:after{
	content: "";
	position: absolute;
	top: 0;
	left: auto;
	bottom: auto;
	right: -19px;
	width: 9px;
	height: 9px;
	background-color: var(--accent-color);
	animation: benefit_loop-animation 4s ease-in-out infinite;
}

.benefit-boxes-wrapper .benefit-box:nth-child(even):after{
	animation: benefit_loop-animation-2 4s ease-in-out infinite;
}

.benefit-boxes-wrapper .benefit-box:last-child:before,
.benefit-boxes-wrapper .benefit-box:last-child:after{
	display: none;
}

@keyframes benefit_loop-animation {
    0% {
        top: 90%
    }

    50% {
        top: 0%
    }

    100% {
        top: 90%
    }
}

@keyframes benefit_loop-animation-2 {
    0% {
        top: 0%
    }

    50% {
        top: 90%
    }

    100% {
        top: 0%
    }
}

.custom-colours-main{
	position: relative;
	z-index: 1;
}

.custom-colours-main:before{
	width: 50%;
	left: auto;
	right: 0;
	z-index: -2;
}

.custom-colours-main:after{
	content: '';
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
	z-index: -1;
}

.custom-colours-centered-img img{
	aspect-ratio: 1 / 1.28;
    object-fit: cover;
}

.windows-grilles-tab .e-n-tabs-heading .e-n-tab-title:last-child{
	border-width: 0 !important;
}

.windows-grilles-tab .e-n-tabs-heading .e-n-tab-title:after{
	position: absolute;
	content:'';
	top: auto;
	bottom: -12px;
	left: 50%;
	transform:translatex(-50%);
	border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--accent-color);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition:all 0.3s ease-in-out;
}

.windows-grilles-tab .e-n-tabs-heading .e-n-tab-title:hover:after,
.windows-grilles-tab .e-n-tabs-heading button[aria-selected="true"]:after{
	opacity:1;
	visibility: visible;
}

.grilles-tab-img{
	height: 100%;
}

.grilles-tab-img img{
	aspect-ratio: 1 / 0.8;
    object-fit: cover;
    height: 100%;
}

.window-boxes-img{
	height: 100%;
}

.window-boxes-img:before{
	content: "";
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
	right: auto;
	height: calc(100% - 40px);
	width: 445px;
	border: 3px solid var(--e-global-color-secondary);
	z-index: -1;
	
}

.window-boxes-img img{
	aspect-ratio: 1 / 1.03;
    object-fit: cover;
    height: 100%;
}

@media only screen and (max-width: 1550px) {

	.custom-windows-slider .elementor-swiper-button.elementor-swiper-button-prev{
		left: 0 !important;
	}

	.custom-windows-slider .elementor-swiper-button.elementor-swiper-button-next{
		right: 0 !important;
	}	
}

@media only screen and (max-width: 1024px){
	
	.our-benefits-windows-left .elementor-widget-icon-box:before, 
	.our-benefits-windows-right .elementor-widget-icon-box:before{
		display: none;
	}
	
	.our-benefits-windows-center .elementor-widget-image:before, 
	.our-benefits-windows-center .elementor-widget-image:after, 
	.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:before, 
	.our-benefits-windows-center .elementor-widget-image .elementor-widget-container:after{
		display: none;
	}
	
	.windows-options-main:after{
		display: none;
	}
	
	.windows-options-img-carousel .windows-options-img img{
		aspect-ratio: 1 / 1.5;
	}
	
	.benefit-boxes-wrapper .benefit-box:nth-child(even):before,
	.benefit-boxes-wrapper .benefit-box:nth-child(even):after{
		display: none;
	}
	
	.benefit-boxes-wrapper .benefit-box:nth-child(even):after{
		animation: benefit_loop-animation 4s ease-in-out infinite;
	}
	
	.custom-colours-main:before{
		width: 100%;
		height: 35%;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.custom-colours-main:after{
		width: 100%;
		height: 35%;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	.windows-grilles-tab .e-n-tabs-heading .e-n-tab-title:last-child {
		border-width: 1px !important;
	}
	
	.windows-grilles-tab .e-n-tabs-heading .e-n-tab-title:after{
		bottom: -13px;
	}
	
	.window-boxes-wrapper{
		position: relative;
	}
	
	.window-boxes-img img{
		aspect-ratio: 1 / 0.75;
	}
	
	.window-boxes-img:before{
		width: 50%;
	}
	
}

@media only screen and (max-width: 991px) {
  
	.custom-windows-imgbox .elementor-image-box-img,
	.custom-windows-imgbox .elementor-image-box-img a{
		padding: 30px 25px;
	}

	.custom-windows-imgbox .elementor-image-box-img img{
		aspect-ratio: 1 / 0.8;
	}
	
	.custom-colours-main:before{
		height: 50%;
	}

	.custom-colours-main:after{
		height: 50%;
	}
}

@media only screen and (max-width: 767px) {
	
	.windows-options-img-carousel .swiper-slide > .e-con.e-child,
	.windows-options-img-carousel .swiper-slide > .e-con.e-child .e-con-inner > .e-con {
		height: auto;
	}
	
	.windows-options-img-carousel .windows-options-img img{
		aspect-ratio: 1 / 1.3;
	}
	
	.windows-options-img-carousel .elementor-swiper-button{
		width: 40px;
		height: 40px;
	}
	
	.custom-windows-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
		width: 25px;
	}
		
	.custom-colours-centered-img img{
		aspect-ratio: 1 / 1.2;
	}
	
	.benefit-boxes-wrapper .benefit-box:before{
		top: auto;
		left: auto;
		bottom: -7px;
		right: 0;
		width: 100%;
		height: 1px;
	}
	
	.benefit-boxes-wrapper .benefit-box:nth-child(even):before,
	.benefit-boxes-wrapper .benefit-box:nth-child(even):after{
		display: block;
	}
	
	.benefit-boxes-wrapper .benefit-box:after{
		top: auto;
		left: auto;
		bottom: -10px;
		right: 0;
		animation: benefit_loop-animation 4s ease-in-out infinite;
	}
	
	.benefit-boxes-wrapper .benefit-box:nth-child(even):after{
		animation: benefit_loop-animation-2 4s ease-in-out infinite;
	}
	
	@keyframes benefit_loop-animation {
		0% {
			left: 90%
		}

		50% {
			left: 0%
		}

		100% {
			left: 90%
		}
	}

	@keyframes benefit_loop-animation-2 {
		0% {
			right: 90%
		}

		50% {
			right: 0%
		}

		100% {
			right: 90%
		}
	}
	
}


/*
 * Door Page CSS
 * */

.doors-about-img img{
	aspect-ratio: 1 / 1.48;
    object-fit: cover;
}

.door-about-video .elementor-custom-embed-image-overlay img{
	aspect-ratio: 1 / 0.931;
    object-fit: cover;
}

.door-about-video .elementor-custom-embed-image-overlay .elementor-custom-embed-play{
	display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 50%;
	background: var(--accent-color);
}

.door-about-video .elementor-custom-embed-image-overlay .elementor-custom-embed-play i{
	opacity: 1;
	text-shadow: none;
}

.door-about-video .elementor-custom-embed-image-overlay .elementor-custom-embed-play:before,
.door-about-video .elementor-custom-embed-image-overlay .elementor-custom-embed-play:after{
	content: '';
	position: absolute;
	top: -63%;
	left: -63%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.door-about-video .elementor-custom-embed-image-overlay .elementor-custom-embed-play:after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.doors-contact-circle{
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.doors-tab-img{
	height: 100%;
}

.doors-tab-img img{
	aspect-ratio: 1 / 0.89;
    object-fit: cover;
	height: 100%;
}

.doors-tab .e-n-tabs-heading .e-n-tab-title{
	position: relative;
	transition: all 0.3s ease-in-out;
}

.doors-tab .e-n-tabs-heading .e-n-tab-title[aria-selected="false"]{
	font-weight: 400 !important;
}

.doors-tab .e-n-tabs-heading .e-n-tab-title:hover{
	font-weight: var( --e-global-typography-secondary-font-weight ) !important;
}

.doors-tab .e-n-tabs-heading .e-n-tab-title:before{
	content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: -2.5px;
    height: 5px;
    width: 100%;
    background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.door-tab-accordion .e-n-accordion .e-n-accordion-item:last-child .e-n-accordion-item-title{
	border-width: 0 !important;
}

.doors-tab .e-n-tabs-heading .e-n-tab-title:hover:before,
.doors-tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:before{
	background-color: var(--e-global-color-secondary);
}

.door-accordion-content-img img{
	aspect-ratio: 1 / 1.4;
    object-fit: contain;
}

.door-icon-box-img{
	position: relative;	
}

.door-icon-box-img:before{
	content: "";
	position: absolute;
	top: 100px;
    left: auto;
    bottom: auto;
    right: 0px;
    height: 570px;
    width: 570px;
	background: linear-gradient(135deg, rgb(from var(--e-global-color-accent) r g b / 20%) 0%, transparent 50%);
	background-repeat: no-repeat;
	border-radius: 50%;
	z-index: -1;
}

.door-icon-box-img img{
	aspect-ratio: 1 / 1.5;
    object-fit: contain;
	object-position: bottom center;
}

.door-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon{
	position: absolute;
	top: 0;
	left: 0;
	bottom: auto;
	right: auto;
}

.door-icon-box .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title{
	padding-left: var(--icon-box-icon-margin);
}

.doors-process-img:before{
	content: "";
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
	right: auto;
	width: 100px;
	height: calc(100% - 12px);
	border: 2px solid var(--e-global-color-secondary);
	z-index: -1;
}

.doors-process-img img{
	aspect-ratio: 1 / 1.01;
    object-fit: cover;
}

.doors-process-title{
	writing-mode: vertical-rl;
    transform: rotate(180deg);
    width: fit-content;
}

.doors-process-title .elementor-widget-container{
	clip-path: polygon(0 0, 100% calc(0% + 30px), 100% 100%, 0 100%);
}

.door-process-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon{
	position: absolute;
	top: 0;
	right: auto;
	left: 0;
	bottom: auto;
}

.door-process-icon-box .elementor-icon-box-content .elementor-icon-box-title{
	padding-left: var(--icon-box-icon-margin);
}

.door-process-icon-box:before{
	content: "";
	position: absolute;
	top: 0;
    left: -30px;
    bottom: auto;
    right: auto;
    width: 1px;
    height: calc(100% + 20px);
    background-color: var(--divider-color);
	transition: all 0.3s ease-in-out;
}

.door-process-icon-box-wrapper .door-process-icon-box:last-child:before{
	height: 100%;
}

.door-process-icon-box:after{
	content: "";
	position: absolute;
	top: 0;
	left: -31px;
	bottom: auto;
    right: auto;
	width: 3px;
	height: 100%;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.door-process-icon-box:hover:after{
	background-color: var(--e-global-color-secondary);
}

@media only screen and (max-width: 1440px) {
	
	.door-icon-box-img:before{
		right: 40px;
		height: 480px;
		width: 480px;
	}
	
}


@media only screen and (max-width: 1300px) {
	
	.door-icon-box-img:before{
		right: 60px;
        height: 420px;
        width: 420px;
	}
	
}

@media only screen and (max-width: 1024px) {
	
	.door-about-video .elementor-custom-embed-image-overlay img{
		aspect-ratio: 1 / 0.7;
	}
	
	.doors-tab-img img{
		aspect-ratio: 1 / 0.7;
	}
	
	.door-icon-box-img img{
		aspect-ratio: 1 / 1.3;
	}
	
	.door-icon-box-img:before{
		top: 50px;
		right: 0;
        height: 360px;
        width: 360px;
	}

	.door-process-icon-box:before{
		left: -20px;
	}

	.door-process-icon-box:after{
		left: -21px;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.doors-about-img img{
		aspect-ratio: 1 / 0.75;
	}
	
	.doors-contact-circle-wrapper{
		transform: translate(-50%, -100%);	
	}
	
	.door-accordion-content-img img{
		aspect-ratio: 1 / 1.9;
	}
	
	.door-icon-box-img:before{
		height: 300px;
        width: 300px;
	}
	
}

/*
 * Location Page CSS
 * */

.location-about-img-1 img{
	aspect-ratio: 1 / 1.12;
    object-fit: cover;
}

.location-about-img-2 img{
	aspect-ratio: 1 / 1.20;
    object-fit: cover;
}

.services-areas-list.location-services-area ul li.elementor-icon-list-item:hover{
	background-color: var(--e-global-color-secondary);
}

.modern-house-front-view-img{
	height: 100%;
}

.modern-house-front-view-img img{
	aspect-ratio: 1 / 1.31;
	object-fit: cover;
	height: 100%;
}

.modern-house-front-view-img:before{
	content: '';
    position: absolute;
    top: auto;
    left: 0;
	bottom: 0;
    right: auto;
    background-color: var(--e-global-color-secondary);
    width: 91px;
    height: calc(100% - 20px);
	z-index: -1;
}

.location-services-dot-style .elementor-icon-box-title{
	position: relative;
	padding-left: 20px;
}

.location-services-dot-style .elementor-icon-box-title:before{
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	background-color: var(--accent-color);
	width: 8px;
	height: 8px;
}

.location-services-dot-style .elementor-icon-box-description{
	border-top: 1px solid  rgb(from var(--e-global-color-primary) r g b / 10%);
	padding-top: 20px;
}

.triangle-img-box-left,
.triangle-img-box-right{
	position: relative;
	z-index: 1;
}

.triangle-img-box-left:before{
    left: auto;
    right: 0;
	width: 75%;
	height: 100%;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	z-index: 0;
}

.triangle-img-box-right:before{
	left: 0;    
	width: 75%;
	height: 100%;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	z-index: 0;
}

.triangle-img-box-left:after,
.triangle-img-box-right:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--e-global-color-primary);
	opacity: 0.2;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.location-why-choose-us img{
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
}

.location-whus-counter{
	height: var(--container-widget-width);
}

.location-whus-counter .elementor-widget-container{
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-whus-counter .elementor-counter-title{
	text-align: center;
}

@media only screen and (max-width: 1466px) {
	
	.triangle-img-box-left:before,
	.triangle-img-box-right:before{
		width: 100%;
	}
	
}

@media only screen and (max-width: 1320px) {
	
	.service-boxe-area{
		padding-left: 20px;	
	}
}

@media only screen and (max-width: 1024px) {
	
	.location-about-img-1 img{
		aspect-ratio: 1 / 1.35;
		object-fit: cover;
	}

	.location-about-img-2 img{
		aspect-ratio: 1 / 1.25;
		object-fit: cover;
	}
	
	.modern-house-front-view-img,
	.modern-house-front-view-img img{
		height: auto;
	}
	
	.modern-house-front-view-img img{
		aspect-ratio: 1 / 1.1;
	}
	
	.triangle-img-box-left:before,
	.triangle-img-box-right:before{
		clip-path: unset;
	}
}

@media only screen and (max-width: 767px){
	
	.location-about-img-1 img{
		aspect-ratio: 1 / 1.1;
	}
	
	.location-about-text-path.doors-contact-circle-wrapper{
		transform: translate(0);
	}
	
	.location-services-dot-style .elementor-icon-box-description{
		padding-top: 15px;
	}
}



/*
 * Gallery List Page
 * */

.gallery-tab .e-n-tabs-heading .e-n-tab-title{
	position: relative;
	z-index: 1;
}

.gallery-tab .e-n-tabs-heading .e-n-tab-title:not(:first-child){
	margin-left: -1px;
}

.gallery-tab .e-n-tabs-heading .e-n-tab-title:before{
	content: '';
	position: absolute;
	top: auto;
	left: 50%;
	bottom: -13px;
	background-color: var(--accent-color);
	clip-path: path("M24 0L0 -1.04907e-06L12 12L24 0Z");
	width: 24px;
	height: 12px;
	opacity: 0;
	transform: translateX(-50%);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}

.gallery-tab .e-n-tabs-heading .e-n-tab-title:hover:before,
.gallery-tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:before{
	opacity: 1;
}

.gallery-tab-img-box .elementor-image-box-wrapper{
	line-height: 0;
}

.gallery-tab-img-box .elementor-image-box-img a{
	display: block;
}

.gallery-tab-img-box .elementor-image-box-img img{
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
}

.gallery-tab-img-box .elementor-image-box-content{
	position: relative;
	background-color: var(--e-global-color-secondary);
	border: 2px solid var(--white-color);
	margin: -25px 30px 0;
	width: calc(100% - 60px) !important;
	z-index: 1;
}

.gallery-tab-img-box .elementor-image-box-content h3 a{
	display: block;
	padding: 11px 20px;
}

@media only screen and (max-width: 1024px){
	
}

@media only screen and (max-width: 767px){
	
	.gallery-tab-img-box .elementor-image-box-img img {
		aspect-ratio: 1 / 0.8;
		object-fit: cover;
	}
	
	.gallery-tab-img-box .elementor-image-box-content{
		margin: -22.795px 20px 0;
		width: calc(100% - 40px) !important;
	}
	
	.gallery-tab-img-box .elementor-image-box-content h3 a{
		padding: 10px;
	}
	
}

/*
 * Gallery Single Page CSS
 * */

.gallery-sub-page-gallery .e-gallery-container .elementor-gallery-item__overlay:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: url("./images/search-icon.svg") no-repeat center center;
	background-size: contain;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.gallery-sub-page-gallery .e-gallery-container .elementor-gallery-item:hover .elementor-gallery-item__overlay:before{
	opacity: 1;
}

@media only screen and (max-width: 1024px){
	
}

/* 
 * Blog Archive CSS 
 * */

.blog-loop-grid .e-loop-item > .e-con{
	height: 100%;
}

.blog-loop-grid .blog-featured-img img{
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
}

.blog-loop-grid .author-profile-photo img{
	width: 100%;
	max-width: 24px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.blog-loop-grid .blog-loop-btn.elementor-widget-button .elementor-button:hover .elementor-button-icon svg,
.blog-loop-grid .blog-loop-btn.elementor-widget-button .elementor-button:focus .elementor-button-icon svg{
	fill: var(--accent-color);
}

.blog-loop-grid .elementor-pagination{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.blog-loop-grid .elementor-pagination .page-numbers{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:  rgb(from var(--e-global-color-secondary) r g b / 5%);
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.blog-loop-grid .elementor-pagination .page-numbers.current,
.blog-loop-grid .elementor-pagination .page-numbers:hover,
.blog-loop-grid .elementor-pagination .page-numbers:focus{
	background-color: var(--accent-color);
	color: var(--white-color) !important;
}

.blog-loop-grid .elementor-pagination span.prev,
.blog-loop-grid .elementor-pagination span.next{
	display: none;
}

.blog-loop-grid .elementor-pagination .page-numbers.prev,
.blog-loop-grid .elementor-pagination .page-numbers.next{
	font-size: 0;
	position: relative;
}

.blog-loop-grid .elementor-pagination .page-numbers.prev:before,
.blog-loop-grid .elementor-pagination .page-numbers.next:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--e-global-color-primary);
	mask-image: url("./images/left.svg");
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 9.121px;
	height: 15.414px;
	transition: all 0.3s ease-in-out;
	transform: translate(-50%, -50%);
}

.blog-loop-grid .elementor-pagination .page-numbers.next:before{
	mask-image: url("./images/right.svg");
}

.blog-loop-grid .elementor-pagination .page-numbers.prev:focus:before,
.blog-loop-grid .elementor-pagination .page-numbers.next:focus:before,
.blog-loop-grid .elementor-pagination .page-numbers.prev:hover:before,
.blog-loop-grid .elementor-pagination .page-numbers.next:hover:before{
	background-color: var(--white-color);
}


@media only screen and (max-width: 1024px){

	
}

@media only screen and (max-width: 767px){

	.blog-loop-grid .e-loop-item > .e-con{
		height: auto;
	}
	
	.blog-loop-grid .elementor-pagination .page-numbers{
		width: 35px;
		height: 35px;
	}
}

/* 
 * Author Archive Page
 * */

body.archive.author .author-profile-photo img{
	width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.author-social-media{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-social-media li{
	line-height: 0;
}

.author-social-media li a{
	font-size: 0;
	position: relative;
}

.author-social-media li a:before{
	content: '\f39e';
	display: flex;
	align-items: center;
	justify-content: center;
    font-family: 'Font Awesome 5 Brands';
    font-size: 20px;
    font-weight: 400;
	line-height: 1em;
	background-color: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;	
	transition: all 0.3s ease-in-out;
}

.author-social-media li a:hover:before{
	color: var(--white-color);
	background-color: var(--e-global-color-accent);
}

.author-social-media li.instagram a:before{
	content: '\f16d';
}

.author-social-media li.linkedin a:before{
	content: '\f0e1';
}

.author-social-media li.youtube a:before{
	content: '\f167';
}

@media only screen and (max-width: 1024px){

	.author-social-media{
		justify-content: center;
	}
	
}

@media only screen and (max-width: 1024px){

	.author-social-media{
		justify-content: center;
	}
	
	.author-social-media li a:before{
		font-size: 17px;
		width: 35px;
		height: 35px;
	}
	
}

/*
 * Blog Single CSS
 * */

.blog-single-featured-img img{
	aspect-ratio: 1 / 0.45;
	object-fit: cover;
}

.post-single-author-img img{
	width: 100%;
	max-width: 24px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.post-entry .elementor-blockquote{
	padding: 20px 20px 20px 100px !important;
}

.post-entry .elementor-blockquote:before{
	position: absolute;
	top: 10px;
	left: 30px;
}

.post-entry .elementor-blockquote--skin-quotation .elementor-blockquote__content{
	margin-top: 0;
}

@media only screen and (max-width: 1024px){
	
	.blog-single-featured-img img {
		aspect-ratio: 1 / 0.66;
		object-fit: cover;
	}
	
	.post-entry .elementor-blockquote{
		padding: 20px 20px 20px 80px !important;
	}
	
	.post-entry .elementor-blockquote:before{
		position: absolute;
		top: 10px;
		left: 15px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.blog-single-featured-img img {
		aspect-ratio: 1 / 1.1;
		object-fit: cover;
	}
	
	.post-entry .elementor-blockquote {
		padding: 70px 20px 20px 20px !important;
	}
	
	.post-entry .elementor-blockquote:before {
		position: absolute;
		top: 5px;
		left: 20px;
	}
	
	
}

/* 
 * Gravity Form CSS
 * */

.gform_wrapper .gform_heading{
	display: none;
}

.gform_wrapper form .gform-body .gform_fields{
	row-gap: 30px;
	column-gap: 30px;
	--gf-field-gap-x: 30px;
	--gf-field-gap-y: 30px;
}

.gform_wrapper form .gform-body .gform_fields .gfield{
	border-radius: 0;
    box-shadow: none;
}

.gform_wrapper form .gform-body .gform_fields .gfield label{
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--e-global-typography-secondary-line-height);
	color: var(--e-global-color-primary);
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea{
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 14px;
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
	color: var(--e-global-color-text);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border: 0;
	border-radius: 0;
    box-shadow: none;
	height: auto;
	padding: 14.5px 20px;
}

.gform_wrapper form .gform-body .gform_fields .gfield .gfield_required{
	display: none;
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input::placeholder,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select::placeholder,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea::placeholder{
	color:  rgb(from var(--e-global-color-text) r g b / 50%);
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select{
	background-image: var(--gf-ctrl-select-icon);
    background-position: var(--gf-ctrl-select-icon-position);
    background-repeat: no-repeat;
    background-size: var(--gf-ctrl-select-icon-size);
}

/* If Placeholder Color Was Opacity */
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select[data-gtm-form-interact-field-id="0"]{
	color: var(--e-global-color-text);
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select option{
	background-color: var(--white-color);
}

.gform_wrapper .gform-grid-row{
	margin-inline: 0;
	column-gap: var(--gf-field-gap-x);
	row-gap: var(--gf-field-gap-y);
}

.gform_wrapper .gfield--type-address .gform-grid-row{
	row-gap: 0;
}

.gform_wrapper .gform-grid-col{
	padding-inline: 0;
}

.gform_wrapper .address_line_1,
.gform_wrapper .ginput_address_city, 
.gform_wrapper .ginput_address_state{
	margin-bottom: var(--gf-field-gap-y);
}

.gform_wrapper .ginput_address_city, 
.gform_wrapper .ginput_address_country, 
.gform_wrapper .ginput_address_state, 
.gform_wrapper .ginput_address_zip{
	inline-size: calc(50% - 15px);
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-date .ginput_container_date{
	position: relative;
	flex-direction: column;
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-date .ginput_container_date img{
	position: absolute;
	top: 50%;
	left: auto;
	right: 20px;
	opacity: 1;
	transform: translateY(-50%);
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-date .ginput_container_date input{
	width: 100%;
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-time .ginput_container{
	column-gap: 0;
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-time .ginput_container .gform-grid-col{
	inline-size: 50%;
}

.gform_wrapper form .gform-body .gform_fields .gfield--type-number .ginput_container .instruction {
	display: none;
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select:focus,
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus,
.gform_wrapper form .gform_footer .gform_button:focus,
.gform_wrapper form .gfield .gform-button:focus{
	outline: none !important;
	box-shadow: none;
}

.gform-theme--foundation .gfield textarea.large{
	min-block-size: auto;
}

.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea{
	height: 150px;
}

.gform_wrapper form .gform-body .gform_fields .gfield .validation_message.gfield_validation_message{
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 14px;
    font-weight: 500;
	line-height: var(--e-global-typography-text-line-height);
    text-transform: capitalize;
    letter-spacing: 0.02em;
	color: #C8221E;
	margin-top: 0;
}

.contact-us-form .gform_validation_errors{
	padding: 10px;
	margin-bottom: 20px;	
}

.gform_wrapper form .gform_footer{
	--gf-form-footer-margin-y-start: 30px;
	justify-content: flex-start;
}

.gform_wrapper form .gform_footer .gform_button,
.gform_wrapper form .gfield .gform-button{
	text-align: center;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-accent-font-size) !important;
    font-weight: var(--e-global-typography-accent-font-weight) !important;
	text-transform: var(--e-global-typography-accent-text-transform) !important;
    font-style: var(--e-global-typography-accent-font-style) !important;
    line-height: var(--e-global-typography-accent-line-height) !important;
    color: var(--white-color) !important;
    background-color: var(--e-global-color-accent) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px !important;
    transition: all 0.3s ease-in-out !important;
	box-shadow: none;
}

.gform_wrapper form .gform_footer .gform_button:hover,
.gform_wrapper form .gfield .gform-button:hover{
	background-color: var(--accent-color) !important;
}

.gform_wrapper form .gform_footer .gform-loader,
.gform_wrapper form .gform-loader{
	display: none !important;
	--gf-color-primary-rgb: 21,100,155;
	--gf-form-spinner-bg-color: rgba(var(--gf-color-primary-rgb), 0.1) !important;
	border-block-end-color: var(--e-global-color-primary);
	border-block-start-color: var(--gf-form-spinner-bg-color);
    border-inline-end-color: var(--gf-form-spinner-bg-color);
    border-inline-start-color: var(--e-global-color-primary);
}

.gform_wrapper .gform_validation_errors{
	padding: 10px;
    margin-bottom: 30px;
}

.gform_wrapper .gform_validation_errors h2.gform_submission_error{
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-size: var(--e-global-typography-text-font-size);
	font-weight: 500;
    line-height: 1.2em;
}

.gform_wrapper .gform_confirmation_message{
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 30px;
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    color: var(--e-global-color-primary);
}

/**/
.request-form form{
	background-color: var(--white-color);
	padding: 20px;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
}

.request-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input{
	font-size: 14px;
	background-color: #F6F9FD;
	border: 2px solid #F6F9FD;
}

.request-form .gform_wrapper form .gform-body .gform_fields .gfield.gfield_error .ginput_container input{
	border-color: #C8221E;
}

.request-form .gform_wrapper form .gfield .gform-button{
	border: 1px solid var(--e-global-color-accent) !important;
}

.request-form .gform_wrapper form .gfield .gform-button:hover{
	border-color: var(--accent-color) !important;
}

.request-form .gform_wrapper form .gform_footer{
	--gf-form-footer-margin-y-start: 0;
}

.request-form .gform_wrapper form .gform-body .gform_fields .gfield .instruction,
.request-form .gform_wrapper form .gform-body .gform_fields .gfield .validation_message.gfield_validation_message,
.request-form .gform_wrapper .gform_validation_errors{
	display: none;
}

/* 
 * Footer CSS 
 * */

.footer-form .gform_wrapper form{
	border-bottom: 1px solid rgb(from var(--white-color) r g b / 10%);
	padding-bottom: 15px;
}

.footer-form .gform_wrapper.gform_validation_error form{
	border-color: #C8221E;
}

.footer-form .gform_wrapper form .gform-body .gform_fields{
	column-gap: 0;
}

.footer-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input{
	background-color: transparent;
	color: var(--white-color);
	padding: 0 !important;
}

.footer-form .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input::placeholder{
	color:  rgb(from var(--white-color) r g b / 80%);
}

.footer-form .gform_wrapper form .gform-body .gform_fields .gfield--type-submit{
	justify-content: end;
}

.footer-form .gform_wrapper form .gform-body .gform_fields .gfield--type-submit input{
	font-size: 0 !important;
	background-color: var(--accent-color) !important;
	background-image: url("./images/footer-form-arrow.svg") !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: 5px auto !important;
	width: 24px;
	min-height: 24px;
	padding: 0 !important;
}

.footer-form .gform_wrapper form .gform_footer{
	--gf-form-footer-margin-y-start: 0;
}

.footer-form .gform_wrapper .gform_validation_errors,
.footer-form .gform_wrapper form .gform-body .gform_fields .gfield .validation_message.gfield_validation_message{
	display: none;
}


@media only screen and (max-width: 1024px){
	
	.gform_wrapper .gform_confirmation_message{
		font-size: 24px;
	}
	
	/* Request Form CSS */
	.request-form .gform_wrapper.gform-theme--foundation .gfield--width-quarter{
		grid-column: span 6;
	}
	
}

@media only screen and (max-width: 767px){
	
	.gform_wrapper form .gform-body .gform_fields{		
		column-gap: 0;
		row-gap: 20px;
		--gf-field-gap-x: 0;
		--gf-field-gap-y: 20px;
	}
	
	.gform_wrapper form .gform_footer{
		--gf-form-footer-margin-y-start: 20px;
	}
	
	.gform_wrapper form .gform-body .gform_fields .gfield .validation_message.gfield_validation_message{
		font-size: 12px;
	}
	
	/* Request Form CSS */
	.request-form .gform_wrapper.gform-theme--foundation .gfield--width-quarter{
		grid-column: 1 / -1;
	}
	
	/* Footer Form CSS */
	
	.footer-form .gform_wrapper form .gform-body .gfield--type-email{
		grid-column: span 10;
	}
	
	.footer-form .gform_wrapper form .gform-body .gfield--type-submit{
		grid-column: span 2;
	}
	
}


/* Google Review Testimonial CSS */
#sb-reviews-container-1 {
	filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.10));
}

.sbr-owl-stage {
	padding: calc(var(--column-gutter) / 2) 0 !important;
}

.sbr-owl-item {
	padding: calc(var(--column-gutter) / 2) !important;
}

.sb-post-item {
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.sb-post-item:before{
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	background-color: var(--e-global-color-primary);
	mask-image: url("./images/quote.svg");
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 31px;
	height: 24px;
	transition: all 0.4s ease-in-out;
}

.sb-post-item:hover:before{
	background-color: var(--white-color);
}

.sb-post-item:hover{
	background-color: var(--e-global-color-secondary);
}

.sb-post-item .sb-item-provider-icon {
	display: none;
}

.sb-post-item .sb-item-author-date-ctn {
	margin-top: 30px !important;
	padding-top: 30px !important;
	border-top: 1px solid #7C7B7B24;
	padding-right: 0 !important;
	
}

.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn {
	align-items: center;
	gap: 10px;
}

.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-author-img {
	width: 50px;
	min-width: 50px;
	height: 50px;
}

.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-name {
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
	letter-spacing: 0px;
	text-transform: uppercase;
	margin: 0px 0px 4px 0px !important;
	transition: all 0.3s ease-in-out;
}

.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-date {
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
	text-transform: none;
	transition: all 0.3s ease-in-out;
}

.sb-post-item .sb-item-rating {
	margin: 60px 0 30px !important;
}

.sb-post-item .sb-item-rating .sb-relative {
	line-height: 0;
}

.sb-post-item .sb-item-rating .sb-relative .sb-item-rating-ctn .sb-item-rating-icon svg {
	margin: 0 4px;
}

.sb-post-item .sb-item-rating .sb-relative .sb-item-rating-ctn .sb-item-rating-icon:first-child svg{
	margin-left: 0;
}

.sb-post-item .sb-item-text {
	color: var(--e-global-color-text) !important;
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	transition: all 0.3s ease-in-out;
}

.sb-post-item .sb-item-text a {
	color: inherit;
}

#sb-reviews-container-1 .sb-post-item:hover .sb-item-author-date-ctn{
	border-color: #FFFFFF24;
}

#sb-reviews-container-1 .sb-post-item:hover .sb-item-rating,
#sb-reviews-container-1 .sb-post-item:hover .sb-item-text,
#sb-reviews-container-1 .sb-post-item:hover .sb-item-author-name,
#sb-reviews-container-1 .sb-post-item:hover .sb-item-author-date{
	color: var(--white-color) !important;
}


.sbr_carousel .sbr-owl-nav>div {
	--google-review-arrow: -15px;
	top: 50%;
	left: var(--google-review-arrow);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--e-global-color-secondary);
	color: var(--white-color);
	border: 3px solid var(--white-color);
	border-radius: 0;
	padding: 0;
	margin: 0;
	width: 50px;
	height: 50px;
	transform: translateY(-50%) !important;
	transition: all 0.3s ease-in-out;
	box-shadow: none;
}

.sbr_carousel .sbr-owl-nav>div:hover{
	background: var(--accent-color) !important;
}

.sbr_carousel .sbr-owl-nav>div svg path{
    fill: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sbr_carousel .sbr-owl-nav>.sbr-owl-next {
	left: auto;
	right: var(--google-review-arrow);
}

.sbr_carousel:hover .sbr-owl-nav>div {
	background: var(--e-global-color-secondary);
	box-shadow: none;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 1700px) {

	.sbr_carousel .sbr-owl-nav>div {
		--google-review-arrow: -50px;
	}
}

@media only screen and (max-width: 1440px) {

	.sbr_carousel {
		padding-bottom: 80px;
	}

	.sbr_carousel .sbr-owl-nav>div {
		--google-review-arrow: calc(50% - 60px);
		top: auto;
		bottom: 0;
		transform: translateY(0) !important;
	}
}

@media only screen and (max-width: 1024px) {

	/* Google Review Testimonial CSS */

	.sbr_carousel {
		padding-bottom: 60px;
	}

	#sb-reviews-container-1 {
		--column-gutter: 20px;
	}

	.sb-post-item {
		padding: 15px;
	}
	
	.sb-post-item:before{
		top: 20px;
		left: 20px;
	}

	.sb-post-item .sb-item-rating {
		margin: 60px 0 20px !important;
	}
	
	.sb-post-item .sb-item-author-date-ctn{
		margin-top: 20px !important;
		padding-top: 20px !important;
	}

	.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-name {
		font-size: 16px !important;
	}

	.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-date {
		font-size: 14px !important;
	}

	.sbr_carousel .sbr-owl-nav>div {
		--google-review-arrow: calc(50% - 60px);
	}

}

@media only screen and (max-width: 767px) {

	/* Google Review Testimonial CSS */

	.sbr_carousel {
		padding-bottom: 50px;
	}

	.sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-author-img {
		width: 40px;
		min-width: 40px;
		height: 40px;
	}
	
	.sb-post-item:before{
		top: 15px;
		left: 15px;
		width: 26px;
		height: 20px;
	}

	.sb-post-item .sb-item-rating {
		margin: 40px 0 15px !important;
	}

	.sbr_carousel .sbr-owl-nav>div {
		--google-review-arrow: calc(50% - 45px);
		width: 40px;
		height: 40px;
		background-size: 14px auto !important;
	}
}














