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

/* *****************************
 * 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
 * *************************** */
.bg-fixed,
.bg-fixed .elementor-background-overlay,
.bg-fixed:before {
    background-attachment: fixed !important;
    transform: translateZ(0); /* This can help with rendering */
}
.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 */
}


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


/* *****************************
 * SECTION 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 {
	max-width: calc(97.5rem / 2); /* set site boxed width & divide by 2 */
	margin-left: auto;
}

@media (max-width: 1024px){
	.full-container-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 #1B3664 !important; 
}
.section-3-cols .col2 {
    border-left: 1px solid #333 !important;
    border-right: 1px solid #1B3664 !important;    
}
.section-3-cols .col3 {
    border-left: 1px solid #333 !important;
    border-right: 0px solid #000 !important;
}

.contact-col a {
	color: #fff !important;
	transition: color 0.3s ease;
}

.contact-col a:hover {
	color: #FFC709 !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;         
    }   
}

.img-w-texture {
	position: relative;
}

.img-w-texture .img-texture {
	position: absolute;
	bottom: -3rem;
	left: -3rem;
	height: 80%;
	width: 60%;
	background-color: #FFC709;
/* 	background-color: #1B3664; */
}

.img-w-texture.texture-right .img-texture {
	left: unset;
	right: -3rem;
}

.bg-texture {
	position: relative !important;
}

.bg-texture:before {
	content: '' !important;
	position: absolute !important;
	height: 100% !important;
	width: 50% !important;
	background-color: #2a81c41f !important;
	z-index: -1 !important;
}

.bg-texture.texture-aside:before {
	border-top-right-radius: 1rem !important;
	border-bottom-right-radius: 1rem !important;
	left: 0 !important;
	top: 0 !important;
}

@media (max-width: 1024px) {
	
	
	.img-w-texture .img-texture {
		left: -0;
	}
	
	.img-w-texture.texture-right .img-texture {
		right: 0;
	}
	
}

@media (max-width: 420px) {
	
	.img-w-texture .img-texture {
		bottom: -1rem;
	}	
	
}

/* *****************************
 * HERO
 * *************************** */
.hero {
	position: relative !important;
}

.hero-cta-btns {
	position: relative;
	z-index: 2 !important;
}

.hero-cta-btns:after {
	content: '';
	position: absolute;
	top: 0;
	right: -12rem;
	height: 100%;
	width: 12rem;
/* 	background-color: #2A81C4; */
	background-color: #1B3664;
/* 	background-color: #06132A; */
}

@media (max-width: 820px) {

	.hero-content {
		z-index: 1 !important;
		width: 100% !important;
		background-color: #FFFFFFE0 !important;
		min-height: 56rem !important;
		justify-content: center !important;
	}
	
	.hero-img-absolute {
		position: absolute !important;
		height: 100% !important;
		width: 100% !important;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-height: unset !important;
		z-index: -1;
	}
	
	.hero-heading h1, .hero-heading p {
		text-align: center !important;
	}
	
	.hero-heading {
		padding: 12rem 3rem 0 3rem !important;
	}
	
	.hero-cta-btns {
		background-color: transparent !important;
		justify-content: center !important;
		padding: 3rem 0 !important;
	}
	
	.hero-cta-btns:after {
		display: none;
	}
	
	.hero-cta-btns .hero-cta-1 a {
		background-color: #2A81C4 !important;
		border: 2px solid #2A81C4 !important;
		color: #fff !important;
	}
	
	.hero-cta-btns .hero-cta-1 a:hover {
		background-color: #FFC709 !important;
		border: 2px solid #FFC709 !important;
		color: #1B3664 !important;
	}
	
	.hero-cta-btns .hero-cta-2 a {
		background-color: transparent !important;
		border: 2px solid #FFC709 !important;
		color: #1B3664 !important;
	}
	
	.hero-cta-btns .hero-cta-2 a:hover {
		background-color: #FFC709 !important;
		border: 2px solid #FFC709 !important;
		color: #1B3664 !important;
	}
	
}

@media (max-width: 420px) {
	
	.hero-content {
		min-height: 40rem !important;
		padding-top: 5rem !important;
	}
	
	.hero-heading {
		padding-top: 8rem !important;
		padding-left: 3rem !important;
		padding-right: 3rem !important;
	}
	
	.hero-heading h1 {
		font-size: 3.75rem !important;
	}
	
    .hero-cta-btns {
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-content: center !important;
		padding-top: 0 !important;
		padding-bottom: 5rem !important;
    }
	
	.hero-cta-btns .elementor-widget-button {
		width: 100% !important;
	}
	
	.hero-cta-btns .elementor-widget-button a {
		width: 100% !important;
	}
	
}


/* *****************************
 * HOME THREE COLUMN SECTION
 * *************************** */
@media (max-width: 820px) {

	.home-3 .home-3-col {
		width: 100%;
	}
	
}
