/**********
SITEWIDE STYLES
**********/


:root{
    --primary-color: #00273C;
}


body,
html,
a,
p,
div,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Jost', sans-serif;
    line-height: 120%;
    font-size: 16px;
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Anko', sans-serif;
}
p{
    font-weight: 400;
}
h1{
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 49px; 
    letter-spacing: 2.88px;
    text-transform: uppercase;
}
h2{
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}
h3{
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.fs-xxs,
.fs-xxs p{
    font-size: 12px;
}
.fs-xs,
.fs-xs p{
    font-size: 14px;
}
.fs-sm,
.fs-sm p{
    font-size: 16px;
}

.fs-md,
.fs-md p{
    font-size: 18px;
    line-height: 30px;
}
.text-primary {
    color: var(--primary-color);
}
.banner-right-row h2{
    color: #00273C;
    font-size: 59px;
    font-style: normal;
    font-weight: 400;
    line-height: 77px; 
    text-transform: uppercase;
}
img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.8
}
.btn{
    text-align: center;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.btn-outline-light{
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 300ms ease;
}
.btn-outline-primary{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 0;
    transition: all 300ms ease;
}
.btn-outline-primary:hover{
    background: var(--primary-color);
    color: #fff;
}
.btn-outline-light:hover{
    background: #fff;
    color: var(--primary-color);
}
.flex {
    display: flex
}

.container {
    max-width: 1280px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto
}

.cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.bottom30 {
    margin-bottom: 30px;
}

.bottom60 {
    margin-bottom: 60px;
}

.bottom90 {
    margin-bottom: 90px;
}



.text-center{
    text-align: center;
}
.text-white{
    color: #fff;
}

/**********
COOKIE    
**********/

#siteCookie {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 30;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
}

#siteCookie,
#siteCookie p,
#siteCookie a,
#siteCookie .fa {
    color: #fff;
    font-weight: 600
}

#siteCookie .inner {
    display: flex;
    align-items: center;
}

#siteCookie p {
    margin-right: 20px
}

#siteCookie .fa {
    font-size: 28px;
    margin-left: auto
}

#siteCookie i {
    cursor: pointer
}

/* Remove old breakpoint header/nav blocks and replace with: */

/**********
HEADER - ALWAYS BURGER
**********/

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 8px;
    padding-bottom: 8px;
    box-sizing: border-box;
    background: #FFF;
}

header .header-inner {
    align-items: center;
    flex-wrap: nowrap;
}

header .logo {
    position: relative;
    z-index: 20;
}

header .logo img {
    max-height: 134px;
    display: block;
}

/**********
BURGER ICON
**********/

body.fix {
    overflow: hidden;
}

#burgerNav {
    margin-left: auto;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

#burgerNav .innerBurger {
    position: relative;
    height: 100%;
    border-radius: 5px;
    border: 1.5px solid #000;
    width: 100%;
}

#burgerNav .innerBurger span {
    width: 22px;
    height: 1.5px;
    background-color: #000;
    position: absolute;
    opacity: 1;
    transition: all 300ms;
    transform: rotate(0deg);
    left: 11px;

}

#burgerNav .innerBurger span:nth-child(1) { top: 35%; }
#burgerNav .innerBurger span:nth-child(2) { top: 50%; }
#burgerNav .innerBurger span:nth-child(3) { top: 65%; }

#burgerNav.navActive .innerBurger span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
}
#burgerNav.navActive .innerBurger span:nth-child(2) {
    top: 50%;
    opacity: 0;
}
#burgerNav.navActive .innerBurger span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
}

/**********
NAV WRAPPER - ANCHOR POINT FOR DROPDOWN
**********/

.nav-wrapper {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
}

/**********
NAV OVERLAY - CONTAINED DROPDOWN
**********/

nav.nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 90;
    width: 280px;
    max-height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.50);
    transition: max-height 350ms ease, opacity 300ms ease;
    opacity: 0;
    pointer-events: none;
}

nav.nav.navActive {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

nav.nav ul {
    margin: 0;
    padding: 20px 25px;
    list-style: none;
}

nav.nav ul li {
    position: relative;
}

nav.nav ul li a {
    display: block;
    padding: 12px 0;
    color: #FFF;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    text-transform: uppercase;
}
nav.nav ul li.menu-item-has-children > a{
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    position: relative;
}
nav.nav ul li.menu-item-has-children:not(.sub-menu-active) > .sub-menu {
    display: none;
}
nav.navActive ul li.menu-item-has-children > .sub-menu{
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
nav.nav ul li:last-child a {
    border-bottom: none;
}

nav.nav ul li a:hover {
    opacity: 0.7;
}

/**********
SUBMENU
**********/

.menu-item-has-children::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    right: 0;
    top: 30px;
    transform: translateY(-50%) scaleY(1);
    color: #fff;
    transition: transform 300ms ease;
}

.menu-item-has-children.sub-menu-active::after {
    transform: translateY(-50%) scaleY(-1);
}

nav.nav .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

nav.nav .menu-item-has-children.sub-menu-active > .sub-menu {
    max-height: 500px;
}

nav.nav .sub-menu li a {
    padding-left: 15px;
    font-size: 14px;
    border-bottom: none;
}

/* Footer */
footer{
    text-align: center;
    background: #fff;
}
.ftr-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.ftr-links ul li a{
    color: #00273C;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.ftr-inner{
    padding: 20px;
    border-bottom: 1px solid rgba(0, 39, 60, 0.40);
}
.ftr-inner .socials{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.ftr-inner .socials a{
    color: #00273C;
    font-size: 28px;
    margin: 0 4px;
}
.copyright p{
    color: rgba(0, 39, 60, 0.50);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* Slider */

.hero-slider .item{
    position: relative;
    width: 100%;
    height: 100%;
     height: 800px;  
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
}
.hero-slider .item h1{
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 600px;
}
.hero-slider .item::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    z-index: 0;
}
body.home .hero-slider .item::before{
     background: rgba(23, 39, 64, 0.40);
}

.hero-slider .item::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 134px;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 1;
}
.hero-slider .item img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: -1;
}

.dot-dark .slick-dots{
    bottom: 70px;
}

.dot-dark  .slick-dots li button:before{
    display: none;
}
.dot-dark  .slick-dots li button{
    width: 23px;
    height: 2px;
    background: var(--primary-color);
    padding: 0;
    display: block;
    
}
.dot-dark .slick-dots li{
    margin: 0 8px;
}
.dot-dark .slick-dots li.slick-active button{
    height: 4px;
    margin-top: -2px;
}

.arrow-light .slick-prev:before{
    content: url(../img/arrow-left-light.svg);
}

.arrow-light .slick-next:before{
    content: url(../img/arrow-right-light.svg);
}

.arrow-dark .slick-prev:before{
    content: url(../img/arrow-left-dark.svg);
}

.arrow-dark .slick-next:before{
    content: url(../img/arrow-right-dark.svg);
}
.arrow-light .slick-prev{
    left: 50px;
    z-index: 1;
}

.arrow-light .slick-next{
    right: 50px;
}
.review-slider .review-item {
    padding: 50px 130px;
    border: 0.5px solid var(--primary-color);
    margin: 20px;
    position: relative;
    
}
.review-slider .review-item::before{
    content: url(../img/icon-quote.svg);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 73px;
    height: 73px;
    background: #FFF;
}
.review-slider .review-item{
    font-size: 18px;
    font-style: normal;
    text-align: center;
    font-weight: 400;
    line-height: 34px;
}

.review-slider .slick-dots {
    bottom: -40px;
}

.image-left-section{
    /* background-image: url(../img/willbus-pattern.png);
    background-size: contain;
    background-repeat: no-repeat;
     background-position:  left center; */
}

.services-section{
    background: var(--primary-color);
}
.services-section .content{
    text-align: center;
}
.services-section .content h3{
    color: #fff;
}
.services-section .content p{
    font-weight: 300;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.70);
}

.services-section .banner-large-right,
.services-section .banner-large-left{
    width: 100%;
}

.section-feature{
    width: 1005;
    min-height: 692px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.section-feature::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
}
.section-feature .container{
    position: relative;
    z-index: 1;
}
.section-feature h2{
    max-width: 675px;
    margin: auto;
}
.section-feature p{
    font-weight: 300;
}
.section-feature h2,
.section-feature p{
    color: #fff;
    text-align: center;
}
.section-feature .btn{
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 30px;
}
.gallery-row .gallery-image{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    
}
.form-section{
    background: var(--primary-color);
    overflow-x: hidden;
}

.gform_confirmation_wrapper {
    min-height: 209px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.full-img-right,
.full-img-left{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 734px;
}
.form-content h2{
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}

.form-content .form-wrapper{
    max-width: 540px;
    width: 100%;

}
.form-dark input[type="text"],
.form-dark input[type="email"],
.form-dark input[type="tel"],
.form-dark textarea{
    width: 100%;
    padding: 0 0 10px;
     border: none;   
    border-bottom: 1px solid #fff;
    color: #fff;
    background: none;      
}  
.form-dark input[type="text"]::placeholder,
.form-dark input[type="email"]::placeholder,
.form-dark input[type="tel"]::placeholder,
.form-dark textarea::placeholder{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-dark textarea:focus{
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    box-shadow: none;
}
.form-dark textarea{
    height: 70px;
}

.form-dark .gform_confirmation_message {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.form-dark input[type="submit"]{
    background: none;
    color: #FFF;
    border: 1px solid #fff;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 14px 45px;
    margin-top: 30px;
}
.form-dark input[type="submit"]:hover{
    background: #fff;
    color: var(--primary-color);
}

h2.gform_submission_error.hide_summary {
    font-size: 16px !important;
    color: #f00 !important;
    line-height: normal !important;
    outline: none;
    border: none;
}
.gfield{
    margin-bottom: 20px;
}
.gfield_validation_message{
    margin-top: 8px;
    font-size: 14px;
    color: #f00;
    line-height: normal;
}
.plain-content p{
    color: #00273C;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; 
}

.full-image-left-section{
    background: var(--primary-color);
    overflow-x: hidden;
}

.full-image-left-section .content-wrapper{
    max-width: 540px;
    width: 100%;
}
.full-image-left-section .content-wrapper h2{
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}
.full-image-left-section .content-wrapper p{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}
.full-image-left-section .content-wrapper ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.full-image-left-section .content-wrapper ul li{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 166.667% */
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.full-image-left-section .content-wrapper ul li::before{
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background: #FFF;
    width: 4px;
    height: 25px;
}
.garden-section {
    overflow: hidden;
}

.garden-grid {
    display: grid;
    grid-template-columns: 370px 1fr 357px;
    grid-template-rows: auto auto;
    grid-template-areas:
        "img-left  content    img-right"
        "img-left  img-bottom img-bottom";
    column-gap: 40px;
    row-gap: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0;
    align-items: start;
}

.garden-grid__img--left {
    grid-area: img-left;
    grid-row: 1 / 3; /* spans both rows */
}

.garden-grid__img--right  { grid-area: img-right; }
.garden-grid__content     { grid-area: content; text-align: center; padding: 20px 32px 40px; }
.garden-grid__img--bottom {
    grid-area: img-bottom;
    margin-top: 24px;
}

.garden-grid__img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.garden-grid__img--left img {
    aspect-ratio: 2 / 6;  /* tall portrait */
    height: 100%;         /* fills both row spans */
    max-height: 600px;
}

.garden-grid__img--right img {
    aspect-ratio: 1 / 1;  /* roughly square */
}

.garden-grid__img--bottom img {
    aspect-ratio: 16 / 7;
}
.section-team{
    background: var(--primary-color);
}
body:not(.our-projects) .section-plain{
    min-height: 446px;
    display: flex;
    align-items: center;
}
.card-style-1 .card-img{
    width: 100%;
    height: 386px;
    object-fit: cover;
}
.card-item{
    position: relative;
}
.card-style-1 .info{
    background: var(--primary-color);
    padding: 38px 30px;
    margin-top: -50px;
    z-index: 1;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.card-style-1 .info h3{
    color: #FFF;
    text-align: center;
    leading-trim: both;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.card-style-1 .info p{
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.card-style-1 .info .link{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-style-1 .info .link iconify-icon{
    font-size: 16px;
}
.project-types ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.project-types ul li{
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin: 0 10px;
}
.projects-results {
    transition: opacity 0.2s ease;
}
.projects-results.loading {
    opacity: 0.8;
    pointer-events: none;
}

.filter-btn {
    cursor: pointer;
}
.filter-btn.active {
    font-weight: 700;
    border-bottom: 4px solid var(--primary-color);
}

.projects-results{
    background: var(--primary-color);
    padding: 60px 15px 50px;
    position: relative;
}
.projects-results::after{
    content: "";
    position: absolute;
    bottom: -134px;
    left: 0;
    width: 100%;
    height: 134px;
    background: linear-gradient(180deg, #00273C 0%, rgba(0, 39, 60, 0.00) 100%);
    z-index: 1;
}
.hero-banner{
    width: 100%;
    height: 400px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-position: center;
     background-repeat: no-repeat !important;
     background-size: cover;
     position: relative;
}
.hero-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
}
.hero-banner h1{
    position: relative;
    z-index: 1;
}
.form-section .form-primary h2{
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 49px;
    letter-spacing: 2.88px;
    text-transform: uppercase;
}
.form-section .form-primary{
    max-width: 686px;
    margin: 0 auto;
}
.form-section .form-primary p{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}
.form-section .form-primary input[type="submit"]{
    display: block;
    margin: 50px auto;
}
.form-section .form-info{
   max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(192, 192, 192, 0.40);
    padding-top: 20px;
    padding-bottom: 50px;
}
.form-section .form-info a{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; 
    margin: 10px 20px;
    display: flex;
    align-items: center;
}
.form-section .form-info a iconify-icon{
    font-size: 22px;
    color: #50D18D;
    margin-right: 10px;
}
@media ( max-width: 1280px)  {
    .garden-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "img-left"
            "img-right"
            "img-bottom";
        padding: 30px 16px;
    }
    .garden-grid__img--bottom{
        margin-top: 0;
    }
    .garden-grid img{
        max-height: 300px;
        margin-bottom: 20px;
    }

    .garden-grid__img--left {
        grid-row: auto;
    }

    
}


@media(min-width: 1920px){
    .image-left-section{
        background-position: 20% center;
    }
}
@media (min-width: 768px) {
    .form-content {
        text-align: left;
        padding-right: 60px;
    }
    .full-image-left-section .content-wrapper{
        padding-left: 60px;
    }
    .form-content .form-wrapper{
        max-width: 540px;
        width: 100%;
        display: block;
        margin-left: auto;

    }
    
    .services-section .content{
        padding: 0 50px;
    }
    .banner-right-section{
        min-height: 400px;
    }

    .image-left-section .content{
        padding-left: 128px;
    
    }
    img.banner-right{
        width: 840px;
        margin-right: -50%;
        display: block;
        position: absolute;
    }
}

@media (max-width: 767px) {
    .reviews-section{
        overflow-x: hidden;
    }
    .project-types ul li {
        padding: 10px;
    }
    .hero-slider .item {
        height: 567px;
    }
    .card-style-1 .card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .card-style-1 .info{
        padding: 15px 10px;
    }
    .card-style-1 .info h3{
        margin-bottom: 10px;
        font-size: 16px;
        line-height: normal;
    }
    header .logo img {
        max-height: 90px;
        display: block;
    }
    .hero-slider .item::before {
        background: rgba(23, 39, 64, 0.70);
        z-index: 0;
    }
    .review-slider .slick-next{
        right: -11px;
    }
    .review-slider .slick-prev{
        left: -11px;
    }
    .form-section .form-info a{
        margin: 10px 0;
    }
    .form-section .form-info{
        flex-direction: column;
    }
    .review-slider .review-item{
        padding: 50px 30px;
    }
    .services-section .content {
        order: 2;
    }
    h1{
        font-size: 34px !important;
        line-height: normal !important;
    }
    h2,
    .banner-right-row h2{
        font-size: 32px !important;
        line-height: normal !important;
    }
    .arrow-light .slick-prev{
        left: 15px;
        z-index: 1;
    }

.arrow-light .slick-next{
    right: 15px;
}
}