@import url(../fonts/stylesheet.css);

/* -------------------------------------------------------------------------------------------------------- */
/* Globals ------------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------- */
:root {
    --primary-color: #FEF8F3;
    --tan: #CDC6BB;
}

html {
    overflow: initial !important;
    position: initial !important;
}

body {
    background: var(--primary-color);
    color: #000;
    font-family: 'Season Sans';
}

body::-webkit-scrollbar-thumb {
    background: #CDC6BB;
    outline: 1px solid #CDC6BB;
}

._tan {
    background: var(--tan);
}

._likeh1, h1 {
    color: #000;
    font-family: 'Season Mix';
    font-size: 130px;
    font-weight: 300;
    line-height: 100%;
}

._likeh2, h2 {
    color: #000;
    font-family: 'Season Mix';
    font-size: 90px;
    font-weight: 300;
    line-height: 100%;
}

._likeh3, h3 {
    color: #000;
    font-family: 'Season Mix';
    font-size: 64px;
    font-weight: 300;
    line-height: 100%;
}

._likeh4, h4 {
    color: #000;
    font-family: 'Season Sans';
    letter-spacing: 1.8px;
}

p {
    line-height: 162%;
}

#mobile-check-element {
    display: none;
}


@media (max-width: 1600px) {
    body {
        font-size: 16px;
    }

    ._likeh1, h1 {
        font-size: 90px;
    }

    ._likeh2, h2 {
        font-size: 50px;
    }

    ._likeh3, h3 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    ._likeh1, h1 {
        font-size: 50px;
    }

    ._likeh2, h2 {
        font-size: 45px;
    }

    ._likeh3, h3 {
        font-size: 45px;
    }

    #mobile-check-element {
        display: block;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        z-index: -999;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Buttons ------------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------- */
.neo_btn,
.neo_btn._btn2 {
    border-radius: 0;
    border: 1px solid #000;
    color: #000;
    font-family: 'Season Sans';
    font-weight: 600;
    letter-spacing: 1.8px;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.neo_btn._btn2 > svg > path {
    fill: #000;
}

.neo_btn:hover,
.neo_btn._btn2:hover {
    background: #000;
    color: #fff;
}

.neo_btn._btn2:hover > svg > path {
    fill: #fff;
}


/* -------------------------------------------------------------------------------------------------------- */
/* Header ------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
header.main-header {
    align-items: center;
    background: var(--primary-color);
    border-bottom: 1px solid #000;
    display: flex;
    gap: 42px;
    height: 104px;
    justify-content: flex-end;
    left: 0;
    margin-bottom: 35px;
    padding: 0 30px;
    position: sticky;
    right: 0;
    top: 0;
}

body.admin-bar header.main-header {
    top: 32px;
}

header.main-header .main-logo {
    margin-right: auto;
}

header.main-header .main-logo img,
header.main-header .main-logo svg {
    display: block;
    height: 38px;
    width: 341px;
}

header.main-header > .neo_btn {
    background: var(--tan);
    border-radius: 0;
    border: 0;
    color: #000;
    height: 43px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
    width: 201px;
}

header.main-header > .neo_btn > span {
    margin-left: 0;
}

header.main-header > .neo_btn:hover {
    background: #000;
    color: #fff;
}

header.main-header > .neo_btn .on,
header.main-header > .neo_btn .off {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
}

header.main-header > .neo_btn:hover .off {
    opacity: 0;
}

header.main-header > .neo_btn .on {
    opacity: 0;
}

header.main-header > .neo_btn:hover .on {
    opacity: 1;
}

.page-title {
    font-family: "Season Sans";
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 115%; /* 17.25px */
    margin-left: auto;
    text-align: right;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    header.main-header {
        margin-bottom: 25px;
        padding: 0 20px 0 25px;
    }

    body.admin-bar header.main-header {
        top: 0;
    }

    header.main-header > .neo_btn {
        display: none;
    }

    header.main-header .main-logo img,
    header.main-header .main-logo svg {
        width: 240px;
    }

    .page-title {
        display: none;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Nav Trigger -------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.nav-trigger {
    height: 30px;
    position: relative;
    width: 30px;
    z-index: 1;
}

.nav-trigger span {
    background: #000;
    display: block;
    height: 1px;
    left: 4.5px;
    position: absolute;
    top: 5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 21px;
}

.nav-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-trigger span:nth-child(3) {
    top: calc(100% - 5px);
}

body.nav-open .nav-trigger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
body.nav-open .nav-trigger span:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-trigger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {

}


/* -------------------------------------------------------------------------------------------------------- */
/* Main Nav ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
header nav {
    background: var(--tan);
    bottom: 0;
    height: auto;
    justify-content: flex-start;
    left: auto;
    min-width: 0;
    padding: 104px 36px 42px;
    transform: translateX(587px);
    transition: transform 0.3s ease, opacity 0.3s;
    width: 587px;
}

body.admin-bar header nav {
    top: 32px;
}

header nav.active {
    left: auto;
    right: 0;
    transition: transform 0.3s ease, opacity 0.3s;
}

header nav > ul {
    border-top: 1px solid #000;
    width: 100%;
    transition: opacity 0.5s linear;
    padding-top: 21px;
}

header nav.active > ul {
    transition: opacity 0.5s linear 0.3s;
}

header nav > ul > li:not(:last-child) {
    margin-bottom: 21px;
}

header nav > ul > li a {
    color: #000;
    padding: 0;
    font-family: 'Season Mix';
    font-size: 68px;
    transition: color 0.2s ease;
}

header nav > ul > li.current-menu-item a, 
header nav > ul > li.current_page_parent a,
header nav > ul > li a:focus, 
header nav > ul > li a:hover {
    color: #fff;
    padding: 0;
}

header nav > ul > li a:before,
header nav > ul > li a:focus:before, 
header nav > ul > li a:hover:before {
    display: none !important;
}

header nav.active .neo_btn,
header nav .neo_btn {
    display: inline-flex;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

header nav .neo_btn svg path {
    fill: #000;
}

header nav .neo_btn:hover svg path {
    fill: #fff;
}

.nav-address {
    border-top: 1px solid #000;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 2.25px;
    line-height: 115%;
    margin-top: auto;
    padding-top: 23px;
    text-transform: uppercase;
    width: 100%;
}

@media (max-width: 1600px) {
    header nav > ul > li a {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    header nav {
        padding: 104px 25px 42px;
        transform: translateX(100%);
        width: 100%;
    }

    header nav > ul > li a {
        font-size: 45px;
    }

    header nav.active .neo_btn, header nav .neo_btn {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nav-address {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Footer ------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
footer.main-footer {
    background: transparent;
    color: #000;
    margin: 120px 30px 0 30px;
    padding: 20px 0 30px;
    width: auto;
}

footer.main-footer > div {
    max-width: 100%;
    width: 100%;
}

footer.main-footer .upper-footer {
    border-top: 1px solid #000;
    padding-top: 25px;
    color: #000;
    display: flex;
    font-size: 15px;
    font-style: normal;
    font-weight: 650;
    gap: 40px;
    justify-content: flex-start;
    letter-spacing: 2.25px;
    line-height: 115%;
    text-transform: uppercase;
    width: 100%;
}

footer.main-footer .upper-footer .col {
}

footer.main-footer .upper-footer .col:last-child {
    margin-left: auto;
    text-align: right;
}

footer.main-footer .upper-footer .col address {
    font-style: normal;
}

footer.main-footer .upper-footer .col address a {
    color: #000;
}

footer.main-footer .upper-footer .col:last-child ul {

}

footer.main-footer .upper-footer .col:last-child ul li:not(:last-child) {
    margin-bottom: 7px;
}

footer.main-footer .upper-footer .col:last-child ul li a {
    color: #000;
}

footer.main-footer .upper-footer .col:last-child ul li a:hover {
    color: #808080;
}

footer.main-footer .middle-footer {
    margin: 35px 0;
    width: 100%;
}

footer.main-footer .middle-footer img,
footer.main-footer .middle-footer svg {
    display: block;
    height: auto;
    width: 100%;
}

footer.main-footer .middle-footer svg path {
    fill: #000;
}

footer.main-footer .lower-footer {
    color: var(--tan);
    display: flex;
    font-size: 15px;
    font-weight: 400;
    gap: 40px;
    line-height: 110%;
    width: 100%;
}

footer.main-footer .lower-footer .disclaimer {
    font-size: 10px;
    font-weight: 300;
    line-height: 110%;
    text-align: justify;
    width: 50%;
}

footer.main-footer .lower-footer .copyright {

}

footer.main-footer .lower-footer .privacy {
    
}

footer.main-footer .lower-footer .privacy a {
    color: var(--tan);
    text-decoration: underline;
}

footer.main-footer .lower-footer .privacy a:hover {
    color: #000;
}

footer.main-footer .lower-footer .rockefeller-logo {
    margin-left: auto;
}

footer.main-footer .lower-footer .rockefeller-logo img,
footer.main-footer .lower-footer .rockefeller-logo svg {

}

@media (max-width: 1024px) {
    footer.main-footer .upper-footer {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    footer.main-footer {
        margin: 0 25px;
        padding-top: 0;
    }

    footer.main-footer .upper-footer {
        font-size: 10px;
        justify-content: space-between;
    }

    footer.main-footer .upper-footer .col:last-child {
        display: none;
    }

    footer.main-footer .middle-footer {
        margin: 35px -25px;
        max-width: none;
        overflow: hidden;
        position: relative;
        width: calc(100% + 50px);
    }

    footer.main-footer .middle-footer::before,
    footer.main-footer .middle-footer::after {
        background: url(../images/1072westpeachtree-logo-horizontal.svg) no-repeat;
        background-size: 740px auto;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 1600px;
        will-change: transform;
        transform: translate3d(0, 0, 0);       
        -webkit-animation: footerLogoScroll 15s linear infinite;
        animation: footerLogoScroll 15s linear infinite;
    }

    footer.main-footer .middle-footer::after {
        background-position: 800px 0;
    }

    @-webkit-keyframes footerLogoScroll {
        0%   { -webkit-transform: translate3d(0, 0, 0); }
        100% { -webkit-transform: translate3d(-800px, 0, 0); }
    }

    @keyframes footerLogoScroll {
        0%   { transform: translate3d(0, 0, 0); }      
        100% { transform: translate3d(-800px, 0, 0); } 
    }
    
    footer.main-footer .middle-footer img,
    footer.main-footer .middle-footer svg {
        opacity: 0;
        visibility: hidden;
        width: 740px;
    }

    footer.main-footer .lower-footer {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 40px 15px;
    }

    footer.main-footer .lower-footer .disclaimer {
        order: -2;
        width: 100%;
    }

    footer.main-footer .lower-footer .rockefeller-logo {
        flex: 1;
        margin: -4px auto 0 0;
        order: -1;
    }

    footer.main-footer .lower-footer .rockefeller-logo img,
    footer.main-footer .lower-footer .rockefeller-logo svg {
        display: block;
        width: 98px;
    }

    footer.main-footer .lower-footer .copyright {
        flex: 1;
        white-space: nowrap;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Splash Overlay ----------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
/*
body.home {
    overflow: hidden;
    max-height: 100%;
}
*/

body.home.splash-remove {
    overflow: auto;
    max-height: none;
}

.splash-overlay {
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 1s linear;
    z-index: 9999;
}

.splash-overlay img,
.splash-overlay svg {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1s linear;
    width: 375px;
}

body.splash-active .splash-overlay img,
body.splash-active .splash-overlay svg {
    opacity: 1;
}

body.splash-remove .splash-overlay {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .splash-overlay img,
    .splash-overlay svg {
        width: 313px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Hero / Hero Video -------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.neo__hero {
    background: transparent;
    margin: 0 30px 30px;
    width: auto;
}

body.home .neo__hero._video,
body.home .neo__hero._video > figure > video {
    max-height: calc(100vh - 104px - 35px - 30px);
    min-height: 0;
    object-fit: cover;
}

section.neo__hero > div {
    align-items: center;
    bottom: 100px;
    text-align: center;
}

section.neo__hero h1 {
    color: #fff;
    margin-bottom: 0;
}

section.neo__hero .neo_btn {
    border-color: #fff;
    color: #fff;

    display: none !important;
}

section.neo__hero .neo_btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

body:not(.home) .neo__hero {
    background: none;
    flex-direction: column;
    height: auto;
    min-height: 0;
}

body:not(.home) .neo__hero:before {
    display: none;
}

section.neo__hero:before {
    /* black gradient that coves the bottom half of the video */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    bottom: 0;
    height: auto;
    top: 50%;
}

body:not(.home) .neo__hero > figure {
    background: none !important;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

body:not(.home) .neo__hero > figure img {
    opacity: 1;
    visibility: visible;
}

body:not(.home) .neo__hero video {
    aspect-ratio: 1828 / 671;
    object-fit: cover;
}

body:not(.home) .neo__hero > div {
    max-width: 100%;
    padding: 0;
    position: static;
    transform: none;
    width: auto;
}

body:not(.home) .neo__hero h1 {
    color: #000;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .neo__hero {
        margin: 0 25px 30px 25px;
    }

    body.home .neo__hero._video {
        margin: -25px 0 30px 0;
    }

    body.home .neo__hero._video,
    body.home .neo__hero._video > figure > video {
        max-height: calc(100vh - 104px);
    }

    body:not(.home) .neo__hero {
        display: flex;
        flex-direction: column-reverse;
    }

    body:not(.home) .neo__hero h1 {
        text-align: left;
        margin-bottom: 40px;
    }

    /* mobile specific pre headers */
    body.page-id-23 .neo__hero h1:before,
    body.page-id-25 .neo__hero h1:before,
    body.page-id-27 .neo__hero h1:before,
    body.page-id-29 .neo__hero h1:before,
    .gallery-main-categories:before {
        content: "About";
        display: block;
        font-family: 'Season Sans';
        font-size: 10px;
        font-weight: 300;
        font-weight: bold;
        letter-spacing: 1.5px;
        line-height: 100%;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    body.page-id-25 .neo__hero h1:before {
        content: 'Experience';
    }

    body.page-id-27 .neo__hero h1:before {
        content: 'Midtown';
    }

    body.page-id-29 .neo__hero h1:before {
        content: 'Team & Contact';
    }

    .gallery-main-categories:before {
        content: 'Gallery';
    }

    body:not(.home) .neo__hero > figure {
        border: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    body:not(.home) .neo__hero img,
    body:not(.home) .neo__hero video {
        aspect-ratio: 79/111;
        object-fit: cover;
    }
}



/* -------------------------------------------------------------------------------------------------------- */
/* Neo Grid - Layout 1 ------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------- */
.neo__grid._layout1 {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    margin: 0 30px 30px;
    padding: 30px 0;
    width: auto;
}

.neo__grid._layout1 > div {
    align-items: center;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.neo__grid._layout1 > div article {
    max-width: 730px;
    margin: 0 auto;
    padding: 0 100px;
}

.neo__grid._layout1._img_right > div aside {
    margin: 0;
    width: 50%;
}

.neo__grid._layout1 h2 {
    margin-bottom: 50px;
}

.neo__grid._layout1 p {
    font-size: 23px;
    line-height: 162%;
}

.neo__grid._layout1 p:not(:last-child) {
    margin-bottom: 60px;
}

@media (max-width: 1600px) {
    .neo__grid._layout1 h2 {
        font-size: 70px;
    }

    .neo__grid._layout1 p {
        font-size: 16px;
    }

    .neo__grid._layout1 > div article {
        padding-right: 130px;
    }
}

@media (max-width: 768px) {
    .neo__grid._layout1 {
        margin: 0 25px 25px;
        padding: 25px 0;
    }
    
    .neo__grid._layout1 h2 {
        font-size: 45px;
        margin-bottom: 25px;
    }

    .neo__grid._layout1 p {
        font-size: 16px;
    }

    .neo__grid._layout1 p:not(:last-child) {
        margin-bottom: 25px;
    }

    .neo__grid._layout1 > div article {
        padding: 0;
        width: 100%;
    }

    .neo__grid._layout1 > div._has_img aside {
        margin-top: 50px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Neo Columns -------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.neo__columns > div {
    border-bottom: 1px solid #000;
    display: flex;
    margin: -30px 30px 30px 30px;
    padding: 0;
    width: auto;
}

.neo__columns > div > .col {
    border-right: 1px solid #000;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 74px 50px;
}

.neo__columns > div > .col:last-child {
    border-right: 0;
}

.neo__columns > div > .col > aside {
    height: auto;
    margin-bottom: 60px;
    opacity: 1;
    position: static;
    visibility: visible;
    width: auto;
}

.neo__columns > div > .col > aside img {
    aspect-ratio: 503 / 613;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    object-fit: cover;
}

.neo__columns > div > .col > article,
.neo__columns > div > .col > article > div {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.neo__columns > div > .col h2 {
    margin-bottom: 50px;
}

.neo__columns > div > .col p {
    margin-bottom: 50px;
}

.neo__columns > div > .col > article > div > a.neo_btn:last-child {
    margin-top: auto;
}

.neo__columns article p {
    font-size: 23px;
}

@media (max-width: 1600px) {
    .neo__columns article p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .neo__columns {
        background: initial;
        display: block;
        overflow: hidden;
        width: auto;
    }

    .neo__columns > div {
        border-bottom: 0;
        margin: -30px 25px 0 25px;
        padding-bottom: 53px;
    }

    .neo__columns .slick-list {
        width: 100%;
    }

    .neo__columns .slick-prev {
        display: none !important;
    }

    .neo__columns .slick-next {
        background: url(../images/chevron-right.svg) 50% 50% no-repeat;   
        border: 0;
        cursor: pointer;
        height: 41px;
        margin-top: 44px;
        outline: none;
        position: absolute;
        right: 0;
        text-indent: -9999px;
        width: 21px;
    }

    .neo__columns > div .slick-slide {
        padding-right: 25px;
        padding-left: 1px;
    }

    .neo__columns > div .slick-slide {
        width: 80vw;
    }

    .neo__columns > div .slick-slide .col aside {
        margin-bottom: 38px;
    }

    .neo__slider.neoslider .image img,
    .neo__columns > div .slick-slide .col aside img {
        aspect-ratio: 331 / 400;
        object-fit: cover;
    }

    .neo__columns > div .slick-slide .col article {
        opacity: 0;
        transition: opacity 1s linear;
    }

    .neo__columns > div .slick-slide .col article > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 23px;
    }

    .neo__columns > div .slick-slide.slick-current .col article {
        opacity: 1;
    }

    .neo__columns > div .slick-slide .col article h2._likeh3 {
        font-size: 32px;
    }

    .neo__columns article p {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Neo Grid - Layout 3 ------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------- */
.neo__grid._layout3 article {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.neo__grid._layout3 article .content-col:first-child {
    margin: 0 auto 0 0;
}

.neo__grid._layout3 article h2 {
    text-align: left;
}

.neo__grid._layout3 article .content-col:last-child {
    text-align: left;
}

@media (min-width: 768px) {
    .neo__grid._layout3 article .content-col:last-child {
        width: 33%;
    }
}

.neo__grid._layout3 article .content-col:last-child p:not(:last-child) {
    margin-bottom: 25px;
}

#home-leasing .aos-init a[href*="team-contact"] {
    color: #000;
}

#home-leasing .aos-init a[href*="team-contact"]:hover {
    color: #fff;
}

.neo__grid._layout3 > div._has_img {
    margin: 30px;
    width: auto;
}

.neo__grid._layout3#middle-full-image > div._has_img {
    margin-top: 0;
}

.neo__grid._layout3 > div._has_img aside > figure:after {
    display: none;
}

.neo__grid._layout3 > div._has_img aside > figure img {
    display: block;
    width: 100%;
}

section#middle-full-image .neo_btn { 
    display: none !important;
}

@media (max-width: 768px) {
    section.neo__grid._layout3 > div {
        padding: 35px 0;
    }

    .neo__grid._layout3 > div._has_img {
        margin: 25px;
    }

    section.neo__grid._layout3._img_right:last-child ._has_img aside figure {
        min-height: 0;
    }

    section.neo__grid._layout3._img_right:last-child ._has_img aside img {
        aspect-ratio: 390 / 275;
        object-fit: cover;
    }

    section#middle-full-image {
        width: 100%;
        margin: 0;
    }

    .neo__grid._layout3#middle-full-image > div._has_img {
        margin: 0;
    }

    #home-leasing article {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Neo Stacking Plan -------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.neo__grid.neo__stack article > h2 {
    margin-bottom: 60px;
}

.neo__accordion_container .neo_each_accordion {
    border: 0;
    border-top: 1px solid #000;
}

.neo__accordion_container .title span:nth-child(2) {
    order: -1;
}

.neo__accordion_container .title * {
    color: #000;
}

.neo__accordion_container .neo_each_accordion ._likeh3 {
    font-size: 45px;
    margin: 20px 0 20px;
}

.neo__accordion_container .content {
    display: none !important;
}

.neo__accordion_container:has(.title[aria-expanded="true"]) .neo_each_accordion {
	opacity: 0.2 !important;
}

.neo__accordion_container:has(.title[aria-expanded="true"]) .neo_each_accordion:has(.title[aria-expanded="true"]) {
	opacity: 1 !important;
}

.neo__stack.neo__grid._layout2 > div > aside, .neo__stack > div > aside {
    padding-left: 30px;
    padding-right: 30px;
}

.neo__accordion_container .title:after, 
.neo__accordion_container .title:before,
.neo__accordion_container .title[aria-expanded="true"]:after {
    display: none;
}

.neo__plans > div > div:first-of-type {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .neo__stack .neo__accordion_container {
        max-height: none;
    }

    .neo__accordion_container .title {
        text-align: left;
    }

    .neo__accordion_container .title ._likeh3 {
        font-size: 32px;
    }

    .neo__accordion_container .title > span > strong {
        font-size: 10px;
    }

    .neo__stack.neo__grid._layout2 > div > aside, .neo__stack > div > aside {
        padding: 40px 0 0 0;
    }

    .neo__stack.neo__grid._layout2 > div > aside > div > img, 
    .neo__stack.neo__grid._layout2 > div > aside > div > svg, 
    .neo__stack > div > aside > div > img, 
    .neo__stack > div > aside > div > svg {
        max-width: 250px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Neo Floorplans ----------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
section.neo__floorplans > div > div {
    border: 0;
    padding: 0;
}

section.neo__floorplans > div > div > article h2,
section.neo__floorplans > div > div > aside ul li > * {
    color: #000;
}

section.neo__floorplans article p:not(:last-child) {
    margin-bottom: 30px;
}

section.neo__floorplans > div > div a.neo_btn {
    border-color: #000;
}

section.neo__floorplans > div > div > aside ul li {
    align-items: flex-start;
    border-top: 1px solid #000;
    flex-wrap: wrap;
    padding: 15px 0 45px 0;
}

section.neo__floorplans > div > div > aside h3 {
    font-size: 45px;
    width: 55%;
}

section.neo__floorplans > div > div > aside ul li > p {
    font-size: 15px;
    font-weight: 650;
    letter-spacing: 2.25px;
    line-height: 115%;
    margin-bottom: 20px;
    order: -1;
    text-transform: uppercase;
    width: 100%;
}

section.neo__floorplans > div > div > aside ul li > h3 {
    width: auto;
}

section.neo__floorplans > div > div > aside .neo_btn {
    display: inline-block;
    margin: 0 0 0 auto;
    min-width: 205px;
}

section.neo__floorplans > div > div > aside ul li > button {
    font-family: 'Season Sans';
    font-weight: 600;
    letter-spacing: 1.8px;
}

section.neo__floorplans > div > div > aside .neo_btn._btn2 {
    display: none;
}

.neo__plans > div > div.neo_data > div > h4 {
    color: #000;
}

.neo__plans > div > div.neo_data > div > div.legend_key > div.neo_legend > ul > li {
    align-items: center;
    font-family: 'Season Sans';
    font-weight: 600;
    letter-spacing: 1.8px;
    font-size: 13px;
}

@media (max-width: 768px) {
    section.neo__floorplans > div > div > aside .neo_btn {
        padding-left: 15px;
        padding-right: 15px;
    }

    section.neo__floorplans > div > div > aside ul li {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    section.neo__floorplans > div > div > aside ul li p {
        order: -1;
        font-size: 10px;
        margin-bottom: 10px;
    }

    section.neo__floorplans > div > div > aside ul li > h3 {
        width: 100%;
    }

    section.neo__floorplans > div > div > aside h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    section.neo__floorplans > div > div > aside .neo_btn { 
        margin: 0;
    }

    .neo__plans > div > div.neo_data > div {
        display: flex;
        flex-direction: column;
    }

    .neo__plans > div > div.neo_data > div > h4 {
        font-size: 10px;
        margin-bottom: 22px;
        order: -1;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Neo Floorplan Overlays / Detail Pages ------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------- */
.mfp-wrap {
    top: 104px;
}

@media (min-width: 768.5px) {
    body.admin-bar .mfp-wrap {
        top: 136px;
    }
}

._plans_lightbox.mfp-bg {
    display: none !important;
}

.neo__plans {
    background: var(--primary-color);
    padding-bottom: 200px;
}

.neo__plans > div {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.neo__plans > div > h2,
.neo__plans > div > h4 {
    padding: 0 30px;
    width: 100%;
}

.neo__plans > div > h2 {
    margin-bottom: 20px;
    padding-top: 30px;
}

.neo__plans > div > h4 {
    font-family: "Season Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 2.25px;
    line-height: 115%; /* 17.25px */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.neo__plans > div hr {
    border-top: 1px solid #000;
    margin: 30px 0;
    width: 100%;
}

.neo__plans > div > hr {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
}

.neo__plans > div > div.neo__plan_lower {
    display: flex;
    flex-direction: row;
    padding: 0 30px 30px 30px;
    width: 100%;
}

.neo__plans > div > div.neo__plan_lower > div:first-child {
    max-width: 35%;
    min-width: 35%;
    padding-right: 30px;
    width: 35%;
}

.neo__plans > div > div.neo__plan_lower h3,
.neo__plans > div > div.neo__plan_lower table th {
    font-family: "Season Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 2.25px;
    line-height: 115%; /* 17.25px */
    text-transform: uppercase;
}

.neo__plans > div > div.neo__plan_lower h3 {
    margin-bottom: 20px;
}

.neo__plans > div > div .neo_plans > div > a.neo_btn {
    display: none !important;
}

.neo__plans > div > div.neo__plan_lower table {
    border-collapse: collapse;
    width: 100%;
}

.neo__plans > div > div.neo__plan_lower table td {
    font-size: 20px;
}

.neo__plans > div > div.neo__plan_lower table td,
.neo__plans > div > div.neo__plan_lower table th {
    padding: 5px 0;
}

.neo__plans > div > div.neo__plan_lower table td:not(:first-child):last-child {
    text-align: right;
}

table.lobby-level td:first-child {
    width: 35px;
}

table.lobby-level td:not(:first-child):last-child {
    text-align: left !important;
}

._plans_lightbox.mfp-wrap > .mfp-close {
    display: none;
}

@media (min-width: 768.5px) {
    .neo__plans > div > div .neo_plans {
        padding: 30px 60px;
    }

    .neo__plan_lower > ._desktop_only {
        max-width: 60vw;
        margin: 0 auto;
    }

    ._plans_lightbox.mfp-wrap .mfp-close {
        background:  url(../images/chevron-left.svg) 0 50% no-repeat;   
        background-size: 21px;
        color: #000;
        font-family: "Season Sans";
        font-size: 15px;
        font-weight: 650;
        height: 41px;
        letter-spacing: 2.25px;
        line-height: 115%;
        line-height: 41px;
        padding-left: 44px;
        text-transform: uppercase;
        width: auto;
    }

    ._plans_lightbox.mfp-wrap .mfp-close:after {
        content: 'Back to About Page';
    }

    ._plans_lightbox.mfp-wrap .mfp-close img,
    ._plans_lightbox.mfp-wrap .mfp-close svg {
        display: none !important;
    }

    .neo__plans > div > div.neo__plan_lower table.lobby-level td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .neo__plans > div > h2, 
    .neo__plans > div > h4 {
        padding: 0 25px;   
    }

    .neo__plans > div > h4 {
        font-size: 10px;
        letter-spacing: 1.5px;
        order: -1;
        margin-bottom: 20px;
        padding-top: 25px;
    }

    .neo__plans > div > div.neo__plan_lower {
        flex-direction: column;
    }

    .neo__plans > div > div.neo__plan_lower > div:first-child {
        max-width: 10%;
        min-width: 100%;
        padding: 0;
        width: 100%;
    }

    .mfp-container {
        bottom: 0;
        height: auto;
        overflow: auto;
        padding-bottom: 100px !important;
    }

    .neo__plan_lower ._mobile_only {
        margin-bottom: 40px;
    }

    .neo__plans > div > div.neo__plan_lower table.lobby-level tbody {
        display: block;
        columns: 2;
    }

    .neo__plans > div > div.neo__plan_lower table.lobby-level tbody tr {
        display: block;
        break-inside: avoid;
    }

    .neo__plans > div > div.neo__plan_lower h3,
    .neo__plans > div > div.neo__plan_lower table th {
        font-size: 10.46px;
        letter-spacing: 1.569px;
    }

    .neo__plans > div > div.neo__plan_lower table td {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Slick Slider New --------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.neo__slider.neoslider {
    opacity: 1 !important;
    pointer-events: initial !important;
}

.neo__slider .slick-slide-new,
.neo__slider .slick-slide {
    margin: 0;
    width: 70vw;
}

.neo__slider.neoslider img {
    aspect-ratio: 83 / 47;
    display: block;
    object-fit: cover;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    width: 100%;
}

.neo__slider.neoslider .slick-slide.slick-current img {
    transform: scale(1);
}

.neo__slider.neoslider .caption {
    min-height: 100px;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.neo__slider.neoslider .slick-slide.slick-current .caption {
    opacity: 1;
    transition: opacity 0.4s ease 0.5s;
}

.neo__slider.neoslider .caption h3 {
    display: flex;
    font-size: 64px;
    gap: 40px;
    justify-content: space-between;
    margin: 30px 0;
}

.neo__slider.neoslider .caption h3 .counter {
    white-space: nowrap;
}

.neo__slider.neoslider .caption p {
    font-size: 23px;
}

.neo__slider.neoslider .slick-arrow {
    background: url(../images/chevron-left.svg) 50% 50% no-repeat;   
    border: 0;
    cursor: pointer;
    height: 41px;
    left: 7vw;
    outline: none;
    position: absolute;
    text-indent: -9999px;
    top: 83%;
    width: 21px;
    z-index: 2;
}

.neo__slider.neoslider .slick-arrow.slick-next {
    background-image: url(../images/chevron-right.svg);
    left: auto;
    right: 7vw;
}

@media (max-width: 1600px) {
    .neo__slider.neoslider .caption h3 {
        font-size: 50px;
    }

    .neo__slider.neoslider .caption p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .neo__slider {
        margin-left: 25px;
        padding: 30px 0;
        width: calc(100% - 25px);
    }

    .neo__slider .slick-list {
        padding: 0 !important;
    }
    
    .neo__slider .slick-track {
        display: block !important;
    }

    .neo__slider .slick-slide {
        padding-right: 25px;
        padding-left: 1px;
        width: 80vw;
    }

    .neo__columns > div .slick-slide {
        width: 80vw;
    }

    .neo__slider .slick-arrow.slick-prev {
        display: none !important;
    }

    .neo__slider .slick-arrow.slick-next {
       margin-top: 44px;
    }

    .neo__slider.neoslider .image img {
        aspect-ratio: 331 / 400;
        object-fit: cover;
        transform: none;
    }

    .neo__slider.neoslider .caption p {
        font-size: 16px;
        line-height: 162%;
    }

    .neo__slider.neoslider .caption p .br-wrap {
        display: block;
        height: 14px;
    }

    .neo__slider.neoslider .caption p .br-wrap br {
        display: none;
    }

    .neo__slider.neoslider .caption h3 {
        flex-direction: column;
        font-size: 32px;
        gap: 20px;
        margin: 38px 0 23px;
    }

    .neo__slider.neoslider .caption h3 .counter {
        white-space: nowrap;
        order: -1;
        width: 100%;
    }
}

@media (max-width: 550px) {
    .neo__slider.neoslider .caption p {
        max-width: 260px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Grid Slider Adjustments -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
.neoGridSlider_Content .slick-slide ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.neoGridSlider_Arrows {
    margin-bottom: -30px;
    width: 100%;
}

.neoGridSlider_Content .slick-slide img {
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    width: 100%;
}

.neoGridSlider_Arrows ._arrows {
    border-top: 1px solid #000;
    display: flex;
    margin-top: 30px;
    width: 100%;
}

.neoGridSlider_Arrows ._arrows:before {
    background: #000;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 1px;
}

.neoGridSlider_Arrows .slick-arrow {
    background: url(../images/arrow-left.svg) 0 50% no-repeat;
    color: #000;
    flex: 1;
    font-family: 'Season Mix';
    font-size: 45px;
    font-weight: 300;
    line-height: 100%;
    padding: 30px 0 30px 132px;
    transition: padding 0.3s ease;
    text-align: left;
}

.neoGridSlider_Arrows .slick-arrow:last-child {
    background-image: url(../images/arrow-right.svg);
    background-position: 100% 50%;
    padding: 30px 132px 30px 0;
    text-align: right;
}

.neoGridSlider_Arrows .slick-arrow.slick-prev:hover {
    color: #000;
    padding-left: 127px;
    transform: none;
}

.neoGridSlider_Arrows .slick-arrow.slick-next:hover {
    color: #000;
    padding-right: 127px;
    transform: none;
}

@media (max-width: 1600px) {
    .neoGridSlider_Arrows .slick-arrow {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .neo__grid._layout1 > div article {
        margin-bottom: 25px;
    }

    .neoGridSlider_Arrows .slick-arrow {
        background-size: 21px auto;
        font-size: 17px;
    }

    .neoGridSlider_Arrows .slick-arrow svg {
        display: none !important;
    }

    .neoGridSlider_Arrows .slick-arrow.slick-prev {
        padding: 20px 0 25px 30px;
    }

    .neoGridSlider_Arrows .slick-arrow.slick-prev:hover {
        padding-left: 35px;
    }

    .neoGridSlider_Arrows .slick-arrow.slick-next {
        padding: 20px 30px 25px 0;
    }

    .neoGridSlider_Arrows .slick-arrow.slick-next:hover {
        padding-right: 35px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Interactive Amenity Map -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
section.neo__interactive_amenity_map {

}

section.neo__interactive_amenity_map .interactive-amenity-map {
    margin: 0 30px;
    max-width: 100%;
    padding: 0;
    position: relative;
    width: auto;
}

.interactive-amenity-map ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.interactive-amenity-map ul li {
    background: #CDC6BB;
    border-radius: 100%;
    border: 1px solid #fff;
    cursor: pointer;
    font-family: 'Season Mix';
    font-size: 28px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
    width: 50px;
    z-index: 1;
}

.interactive-amenity-map ul li .number,
.interactive-amenity-map ul li .hover {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    line-height: 97%;
    padding: 15px;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: opacity 0.3s linear;
}

.interactive-amenity-map ul li .hover {
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.1s linear;
}

.interactive-amenity-map ul li:hover {
    height: 232px;
    width: 232px;
    z-index: 2;
}

.interactive-amenity-map ul li:hover .number {
    opacity: 0;
}

.interactive-amenity-map ul li:hover .hover {
    opacity: 1;
    transition: opacity 0.3s linear 0.3s;
}

.interactive-amenity-map img.interactive-amenity-map__image {
    display: block;
    width: 100%;
}

@media (min-width: 768.5px) {
    .mobile-amenity-map-legend {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .interactive-amenity-map ul li {
        font-size: 18px;
        height: 30px;
        width: 30px;
    }

    .interactive-amenity-map ul li .number,
    .interactive-amenity-map ul li .hover {
        padding: 10px;
    }

    .interactive-amenity-map ul li .hover {
        font-size: 22px;
    }

    .interactive-amenity-map ul li:hover {
        height: 100px;
        width: 100px;
    }
}

@media (max-width: 768px) {
    section.neo__interactive_amenity_map .interactive-amenity-map {
        margin: 0 0 5px;
    }

    .mobile-amenity-map-legend {
        display: block;   
        padding: 0 0 40px 0 !important;
    }

    .mobile-amenity-map-legend .pinch-to-zoom {
        font-size: 20px;
        margin-bottom: 40px;
        text-align: right;
        width: 100%;
    }

    .mobile-amenity-map-legend .list {
        columns: 2;
        width: 100%;
    }

    .mobile-amenity-map-legend .list .item {
        display: flex;
        gap: 10px;
        margin-bottom: 6px;
    }

    .mobile-amenity-map-legend .list .item .number {
        min-width: 20px;
        text-align: right;
        width: 20px;
    }

    .mobile-amenity-map-legend .list .item .label {

    }

    div#interactive-amenity-map {
        left: 50%;
        min-width: 150vw;
        transform: translateX(-50%);
        width: 150vw;
    }

    .interactive-amenity-map img.interactive-amenity-map__image {
        aspect-ratio: 1.9;
        object-fit: cover;
    }
}

@media (max-width: 550px) {
    .interactive-amenity-map ul li {
        font-size: 12px;
        height: 20px;
        width: 20px;
    }

    .interactive-amenity-map ul li .number,
    .interactive-amenity-map ul li .hover {
        padding: 8px;
    }

    .interactive-amenity-map ul li .hover {
        font-size: 14px;
    }

    .interactive-amenity-map ul li:hover {
        height: 70px;
        width: 70px;
    }
}


/* -------------------------------------------------------------------------------------------------------- */
/* Explore Midtown Custom Map ----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
#explore-midtown {
    border-bottom: 0;
    border-top: 0;
    margin: 0 auto;
    max-width: 1666px;
    padding: 0 100px;
}

.map-wrap {
    border: 1px solid #000;
    padding-left: 471px;
    position: relative;
    width: 100%;
}

.map-container {
    background: #ccc;
    aspect-ratio: 169 / 140;
    outline: none;
    width: 100%;
}

.map-container-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gm-style iframe + div { border:none!important; }

.main-marker {
    background: url(../images/main-map-marker.svg) 50% 50% no-repeat;
    background-size: contain;
    height: calc(67px * 1.25);
    transition: transform 1s ease;
    width: calc(105px * 1.25);
}

.custom-marker {
    cursor: pointer;
}

.custom-map-marker-inner {
    align-items: center;
    background-size: 11.5px auto;
    background: #000;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: bold;
    height: 28px;
    justify-content: center;
    transition: opacity 0.2s ease;
    width: 28px;
}

.custom-map-marker-inner.hidden {
    opacity: 0.2;
}

.custom-map-marker-inner.selected {
    opacity: 1;
    transform: scale(1.35);
    z-index: 9999 !important;
}

.marker-popup {
    font-size: 17px;
    line-height: 120%;
}

.marker-popup .title {
    color: #000;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 108%; /* 10.8px */
    letter-spacing: 1px;
    text-transform: uppercase;  
}

.marker-popup a {
    border-bottom: 1px solid #000;
    outline: none;
    color: #000;
}

.marker-popup a:hover {
}

.gm-style-iw button {display: none !important;}

.leaflet-popup-close-button {
    display: none !important;
}

.leaflet-popup-content-wrapper, 
.leaflet-popup-tip {
    border: 1px solid #000;
    box-shadow: none;
    background: #fff;
}

.leaflet-popup-content-wrapper {
    border-radius: 3px;
    font-size: 21px;
}

.leaflet-popup-tip-container {
    margin-top: -1px;
}

/* Map location overlay */
.map-location-overlay {
    display: none !important;
}

/* Map categories */
.map-categories {
    border-right: 1px solid #000;
    height: 100%;
    left: 0;
    overflow: auto;
    position: absolute;
    top: 0;
    width: 471px;
}

.map-categories::-webkit-scrollbar {
    width: 5px;
}
.map-categories::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.map-categories::-webkit-scrollbar-thumb {
    background: #CDC6BB;
    outline: 1px solid #CDC6BB;
}

.map-categories > li {
    border-bottom: 1px solid #000;
}

.map-categories .category {
    background: url(../images/chevron-right.svg) calc(100% - 30px) 50% no-repeat;
    color: #000;
    cursor: pointer;
    display: block;
    font-family: 'Season Mix';
    font-size: 45px;
    padding: 30px 80px 30px 30px;
}

.map-categories ul {
    display: none;
    padding: 0 30px 30px 30px;
    columns: 2;
}

.map-categories ul li {
    break-inside: avoid;
}

.map-categories ul .location-item {
    align-items: flex-start;
    color: #000;
    cursor: pointer;
    display: flex;
    gap: 5px;
}

.map-categories > li.selected ul {
    display: block;
}

.gm-style .gm-style-iw-c {
    padding-left: 18px !important;
}

@media (max-width: 1600px) {
    .map-categories .category {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    #explore-midtown {
        padding: 0 25px;
    }

    .map-wrap {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 25px;
        padding-left: 0;
    }

    .map-container {
        aspect-ratio: 389 / 480;
    }

    .map-categories {
        border-right: 0;
        border-top: 1px solid #000;
        position: static; 
        width: 100%;       
    }

    .map-categories .category {
        background-position: calc(100% - 15px);
        background-size: 16px;
        font-size: 32px;
        padding: 15px 50px 15px 15px;
    }
}

/* -------------------------------------------------------------------------------------------------------- */
/* Team Page ---------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
section.neo__leasing_new article {
    display: flex;
    gap: 50px;
}

section.neo__leasing_new article > div {
    flex: 1;
}

h3.line-heading {
    font-family: 'Season Sans';
    font-size: 15px;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 2.25px;
    line-height: 115%;
    margin-bottom: 30px;
    padding-top: 5px;
    text-transform: uppercase;
}

section.neo__leasing_new article > div:last-child {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    padding: 5px 0 40px;
}

section.neo__leasing_new article > div:last-child h3:not(.line-heading) {
    font-size: 45px;
}

section.neo__leasing_new article > div:last-child p {
    margin-bottom: 50px;
}

section.neo__leasing_new article > div:last-child a {
    color: #000;
    text-decoration: none;
}

section.neo__leasing_new article > div:last-child a:hover {
    text-decoration: underline;
}

section.neo__team_new > div {
    border-bottom: 1px solid #000;    
    border-top: 1px solid #000;
    display: flex;
    gap: 50px;
    margin: 60px 30px 30px 30px;
    max-width: 100%;
    padding: 0;
    width: auto;
}

section.neo__team_new > div > article:first-child {
    border-right: 1px solid #000;
}

section.neo__team_new > div > article {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 50px 30px;
}

section.neo__team_new > div > article > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 auto;   
    max-width: 520px;
}

section.neo__team_new > div > article > div h3 {
     margin-bottom: 100px;
}

section.neo__team_new > div > article > div .logo img,
section.neo__team_new > div > article > div .logo svg {
    display: block;
    height: 43px;
    width: auto;
}

section.neo__team_new > div > article > div p:last-child {
    margin-top: auto;
    padding-top: 30px;
}

@media (max-width: 1600px) {
    section.neo__leasing_new article > div:last-child h3:not(.line-heading) {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    h3.line-heading { 
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    section.neo__leasing_new article,
    section.neo__team_new > div {
        flex-direction: column;
    }

    section.neo__team_new > div > article {
        padding: 40px 0;
    }

    section.neo__team_new > div > article:first-child {
        border: 0;
        border-bottom: 1px solid #000;
    }

    section.neo__team_new > div > article > div h3 {
        margin-bottom: 80px;
    }

    section.neo__team_new > div > article > div p:last-child {
        padding-top: 0;
    }

    section.neo__team_new > div > article:last-child h3 {
        margin-bottom: 30px;
    }
}

/* -------------------------------------------------------------------------------------------------------- */
/* Gallery Page -------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------- */
section#gallery-main {
    margin: 0 30px;
    max-width: 100%;
    padding: 0;
    width: auto;
}

section#gallery-main > div {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.gallery-main {

}

.gallery-main-stage {
}

.gallery-main-stage .slick-slide {
    width: 100%;
}

.gallery-main-stage .slick-slide img {
    aspect-ratio: 1851 / 773;
    display: block;
    max-width: none;
    /* min-height: 777px; */
    object-fit: contain;
    width: 100%;
    min-height: calc(100vh - 330px);
    max-height: calc(100vh - 330px);
}

/*
.gallery-main-stage .slick-slide img.portrait {
    max-height: 777px;
}
    */

section#gallery-main > div.gallery-main-categories-and-arrows-wrap {
    align-items: center;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    display: flex;
    gap: 100px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0;
}

.gallery-main-categories {
    display: flex;
    gap: 50px;
}

.gallery-main-categories li {
    transition: opacity 0.3s ease;
}

.gallery-main-categories:not(:has(.selected)) li:not(:first-child),
.gallery-main-categories:has(.selected) li:not(.selected) {
    opacity: 0.3;
}

.gallery-main-categories:not(:has(.selected)) li:not(:first-child):hover,
.gallery-main-categories:has(.selected) li:not(.selected):hover {
    opacity: 1;
}

.gallery-main-categories li .category {
    cursor: pointer;
    display: inline-block;
    font-family: 'Season Mix';
    font-size: 45px;
    padding: 25px 0;
    position: relative;
}

.gallery-main-categories:not(:has(.selected)) li:first-child .category:after,
.gallery-main-categories li.selected .category:after {
    background: #CDC6BB;
    bottom: 0;
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.gallery-main-arrows-wrap {
    display: flex;
    gap: 30px;
}

.gallery-main-arrows-wrap .slick-arrow {
    background: url(../images/chevron-left.svg) 50% 50% no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 41px;
    text-indent: -9999px;
    width: 21px;
}

.gallery-main-arrows-wrap .slick-arrow.slick-next {
    background-image: url(../images/chevron-right.svg);
}

@media (max-width: 1600px) {
    .gallery-main-stage .slick-slide img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    section#gallery-main {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 25px;
        padding-bottom: 25px;
    }

    .gallery-main-categories li.selected .category:after {
        height: 2.5px;
    }

    section#gallery-main > div.gallery-main-categories-and-arrows-wrap {
        align-items: flex-start;
        border-bottom: 1px solid #000;
        border-top: 0;
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
        margin-bottom: 25px;
        margin-top: 0;
        padding-bottom: 25px;
        padding-top: 0;
        position: relative;
    }

    section#gallery-main .slick-slide-new {
        margin-bottom: 25px;
    }

    section#gallery-main .slick-slide-new,
    section#gallery-main .slick-slide-new img {
        display: block;
        min-height: 0;
        width: 100%;
    }    

    .gallery-main-categories {
        flex-direction: column;
        gap: 0;
    }

    .gallery-main-categories li .category {
        font-size: 32px;
        padding: 0;
    }

    .gallery-main-arrows-wrap {
        bottom: 35px;
        position: absolute;
        right: 0;

        display: none;
    }

    .gallery-main-stage .slick-slide img {
        aspect-ratio: initial;
        height: auto;
        width: 100%;
    }
}