/* **********************************************************
 * SECTION COLUMN STYLES
 * ******************************************************** */
 

/* *****************************
 * SECTION MULTIPLY OVERLAY
 * *************************** */
.bg-overlay-multiply:before {
	mix-blend-mode: multiply !important;
}


/* *****************************
 * SEARCH BAR ROW - like on Blog, Blog Category, Shop
 * *************************** */
.search-col, 
.search-col .site-search,
.search-col .jet-search, 
.search-col .jet-ajax-search,
.search-col .jet-ajax-search__form,
.view-all-col,
.btn-archive-view-all a {
    height: 100% !important;
    width: 100%;	
}
.btn-archive-view-all .elementor-button-wrapper,
.btn-archive-view-all .ha-creative-btn-wrap {
	display: flex;
    width: 100%;
}


/* *****************************
 * PARALLAX SECTION BACKGROUND
 * *************************** */
.section-bg-parallax {
	/* Adjust the Effect */
    transform: translateZ(-1px) scale(1.15); 
    background-position: center !important;
    position: absolute;
}


/* *****************************
 * FIXED BACKGROUND - OVERRIDE SO ALSO FIXED ON MOBILE
 * Add the class bg-fixed to the section - adjust as needed
 * *************************** */
.bg-fixed,
.bg-fixed .elementor-background-overlay,
.bg-fixed:before {
    background-attachment: fixed !important;
    transform: translateZ(1);
}
.ios .bg-fixed,
.ios .bg-fixed .elementor-background-overlay,
.ios .bg-fixed:before {
    background-attachment: scroll !important;
    transform: translateZ(0); /* This can help with rendering */
}
html:not(.ios) .bg-fixed,
html:not(.ios) .bg-fixed .elementor-background-overlay,
html:not(.ios) .bg-fixed:before {
    background-attachment: fixed !important;
}
@media (max-width: 1040px) {
	.mac .bg-fixed,
	.mac .bg-fixed .elementor-background-overlay,
	.mac .bg-fixed:before,
	.ios .bg-fixed,
	.ios .bg-fixed .elementor-background-overlay,
	.ios .bg-fixed:before {
		background-attachment: scroll !important;
		transform: translateZ(0);
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}
}


/* ******************************
 * FIXED BACKGROUND - APPLE LANDSCAPE TWEAK
 * *************************** */
/* SAFARI */
@media only screen and (orientation: landscape) {
    .e--ua-appleWebkit.e--ua-safari .elementor-element.e-con::before {
        background-attachment: intial !important;
    }
}

/* OTHERS */
@media only screen and (orientation: landscape) {
    .e--ua-appleWebkit .elementor-element.e-con::before {
       background-attachment: initial !important;
    }
}


/* *****************************
 * COLUMN GRADIENT - use col-hover and colorX class on the column and change colors below, can add extra classes for different columns w/different colors
 e.g. Z Demo Content Page Custom Hover Image Boxes
 * *************************** */
.col-hover .elementor-widget-wrap.elementor-element-populated {
    background-color: transparent !important;
    background-image: none !important;
	overflow: hidden;
}
.col-hover .elementor-widget-wrap.elementor-element-populated:before,
.col-hover .elementor-widget-wrap.elementor-element-populated:after {
	content: "";
    display: block;
    position: absolute;
	margin: 1px;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    width: auto;
    height: auto;
	z-index: -1;	
	transition: all .5s ease-out;
}
.col-hover .elementor-widget-wrap.elementor-element-populated:before {
    z-index: -1;
	opacity: 1;
}
.col-hover .elementor-widget-wrap.elementor-element-populated:after {
    z-index: -1;
	opacity: 0;
}
.col-hover .elementor-widget-wrap.elementor-element-populated:hover:before {
	opacity: 0;
}
.col-hover .elementor-widget-wrap.elementor-element-populated:hover:after {
	 opacity: 1;
}
.col-hover.color1 .elementor-widget-wrap.elementor-element-populated:before {
	background-color: #99000050;
    background-image: linear-gradient(180deg, #fff 0%, #99000022 100%);
}
.col-hover.color1 .elementor-widget-wrap.elementor-element-populated:after {
	background-color: #99000050;
    background-image: linear-gradient(180deg, #99000022 0%, #fff 100%);	
}
.col-hover.color2 .elementor-widget-wrap.elementor-element-populated:before {
	background-color: #aaaaaa50;
    background-image: linear-gradient(180deg, #fff 0%, #aaaaaa22 100%);
}
.col-hover.color2 .elementor-widget-wrap.elementor-element-populated:after {
	background-color: #aaaaaa50;
    background-image: linear-gradient(180deg, #aaaaaa22 0%, #fff 100%);	
}


/* *****************************
 * FOR SECTIONS WITH 2 COLS - 1 FULL WIDTH 1 BOXED WIDTH - on Z Demo Content Pg
 * IMPORTANT!!! Change WIDTH BELOW to the TO THE MAX-WIDTH REM ADDED ABOVE in Site Settings > Layout
 * *************************** */
.full-container-boxed-col,
.alt-cols-full-boxed .boxed-col {
	max-width: calc(106rem / 2); /* set site boxed width & divide by 2 */
}

@media (max-width: 1024px){
	.full-container-boxed-col,
	.alt-cols-full-boxed .boxed-col {
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}
}


/* *****************************
 * SECTION CONTENT COLUMNS with INNER SECTION with PADDED COLUMNS 
   e.g. Z Demo Content Page - Services We Offer Cols
 * *************************** */
.section-content-cols.elementor-section.elementor-section-boxed > .elementor-container,
.section-content-cols.elementor-section.elementor-section-boxed > .elementor-container .inner-section-padded-cols .elementor-container {
	max-width: 77rem !important;
}
.inner-section-padded-cols {
    margin-left: -1rem; 
    margin-right: -1rem;	
}

@media (min-width: 1024px) {
	/* Equal Height */
	.section-content-cols .elementor-column.content-col {
		height: 100% !important;
	}
	.section-content-cols .elementor-inner-section .elementor-column-wrap {
		height: 100%;
		flex-direction: column;
	}
	.section-content-cols .inner-section-padded-cols .elementor-widget-wrap {
		height: 100%;
		flex-direction: column;
	}
	.section-content-cols .elementor-widget-icon {
	    margin-top: auto !important;
		padding: 1rem;
	}
}

@media (max-width: 1024px) {
	/* CONTENT COLUMNS */
	.section-content-cols .content-col.last {
		margin: 0 auto;
	}
}


/* *****************************
 * SECTION 3 COL INSET SHADOWS - like Contact
 * *************************** */
.section-3-cols .col1 {
    border-left: 0px solid #333 !important;
    border-right: 1px solid #000 !important; 
}
.section-3-cols .col2 {
    border-left: 1px solid #333 !important;
    border-right: 1px solid #000 !important;    
}
.section-3-cols .col3 {
    border-left: 1px solid #333 !important;
    border-right: 0px solid #000 !important;
}

@media (max-width:767px) {
    .section-3-cols .col1 {
        border-left: 0px solid #444 !important;
        border-right: 0px solid #000 !important; 
        border-top: 1px solid #444 !important; 
        border-bottom: 1px solid #000 !important;         
    }
    .section-3-cols .col2 {
        border-left: 0px solid #444 !important;
        border-right: 0px solid #000 !important;
        border-top: 1px solid #444 !important;        
        border-bottom: 1px solid #000 !important;        
    }
    .section-3-cols .col3 {
        border-left: 0px solid #444 !important;
        border-right: 0px solid #000 !important;  
        border-top: 1px solid #444 !important;         
    }   
}

.hero {
	position: relative;
}

.hero .hero-content {
	position: relative;
	top: 75px !important;
}

.hero .hero-slider {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.hero .hero-slider .slick-list {
	height: 100%;
}

.hero .hero-slider .slick-track {
	height: 100%;
}

.hero .hero-slider .hero-slide {
	height: 100%;
	width: 100%;
}

.hero .hero-slider .slick-dots {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	list-style: none;
	display: flex;
	gap: 15px;
}

@media screen and (max-width: 1024px) {
	
	.hero .hero-slider .slick-dots { 
		justify-content: center; 
		flex-direction: row;
		width: 100%;
	}
	
}

@media screen and (max-width: 575px) {
	
	.hero .hero-content {
		position: relative;
		top: 0px !important;
	}
	
}

.hero .hero-slider .slick-dots li button {
	background-color: transparent;
	border: 0;
	color: #fff;
	font-size: 18px;
	padding: 0 20px;
	text-shadow: 0px 0px 30px rgba(255, 255, 255, 0);
	opacity: 0.5;
	cursor: pointer;
}

.hero .hero-slider .slick-dots li.slick-active button {
	opacity: 1;
	text-shadow: 1px 1px 12px rgba(255, 255, 255, 0.9);
}

.home-s1 {
	position: relative;
}

.has-sand-bg .sand-bg {
	position: absolute;
	top: 0;
	left: 50%;
	height: 542px;
	width: 100%;
	transform: translatex(-50%);
	background-color: #F2E8DA;
}

.has-sand-bg .sand-bg.sand-bg-sm {
	height: 430px;
}

.home-s1 .sv-outer .sv-inner {
	position: relative;
}

.home-s1 .sv-outer .sv-inner .sv-hover-content {
	height: 0;
/* 	max-height: 300px; */
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

/* @media screen and (max-width: 1440px) {
	
	.home-s1 .sv-outer .sv-inner .sv-hover-content {
		height: 0;
		max-height: 320px;
		overflow: hidden;
		transition: all 0.3s ease-in-out;
	}
	
}

@media screen and (max-width: 1200px) {
	
	.home-s1 .sv-outer .sv-inner .sv-hover-content {
		height: 0;
		max-height: 380px;
		overflow: hidden;
		transition: all 0.3s ease-in-out;
	}
	
} */

.home-s1 .sv-outer .sv-inner .sv-hover-content .hover-text {
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.home-s1 .sv-outer .sv-inner .sv-hover-content .hover-btn {
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.home-s1 .sv-outer .sv-inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	background-color: #000000;
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.home-s1 .sv-outer .sv-inner:hover:before {
	opacity: 0.8;
}

/* .home-s1 .sv-outer .sv-inner:hover .sv-hover-content {
	height: 220px;
} */

.home-s1 .sv-outer .sv-inner:hover .sv-hover-content .hover-text {
	opacity: 1;
}

.home-s1 .sv-outer .sv-inner:hover .sv-hover-content .hover-btn {
	opacity: 1;
}

@media screen and (max-width: 1024px) {
	
	.home-s1 .sv-outer .sv-inner .sv-hover-content {
		height: auto;
	}

	.home-s1 .sv-outer .sv-inner .sv-hover-content .hover-text {
		opacity: 1;
	}

	.home-s1 .sv-outer .sv-inner .sv-hover-content .hover-btn {
		opacity: 1;
	}
	
}

.home-s1 .slick-slider .slick-arrow {
	background-color: transparent;
	border: 0;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	padding: 16px;
	cursor: pointer;
}

.home-s1 .slick-slider .slick-arrow:hover {
	background-color: transparent;
	border: 0;
}

.home-s1 .slick-slider .slick-arrow img {
	height: 32px;
	width: 32px;
}


.home-s1 .slick-slider .slick-arrow.slick-prev {
	left: -3rem;
}

.home-s1 .slick-slider .slick-arrow.slick-next {
	right: -3rem;
}

.home-s1 .slick-slider .slick-dots {
	display: flex;
	justify-content: center; 
	gap: 12px;
}

.home-s1 .slick-slider .slick-dots {
	list-style-type: none;
	padding: 0;
}

.home-s1 .slick-slider .slick-dots li button {
	font-size: 0;
	border: 1px solid #000;
	background-color: transparent;
	padding: 0 1rem;
	border-radius: 50%;
}

.home-s1 .slick-slider .slick-dots li.slick-active button {
	background-color: #000;
}

.home-s2 .s2-bullet-point {
	position: relative;
}

.home-s2 .s2-bullet-point:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 200rem;
	background-color: #00adf1;
}

@media screen and (max-width: 1024px) {
	
	.home-s2 .s2-bullet-point:after {
		left: 50%;
		transform: translatex(-50%);
		width: 50%;
	}
	
	.home-s1 .slick-slider .slick-dots li button {
		padding: 0;
		height: 16px;
		width: 16px;
	}
	
}

.home-s3 {
	position: relative;
}

.home-s3 .us-map {
	position: absolute;
	top: 45.6%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 795px;
	width: 100%;
	max-width: 1374px;
}

@media screen and (max-width: 1024px) {
	
	.home-s3 .us-map {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		height: auto;
	}
	
}

/* .home-s3 .s3-content {
	position: relative;
	top: -16px;
} */

.home-s4 {
	position: relative;
}

.home-s4 .s4-bg {
	position: absolute;
	top: 0;
	left: 50%;
	height: 874px;
	transform: translateX(-50%);
}

.home-s4 .pj-outer {
	position: relative;
	width: 386px;
	min-height: 452px;
	max-height: 452px;
	padding: 16px;
}

.home-s4 .pj-outer:nth-of-type(2),
.home-s4 .pj-outer:nth-of-type(4) {
	top: 138px;
}

.home-s4 .pj-outer:nth-of-type(1) {
	padding-left: 0;
}

.home-s4 .pj-outer:nth-of-type(5) {
	padding-right: 0;
}

.home-s4 .pj-outer .pj-inner {
/* 	min-height: inherit !important; */
	height: 100%;
	max-height: inherit;
	box-shadow: 0px 0px 11px 0px #00000069;
	position: relative;
}

.home-s4 .pj-outer .pj-inner:before {
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0;
	z-index: 1;
}

.home-s4 .pj-outer .pj-inner .pj-hover {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.home-s4 .pj-outer .pj-inner:hover:before {
	opacity: 0.8;
}

.home-s4 .pj-outer .pj-inner:hover .pj-hover {
	top: 50%;
	opacity: 1;
}

@media screen and (max-width: 1024px) {
	
	.home-s4 .pj-outer {
		width: 50%;
		min-height: 452px;
		max-height: 452px;
		padding: 16px;
	}
	
	.home-s4 .pj-outer .pj-inner .pj-hover {
		position: relative;
		top: 0;
		left: 0;
		opacity: 1;
		transform: initial;
		background-color: #000000B8;
	}
	
	.home-s4 .pj-outer .pj-inner:hover:before {
		display: none;
	}
	
	.home-s4 .pj-outer .pj-inner:hover .pj-hover {
		top: 0;
	}
	
	.home-s4 .pj-outer:nth-of-type(2),
	.home-s4 .pj-outer:nth-of-type(4) {
		top: 0;
	}
	
	.home-s4 .pj-outer:nth-of-type(1) {
		padding-left: 16px;
	}

	.home-s4 .pj-outer:nth-of-type(5) {
		padding-right: 16px;
	}
	
	.home-s4 .s4-bg {
		position: absolute;
		top: 0;
		left: 50%;
		height: 750px;
		transform: translateX(-50%);
	}

	
}

@media screen and (max-width: 600px) {
	
	.home-s4 .pj-outer {
		width: 100%;
		min-height: 452px;
		max-height: 452px;
		padding: 16px;
	}
	
}

.home-s5 .slick-slider .slide-outer {
	padding: 26px !important;
}

@media screen and (max-width: 576px) {
	
	.home-s5 .slick-slider .slide-outer {
		padding: 14px !important;
	}

	
}

.home-s5 .slick-slider .slide-outer .slide-inner {
	min-height: 100px;
}

.home-s5 .slick-slider .slick-arrow {
	background-color: transparent;
	border: 0;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	padding: 16px;
	cursor: pointer;
}

.home-s5 .slick-slider .slick-arrow:hover {
	background-color: transparent;
	border: 0;
}

.home-s5 .slick-slider .slick-arrow img {
	height: 32px;
	width: 32px;
}

.home-s5 .slick-slider .slick-arrow.slick-prev {
	left: -3.5rem;
}

.home-s5 .slick-slider .slick-arrow.slick-next {
	right: -3.5rem;
}

.home-s5 .slick-slider .slick-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	gap: 12px;
}

.home-s5 .slick-slider .slick-dots {
	list-style-type: none;
	padding: 0;
}

.home-s5 .slick-slider .slick-dots li button {
	font-size: 0;
	border: 1px solid #000;
	background-color: transparent;
	padding: 0 1rem;
	border-radius: 50%;
}

.home-s5 .slick-slider .slick-dots li.slick-active button {
	background-color: #000;
}

.line-heading .elementor-heading-title {
	position: relative;
	padding-bottom: 16px;
}

.line-heading .elementor-heading-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 900px;
	height: 2px;
	background-color: #00adf1;
}

@media screen and (max-width: 1024px) {
	
	.line-heading .elementor-heading-title:after {
		left: 50%;
		transform: translateX(-50%);
		width: 50%;
	}
	
	.home-s5 .slick-slider .slick-dots li button {
		padding: 0;
		height: 16px;
		width: 16px;
	}
	
}

.abt-s5 .e-con-inner {
	padding: 0 !important;
}

.abt-s5 .abt-s5-col {
	position: relative;
}

.abt-s5 .abt-s5-col .abt-s5-heading {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.abt-s5 .abt-s5-col .abt-s5-content {
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
}

.abt-s5 .abt-s5-col:hover .abt-s5-heading {
	top: 40%;
	opacity: 0;
}

.abt-s5 .abt-s5-col:hover .abt-s5-content {
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0.3s;
}

@media (max-width: 1024px) {
	
	.abt-s5 .abt-s5-col .abt-s5-heading {
		position: relative;
		top: 0;
		left: 0;
		transform: initial;
		opacity: 1;
	}
	
	.abt-s5 .abt-s5-col .abt-s5-content {
		transform: initial;
		opacity: 1;
		transition: all 0.3s ease-in-out;
		pointer-events: auto;
	}
	
	.abt-s5 .abt-s5-col:hover .abt-s5-heading {
		top: 0;
		opacity: 1;
	}
	
}

/* Gallery */
.image-gallery .ha-image-grid {
	width: 100%;
}

.image-gallery .ha-image-grid .ha-image-grid__item img {
	box-shadow: 0px 0px 11px 0px #00000069;
}

.value-icon {
	height: 80px;
	width: 80px;
}

.value-icon img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.mfp-gallery .mfp-container .mfp-content .mfp-bottom-bar {
	display: none;
}

@media (max-width: 992px) {
	  .ha-filter.hajs-filter.ha-filter--as-dropdown .ha-filter__item {
		display: none;
	  }
	
		.ha-filter {
		  position: relative;
		  display: inline-block;
		  width: 100%;
		}

	  .ha-filter-dropdown {
		position: relative;
		display: block;
		width: 100%;
		max-width: 100%;
/* 		padding: 0.5rem 0.75rem; */
		background-color: #191D36;
		color: #fff;
		padding: 0.8rem;
		appearance: none;
	  }
	
		.ha-filter::after {
		  content: "\f107";               /* Font Awesome 'angle-down' for FA 5+ */
		  font-family: "Font Awesome 5 Free"; /* adjust if using another FA version */
		  font-weight: 900;               /* required for solid icons in FA 5+ */
		  position: absolute;
		  right: 1rem;
		  top: 50%;
		  transform: translateY(-50%);
		  pointer-events: none;          /* keep select clickable */
		  font-size: 1rem;
		  color: #fff;
		}
	
	  .ha-filter-dropdown option {
		width: 100%;
		padding: 0.8rem;
	  }
}

@media (max-width: 390px) {
  .ha-filter-dropdown {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 1rem;
  }
}