/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Typography & Resets
# Utility Classes
# Lazy Load
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-navy: #194A70; 
    --color-slate: rgba(92, 118, 144, 1); 
    --color-light-blue: #2F7BB7; 
    --color-light-grey: #F7F7F7; 
    --color-light-grey-sec: #F4F4F4; 
    --font-size-primary-heading: min(calc(2rem + 1.8vw), 3.8rem); /* 64px */
    --font-size-secondary-heading: min(calc(1rem + 1.8vw), 2.8rem); /* 40px */
    --font-size-tertiary-heading: min(calc(1rem + 0.8vw), 1.8rem); /*25px*/
    --font-size-quartary-heading: 1.13em; /* 18px */
    --font-size-subheadline: min(calc(1rem + 0.8vw), 1.5rem); /*30px*/
    --font-size-cta: 1.13em; /* 18px */
    --font-size-quinary-heading: min(calc(1rem + 0.2vw), 1.2rem);
    --font-family-main: "Plus Jakarta Sans", sans-serif; 
    --font-size-body: 1.07rem; /* 17px */ 
}

/*--------------------------------------------------------------
# Typography & Resets
--------------------------------------------------------------*/
body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden; 
}

body {
    overflow-x: hidden;
    overflow-wrap: break-word;
    font-size: var(--font-size-body);
    font-family: var(--font-family-main); 
    font-weight: 400; 
    color: var(--color-navy); 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1em;
    font-weight: 400; 
}

h1,
.h1 {
    font-size: var(--font-size-primary-heading);
}

h2,
.h2 {
    font-size: var(--font-size-secondary-heading);
}

h3,
.h3 {
    font-size: var(--font-size-tertiary-heading);
}

h4,
.h4 {
    font-size: var(--font-size-quartary-heading);
}

h5,
.h5,
h6,
.h6 {
    font-size: var(--font-size-quinary-heading);
}

a,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
    transition: 0.3s ease all;
}

a:visited {
    color: unset; 
}

section p a{
    color: var(--color-light-blue); 
    border-bottom: 2px solid var(--color-light-blue);
}

.subheadline{
font-family: var(--font-family-main);
font-size: var(--font-size-subheadline);
font-style: normal;
font-weight: 300;
line-height: 1.3;
}

.accordion a, .description a{
    color: var(--color-light-blue) !important; 
    cursor: pointer !important; 
    all: unset; 
    border-bottom: 2px solid var(--color-light-blue) !important; 
}

.page-template-page-timbertech .section-back-and-forth .text-area img{
    width: 30%; 
    padding-bottom: 1em; 
}
.form-contact-info a{
	     color: var(--color-navy);
}
.form-contact-info a:hover{
	color: #2f7bb7 !important;
}

ul{
    margin: 0; 
    padding-left: 1.5em; 
}

section {
    margin: 0 auto 5em auto;
    padding: 3em 0;
    position: relative;
}

/*Stops Some Of Looms Issues on Certain Browsers*/
section#shadow-host-companion {
    padding: 0;
    margin: 0;
}

/*Colors & Backgrounds*/
.cl-white{
    color: var(--color-white) !important; 
}

.cl-navy{
    color: var(--color-navy); 
}

.cl-light-blue{
    color: var(--color-light-blue); 
}

.cl-light-grey{
    color: var(--color-light-grey); 
}

.bg-white{
    background: var(--color-white); 
}

.bg-navy{
    background: var(--color-navy); 
}

.bg-lightblue{
    background: var(--color-light-blue) !important; 
}

.bg-light-grey{
    background: var(--color-light-grey); 
}

/*Base Button Styling*/
.button {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    border-radius: 0px;
    padding: 15px 25px; 
    font-size: var(--font-size-cta);
    text-shadow: none;
    box-shadow: none;
    transition: 0.3s ease all;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.button:hover{
    background-color: var(--color-navy) !important; 
    color: var(--color-white) !important; 
}

.text-right{
    text-align: right; 
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.relative{
    position: relative;
}

.fit-cover-center{
    object-fit: cover;
    object-position: center;
  }

.h-100{
    height: 100%;
}

.w-100{
    width: 100%;
}

.mt-0 {
    margin-top: 0;
}

.padding-none{
    padding: 0; 
}

.mt-02{
    margin-top: 0.2em; 
}

.mt-05{
    margin-top: 0.5em; 
}

.mt-08{
    margin-top: 0.8em; 
}
.mt-1{
    margin-top: 1em; 
}
.mt-2{
    margin-top: 2em; 
}

.mb-0 {
    margin-bottom: 0;
}

.mb-02{
    margin-bottom: 0.2em; 
}

.mb-05{
    margin-bottom: 0.5em; 
}

.mb-08{
    margin-bottom: 0.8em; 
}

.mb-1{
    margin-bottom: 1em;
}

.mb-1-5{
    margin-bottom: 1.5em; 
}


.auto{
    margin: auto; 
}

.text-left{
    text-align: left;
}

.text-center{
    text-align: center; 
}

.gap-1{
    gap: 1em; 
}

.gap-05{
    gap: 0.5em; 
}

.gap-2{
    gap: 2em;
}

/*--------------------------------------------------------------
# Lazy Load
--------------------------------------------------------------*/
img[data-lazy-src] {
    opacity: 0;
}

img.lazyloaded {
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#site-header{ 
    padding: 40px 0; 
    width: 100%;
    z-index: 100;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -o-transition: transform .2s linear;
    -ms-transition: transform .2s linear;
    -moz-transition: transform .2s linear;
    -webkit-transition: transform .2s linear;
    transition: transform .2s linear;
    display: block !important; 
    background-color: transparent; 
    position: relative;
    margin-bottom: -8em; 
}


#site-header.header-scrolled-top{
    padding: 20px 0; 
}

.post-template-default.single #site-header{
    background-color: var(--color-navy); 
    margin-bottom: 3em; 
}

#logo img{
    width: 100%; 
    margin: auto;
    display: flex;
}

#site-header .row.mobile{
    display: none;
    justify-content: space-between;
    align-items: center;
}

.responsive-menu{
    position: relative;
}

.responsive-menu-items{
    color: var(--color-white); 
    padding-top: 20px; 
}

.py-4{
    padding-top: .75rem !important; 
    padding-bottom: .75rem !important; 
}

ul.responsive-menu-items .sub-menu a{
    color: var(--color-white) !important; 
    text-transform: capitalize !important;
}

ul.responsive-menu-items a{
    text-transform: capitalize !important;
}
    
    
    ul.responsive-menu-items a.active, ul.responsive-menu-items a:hover{
    background-color: transparent !important; 
    } 

#menu-button span{
    background-color: var(--color-white) !important;
}

.responsive-menu-interior{
    background-color: var(--color-navy) !important; 
}

.menu-item a{
    color: var(--color-white); 
}


#menu-button span{
    width: 33px; 
}

#menu-button {
    top: 41px !important; 
}

#menu-button.open{
    top: 41px ;
}

#site-header.header-scrolled-top #menu-button{
    top: 21px !important; 
}

#site-header.header-scrolled-top .offcanvas-logo{
    top: 2.5%; 
}

ul.responsive-menu-items a{
    font-weight: 400 !important; 
}

ul.responsive-menu-items li ul.sub-menu li{
    padding: 0; 
} 

.offcanvas-logo{
    display: inline-block;
    top: 5%;
    left: 8vw;
    position: absolute;
    height: 200px;
    width: 200px;
}


.responsive-menu-items{
    display: flex; 
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
}
#menu-button{
    position: absolute; 
    top: 4em; 
    right: 3em;
}

ul.responsive-menu-items a{
    font-family: var(--font-family-main) !important; 
    font-size: 1.5rem !important; 
    font-weight: 400 !important; 
    text-align: center; 
}

ul.responsive-menu-items li{
    padding-right: 0 !important; 
}

ul#responsive-menu-items{
    margin: 0 !important; 
}


.sub-menu .menu-item > a::after{
    background-image: none !important; 
    transform: unset !important; 
}

.responsive-menu-items ul{
    list-style: none;
    margin: 0;
    padding: 0;  
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column; 
    padding-top: 25px; 
    gap: 1em; 
}

.responsive-menu-interior{
    overflow-y: scroll; 
}

.responsive-menu-open{
    max-height: 100vh; 
}


ul#primary-menu{
    margin: 0; 
    padding: 0; 
}

#primary-menu {
    position: relative;
}


#primary-menu ul {
    list-style: none;
}

#primary-menu li {
    display: inline-block; 
    margin-right: 40px; 
    font-size: var(--font-size-menu-link); 
    font-weight: 400;
    font-family: var(--font-family-main);
    color: var(--color-white); 
    letter-spacing: 0.5px;
    text-transform: capitalize; 
}

#menu-button{
    background-color: transparent; 
}

#menu-button span{
    background-color: var(--color-navy); 
}



/*Sticky Nav*/ 
#site-header {
	z-index: 10;
	transition: all ease-in-out 0.35s;
	transform: none;
}

#site-header.header-scrolled {
	transform: translateY(-100%);
	opacity: 0;
}

#site-header.header-scrolled-top {
	top: 0;
	position: fixed; 
	opacity: 1;
	background-color: var(--color-navy); 
}


/* Submenu Styling */
.sub-menu {
    display: none; 
    position: absolute;
    top: calc(100% + 0px); /* Adjust based on the height of the SVG */
    left: 0;
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #fff; /* Change to your preferred background color */
    color: var(--color-navy) !important;
    min-width: 15em; 
  }
  
  .sub-menu li {
    padding: 10px;
    white-space: nowrap;
  }

  .sub-menu li a{
    color: var(--color-navy); 
    transition: all 0.5s ease;
  }

  #primary-menu .sub-menu li a:hover{
    margin-left: 10px; 
    color: var(--color-light-blue); 
  }
  
  #primary-menu > li:hover .sub-menu,
  #primary-menu > li.current-menu-item:hover .sub-menu, #primary-menu > li:focus-within .sub-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.5s ease;
  }
  
  /* SVG Arrow Styling */
  .menu-item > a::after {
    content: '';
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 9px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMjEgOSIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEwLjYwMDYgMC45NzE2OEwyMC42NDcgOC4xNjQxMUgwLjU1NDE4NEwxMC42MDA2IDAuOTcxNjhaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==');
    background-size: cover;
  }
  
  .menu-item:hover > a::after,
  .menu-item.current-menu-item > a::after {
    display: block;
  }

  .menu-item.current-menu-item .sub-menu {
    display: none;
  }
  
  /* Ensure submenus display directly below their respective parent items */
  #primary-menu > li {
    position: relative;
  }
  
  #primary-menu > li:hover > .sub-menu,
  #primary-menu > li:focus-within > .sub-menu {
    display: flex;
  }



/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.page-main-banner{
    height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding-top: 0; 
    padding-bottom: 0; 
    margin-bottom: 0; 
  }

  .page-internal-banner{
    height: 80vh; 
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding-top: 0; 
    padding-bottom: 0; 
    margin-bottom: 0; 
  }
  .page-internal-banner-md{
    height: 500px; 
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding-top: 0; 
    padding-bottom: 0; 
    margin-bottom: 0; 
  }

  .main-slider .slide{
    height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.65) 100%) !important; 
  }

  .page-main-banner .overlay, .page-internal-banner .overlay{
    display: flex; 
    justify-content: center;
    align-items: center; 
    align-content: center; 
  }

  .owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: -4em;
    z-index: 99999999999;
    position: absolute;
    right: 0;
    left: 0;
  }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--color-white); 
  }

  .owl-theme .owl-dots .owl-dot span{
    background: transparent; 
    border: 2px solid var(--color-white); 
    width: 20px;
    height: 20px;
  }


/*--------------------------------------------------------------
# Back & Forth Section
--------------------------------------------------------------*/

.home .section-back-and-forth{
    background-color: var(--color-light-grey); 
}

.page-template-page-deck-pricing-guide .section-back-and-forth{
    background-color: var(--color-light-grey); 
}

.section-back-and-forth .text-area h2{
    max-width: 14em; 
    width: 100%; 
}


.section-back-and-forth .description, .section-back-and-forth .accordion, .section-back-and-forth .heading{
    max-width: 28em !important; 
    width: 100% !important; 
}



#reverse-row.section-back-and-forth .row, #reverse-row.section-about-slider .row {
    flex-direction: row-reverse;
}

#reverse-row.section-service-intro .row {
    flex-direction: row-reverse;
}





/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    height: 712px; 
    padding-top: 1em; 
}

.box{
    overflow: hidden;
  position: relative;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.4s ease-in-out;
    padding-bottom: 0.5em; 
}

.box:hover .service-image{
    transform: scale(1.1);
}

.overlay.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45); /* Adjust the opacity as needed */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
    pointer-events: none; /* Ensures the overlay doesn't interfere with clicks */
}

.service-image:hover .overlay{
    opacity: 1; 
    z-index: -1; 
}

.service-content{
    text-align: center;
    position: absolute;
    z-index: 1;
    margin: auto; 
    bottom: 0;
    left: 0; 
    right: 0; 
}


.box1 {
    grid-area: 1 / 1 / 3 / 3;
}

.box2 {
    grid-area: 1 / 3 / 3 / 5;
}

.box3 {
    grid-area: 1 / 5 / 5 / 7;
}

.box4 {
    grid-area: 3 / 3 / 5 / 5;
}

.box5 {
    grid-area: 3 / 1 / 5 / 3; 
}

.service-link, .service-image{
    width: 100%;
    height: 100%; 
}

.service-content{
    padding-bottom: 2em; 
}


/*--------------------------------------------------------------
# Build Process Slider
--------------------------------------------------------------*/

.home .section-process {
    padding-top: 0;
}

.process-slider .owl-item {
    border: 2px solid var(--color-light-blue);
    padding: 10px;
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.process-slider .slide{
    transition: 0.6s ease all;
}

.section-process .slide .description {
    font-size: 16px;
    text-align: center;
}

.process-slider .owl-stage {
    display: flex;
    justify-content: center;
    align-items: stretch; 
}

.custom-nav-container button, .logo-nav-container button {
    background: transparent;
    border: 0;
    all: unset;
    cursor: pointer;
}

.custom-nav-container .owl-prev {
    position: absolute;
    top: 50%;
    left: -2%;
}

.logo-nav-container .owl-prev {
    position: absolute;
    top: 30%;
    left: 2%;
}

.logo-nav-container .owl-next {
    position: absolute;
    top: 30%;
    right: 2%;
}

.custom-nav-container .owl-next {
    position: absolute;
    top: 50%;
    right: -2%;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 15px;
}

.step-content h3 {
    margin: 10px 0;
}



/*--------------------------------------------------------------
# Section CTA (Featured Projects) 
--------------------------------------------------------------*/

.section-cta, .section-bottom-banner {
    background-size: cover !important; 
    background-repeat: no-repeat !important; 
    background-position: center center !important; 
    height: 80vh; 
}

.section-cta .cta-container, .section-bottom-banner .cta-container{
padding: 2em; 
}

.button-list{
    margin-left: -2px; 
}

.section-cta.mobile, .section-bottom-banner.mobile{
    display: none; 
}
/*--------------------------------------------------------------
# Full Gallery
--------------------------------------------------------------*/
.section-gallery .figure{
    height: 17em;
}
.section-gallery .figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#our-process,
#portfolio-cta{
    margin-top: 5em !important;
}
/*--------------------------------------------------------------
# Before & After Section 
--------------------------------------------------------------*/
.twentytwenty-container{
	max-height: 690px;
}
.twentytwenty-container img{
	width: 100% !important;
}
.twentytwenty-before-label:before, .twentytwenty-after-label:before {
    color: white;
    font-family: var(--font-family-main);
    font-size: 13px;
    letter-spacing: 0.1em;
    background-color: #fff !important;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0 !important;
}
.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 95%;
    margin-top: -19px;
}
.section-before-after{
    margin-bottom: 0;
    padding-bottom: 0;
}
/*--------------------------------------------------------------
# Google Reviews Section 
--------------------------------------------------------------*/

.section-reviews{ 
    padding-bottom: 0; 
    background-color: var(--color-light-grey);
}
#reviews{
    background-color: var(--color-light-grey-sec);
}

.ti-widget.ti-goog .ti-review-item>.ti-inner{
    display: flex !important; 
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important; 
}

.ti-stars, .ti-review-text-container, .ti-read-more{
    order: -1; 
}

.ti-read-more{
    margin-bottom: 0.5em !important; 
}


/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/

#locations.section-map h2{
margin-bottom: 1em !important; 
}

.section-map ul li a:hover{
    color: var(--color-navy); 
}


.section-map{
    padding-bottom: 0; 
}

.section-map .media-item iframe{
    width: 100% !important; 
    object-fit: cover !important;
}

.section-map .description{
    max-width: 33em; 
    width: 100%; 
}

.section-map .description p{
    margin-bottom: 2em; 
}

.section-map .text-area{
    padding: 0 4em; 
}

.locations-list ul, .logos ul, .form-contact-info ul{
    padding: 0; 
    margin: 0; 
}

.locations-list{
    margin-top: -1em;
}

.locations-list .row, .form-contact-info .row, #tall-image.section-back-and-forth.with-accordion .row{
    flex-direction: row !important;
}

.locations-list ul, .logos ul, .form-contact-info ul {
    list-style-type: none; 
    padding-left: 0; 
}

.locations-list ul li {
    position: relative; 
    padding-left: 30px; 
}

.locations-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; 
    height: 20px; 
    background-image: url('/wp-content/uploads/2024/06/e62df9f88fe1386dfe31afb81ef96cf3.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# Section Logo Slider
--------------------------------------------------------------*/
.logo-partner{
    max-height: 10em;
    object-fit: contain;
    margin: 0 auto;
}

.logo-slider .slide{
    margin: 0 10px; 
}

.logo-slider .owl-stage{
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.logo-slider img.logo-partner{
    width: 58% !important; 
}


/*--------------------------------------------------------------
# Bottom Banner Section
--------------------------------------------------------------*/


.section-bottom-banner{
    margin-bottom: 0; 
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#about.section-about-text{
    padding-top: 6em; 
}

.page-template-page-single-location #about.section-about-text{
    padding-bottom: 0; 
}

.page-template-page-locations .section-about-text{
    padding-bottom: 0; 
}






/*--------------------------------------------------------------
# About Slider
--------------------------------------------------------------*/
.about-nav-container{
    position: absolute;
    top: 14%;
    left: 14.5%;
}

.section-about-slider{
    padding-top: 0; 
    padding-bottom: 0; 
}

/* Reverse row image positioning for section-about-slider */
@media only screen and (min-width: 75em) {
    #reverse-row.section-about-slider .full-width-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    
    #reverse-row.section-about-slider .full-width-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100%;
    }
    
    #reverse-row.section-about-slider .full-width-image .media-item {
        width: 50vw;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    #reverse-row.section-about-slider .full-width-image .media-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #reverse-row.section-about-slider .text-area {
        padding-left: 4em;
    }
}

.about-slider .owl-nav{
    display: flex !important; 
}

 .owl-nav button:hover{
background: transparent !important; 
}

.fadeInCustom {
    animation: fadeIn 3s forwards;
}

.fadeOutCustom {
    animation: fadeOut 3s forwards;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team-card{
    position: relative;
    overflow: hidden; 
}

.card-wrapper{
    position: relative;
}

.team-member-content{
    padding: 2em; 
}

.team-member-job-position{
    font-size: var(--font-size-quartary-heading); 
    text-transform: uppercase;
    font-weight: 600; 
}

.team-members-grid{
    row-gap: 2em; 
}

.blog-post-thumbnail, .team-member-content{
    cursor: pointer; 
}


/*Team Popup*/
#team-member-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    max-height: 90vh; /* Adjust as needed */
    background: #ffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto; /* Changed from 'scroll' to 'auto' */
    animation: teamPopupFadeIn 0.5s forwards;
}

button#popup-close-btn{
    border: none;
    border-color: transparent;
    border-radius: 0px;
    background: transparent !important;
    color: var(--color-light-blue);
    line-height: 1px;
    padding: 0 !important;
    font-size: 40px;
    position: absolute;
    right: 3%;
    top: 5%;
    z-index: 999; 
    cursor: pointer; 
    font-weight: 600; 
}

.team-popup-photo img{
    object-fit: cover;
}
#team-member-popup .container-fluid {
    width: 100% !important;
    max-width: none !important;
    padding: 0;
    margin: 0;
}

#team-member-popup .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

#team-member-popup .col-xs-12.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0;
    box-sizing: border-box;
            padding: 2rem;
}

.member-info{
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    #team-member-popup .col-xs-12.col-lg-6 {
        max-width: 100%;
        flex: 1 1 100%;
    }
}






/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-post-date, .blog-post-author{
    font-size: var(--font-size-quartary-heading); 
    text-transform: uppercase;
    font-weight: 600; 
    display: flex; 
}

.blog-post-content{
    max-width: 25em; 
    width: 100%; 
    margin-top: 1em; 
}

.blog-post-thumbnail {
    overflow: hidden; 
    max-height: 300px; 
}

.blog-post-thumbnail img{
    height: 100%; 
    width: 100%; 
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.blog-post-thumbnail img:hover{
    transform: scale(1.1);
}

.blog-post-card{
    overflow: hidden;
}

.single-blog-post-content a{
    color: var(--color-light-blue); 
    border-bottom: 2px solid var(--color-light-blue);
}



/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion{
    padding-top: 2em; 
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

.accordion h3{
    cursor: pointer; 
}

.toggle {
    position: relative;
}

.toggle::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-slate);
}


.accordion h3.active + .accordion-description {
    opacity: 1;
    transition: opacity 0.8s ease; 
    height: auto; 
}

.accordion h3:not(.active) + .accordion-description {
    opacity: 0;
    transition: opacity 0.5s ease; 
    height: 0; 
}


.accordion h3 {
    cursor: pointer;
    transition: transform 0.5s ease-in; 
}

.accordion h3.active .img-accordion-icon {
    transform: rotate(180deg);
}

.accordion-description p {
    margin-top: 0;
    margin-bottom: 0.8em;
    
}

.accordion-description{
    margin-bottom: 1em; 
}

.accordion-description ul{
    margin: 0; 
    padding-left: 1em; 
}

/*--------------------------------------------------------------
# Warranty Section
--------------------------------------------------------------*/
.section-warranty{
    padding-top: 1em; 
}


/*--------------------------------------------------------------
# Finance Section
--------------------------------------------------------------*/

.section-finance ul{
    margin: 0; 
    padding-left: 1.2em; 
}

.section-finance{
    padding-bottom: 4.5em; 
    margin-bottom: 0; 
}



/*--------------------------------------------------------------
# Section Icons
--------------------------------------------------------------*/

.icons-container{
    width: 100%;
}

.icon-links{
    display: flex; 
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    width: 100%; 
}

.section-icons{
    padding-top: 6em; 
    padding-bottom: 6em; 
}


.section-portal-cta{
    padding-top: 1em; 
}


/*--------------------------------------------------------------
# Info Tiles
--------------------------------------------------------------*/
.tile{
    border: 2px solid var(--color-light-blue);
    padding: 2em 1em 0 1em; 
}

.info-tiles-wrapper{
    row-gap: 1.5em;
    column-gap: 1.5em;
}

.tile:last-child{
    background-color: var(--color-light-blue) !important;
    padding: 1em; 
}

.tile:last-child h3{
    color: var(--color-white); 
}

.tile:last-child .tile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the height of the parent element is utilized */
}


/*--------------------------------------------------------------
# Job Postings
--------------------------------------------------------------*/

.job-listing-wrapper{
    margin-bottom: 1em; 
    gap: 12em; 
}

.job-title{
    padding: 0 1em;
}

.job-listings .button{
    padding: 15px 49px; 
}



/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/
.gfield_required{
    display: none !important; 
}

.gform_wrapper{
    padding: 0 !important; 
}

.form-wrapper{ 
    padding: 30px; 
} 

#field_1_7, #field_1_8, #field_2_7, #field_3_10 {
   border: 1px solid #fff
}

#input_1_7, #input_1_8, #input_2_7, #gform_browse_button_3_10 {
    display: none;
}



#field_1_7 .gfield_label, #field_1_8 .gfield_label, #field_2_7 .gfield_label, #field_3_10 .gfield_label{
    padding-top: 2em !important; 
    padding-bottom: 2em !important; 
}

/* Style the label to look like the SVG */
#field_1_8 label::before, #field_1_7 label::before, #field_2_7 label::before, #field_3_10 label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M9.28571 15.11V2.75286L5.95607 6.0825L4.945 5.055L10 0L15.055 5.055L14.0439 6.0825L10.7143 2.75286V15.11H9.28571ZM2.30786 20C1.65024 20 1.10119 19.7798 0.660714 19.3393C0.220238 18.8988 0 18.3498 0 17.6921V14.2307H1.42857V17.6921C1.42857 17.9121 1.52012 18.1137 1.70321 18.2968C1.88631 18.4799 2.08786 18.5714 2.30786 18.5714H17.6921C17.9121 18.5714 18.1137 18.4799 18.2968 18.2968C18.4799 18.1137 18.5714 17.9121 18.5714 17.6921V14.2307H20V17.6921C20 18.3498 19.7798 18.8988 19.3393 19.3393C18.8988 19.7798 18.3498 20 17.6921 20H2.30786Z" fill="white"/></svg>') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    /* Optional: Add padding to make the clickable area larger */
    padding: 10px;
}

#field_3_7 .gfield_label{ 
align-items: flex-start !important;
}

#field_3_11 .gchoice{
    color: #fff; 
}

.gform_wrapper.gravity-theme .gform_drop_area{
    padding: 0 !important; 
    margin: 0 !important; 
    border: none !important; 
}
#gform_browse_button_2_7, .gfield_description.gform_fileupload_rules, .validation_message--hidden-on-empty, .gform_drop_instructions, #gform_browse_button_1_7, #gform_browse_button_1_8{
    display: none !important; 
}

.gfield_fileupload_filename, .dashicons-trash:before, .ginput_preview_list{
    color: var(--color-white); 
}

.ginput_preview{
    display: flex; 
    justify-content: center;
    align-items: center; 
    flex-direction: row;
}

/* Ensure the label is clickable and properly aligned */
label[for="input_1_7"], label[for="input_1_8"]  {
    display: inline-block;
    cursor: pointer;
}

.gform_wrapper.gravity-theme .gfield_label{
    font-size: 16px;
    font-weight: 400 !important; 
    display: flex !important; 
    margin-bottom: 8px;
    color: #fff;
    padding: 0;
    align-items: center !important; 
    flex-direction: column !important; 
    justify-content: center !important; 
    gap: 0.5em; 
}

.gform_button.button {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    border-radius: 0px;
    padding: 15px 25px; 
    font-size: var(--font-size-cta);
    text-shadow: none;
    box-shadow: none;
    transition: 0.3s ease all;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    text-align: center;
    background-color: var(--color-light-blue); 
    color: var(--color-white); 
    border: 0px; 
}

.gform_button.button:hover{
    background-color: var(--color-white); 
    color: var(--color-light-blue); 
}




body .gfield_select, .ginput_complex input, .ginput_container input {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #fff;
    color: var(--color-white) !important; 
	text-wrap: wrap;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 0px; 
    font-size: 16px;
    font-family: var(--font-family-main); 
font-weight: 400; 
}

.ginput_complex input::placeholder, .ginput_container input::placeholder, .ginput_container textarea::placeholder {
color: var(--color-white); 
font-family: var(--font-family-main); 
font-weight: 400; 
}


.gform_wrapper select:focus, .gform_wrapper textarea:focus, .ginput_complex input:focus, .ginput_container input:focus{
    outline: none !important; 
}

.gform_wrapper textarea{
    border: none; 
    border-bottom: 1px solid #fff; 
    background: transparent; 
    color: #fff !important; 
    border-radius: 0px;
}

/* Styling for select dropdown arrow */
.gform_wrapper .ginput_container_select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_127_17" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_127_17)"><path d="M12 15.3751L6 9.3751L7.4 7.9751L12 12.5751L16.6 7.9751L18 9.3751L12 15.3751Z" fill="white"/></g></svg>') no-repeat 95% center;
    background-size: 24px;
	background-position-x: 100% !important;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services.section-reviews{
    background-color: var(--color-light-grey) !important; 
    margin-bottom: 0;
    padding-bottom: 5em; 
    padding-top: 6em; 
}

.home .section-services{
    padding-top: 0; 
}

#services.section-services{
    margin-bottom: 0; 
}

#services.section-back-and-forth{
    padding-top: 4em; 
    padding-bottom: 4em; 
    background-color: var(--color-light-grey) !important; 
}


/*--------------------------------------------------------------
# Free Estimate Form Section
--------------------------------------------------------------*/
.form-contact-info ul li a{
    text-transform: none !important; 
}

.form-contact-info ul li a:hover{
    color: var(--color-navy);
}

.form-contact-info ul{
    padding-left: 0.5em !important; 
}

.form-contact-info ul li{
    margin-bottom: 0.5em; 
}

#free-estimate.section-form{
    padding-bottom: 0; 
    margin-bottom: 0; 
}


/*--------------------------------------------------------------
# Portal Icons
--------------------------------------------------------------*/
.portal-icons-title, .portal-description{
    max-width: 15em; 
    width: 100%; 
    text-align: center;
}

/*--------------------------------------------------------------
# Back & Forth Accordion
--------------------------------------------------------------*/
.section-back-and-forth .text-area .accordion h3{
    max-width: 20em !important; 
    width: 100% !important; 
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio-container .row{
    margin-bottom: 15px; 
}
.portfolio-item{
    cursor: pointer;
}

img.portfolio-item{
    height: 100%; 
    object-fit: cover;
}

#portfolio-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 80%;
    max-width: 800px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

#portfolio-popup .popup-content {
    display: flex;
    flex-direction: column;
}

#portfolio-popup img {
    max-width: 100%;
    height: 50vh;
    object-fit: cover;
	filter: brightness(0.95);
}

.portfolio-info{
    padding: 30px; 
}


button#portfolio-popup-close{
    border: none;
    border-color: transparent;
    border-radius: 0px;
    background: transparent !important;
    color: #fff;
    line-height: 1px;
    padding: 0 !important;
    font-size: 40px;
    position: absolute;
    right: 3%;
    top: 5%;
    z-index: 999; 
    cursor: pointer; 
    font-weight: 600; 
}

button#applyFiltersBtn{
    border: none; 
}

button#applyFiltersBtn:hover{
    background-color: var(—color-white) !important; 
    color: var(—light-blue) !important; 
    } 


#portfolio-popup .owl-nav .owl-prev{
    position: absolute;
    top: 51%; 
    left: 3%; 
}

#portfolio-popup .owl-nav .owl-next{
    position: absolute;
    top: 51%; 
    right: 3%;
}

.image-container {
    position: relative;
    display: inline-block;
}

#popup-featured-image {
    display: block;
    width: 100%;
    height: 100%; 
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}


#portfolio-popup .col-lg-6 {
    width: 50%;
    padding: 10px;
}

#portfolio-popup h2 {
    margin-bottom: 0.5em;
}

#popup-gallery {
    width: 100%; 
    height: 100%; 
}

#popup-gallery{
    max-height: 400px;
    overflow: hidden;
}

#portfolio-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    width: 80%;
    max-width: 700px;
    position: relative;
    -webkit-animation: slideIn 0.5s;
    animation: slideIn 0.5s;
    overflow: hidden; 
}

#filterModal .modal-content{
    margin: 9% auto; 
}

.filter-title, .title-filters, #popup-job{
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 111.111% */
letter-spacing: 1.8px;
text-transform: uppercase;
color: var(--color-light-blue); 
margin-bottom: 0.5em; 
}

.clear-filters{
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 111.111% */
letter-spacing: 1.8px;
text-transform: uppercase;
}

.list-filters{
    padding: 0 0.5em; 
} 

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 100%; 
    border-bottom: 1px solid var(--color-navy); 
}

.modal-body {
    overflow: hidden; 
    padding: 20px; 
}


#filtersForm fieldset{
    border: none !important; 
    padding: 1em 0 !important; 
}

.modal-footer.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--color-navy);
}

.close {
    cursor: pointer;
}

.box-check {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.modal-body hr{
    background-color: var(--color-navy); 
}

.box-check input[type="checkbox"] {
    margin-right: 10px;
}


.portfolio-item-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.portfolio-item-wrapper .portfolio-item {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5em 1em;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item-wrapper:hover .portfolio-item-title {
  opacity: 1;
  transform: translateY(0);
}


/* Load More Button Styles */
#loadMoreBtn{
    margin: auto;
    display: block;
}

@keyframes slideIn {
    from { transform: translateY(-10%); }
    to { transform: translateY(0); }
}

@-webkit-keyframes slideIn {
    from { transform: translateY(-10%); }
    to { transform: translateY(0); }
}


button#openFilterModalBtn{
    border: none; 
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-heading{
    text-transform: uppercase;
    font-weight: 600; 
}

.social-links{
    margin-left: 2px; 
    margin-top: 0.5em; 
}

.social-links a{
    cursor: pointer;
}

.footer-badges {
    margin-top: 0.5em;
}

.badge-item {
    margin-right: 0.75em;
    margin-bottom: 0.75em;
    border: 2px solid var(--color-black);
    padding: 0.75em;
    background-color: var(--color-white);
    display: inline-block;
}

.badge-image {
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    width: auto;
    display: block;
}


#footer-menu, .contact-info ul, .services-info ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    font-weight: 400;
    color: var(--color-navy); 
    text-transform: uppercase;
}

.contact-info ul li a, .services-info ul li a{
    color: var(--color-navy);
}



.site-footer{
    padding-top: 4em; 
    padding-bottom: 0; 
    display: flex; 
    justify-content: center;
}

.col-footer p{
    margin-top: 0; 
}

.row-footer{
    border-top: 2px solid var(--color-navy); 
    margin-top: 4em; 
    padding-top: 1em; 
    padding-bottom: 1em; 
}

.copyright-info{
    font-weight: 400; 
    text-transform: uppercase;
    letter-spacing: 1px; 
    font-size: 15px; 
}

.copyright-info a{
    color: var(--color-navy); 
}

.copyright-info a:hover{
   border-bottom: 2px solid var(--color-light-blue); 
}

#footer-menu li a {
    position: relative;
    color: var(--color-navy);
    text-transform: uppercase; 
    text-decoration: none;
    transition: opacity 1s ease;
}

#footer-menu li a:hover, .services-info ul li a:hover, .contact-info ul li a:hover {
    border-bottom: 2px solid var(--color-light-blue); 
    transition: opacity 1s ease;
}


.site-footer ul li{
    margin-bottom: 0.5em; 
}



.page-template-page-single-service-new #portfolio-cta{
    margin-top: 8em !important; 
}

.page-template-page-single-service-new .section-reviews{
    margin-bottom: 0 !important; 
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {

	.page-template-page-single-service-new #reverse-row.section-about-slider .row{
        flex-direction: column-reverse;
    }
	.page-internal-banner-md{
		background-attachment: unset !important; 
	}
	
    .col-footer{
    margin-bottom: 2em; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    }

    .row-footer{
        margin-top: 0; 
    } 

    .section-icons{
        padding-top: 3em; 
        padding-bottom: 3em; 
    }

    .page-template-page-careers .section-icons.bg-lightblue, .page-template-page-single-location .section-services{
        margin-bottom: 0; 
    }

    .page-id-783 .section-back-and-forth{
        margin-bottom: 0; 
        padding-bottom: 0; 
    }

    .page-template-page-single-service .page-internal-banner{
        margin-bottom: -5em; 
    }


   .page-id-783 #tall-image.section-back-and-forth.with-accordion .row.main-row {
        flex-direction: column-reverse !important; 
        padding-top: 0; 
    }

    .section-icons h2{
        padding-bottom: 1em; 
    }

    .page-internal-banner{
        height: 65vh; 
        background-position: center center !important;
    }

    .section-about-slider .slide .slider-text-area{
        padding-top: 1em; 
    }

    .blog-post-title{
        font-size: 22.75px; 
    }

    .about-slider .slide .row{
        flex-direction: column-reverse;
    }

    .section-cta, .section-bottom-banner{
        display: flex; 
        justify-content: center;
        align-items: center;
    }

    #row-reverse.section-back-and-forth .row{
        gap: 2em; 
        flex-direction: column-reverse !important; 
    }

    #tall-image.section-back-and-forth .row{
        gap: 2em; 
    }

    .section-back-and-forth .accordion .row{
        flex-direction: row !important;
    }

    section {
        margin: 0 auto 2em auto;
        padding: 3em 0;
        position: relative;
    }

    .team-member-content{
        text-align: center;
        padding: 2em; 
    }

    .icons-container{
        display: flex; 
        flex-direction: column;
        gap: 3em; 
    }

    .accordion{
        padding-top: 1em; 
    }

    .accordion-heading-text{
        max-width: 10em;
        width: 100%; 
    }

    .tile:last-child{
        padding-bottom: 2em; 
    }
    .job-listing-wrapper{
        gap: 1em; 
    }

    .job-listing-wrapper .button-wrapper, .job-listing-wrapper .button-wrapper .button{
        width: 100%; 
    }

    .job-title{
        padding-top: 1em; 
    }
    .box{
        height: 36vh; 
        width: 72vw; 
    }
    .services-grid-container{
        justify-items: center;
    align-items: center;
    }

    .menu-item > a::after {
        
       all: unset !important;
      }

      .section-map .text-area{
        padding: 0 2em; 
      }
      .section-logo-slider{
        margin-bottom: 0; 
      }

      #popup-gallery .item img{
        width: 100%; 
        height: 100% 
        }
        
        .portfolio-info{
        Padding: 16px; 
        }
        
        
        #popup-featured-image{
        height: 100%; 
        Width: 100%; 
        }     
        
        .full-width-image-wrapper{
            width: 101vw;
             margin-left: calc(-4rem + 1rem);
        }

        .modal-header{
            padding: 10px 20px; 
        }

        .filter-title, .title-filters, .box-check{
            font-size: 16px; 
        }
        #filtersForm fieldset{
            padding: 0px !important; 
        }

        .modal-footer a, #applyFiltersBtn{
            font-size: 16px; 
        }

        #applyFiltersBtn.button{
            padding: 10px 8px; 
            text-transform: capitalize !important; 
        }


        .modal-body{
            padding: 15px; 
        }
        .portfolio-container .row{
            gap: 1em; 
        }

        .section-cta.desktop, .section-bottom-banner.desktop{
            display: none; 
        }
    
        .section-cta.mobile, .section-bottom-banner.mobile{
            display: flex; 
        }
    
        .section-cta, .section-bottom-banner{
            height: 100%; 
        }
    
        .section-cta.mobile .row, .section-bottom-banner.mobile .row{
            display: flex; 
            justify-content: center;
            flex-direction: column-reverse; 
        }

        .mobile-bg-img{
            margin-bottom: -7px; 
        }

        .section-back-and-forth .media-item{
            margin-top: 2em; 
            margin-bottom: -4px; 
        }

        .home .section-process, .page-template-page-about .section-cta, .section-process, .page-template-page-careers .section-back-and-forth, .page-template-page-single-service .section-back-and-forth{
            padding-bottom: 0; 
        }

        .page-template-page-about .section-cta,  .page-template-page-careers .section-back-and-forth, #subcontractors.section-form, .page-template-page-single-service .section-back-and-forth {
            margin-bottom: 0; 
        }

        .page-template-page-about .section-map, .section-info-tiles, .page-template-page-careers .section-bottom-banner.mobile{
            padding-top: 0; 
        }

        .page-template-page-about .section-map{
            margin-top: -1em;
        }

        .about-slider .slide .container-fluid{
            all: unset; 
        }

        .about-slider .slide .full-width-image{
            width: 104vw; 
            padding: 0; 
        }

        .about-slider .slide .slider-text-area, .about-slider .slide .main-heading{
            padding-left: 2em;
            padding-right: 2em;
            width: min(1400px, calc(92.5vw - 0.05* max(0px, 100vw - 768px)));
        }

        body .about-slider .full-width-image .media-item{
            width: 100% !important;
        }

        .about-slider .slide{
            padding-bottom: 3em; 
        }
        .blog-post-content{
            margin-top: 0; 
            margin-bottom: 2em; 
        }   

        .section-portal-cta .video iframe{
            height: 10em; 
        }

        .section-portal-cta .button-wrapper{
            margin-top: 0; 
        }

        .section-portal-cta{
            padding-top: 1em; 
            padding-bottom: 0; 
        }

        .modal-content{
            max-width: 800px; 
            width: 87%; 
        }

        .site-footer{
            padding-top: 1em; 
        }
        .mobile-logo .img{
            width: 70%; 
        }

        #reverse-row.section-back-and-forth .mobile-reverse,  #tall-image.section-back-and-forth .row,  #mobile-reverse.section-back-and-forth .row{
            flex-direction: column-reverse !important; 
        }

        .mobile-reverse{
            flex-direction: column-reverse;
        }

        .mobile-reverse .text-area, .page-template-page-single-service #reverse-row.section-back-and-forth .text-area, .page-template-page-single-service #tall-image.section-back-and-forth .text-area{
            padding-top: 2em; 
        }

        .section-cta.mobile{
            margin-bottom: 0; 
            padding-bottom: 0; 
        }

        .section-repeater{
            padding-top: 0; 
        }

        #reverse-row.section-repeater, .page-template-page-trex #about.section-about-text{
            padding-top: 2em; 
        }

        .page-template-page-single-service .section-about-text{
            margin-top: 3em; 
            margin-bottom: -3em; 
        }

        .page-template-page-single-service #reverse-row.section-back-and-forth .row, .page-template-page-timbertech #reverse-row.section-back-and-forth .row, .page-template-page-trex #reverse-row.section-back-and-forth .row, .page-template-page-trex .section-back-and-forth.with-accordion .main-row{
            flex-direction: column-reverse !important;
        }

        .page-template-page-timbertech #about.section-about-text, .page-template-page-trex #about.section-about-text{
            margin-bottom: 0; 
            padding-bottom: 0; 
        }

        .page-template-page-timbertech #reverse-row.section-back-and-forth .text-area, .page-template-page-trex #reverse-row.section-back-and-forth .text-area, .page-template-page-trex .section-back-and-forth.with-accordion .text-area{
            padding-top: 2em !important; 
        }

        .page-template-page-timbertech #reverse-row.section-back-and-forth, .page-template-page-trex #reverse-row.section-back-and-forth{
            padding-bottom: 0; 
            margin-bottom: 0; 
        }

        .page-template-page-timbertech .section-back-and-forth.with-accordion, .page-template-page-trex .section-back-and-forth.with-accordion {
            padding-top: 0; 
        }

        .accordion-heading-text{
            line-height: 1.2em;
        }
        .page-template-page-free-estimate .section-map{
            padding-top: 0; 
            margin-top: -17px; 
        }
        .section-map iframe{
            height: 20em; 
        }


        .form-contact-info ul li a, .form-contact-info ul li span{
            max-width: 15em;
            width: 100%; 
        }

        .team-card{
            margin-bottom: -1em; 
            height: auto; 
        }

        .team-members-grid{
            row-gap: 0; 
        }


        .page-template-page-job-application .section-form{
            margin-bottom: -3em; 
        }
        
        .section-finance h2{
            text-align: left;
        }

        #free-estimate.section-form h2{
            margin-top: 0 !important; 
        }

        .card-wrapper{
            margin-bottom: 4em; 
        }

        .page-template-page-meet-us .section-reviews{
            padding-top: 0; 
        }

        .section-portfolio{
            padding-bottom: 0; 
        }

        #services.section-back-and-forth{
            padding-bottom: 0; 
        }

        .home .page-main-banner{
            margin-bottom: -5em; 
          }

        .logo-nav-container .owl-prev {
            position: absolute;
            top: 42%;
            left: 5%;
        }
        
        .logo-nav-container .owl-next {
            position: absolute;
            top: 42%;
            right: 5%;
        }

        #portfolio-popup {
            width: 90% !important; 
        }

        .responsive-menu-open #site-header.header-scrolled {
            transform: unset  !important;
            opacity: unset !important;
        }
        

}
/*Devices 768px in width*/
@media only screen and (min-width: 48em) {

    

    
}
@media only screen and (max-width: 48em) {
    #reverse-row.section-back-and-forth .row.reverse-mobile{
    flex-direction: column-reverse;
    gap: 2em;
   
}
#reverse-row.section-service-intro .row {
    flex-direction: column;
}
#reverse-row.section-back-and-forth.reverse-mobile{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
	padding-top: 0 !important
}
.page-template-page-single-service-new .section-repeater,
.page-template-page-single-service-new #tall-image {
    padding-top: 0 !important;
    padding-bottom: 0;
    margin-bottom: 0;
}
.page-template-page-single-service-new #reviews{
    margin-top: 4em;
}
.page-template-page-single-service-new #our-process {
    margin-top: 1em !important;
}
.form-wrapper {
    padding: 0;
}
}
@media only screen and (max-width: 36.184em) {
    .section-gallery .figure {
        height: 10em;
    }
}
@media (max-width: 1023px) {
    .services-grid-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
        grid-template-rows: repeat(5, 1fr); /* 5 rows */
        height: auto; /* Auto height for stacking boxes */
    }

    .box1 {
        grid-area: 1 / 1 / 2 / 2; /* First row, first column */
    }

    .box2 {
        grid-area: 2 / 1 / 3 / 2; /* Second row, first column */
    }

    .box3 {
        grid-area: 3 / 1 / 4 / 2; /* Third row, first column */
    }

    .box4 {
        grid-area: 4 / 1 / 5 / 2; /* Fourth row, first column */
    }

    .box5 {
        grid-area: 5 / 1 / 6 / 2; /* Fifth row, first column */
    }
    .section-gallery{
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1024px){
    #site-header .row.desktop {
        display: none !important;
    }
    #site-header .row.mobile {
       display: flex; 
    }

}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {


}

/* Service Intro Reverse Row Styles */
@media only screen and (min-width: 75em) {
    #reverse-row.section-service-intro .text-area {
        padding-left: 4em;
    }

    #reverse-row.section-service-intro .full-width-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    #reverse-row.section-service-intro .full-width-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100%;
    }

    #reverse-row.section-service-intro .full-width-image .media-item {
        width: 100%;
        height: 100%;
    }

    #reverse-row.section-service-intro .full-width-image .media-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {

    .services-grid-container {
        margin: 16px; 
    }

    .full-width-image .media-item {
        width: 50vw; 
    }

    .full-width-image {
        position: relative;
        padding-right: 0;
        padding-left: 0;
    }
    
    
    .full-width-image .media-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-slider.reverse .full-width-image .media-item img{
        width: 100% !important; 
        height: 100% !important; 
        object-fit: cover !important; 

    }

    #reverse-row.section-back-and-forth{
        margin-top: 4em; 
    }
    
    #reverse-row.section-back-and-forth .text-area, .about-slider.reverse .text-left{
        padding-left: 4em; 
    }

    #reverse-row.section-back-and-forth .text-area h2{
        margin-top: 0.5em; 
    }
    
    #reverse-row.section-back-and-forth .full-width-image-wrapper, #tall-image.section-back-and-forth .full-width-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%; 
    }

    .section-back-and-forth .full-width-image-wrapper{
        height: 100%; 
    }
    
    #reverse-row.section-back-and-forth .full-width-image, .about-slider.reverse .full-width-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100%;
    }

    #tall-image.section-back-and-forth .full-width-image{
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100%;
        padding: 4em 0; 
    }

    #tall-image.section-back-and-forth .text-area{
        padding: 5em 0; 
    }
    
    #reverse-row.section-back-and-forth .full-width-image .media-item, #tall-image.section-back-and-forth .full-width-image .media-item {
        width: 100%;
        height: 100%;
    }

    #reverse-row.section-back-and-forth .text-area h2{
        margin-top: 0 !important; 
    }


    .about-slider .full-width-image .media-item img{
        height: 80vh !important; 
        object-fit: cover;
        width: 100%; 
    }

    .section-cta .cta-container{
        width: 46em;
        height: 24em;
        padding-left: 12em; 
        padding-top: 3em; 
        padding-bottom: 3em; 
        padding-right: 5em; 
    }

    .section-bottom-banner .cta-container{
        width: 42em;
        height: 21em;
        padding-left: 4em; 
        padding-top: 3em; 
        padding-bottom: 3em; 
        padding-right: 12em; 
    }

    .about-slider .description, .about-slider .slider-title, .section-form .description{
        max-width: 30em; 
        width: 100%; 
    }

    .team-member-content{
        position: absolute;
        right: 0; 
        padding: 2em 0 2em 1.5em; 
        bottom: -9%;
        max-width: 18em;
        width: 100%;
    }

    .team-members-grid{
        row-gap: 4em; 
    }

    .section-form{
        padding-top: 6em; 
        padding-bottom: 6em; 
        margin-bottom: 0; 
    }

    .accordion-heading-text, .job-title{
        font-size: 25px; 
    }

    .blog-post-card{
        margin: 10px; 
    }

    .section-finance .description{
        max-width: 34em; 
        width: 100%; 
    }

    #careers.section-about-text .description{
        max-width: 50em; 
        width: 100%; 
        margin: auto; 
    }
    .section-back-and-forth.with-accordion{
        margin-top: 6em; 
    }

    #popup-gallery .item img {
        width: 100%;
        height: 40vh !important;
        object-fit: cover; 
    }

   /* #popup-featured-image {
        display: block;
        width: 100%;
        height: 40vh !important;
        object-fit: cover; 
    }
    */ 
    .section-jobs{
        padding-top: 6em; 
        padding-bottom: 6em; 
    }
   

    

}

/*Devices 2000px+ in width*/
@media only screen and (min-width: 125em) {
    .section-gallery .figure {
        height: 30em;
    }
}

/*--------------------------------------------------------------
# Tabbed Slider Section
--------------------------------------------------------------*/
.section-tabbed-slider {
    padding: 4em 0;
    background-color: var(--color-white);
}

.section-tabbed-slider .headline {
    font-size: var(--font-size-secondary-heading);
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 0.5em;
}

.section-tabbed-slider .description {
    text-align: center;
    color: var(--color-slate);
    margin-bottom: 2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tab Navigation */
.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
    gap: 0;
}

.tab-button {
    background: var(--color-white);
    border: 1px solid #d0d0d0;
    padding: 1em 2em;
    font-size: var(--font-size-cta);
    color: var(--color-navy);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 200px;
    border-right: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

.tab-button:first-child {
    /* No border radius */
}

.tab-button:last-child {
    border-right: 1px solid #d0d0d0;
    /* No border radius */
}

.tab-button:hover {
    background-color: var(--color-light-grey);
}

.tab-button.active {
    background-color: var(--color-light-blue);
    color: var(--color-white);
    border-color: var(--color-light-blue);
}

.tab-button.active + .tab-button {
    border-left-color: var(--color-light-blue);
}

/* Tab Content */
.tabs-content {
    margin-top: 2em;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes teamPopupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Tab Info Section */
.tab-info {
    padding: 0 2em 0 0;
}

.tab-info h3 {
    font-size: var(--font-size-tertiary-heading);
    color: var(--color-navy);
    margin-bottom: 0.5em;
    font-weight: 600;
}

.tab-info h4 {
    font-size: var(--font-size-quartary-heading);
    color: var(--color-navy);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.tab-info p {
    color: var(--color-slate);
    margin-bottom: 1em;
    line-height: 1.6;
}

.tab-info strong {
    color: var(--color-light-blue);
}

.tab-info ul {
    list-style: none;
    padding-left: 0;
}

.tab-info li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    color: var(--color-slate);
}

.tab-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-light-blue);
    font-weight: bold;
}

/* Tab Slider */
.tab-slider-wrapper {
    position: relative;
    padding: 0 35px;
}

.tab-slider {
    margin-bottom: 1em;
}

.tab-slider .slide-item {
    position: relative;
}

.tab-slider .slide-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    /* No border radius */
}

/* Thumbnail Navigation */
.thumbnail-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 1em;
    position: relative;
}

.thumb-nav-prev,
.thumb-nav-next {
    background: none;
    border: none;
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.thumb-nav-prev {
    left: -30px;
}

.thumb-nav-next {
    right: -30px;
}

.thumb-nav-prev svg path,
.thumb-nav-next svg path {
    fill: var(--color-light-blue);
    transition: opacity 0.3s ease;
}

.thumb-nav-prev:hover svg path,
.thumb-nav-next:hover svg path {
    opacity: 0.7;
}

.thumbnail-slider {
    flex: 1;
    overflow: hidden;
}

.thumbnail-slider .owl-stage-outer {
    overflow: hidden;
}

.thumbnail-slider .thumb-item {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumbnail-slider .thumb-item:hover {
    opacity: 1;
}

.thumbnail-slider .owl-item.active-thumb .thumb-item {
    opacity: 1;
}

.thumbnail-slider .thumb-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    /* No border radius */
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .tab-button {
        min-width: 150px;
        padding: 0.75em 1.5em;
    }
}

@media only screen and (max-width: 768px) {
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 0 50%;
        border-right: 1px solid #d0d0d0;
        border-bottom: none;
        min-width: auto;
    }
    
    .tab-button:nth-child(2) {
        /* No special styling needed */
    }
    
    .tab-button:nth-child(3) {
        border-top: none;
    }
    
    .tab-button:last-child {
        border-top: none;
    }
    
    .tab-info {
        padding: 0 0 2em 0;
    }
    
    .tab-slider .slide-item img {
        height: 300px;
    }
    
    .section-tabbed-slider {
        padding: 2em 0;
    }
}

@media only screen and (max-width: 480px) {
    .tab-button {
        font-size: 0.9em;
        padding: 0.75em 1em;
    }
    
    .thumbnail-slider .thumb-item img {
        height: 60px;
    }
}

/*--------------------------------------------------------------
# Image & FAQ Section
--------------------------------------------------------------*/
.section-image-faq {
    padding: 4em 0;
    background-color: var(--color-white);
}

/* Image FAQ - image on left side */
.section-image-faq .row.reverse-desktop {
    flex-direction: row-reverse;
}

.section-image-faq .full-width-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50vw;
    height: 100%;
    padding: 0;
}

.section-image-faq .full-width-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-image-faq .full-width-image .media-item {
    width: 100%;
    height: 100%;
}

.section-image-faq .full-width-image .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-image-faq .text-area {
    padding: 2em 4em 2em 2em;
}

.section-image-faq .row.reverse-desktop .text-area {
    padding: 2em 2em 2em 4em;
}

.page-template-page-deck-pricing-guide .section-image-faq {
    margin-bottom: 0;
}

.page-template-page-deck-pricing-guide .section-faqs {
    padding-bottom: 0;
    margin-bottom: 0;
}

.page-template-page-deck-pricing-guide .section-pricing-disclaimer p {
    font-style: italic;
}

.section-image-faq .faq-content {
    padding: 0;
}

.section-image-faq .headline {
    font-size: var(--font-size-secondary-heading);
    color: var(--color-navy);
    margin-bottom: 0.5em;
}

.section-image-faq .description {
    color: var(--color-slate);
    margin-bottom: 2em;
    line-height: 1.6;
}

.section-image-faq .description p {
    margin-bottom: 1em;
}

/* FAQ Accordion */
.faq-accordion {
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 1.5em 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-quartary-heading);
    color: var(--color-navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-light-blue);
}

.faq-item.active .faq-question {
    color: var(--color-light-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-light-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5em;
}

.faq-answer-content {
    color: var(--color-slate);
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 1em;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.faq-answer-content li {
    margin-bottom: 0.5em;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .section-image-faq {
        padding: 3em 0;
    }
    
    .section-image-faq .row.reverse-desktop {
        flex-direction: column;
    }
    
    .section-image-faq .full-width-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 2em;
    }
    
    .section-image-faq .text-area {
        padding: 0 1em;
    }
    
    .section-image-faq .headline {
        font-size: var(--font-size-tertiary-heading);
    }
    
    .faq-question {
        padding: 1em 0;
        font-size: 1em;
    }
}

@media only screen and (max-width: 480px) {
    .section-image-faq {
        padding: 2em 0;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/*--------------------------------------------------------------
# Pricing Approach Section
--------------------------------------------------------------*/
.section-pricing-approach {
    padding: 5em 0;
    background-color: var(--color-light-grey);
}

.section-pricing-approach .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-pricing-approach .headline {
    font-size: var(--font-size-secondary-heading);
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 2em;
}

.section-pricing-approach .column-content {
    padding: 0 2em;
    text-align: left;
}

.section-pricing-approach .column-content p {
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: 1.5em;
    font-size: var(--font-size-body);
    text-align: left;
}

.section-pricing-approach .column-content p:last-child {
    margin-bottom: 0;
}

.section-pricing-approach .column-content strong {
    color: var(--color-navy);
    font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .section-pricing-approach {
        padding: 3em 0;
    }
    
    .section-pricing-approach .headline {
        font-size: var(--font-size-tertiary-heading);
        margin-bottom: 1.5em;
    }
    
    .section-pricing-approach .column-content {
        padding: 0 1em;
        margin-bottom: 2em;
    }
    
    .section-pricing-approach .column-content:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .section-pricing-approach {
        padding: 2em 0;
    }
    
    .section-pricing-approach .column-content p {
        font-size: 0.95em;
    }
}

/*--------------------------------------------------------------
# Pricing Disclaimer Section
--------------------------------------------------------------*/
.section-pricing-disclaimer {
    padding: 4em 0;
    background-color: var(--color-white);
}

.section-pricing-disclaimer .disclaimer-content {
    text-align: left;
}

.section-pricing-disclaimer .disclaimer-content p {
    color: var(--color-slate);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 1em;
    text-align: left;
}

.section-pricing-disclaimer .disclaimer-content p:last-child {
    margin-bottom: 0;
}

.section-pricing-disclaimer .disclaimer-content strong {
    color: var(--color-navy);
    font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .section-pricing-disclaimer {
        padding: 3em 0;
    }
    
    .section-pricing-disclaimer .disclaimer-content {
        padding: 0 1em;
    }
}

@media only screen and (max-width: 480px) {
    .section-pricing-disclaimer {
        padding: 2em 0;
    }
    
    .section-pricing-disclaimer .disclaimer-content p {
        font-size: 0.95em;
    }
}

/*--------------------------------------------------------------
# Page Template Specific - Deck Pricing Guide
--------------------------------------------------------------*/
.page-template-page-deck-pricing-guide .section-bottom-banner .cta-container {
    height: auto !important;
    min-height: 24em;
    padding: 3em;
}

@media only screen and (max-width: 768px) {
    .page-template-page-deck-pricing-guide .section-bottom-banner .cta-container {
        min-height: auto;
        padding: 2em;
    }
}

/*--------------------------------------------------------------
# Hero with Form Section
--------------------------------------------------------------*/
.section-hero-with-form {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4em 0;
    overflow: hidden;
}

.section-hero-with-form .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-hero-with-form .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-hero-with-form .container-fluid {
    position: relative;
    z-index: 2;
}

.section-hero-with-form .hero-headline {
    font-size: var(--font-size-primary-heading);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0;
}

.section-hero-with-form .hero-form-wrapper {
    background-color: rgba(31, 75, 117, 0.9);
    padding: 2em;
    border-radius: 8px;
}

.bg-navy h3,
.bg-navy h2,
.section-form .bg-navy h3,
.section-form .bg-navy h2 {
    color: var(--color-white);
    font-size: var(--font-size-tertiary-heading);
    margin-bottom: 1em;
    font-weight: 600;
}

.bg-navy label,
.section-form .bg-navy label {
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 500;
}

.bg-navy input[type="text"],
.bg-navy input[type="email"],
.bg-navy input[type="tel"],
.bg-navy select,
.bg-navy textarea,
.section-form .bg-navy input[type="text"],
.section-form .bg-navy input[type="email"],
.section-form .bg-navy input[type="tel"],
.section-form .bg-navy select,
.section-form .bg-navy textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 4px;
    font-size: 1em;
}

.bg-navy input[type="text"]::placeholder,
.bg-navy input[type="email"]::placeholder,
.bg-navy input[type="tel"]::placeholder,
.bg-navy textarea::placeholder,
.section-form .bg-navy input[type="text"]::placeholder,
.section-form .bg-navy input[type="email"]::placeholder,
.section-form .bg-navy input[type="tel"]::placeholder,
.section-form .bg-navy textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.bg-navy .gform_button,
.bg-navy input[type="submit"],
.section-form .bg-navy .gform_button,
.section-form .bg-navy input[type="submit"] {
    background-color: var(--color-light-blue);
    color: var(--color-white);
    border: none;
    padding: 1em 2em;
    font-size: var(--font-size-cta);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1em;
}

.bg-navy .gform_button:hover,
.bg-navy input[type="submit"]:hover,
.section-form .bg-navy .gform_button:hover,
.section-form .bg-navy input[type="submit"]:hover {
    background-color: var(--color-navy);
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .section-hero-with-form {
        min-height: auto;
        padding: 3em 0;
    }
    
    .section-hero-with-form .hero-headline {
        font-size: var(--font-size-secondary-heading);
        margin-bottom: 2em;
        text-align: center;
    }
    
    .section-hero-with-form .hero-form-wrapper {
        margin: 0 1em;
    }
}

@media only screen and (max-width: 480px) {
    .section-hero-with-form {
        padding: 2em 0;
    }
    
    .section-hero-with-form .hero-form-wrapper {
        padding: 1.5em;
    }
}

/* Hero description styles */
.section-hero-with-form .hero-description {
    color: var(--color-white);
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 1.5em;
    opacity: 0.95;
}

/* Top alignment styles */
.section-hero-with-form .row.top-xs {
    padding-top: 4em;
}

.section-hero-with-form .hero-content.align-top {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .section-hero-with-form .hero-description {
        font-size: 1.1em;
        margin-top: 1em;
        text-align: center;
    }
    
    .section-hero-with-form .row.top-xs {
        padding-top: 2em;
    }
}

/*--------------------------------------------------------------
# Why Choose Section
--------------------------------------------------------------*/
.section-why-choose {
    padding: 4em 0;
    background-color: var(--color-white);
}

.section-why-choose .content-wrapper {
    padding-right: 3em;
}

.section-why-choose .headline {
    font-size: var(--font-size-secondary-heading);
    color: var(--color-navy);
    margin-bottom: 1em;
}

.section-why-choose .content {
    color: var(--color-slate);
    margin-bottom: 2em;
}

.section-why-choose .content p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.section-why-choose .content ul {
    list-style: none;
    padding-left: 0;
}

.section-why-choose .content li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
    color: var(--color-slate);
}

.section-why-choose .content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-light-blue);
    font-weight: bold;
}

.section-why-choose .content strong {
    color: var(--color-navy);
    font-weight: 600;
}

.section-why-choose .button {
    margin-bottom: 1.5em;
}

.section-why-choose .subtitle {
    color: var(--color-slate);
    font-size: 0.9em;
    margin-bottom: 2em;
}

.section-why-choose .logos-wrapper {
    display: flex;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
}

.section-why-choose .logo-item {
    flex: 0 0 auto;
}

.section-why-choose .logo-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.section-why-choose .logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.section-why-choose .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.section-why-choose .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .section-why-choose {
        padding: 3em 0;
    }
    
    .section-why-choose .content-wrapper {
        padding-right: 0;
        margin-bottom: 2em;
    }
    
    .section-why-choose .headline {
        font-size: var(--font-size-tertiary-heading);
    }
    
    .section-why-choose .logos-wrapper {
        justify-content: center;
        gap: 1.5em;
    }
    
    .section-why-choose .logo-item img {
        max-height: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .section-why-choose {
        padding: 2em 0;
    }
    
    .section-why-choose .logos-wrapper {
        gap: 1em;
    }
}

/*--------------------------------------------------------------
# Full Height CTA Section
--------------------------------------------------------------*/
.section-full-height-cta {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-full-height-cta .container-fluid {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.section-full-height-cta .row {
    margin: 0;
}

.section-full-height-cta .full-height-image-col {
    padding: 0;
    min-height: 100vh;
}

.section-full-height-cta .full-height-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.section-full-height-cta .full-height-image img.full-height-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-full-height-cta .full-height-content-col {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-full-height-cta .cta-content {
    padding: 4em 3em;
    max-width: 600px;
    width: 100%;
}

.section-full-height-cta h2 {
    font-size: var(--font-size-secondary-heading);
    line-height: 1.2;
}

.section-full-height-cta .description {
    font-size: var(--font-size-body);
    line-height: 1.6;
}

.section-full-height-cta .contact-info {
    font-size: 0.95em;
    line-height: 1.6;
}

.section-full-height-cta .contact-info p {
    margin-bottom: 0.5em;
}

.section-full-height-cta .contact-info strong {
    display: block;
    margin-top: 1em;
    font-weight: 600;
}

.section-full-height-cta .button {
    padding: 1em 2.5em;
    font-size: var(--font-size-cta);
    font-weight: 600;
    text-transform: none;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .section-full-height-cta .cta-content {
        padding: 3em 2em;
    }
}

@media only screen and (max-width: 768px) {
    .section-full-height-cta {
        min-height: auto;
    }
    
    .section-full-height-cta .full-height-image-col {
        min-height: 50vh;
    }
    
    .section-full-height-cta .full-height-image {
        height: 50vh;
    }
    
    .section-full-height-cta .full-height-content-col {
        min-height: auto;
    }
    
    .section-full-height-cta .cta-content {
        padding: 3em 2em;
    }
    
    .section-full-height-cta h2 {
        font-size: var(--font-size-secondary-heading);
    }
}
/*--------------------------------------------------------------
# Section Deck Showcase
--------------------------------------------------------------*/
.section-deck-showcase h4 {
    font-weight: bold;
}
