/* **********************************************************
 * 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;         
    }   
}


/* *****************************
 * LOCATIONS POPUP
 * *************************** */
#elementor-popup-modal-3732 .dialog-lightbox-widget-content,
#elementor-popup-modal-3732 .dialog-widget-content,
#elementor-popup-modal-3732 .dialog-message,
#elementor-popup-modal-3732 .elementor-location-popup {
  width: max-content !important;
  min-width: max-content !important;
  max-width: 95vw !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
#elementor-popup-modal-3732 .popup-locations.e-con-full {
  width: max-content !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}
#elementor-popup-modal-3732 .popup-locations > .e-con.e-child {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 280px !important;
  max-width: none !important;
  box-sizing: border-box !important;
}
#elementor-popup-modal-3732 h3.elementor-heading-title,
#elementor-popup-modal-3732 .elementor-heading-title a {
  white-space: nowrap !important;
  display: inline-block !important;
  width: auto !important;
}


/* *****************************
 * BACKGROUND IMAGE USING IMAGE ELEMENT INSTEAD OF CONTAINER BG SETTINGS
 * BG SOURCESET FOR Elementor Image Widget, Widget Container, Image
 * *************************** */
.srcset-bg,
.srcset-bg .elementor-widget-container {
    height: 100% !important;
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}
.srcset-bg img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover; 
    object-position: center center;
}

/* OPTIONAL Fixed / Parallax Background Image 
.srcset-bg.bg-fixed,
.srcset-bg .elementor-widget-container {
	clip-path: inset(0);
}
.srcset-bg.bg-fixed img,
.srcset-bg img {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	will-change: transform;
}
@media (max-width: 767px) {
    .srcset-bg.bg-fixed img,
	.srcset-bg img {
        position: absolute;
        height: 100% !important;
    }
}
/* END OPTIONAL Fixed / Parallax Background Image */

/* *****************************
 * BG OVERLAY - FLICKER FIX
 * Promotes overlay pseudo-element to its own compositor layer
 * so it doesn't drop out during scroll repaints
 * *************************** */
.bg-wrapper .overlay:before,
.bg-wrapper .overlay-75:before,
.bg-wrapper .overlay-85:before,
.bg-wrapper .overlay-white-85:before,
.bg-wrapper .overlay-light:before,
.bg-wrapper .overlay-white-black:before,
.hero .bg-wrapper .overlay:before,
.hero .bg-wrapper .overlay-white-black:before,
.hero .bg-wrapper .overlay-light:before {
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* *****************************
 * FIXED BG IMAGE - DISABLE ON SMALL SCREENS
 * *************************** */
@media (max-width: 767px) {
    .bg-fixed .srcset-bg img,
    .hero .srcset-bg img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: -1;
        will-change: auto;
    }
    .bg-fixed .srcset-bg,
    .bg-fixed .srcset-bg .elementor-widget-container,
    .hero .srcset-bg,
    .hero .srcset-bg .elementor-widget-container {
        clip-path: none !important;
    }
}


/* *****************************
 * SERVICE BOXES
 * *************************** */
.service-box {
  cursor: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-height: 30rem !important;
  justify-content: center;
  overflow: hidden !important;
}
a.service-box {
  cursor: pointer;
}
.service-box > .service-box-title {
  height: auto;
  text-align: center;
  width: 100%;
  z-index: 1;
  transform: translateY(0); /* Hidden position */
  opacity: 0; /* Initially hidden */
  transition: transform 0.25s ease-in-out, opacity .75s ease-in-out !important;
}
.service-box:hover > .service-box-title {
  height: 0 !important;
  opacity: 0 !important;
  transform: translateY(0) !important;
  transition: transform .5s ease-in-out, opacity 0.25s ease-in-out !important;
}
.service-box .content-box {
  position: absolute;
  width: 100%;
  height: 110%;
  opacity: 0;
  bottom: 0;
  top: 100%;
  transform: translateY(100%);
  transition:
	  height 0.5s ease-in-out,
	  opacity 0.5s ease-in-out,
	  bottom 0.5s ease-in-out,
	  top 0.5s ease-in-out,
	  transform 0.5s ease-in-out;
  z-index: 5;
}
.service-box:hover .content-box {
  transform: translateY(0);
  opacity: 1;
  height: 100%;
  bottom: 0%;
  top: 0;
}
.service-box:hover .content-box .service-box-title {
  height: auto !important;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

/* Card Dark (Delivery Options) - Dark overlay */
.service-box.card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(39, 74, 55, .75); 
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Card Light (Pick Up) - Light green overlay */
.service-box.card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(162 180 101) !important; /* Light green - #D7E2AC with opacity */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}


/* SERVICE BOX MOBILE LAYOUT */
@media (max-width: 480px) {
	.service-box:not(.section-mega-menu .service-box){
	  min-height: 34rem !important;
	}
	.service-box>.service-box-title {
	  height: 0 !important;
	  opacity: 0 !important;
	  transform: translateY(-50%);
	  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
	}
	.service-box .content-box {
	  transform: translateY(0) !important;
	  opacity: 1;
	  height: 100%;
	  bottom: 0%;
	  top: 0;
	}
	.service-box .content-box .service-box-title {
	  height: auto !important;
	  opacity: 1;
	  transform: translateY(0);
	  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
	}

}




/* ******************************
 * CARD - HEADING AS BUTTON
 * *************************** */
/* Base Button Styles */
.elementor-element.card-button .elementor-heading-title {
  display: inline-block;
  background-color: var(--e-global-color-accent, #D7E2AC);
    font-family: "Mutone", Sans-serif;
    font-size: clamp(20px, calc(0.5vw + 22.4px + max(0px, (100vw - 1920px) * 0.0094)), 38px) !important;
    font-weight: normal;
    text-transform: uppercase;
	text-align: center;
    line-height: 1.15;
    color: var(--e-global-color-text);
    border-radius: 200rem 200rem 200rem 200rem;
    padding: 2rem 2rem 1.65rem 2rem;
  cursor: pointer;
  transition: all 0.25s linear !important;
}


/* Hover Animation */
.elementor-element.card-button .elementor-heading-title:hover {
  box-shadow: inset 0rem 0rem 5rem 5rem #292B25;
  color: #fff;
}


/* ******************************
 * SECTION 3 COLUMNS DIVIDED - like on Contact
 * *************************** */
@media (max-width: 1024px) {
	.container-3-col-divided .col-left,
	.container-3-col-divided .col-center,
	.container-3-col-divided .col-right {
		width: 100% !important;
	}
}