:root {
     scroll-behavior: auto;
    --blue-400: #0053e9;
    --blue-300: #3f79e8;
    --blue-300a: rgba(0, 83, 233, 0.5);
    --gray-100: #f7f7f3;
    --black-400: #000;
    --black-300: #1e1e1e;
    --teracota-400: #c34e38;
    --teracota-300: #eabaa0;
    --teracota-400a: rgba(195, 78, 56, 0.5);
    --teracota-300a: rgba(234, 186, 160, 0.5);
}
body{
    position: relative;
    background: var(--gray-100);
    font-family: 'Bradford LL', serif;
}
a, button{
    text-decoration: none;
    transition: all 300ms ease-in-out;
}
a{
    color: inherit;
}
a:hover{
    color: inherit;
}
.back-to-top {
    display: none;
    cursor: pointer;
    z-index: 9999;
    border-radius: 8px;
    border: 0;
    text-align: center;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 10px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: .4;
    transition: opacity 300ms ease-in-out;
}
.back-to-top:hover {
    opacity: 1;
}
.back-to-top svg{
    display: block;
    width: 100%;
    height: auto;
}
.back-to-top svg path{
    fill: #fff;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Agipo Bold Cond", sans-serif;
    font-weight: bold;
}
.logo-main img{
    display: block;
    width: 175px;
    height: auto;
}
.nav-main{
    position: relative;
}
.nav-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 37px;
    height: 30px;
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
}
.nav-toggle:before,
.nav-toggle:after{
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    transform-origin: center;
    top: calc(50% - 2px);
    background: var(--blue-400);
    transition: all ease-in-out 300ms;
}
.nav-toggle:before{
    transform: translateY(-12px);
    left: 0;
}
.nav-toggle:after{
    transform: translateY(12px);
    right: 0;
}
.nav-toggle span{
    text-indent: -1000px;
    overflow: hidden;
    width: 100%;
    height: 5px;
    background: var(--blue-400);
    transition: all ease-in-out 300ms;
}
.nav-open .nav-toggle span{
    opacity: 0;
}
.nav-open .nav-toggle:before{
    transform: translateY(0) rotate(45deg);
}
.nav-open .nav-toggle:after{
    transform: translateY(0) rotate(135deg);
}

.primary-navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.primary-navigation ul a{
    display: block;
    text-decoration: none;
    color: var(--blue-400);
    font-size: 22px;
    line-height: 1.125;
    padding: 10px 0;
    transition: all ease-in-out 300ms;
}
.primary-navigation ul li.button-nav a{
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px;
    border: 1px solid var(--blue-400);
}
.primary-navigation ul li.button-nav a:hover{
    background: var(--blue-400);
    color: var(--gray-100);
}

.main-container{
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer{
    font-family: 'Acumin Pro', sans-serif;
    font-size: 18px;
    color: var(--black-400);
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f7f7f3;
}
.ft-flags{
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    flex-flow: row wrap;
    gap: 17px;
}
.ft-flags img{
    display: block;
    width: 138px;
    height: auto;
}
.ft-text{
    padding-bottom: 30px;
}
.footer-cta{
    background: var(--blue-400);
    color: #fff;
    font-size: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.social-media-links{
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    font-family: "Acumin Pro", sans-serif;
    font-size: 18px;
    display: flex;
    flex-flow: row wrap;
    gap: 15px 20px;
}
.social-media-links a{
    text-decoration: underline;
}
.footer-cta h2{
    font-size: 72px;
}
.footer-cta h2 a{
    text-decoration: underline;
}
.footer-cta h3{
    font-size: 15px;
    font-weight: 400;
}
.certified-logo{
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 15px 20px;
}
.certified-logo img{
    display: block;
    min-width: 60px;
    max-width: 104px;
    height: auto;
}
.row-fcta{
    padding-bottom: 20px;
}
.footer-menu-navigation{
    padding-top: 15px;
}
.footer-menu-navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px 20px;
}
.footer-menu-navigation ul a{
    text-decoration: underline;
    color: var(--blue-400);
}

.footer-pre-cta{
    padding-top: 100px;
    padding-bottom: 85px;
    background: #f7f7f3;
}
.footer-pre-cta .section-title h3{
    color: var(--black-300);
}
.fpcta{
    padding: 26px;
    border-radius: 12px;
    border: 1px solid var(--blue-400);
}
.fpcta h2{
    color: var(--blue-400);
}
.fpc-address{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    word-break: break-all;
}
.fpc-address address{
    margin-bottom: 0;
}
.fpc-address p{
    margin-bottom: 0;
}

.section-group{
    position: relative;
    background: var(--background-color);
    padding-left: 10px;
}
.section-group .section-default{
    background: var(--inner-bacground-color, #fff);
}
.top-spacer>div{
    height: 10px;
}
.top-spacer .section-default{
    background: #c34e38;
}
.hero-img img{
    display: block;
    width: 100%;
    height: auto;
}

.title-section-1{
    position: relative;
    z-index: 9;
}
.title-section-2{
    text-align: right;
    position: relative;
    z-index: 9;
    margin-top: -37px;
}
.full-container{
    position: relative;
}
.layout-boxed .full-container{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}


.title-1, .title-2{
    font-family: "Agipo Bold Cond", sans-serif;
    font-size: 42px;
    line-height: .9;
    color: var(--black-300);
    font-weight: bold;
}
.title-1 {
    transform: translateY(32px);
}
.title-3{
    font-size: 18px;
    color: var(--black-300);
    margin-top: 50px;
}

.hs-1{
    padding-top: 75px;
}
.section-title h2{
    font-size: 20px;
    color: var(--black-300);
    font-family: "Acumin Pro", sans-serif;
    font-weight: 400;
}
.section-title h3{
    font-size: 42px;
    color: var(--black-300);
    line-height: 0.85;
    letter-spacing: .002em;
    margin-bottom: 40px;
}

.text, .text p, .text ul, .text ol{
    font-size: 20px;
    letter-spacing: -.0025em;
    margin-bottom: 1.4rem;
}
.text{
    margin-bottom: 0;
}

.cta-card{
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--blue-400);
    font-family: "Acumin Pro", sans-serif;
    font-weight: 400;
}
.cta-card.cta-card-primary{
    border-color: var(--teracota-400);
}
.cta-card.cta-card-green{
    border-color: #5d693c;
}
.cta-card h3{
    font-size: 25px;
    font-family: "Acumin Pro", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--blue-400);
}
.cta-card p{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 25px;
}
.btn{
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Acumin Pro", sans-serif;
    font-weight: 400;
    padding: 14px 30px 9px;
}
.btn-primary{
    background: var(--teracota-400);
    border-color: var(--teracota-400);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background: var(--teracota-400) !important;
    border-color: var(--teracota-300) !important;
    box-shadow: 0 0 0 .2rem var(--teracota-300a) !important;
}

.btn-secondary{
    background: var(--blue-400);
    border-color: var(--blue-400);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active{
    background: var(--blue-400) !important;
    border-color: var(--blue-400) !important;
    box-shadow: 0 0 0 .2rem var(--blue-300a) !important;
}

.btn-green{
    background: #5d693c;
    border-color: #5d693c;
    color: #fff;
}
.btn-green:hover, .btn-green:focus, .btn-green:active{
    background: #5d693c !important;
    border-color: #7e8f51 !important;
    box-shadow: 0 0 0 .2rem rgba(93, 105, 60, 0.5) !important;
    color: #fff;
}
.btn-blue-300{
    background: #c0e6fa;
    border-color: #c0e6fa;
    color: #253d71;
}
.btn-blue-300:hover, .btn-blue-300:focus, .btn-blue-300:active{
    background: #3472e6 !important;
    border-color: #3472e6 !important;
    box-shadow: 0 0 0 .2rem rgba(52, 114, 230, 0.5) !important;
    color: #fff;
}

.btn-small{
    padding: 10px 20px 5px;
    border-radius: 8px;
    font-size: 17px;
}

.size-full{
    display: block;
    max-width: 100%;
    height: auto;
}

.mb-60{
    margin-bottom: 60px;
}
.img-wrapper img{
    display: block;
    width: 100%;
    height: auto;
}
.img-wrapper .caption{
    font-size: 20px;
    margin-top: 6px;
}
.caption img{
    display: inline-block !important;
    width: 24px !important;
    height: auto;
    vertical-align: middle;
    transform: translateY(-3px);
    margin-right: 6px;
}


body.has-popup-open{
    height: 100vh;
    overflow: hidden;
}
.page-popup{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 40px 15px;
    width: 100%;
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
}
.page-popup.popup-open{
    opacity: 1;
    visibility: visible;
}

.page-popup .popup-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.page-popup .popup-content{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-400);
    color: #fff;
    z-index: 9;
    padding: 40px 15px;
    transform: translateX(100%);
    transition: all ease-in-out 300ms;
    overflow: auto;
}
.page-popup.popup-open .popup-content{
    transform: translateX(0);
}
.page-popup .form-wrapper{
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
}
.page-popup h2{
    font-size: 51px;
    line-height: 0.83;
    margin-bottom: 45px;
}
.close-popup{
    display: block;
    border: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    background: none;
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.close-popup span{
    display: none;
}
.close-popup:before,
.close-popup:after{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 5px;
    background: #fff;
    transform-origin: center;
}
.close-popup:before{
    transform: translateY(-50%) rotate(45deg);
}
.close-popup:after{
    transform: translateY(-50%) rotate(-45deg);
}

.page-popup button[type=submit]{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background: #fff;
    color: var(--blue-400);
    font-family: "Acumin Pro", sans-serif;
    font-size: 18px;
    border-radius: 12px;
    border: 0;
    outline: none !important;
    cursor: pointer;
    line-height: 1.2;
}
.g-recaptcha{
    margin-bottom: 15px;
}
.page-popup button[type=submit] em {
    transform: translateY(2px);
}
.page-popup button[type=submit]:after{
    content: 'g';
    font-family: "Wingdings 3", sans-serif;
}
.map-legend-container{
    border: 2px solid var(--blue-400);
    border-top-left-radius: 12px;
    padding-top: 30px;
}
#wpadminbar{
    z-index: 9991 !important;
}
.hidden{
    display: none !important;
}
.page-popup table tr td{
    padding: 0 0 12px;
    vertical-align: bottom;
}
.page-popup{
    font-family: "Bradford LL", sans-serif;
    color: #fff;
}
.page-popup label{
    font-size: 17px;
    line-height: 1.12;
    color: #fff;
    font-family: "Bradford LL", sans-serif;
    margin: 0;
}
.page-popup .form-control{
    border-radius: 0;
    background: transparent;
    outline: none !important;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    box-shadow: none;
    padding: 3px 0;
    height: auto;
    font-size: 17px;
    line-height: 1.4;
}
.page-popup .form-control::placeholder{
    color: #fff;
}
.page-popup .form-control option{
    background: #fff;
    color: #000;
}
.page-popup .custom-control{
    margin-top: 10px;
    margin-bottom: 15px;
}
.error{
    color: #ff0000;
    font-size: 15px;
    line-height: 1.2;
}

.ls1{
    padding-top: 60px;
    padding-bottom: 60px;
}
.ls1a .hero-img{
    padding-left: 60px;
    padding-right: 60px;
}
.ls1a{
    padding-bottom: 100px;
}

.ls2{
    padding-bottom: 60px;
}

.ls3{
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
}
.ls3a{
    padding-left: max(calc((100% - 1170px) / 2 + 15px), 15px);
}
.slick-slider-nav{
    font-family: "Agipo Bold Cond", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 45px;
}
.slick-slider-nav button{
    padding: 5px 0;
    border: 0;
    background: none;
    color: #fff;
}
.slick-slider .item{
    padding-right: 30px;
}
.slick-slider .slick-list{
    padding-right: 15%;
}
.slick-slider .item img{
    display: block;
    width: 100%;
}
.slick-slider .caption{
    margin-top: 15px;
    line-height: 1.2;
}
.slick-slider .content{
    margin-top: 10px;
    line-height: 1.2;
    letter-spacing: normal;
}
.ls3 .section-title h2,
.ls3 .section-title h3{
    color: #fff;
}
.s3-features{
    list-style: none;
    padding: 0;
    gap: 15px;
    margin-bottom: 50px;
    font-family: "Acumin Pro", sans-serif;
}
.s3-features li{
    display: grid;
    grid-template-columns: 50px minmax(0,1fr);
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.ls4{
    padding-top: 60px;
    padding-bottom: 60px;
}

.ls4-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.ls4-grid .item>img{
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.ls4-grid h3{
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
}
.ls4-grid p:last-child{
    margin-bottom: 0;
}

.marque-text{
    color: #fff;
    font-size: 20px;
    font-family: "Agipo Bold Cond", sans-serif;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.message {
    width: 100%;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    width: 100%;
    will-change: transform;
    justify-content: center;
}
.marque-text.to-right .marquee-track{
    animation: marquee-to-right linear infinite;
}
.marque-text.to-left .marquee-track{
    animation: marquee-to-left linear infinite;
}
/*.marquee:hover .marquee-track {*/
/*    animation-play-state: paused;*/
/*}*/
.marquee-content {
    display: flex;
    align-items: center;
}
.arrow {
    margin: 0 35px;
    font-size: 0;
}
.arrow:after {
    content: "\00B7";
    display: block;
    font-size: 44px;
    line-height: 15px;
}


@keyframes marquee-to-left {
    from {
        transform: translate3d(0,0,0);
    }
    to {
        transform: translate3d(calc(-1 * var(--distance)),0,0);
    }
}
@keyframes marquee-to-right {
    from {
        transform: translate3d(0,0,0);
    }
    to {
        transform: translate3d(calc(var(--distance)),0,0);
    }
}

.floorplan-legend{
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 50px;
}
.floorplan-legend .item{
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    font-size: 20px;
}
.floorplan-legend .item .marker{
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
}

.ls6{
    padding-top: 60px;
    padding-bottom: 60px;
}

.ls7{
    padding-top: 60px;
    padding-bottom: 60px;
}
.ls7 .slick-slider-nav button{
    color: #c34e38;
}
.ls7 .text{
    padding-bottom: 60px;
}
.ls7-map{
    position: relative;
}
.ls7-map img, .floorplan img{
    width: 100%;
}
.ls7-map .map-heading{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-top: 60px;
    padding-bottom: 60px;
}
#register-info-pack h2{
    margin-bottom: 30px !important;
}
#register-info-pack p{
    font-size: 17px;
    margin-bottom: 30px !important;
}
#register-info-pack.page-popup .popup-content{
    padding: 90px 50px 50px;
    background: #c0e6fa;
    color: var(--black-400);
}
#register-info-pack.page-popup .popup-content:before{
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 50px;
    height: calc(100% - 50px);
    background: #253d71;
}
#register-info-pack.page-popup .popup-content:after{
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: calc(100% - 50px);
    height: 50px;
    background: #253d71;
}
#register-info-pack .close-popup{
    top: 10px;
}
#register-info-pack.page-popup label{
    color: var(--black-400);
    font-family: "Agipo Bold Cond", sans-serif;
}
#register-info-pack.page-popup .form-wrapper{
    width: 100%;
    padding-left: 50px;
}
.popup-row{
    display: grid;
    gap: 6px 15px;
    margin-bottom: 20px !important;
    position: relative;
}
.popup-row .wpcf7-form-control{
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 0;
    background: #fff;
    font-family: "Acumin Pro", sans-serif;
    color: var(--black-400);
}
label.popup-row.tenancy:after{
    content: 'sqm';
    position: absolute;
    top: 10px;
    right: 15px;
    color: #253d71;
}
label.popup-row.tenancy .wpcf7-form-control{
    padding-right: 50px;
}
.popup-action{
    text-align: right;
}
.popup-action .btn{
    padding-top: 9px;
    padding-bottom: 9px;
    background-color: #253d71 !important;
}
.popup-action .wpcf7-spinner{
    display: block;
}
.page-template-thank-you .footer-pre-cta{
    display: none;
}

.ty-links{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.sty{
    padding-top: 60px;
    padding-bottom: 60px;
}
.ty-title{
    margin-bottom: 60px;
}
.ty-title h1{
    font-size: 42px;
    color: var(--black-300);
    line-height: 0.85;
    letter-spacing: .002em;
    margin-bottom: 20px;
}
.ty-title p{
    font-size: 18px;
}

.sty-v2{
    color: #fff;
}
.sty-v2 .ty-title h1{
    color: #fff;
}

.ls3a.sty-v2{
    padding-bottom: 120px;
}

@media(max-width: 600px){
    html{
        margin-top: 0 !important;
    }
    .admin-bar #header{
        padding-top: var(--wp-admin--admin-bar--height);
        padding-bottom: 60px;
    }
    .ls1a .hero-img {
        padding-left: 0;
        padding-right: 0;
    }
    .title-1 {
        transform: translateY(13px);
    }
    .title-section-2{
        margin-top: -13px;
    }
    .ls1 .size-full{
        max-width: 145px;
    }
    .ls1 {
        padding-top: 45px;
        padding-bottom: 25px;
    }
    .btn{
        padding: 10px 20px 6px;
        font-size: 16px;
    }
    .footer-cta{
        font-size: 16px;
    }
    .text, .text p, .text ul, .text ol{
        font-size: 18px;
    }
    #register-info-pack.page-popup .popup-content{
        padding: 30px;
    }
    #register-info-pack.page-popup .popup-content:before{
        width: 10px;
        top: 10px;
        height: calc(100% - 10px);
    }
    #register-info-pack.page-popup .popup-content:after {
        left: 10px;
        width: calc(100% - 10px);
        height: 10px;
    }
    #register-info-pack .close-popup {
        top: 25px;
    }
    label.popup-row.tenancy:after{
        top: 35px;
    }
    #register-info-pack.page-popup .form-wrapper{
        padding-left: 0;
    }
    .expandable-text{
        margin-bottom: 35px;
    }

    .ls2 .col-lg-6:nth-child(2) {
        flex-flow: column-reverse wrap;
        display: flex;
    }
    .ls2 .col-lg-6:nth-child(2) .cta-card{
        margin-top: 30px;
    }

    .floorplan-legend{
        justify-content: flex-start;
    }

    .ls6 .col-lg-6:nth-child(2) {
        flex-flow: column-reverse wrap;
        display: flex;
    }
    .ls6 .col-lg-6:nth-child(2) .cta-card{
        margin-top: 30px;
    }
    .ls7-map .map-heading{
        position: static;
        padding-top: 0;
        padding-bottom: 0;
    }
    .ls7-map .section-title h3{
        font-size: 30px;
        margin-bottom: 25px;
    }
}
@media(min-width: 601px){
    .admin-bar .page-popup{
        top: var(--wp-admin--admin-bar--height);
        height: calc(100vh - var(--wp-admin--admin-bar--height));
    }
}
@media(min-width: 768px){
    .ls4-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ty-links{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media(max-width: 991px){
    .logo-bar{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 15px;
    }
    .primary-navigation{
        padding: 30px 15px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 991;
        background: var(--gray-100);
        border-bottom: 1px solid var(--blue-400);
        opacity: 0;
        visibility: hidden;
        transition: all ease-in-out 300ms;
    }
    .nav-open .primary-navigation{
        opacity: 1;
        visibility: visible;
    }
    .primary-navigation ul li.button-nav{
        padding-top: 15px;
    }

    .logo-main img{
        width: 140px;
    }
    .fpc-address{
        margin-bottom: 30px;
    }
    
    .ls4 .section-title h3{
        margin-bottom: 50px;
    }
    .s3-features{
        padding-top: 15px;
    }
    .slick-slider .item .caption, .slick-slider .item .content{
        font-size: 16px;
    }

}
@media(min-width: 992px){

    .admin-bar #header{
        padding-top: var(--wp-admin--admin-bar--height);
    }
    #header{
        padding-top: 76px;
        padding-bottom: 160px;
    }
    #header .container{
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .logo-bar{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }
    .logo-main{
        margin-bottom: 0;
    }
    .nav-toggle{
        display: none;
    }
    .primary-navigation ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px 45px;
        text-align: center;
    }
    .primary-navigation ul a{
        font-size: 20px;
    }
    .primary-navigation ul li.button-nav a{
        background: var(--blue-400);
        color: #fff;
    }
    .primary-navigation ul li.button-nav a:hover{
        background: #fff;
        color: var(--blue-400);
    }
    .logo-main img{
        width: 316px;
    }
    .title-1, .title-2{
        font-size: 99px;
    }
    .title-3{
        font-size: 23px;
    }
    .section-title h3 {
        font-size: 60px;
        margin-bottom: 60px;
    }

    .cta-card{
        padding-left: 50px;
        padding-right: 50px;
    }


    .page-popup .popup-content{
        max-width: 95%;
        width: 642px;
    }
    .section-group{
        padding-left: 20px;
    }
    .top-spacer>div {
        height: 20px;
    }

    .fpc-address{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slick-slider .item{
        padding-right: 50px;
    }
    .slick-slider .slick-list{
        padding-right: 45%;
    }
    .s3-features{
        padding-left: 40px;
    }

    .popup-row{
        grid-template-columns: 30% minmax(0, 1fr);
        align-items: center;
    }
    .ty-links{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .ty-title h1{
        font-size: 70px;
        margin-bottom: 50px;
    }
}
@media(min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1170px;
    }

    .section-row{
        margin-left: -45px;
        margin-right: -45px;
    }
    .section-row>div{
        padding-left: 45px;
        padding-right: 45px;
    }

    .section-group{
        padding-left: 50px;
    }
    .top-spacer>div {
        height: 50px;
    }
    .ls4-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media(min-width: 1340px){
    .ls4-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 60px 50px;
    }
}