/* About Banner */
section.about-banner {
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: 521px;
    max-height: 521px;
    position: relative;
    z-index: 3;

    @media (min-width: 1200px) {
        padding-bottom: 80px;
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;

        background: linear-gradient(
            90deg,
            rgba(15, 15, 15, 0.85) 0%,
            rgba(15, 15, 15, 0.60) 20%,
            rgba(15, 15, 15, 0.50) 38%,
            rgba(15, 15, 15, 0) 52%
        );

        @media (max-width: 767px) {
            background: linear-gradient(
                0deg,
                rgba(15, 15, 15, 0.85) 0%,
                rgba(15, 15, 15, 0.60) 20%,
                rgba(15, 15, 15, 0.50) 38%,
                rgba(15, 15, 15, 0) 52%
            );
        }
    }

    .about-banner-contents {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        max-height: -webkit-fill-available;
        position: relative;
        z-index: 1;

        .banner-breadcrumbs {
            display: flex;
            align-items: center;
            font-family: "Aktiv Grotesk Cd", sans-serif;
            font-size: 12px;
            color: #fff;
            gap: 8px;
            margin-top: 40px;

            @media (max-width: 767px) {
                margin-top: 80px;
            }

            a {
                &.breadcrumb-link {
                    color: #fff;
                    text-transform: uppercase;
                    font-size: 12px;
                    letter-spacing: 0.18em;
                    font-family: "Aktiv Grotesk Cd", sans-serif;
                }
            }
        }

        .banner-heading {
            @media (min-width: 1200px) {
                margin-left: 40px;
            }
            
            max-width: 548px;

            h1 {
                margin-bottom: 0;
            }

            p {
                margin-top: 16px;
                font-family: "Aktiv Grotesk Light", sans-serif;
                color: #fff;
            }
        }
    }
}
/* About Banner - end */

/* About Nav Mini */
section.about-nav-mini {
    background: var(--colorChalkBrown);
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* position: relative; */
    position: sticky;
    top: 88px;
    z-index: 4;

    @media (max-width: 1199px) {
        padding: 0 30px;
    }

    @media (max-width: 767px) {
        padding: 0 20px;
    }

    .about-nav-mini-contents {
        display: flex;
        width: 100%;
        max-width: 1760px;
        margin: auto;
        gap: 64px;
        overflow-x: scroll; 

        @media (min-width: 1200px) {
            overflow-x: unset;
        }

        a {
            &.mini-link {
                padding-top: 18px;
                padding-bottom: 18px;
                color: #575757;
                text-transform: uppercase;
                font-size: 12px;
                letter-spacing: 0.18em;
                font-family: "Aktiv Grotesk Cd", sans-serif;
                white-space: nowrap;
                transition: 0.4s ease;
                

                &:hover {
                    color: var(--colorRed);
                    box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                }
                
                &#ourBrandMini {
                    &.our-brand {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#corporateGovernanceMini {
                    &.corporate-governance {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#disclosuresMini {
                    &.disclosures {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#investorsMini {
                    &.investors {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#careersMini {
                    &.careers {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#kerryFoundationMini {
                    &.kerry-foundation-phils-inc {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#enterpriseCenterMini {
                    &.the-enterprise-center {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#enterpriseLeasingMini {
                    &.leasing-services {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }

                &#enterpriseFaqsMini {
                    &.faqs {
                        color: var(--colorRed);
                        box-shadow: inset 0px -5px 0px 0px var(--colorRed);
                    }
                }
            }
        }
    }
}
/* About Nav Mini - end */

/* About Split Content */
section.about-split-content {
    display: flex;
    flex-direction: column;
    width: 100%;

    .about-split-content-contents {
        display: flex;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        gap: 24px;
        padding-top: 24px;
        position: relative;

        @media (max-width: 1199px) {
            flex-direction: column;
            padding-top: 0;
        }

        &::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            left: -19px;
            /* height: 256px; */
            height: 340px;
            background-color: var(--colorChalkBrown);
            width: 100%;
            max-width: calc(100% - 567px);
            /* z-index: -1; */
            z-index: 0;
            
            @media (max-width: 1199px) {
                display: none;
            }
        }

        .heading-content {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 433px;
            z-index: 1;

            @media (max-width: 1199px) {
                max-width: 100%;
                background: var(--colorChalkBrown);
                padding-top: 0;
                padding: 40px 16px;
            }

            h2 {
                font-size: 64px;
                margin-top: 16px;
                margin-bottom: 0;
                width: 100%;
                /* max-width: 410px; */
                text-wrap: wrap;

                @media (max-width: 1199px) {
                    margin-top: 0;
                }
            }

            h3 {
                margin-top: 16px;
                @media (max-width: 1199px) {
                    margin-top: 0;
                }
            }
        }

        .custom-content {
            padding-top: 36px;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 867px;
            gap: 16px;

            @media (max-width: 1199px) {
                padding-top: 0;
                padding-right: 16px;
                padding-left: 16px;
                max-width: 100%;
            }


            br {
                display: none;
            }

            .first-paragraph {
                /* margin-bottom: 16px; */
                p {
                    max-width: 709px;

                    @media (max-width: 1199px) {
                        max-width: 100%;
                    }
                }
            }

            .second-paragraph {
                display: flex;
                gap: 24px;
                width: 100%;

                @media (max-width: 1199px) {
                    flex-direction: column;
                }

                .text-content {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    width: 100%;
                }

                .side-note {
                    display: flex;
                    flex-direction: column;
                    gap: 14px;
                    width: 100%;

                    @media (max-width: 1199px) {
                        padding-right: 8px;
                        padding-left: 8px;
                    }

                    img {
                        width: 100%;
                        max-width: 26px;
                        height: 100%;
                        max-height: 28px;
                    }

                    p {
                        font-size: 24px;
                        line-height: 120%;
                    }
                }
            }

            .last-paragraph {
                p {
                    max-width: 709px;

                    @media (max-width: 1199px) {
                        padding-top: 0;
                        max-width: 100%;
                    }
                }
            }
        }

    }

    &.simple-subheading {
        h2 {
            font-size: 45px !important;
        }

        h3 {
            font-family: "Aktiv Grotesk Light", sans-serif;
            font-size: 32px;
        }
    }
}

section.about-split-content {
    &#ourBrandMissionVision {
        background: linear-gradient(180deg, #FFF 14.64%, #FCFAF8 53.61%, #F8F5EF 84.9%);
        padding-top: 0;
        padding-bottom: 40px;

        .about-split-content-contents {
            background-color: var(--colorChalkBrown);
            display: flex;
            flex-direction: row-reverse;
            width: 100%;
            max-width: 1300px;
            margin: auto;
            gap: 0;
            padding-top: 0;
            position: relative;

            @media (max-width: 1299px) {
                flex-direction: column-reverse;
            }

            &::before {
                display: none;
            }

            .heading-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                width: 100%;
                max-width: 325px;
                margin-left: 12px;

                @media (max-width: 1299px) {
                    flex-direction: column;
                    max-width: 100%;
                    background: var(--colorChalkBrown);
                    padding-top: 0;
                    padding: 40px 16px;
                }

                h2 {
                    font-size: 35px;
                    margin-top: 0;
                    margin-bottom: 0;
                    width: 100%;
                    max-width: 198px;
                    text-wrap: wrap;
                    margin-bottom: 40px;

                    @media (max-width: 1299px) {
                        max-width: 100%;
                    }
                }

                .mission {
                    ul {
                        list-style: disc;

                        li {
                            font-size: 16px;
                            font-family: 'Aktiv Grotesk Light', sans-serif;
                            font-weight: 400;
                            line-height: 153%;
                            margin-bottom: 0;
                        }
                    }
                }
            }

            .custom-content {
                padding-top: 0;
                display: flex;
                flex-direction: column;
                width: 100%;
                max-width: 985px;
                height: 100vh;
                max-height: 580px;
                /* margin-right: auto; */

                @media (max-width: 1199px) {
                    padding-top: 0;
                    padding-right: 16px;
                    padding-left: 16px;
                    max-width: 100%;
                }

                @media (max-width: 991px) {
                    height: 100%;
                    max-height: max-content;
                }

                br {
                    display: none;
                }

                .acronym-slider {
                    --items-count: 5;
                    --item-width: 130px;
                    --item-gap: 4px;

                    display: flex;
                    width: 100%;
                    max-width: 100%;
                    gap: var(--item-gap);
                    overflow: hidden;

                    @media (max-width: 991px) {
                        flex-direction: column;
                    }


                    div {
                        &#slideService {
                            background-image: url('http://shang-properties-recode-new.local/wp-content/uploads/2026/05/service-dark.png');
                        }

                        &#slideHonest {
                            background-image: url('http://shang-properties-recode-new.local/wp-content/uploads/2026/05/honesty-dark.png');
                        }

                        &#slideAsian {
                            background-image: url('http://shang-properties-recode-new.local/wp-content/uploads/2026/05/asian-dark.png');
                        }

                        &#slideNobility {
                            background-image: url('http://shang-properties-recode-new.local/wp-content/uploads/2026/05/nobility-dark.png');
                        }

                        &#slideGlobal {
                            background-image: url('http://shang-properties-recode-new.local/wp-content/uploads/2026/05/global-dark.png');
                        }
                    }
                }

                .acronym-item {
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    position: relative;
                    flex: 0 0 var(--item-width);
                    width: var(--item-width);
                    max-width: var(--item-width);
                    height: 580px;
                    padding: 16px;
                    box-sizing: border-box;
                    overflow: hidden;
                    color: #fff;
                    background-size: cover !important;
                    background-position: center !important;

                    transition:
                        flex-basis 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                        max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1);

                        
                    &::before {
                        content: "";
                            display: block;
                            height: 100%;
                            position: absolute;
                            width: 100%;
                            z-index: 1;
                            opacity: 1;
                            -webkit-transition: opacity 0.6s ease;
                            transition: opacity 0.6s ease;
                            background: -webkit-gradient(linear, left bottom, left top, from(rgba(129, 0, 31, 0.8)), to(rgba(129, 0, 31, 0.8))), -webkit-gradient(linear, left top, left bottom, color-stop(50.91%, hsla(0, 0%, 9%, 0)), color-stop(92.69%, #000));
                            background: linear-gradient(0deg, rgba(129, 0, 31, 0.8), rgba(129, 0, 31, 0.8)), linear-gradient(180deg, hsla(0, 0%, 9%, 0) 50.91%, #000 92.69%);
                            left: 0;
                            bottom: 0;
                    }

                    .title-text {
                        display: flex;
                        align-items: center;
                        white-space: nowrap;
                        position: relative;
                        bottom: 0;
                        z-index: 2;

                        .capital-letter {
                            font-family: "Schnyder", sans-serif;
                            font-size: 160px;
                            line-height: 1;
                            flex: 0 0 auto;
                            transition: none;
                        }

                        .title-body {
                            font-family: "Schnyder", sans-serif;
                            font-size: 40px;
                            opacity: 0;
                            transition: 0.4s ease;
                        }
                    }

                    .description-text {
                        width: 0;
                        height: 0;
                        overflow: hidden;
                        opacity: 0;
                        position: relative;
                        z-index: 1;
                           
                        transition:
                            width 0s cubic-bezier(0.22, 1, 0.36, 1),
                            opacity 0.25s ease 0.16s,
                            transform 0.4s ease 0.16s;

                        p {
                            font-family: 'Aktiv Grotesk Light', sans-serif;
                            font-size: 15px;
                            width: 0;
                            max-width: 100%;
                            height: 0;
                            margin: 0;
                            opacity: 1;
                        }
                    }

                    &:hover {
                        flex-basis: calc(
                            100% - ((var(--items-count) - 1) * var(--item-width)) - ((var(--items-count) - 1) * var(--item-gap))
                        );

                        max-width: calc(
                            100% - ((var(--items-count) - 1) * var(--item-width)) - ((var(--items-count) - 1) * var(--item-gap))
                        );

                        @media (max-width: 991px) {
                            flex-basis: 100%;
                            max-width: 100%;
                        }

                        &::before {
                            opacity: 0;

                            @media (max-width: 991px) {
                                opacity: 1;
  
                                background: linear-gradient(0deg, rgba(0,0,0, 0.4), rgba(0,0,0, 0.5)), linear-gradient(180deg, hsla(0, 0%, 9%, 0) 50.91%, #000 92.69%);
                            
                            }
                        }

                        .title-body {
                            opacity: 1;
                        }

                        .description-text {
                            width: 100%;
                            height: 100%;
                            max-height: fit-content;
                            opacity: 1;


                            p {
                                width: 100%;
                                height: 100%;
                            }
                        }
                    }

                    &#slideService {
                        p {
                            max-width: 400px;
                            /* text-wrap: auto; */

                            @media (max-width: 991px) {
                                max-width: 100%;
                            }
                        }
                    }

                    &#slideAsian {
                        @media (max-width: 991px) {
                            background-position: 100% 14% !important;
                        }
                    }

                    &#slideNobility {
                        @media (max-width: 991px) {
                            background-position: 100% 26% !important;
                        }
                    }

                    @media (max-width: 991px) {
                        width: 100%;
                        max-width: 100%;
                        overflow: visible;
                    }
                }
            }
        }
    }
}

section.about-split-content { /* Bleed Variant */
    &.image-bleed {
        background: linear-gradient(180deg, #fff 14.64%, #fcfaf8 53.61%, #f8f5ef 84.9%);        padding-top: 0;
        /* padding: 0; */
        padding-top: 40px;
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;

        @media (max-width: 1199px) {
            padding-bottom: 0;
        }

        .about-split-content-contents {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            width: 100%;
            /* max-width: 100%; */
            /* margin: 0; */
            max-width: 1300px;
            margin: auto;
            gap: 0;
            padding-top: 0;
            position: relative;

            @media (min-width: 1921px) {
                max-width: 1300px;
                margin: auto;
            }

            @media (max-width: 1199px) {
                flex-direction: column-reverse;
            }

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 100%;
                max-width: 650px;
                /* margin-left: 30px; */

                @media (max-width: 1199px) {
                    max-width: 100%;
                }

                h2 {
                    font-size: 45px;
                    margin-bottom: 30px;
                }

                .heading-description {
                    .mobile-only {
                        @media (min-width: 1200px) {
                            display: none;
                        }

                        img {
                            width: 100%;
                            max-width: 100%;
                            max-height: 480px;
                            object-fit: cover;
                            object-position: 100% 15%;
                        }

                        margin-bottom: 30px;
                    }

                    h3 {
                        font-size: 26px;
                    }

                    p {
                        margin-bottom: 24px;
                        line-height: 153%;
                        max-width: 618px;

                        @media (max-width: 1199px) {
                            max-width: 100%;
                        }

                        &:last-of-type {
                            margin-bottom: 0;
                        }
                    }
                }
            }

            .custom-content {
                @media (max-width: 1199px) {
                    display: none;
                }

                max-width: 536px;
                padding-top: 0;
                

                .main-image {
                    height: 100%;
                    object-fit: cover;
                    z-index: 3;
                    position: absolute;
                    left: -24%;

                    img {
                        width: 100vw;
                        max-width: 748px;
                        height: 100vh;
                        max-height: 650px;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

section.about-split-content {
    &#ourBrandLeadersLuxury {
        .about-split-content-contents {
            &::before {
                z-index: -1;
            }
        }
    }
}

section.about-split-content {
    &#ourBrandThoughtfulDesign {
        .about-split-content-contents {
            &::before {
                z-index: -1;
            }
        }
    }
}

section.about-split-content {
    &#ourBrandExemplaryService {
        background: linear-gradient(180deg, #f8f5ef 11.4%, #fff 80.55%);        /* padding: 0; */
        padding-top: 40px;
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;

        @media (max-width: 1199px) {
            padding-top: 0;
            padding-bottom: 0;
        }

        .about-split-content-contents {
            display: flex;
            /* justify-content: space-between; */
            justify-content: center;
            width: 100%;
            max-width: 1300px;
            margin: auto;
            /* gap: 0; */
            gap: 120px;
            padding-top: 0;
            position: relative;

            @media (max-width: 1199px) {
                flex-direction: column-reverse;
            }

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 100%;
                /* max-width: 650px; */
                max-width: 498px;
                justify-content: center;
                margin-right: 30px;

                @media (max-width: 1199px) {
                    max-width: 100%;
                    margin-right: 0;
                    background: none;
                }

                h2 {
                    font-size: 45px;
                    margin-bottom: 30px;
                }

                .heading-description {
                    .mobile-only {
                        @media (min-width: 1200px) {
                            display: none;
                        }

                        img {
                            width: 100%;
                            max-width: 100%;
                            max-height: 480px;
                            object-fit: cover;
                            object-position: 100% 100%;
                        }

                        margin-bottom: 30px;
                    }

                    h3 {
                        font-size: 26px;
                    }

                    p {
                        margin-bottom: 24px;
                        line-height: 153%;
                        max-width: 100%;

                        @media (max-width: 1199px) {
                            max-width: 100%;
                        }

                        &:last-of-type {
                            margin-bottom: 0;
                        }
                    }
                }
            }

            .custom-content {
                @media (max-width: 1199px) {
                    display: none;
                }

                max-width: 536px;
                padding-top: 0;
                

                .main-image {
                    height: 100%;
                    object-fit: cover;
                    z-index: 3;
                    position: relative;

                    img {
                        width: 100%;
                        max-width: 100%;
                        height: 100%;
                        max-height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

section.about-split-content {
    &#ourBrandExquisiteTaste {
        background: linear-gradient(180deg, #fff 14.64%, #fcfaf8 53.61%, #f8f5ef 84.9%);        padding-top: 40px;
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;

        @media (max-width: 1199px) {
            padding-top: 0;
            padding-bottom: 0;
        }

        .about-split-content-contents {
            display: flex;
            flex-direction: row-reverse;
            /* justify-content: space-between; */
            width: 100%;
            max-width: 1300px;
            margin: auto;
            /* gap: 0; */
            gap: 120px;
            padding-top: 0;
            position: relative;

            @media (max-width: 1199px) {
                flex-direction: column-reverse;
            }

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 100%;
                /* max-width: 650px; */
                max-width: 595px;
                justify-content: center;

                @media (max-width: 1199px) {
                    max-width: 100%;
                    background: none;
                }

                h2 {
                    font-size: 45px;
                    margin-bottom: 30px;
                }

                .heading-description {
                    .mobile-only {
                        @media (min-width: 1200px) {
                            display: none;
                        }

                        img {
                            width: 100%;
                            max-width: 100%;
                            max-height: 480px;
                            object-fit: cover;
                            object-position: 100% 100%;
                        }

                        margin-bottom: 30px;
                    }

                    h3 {
                        font-size: 26px;
                    }

                    p {
                        margin-bottom: 24px;
                        line-height: 153%;
                        max-width: 100%;

                        @media (max-width: 1199px) {
                            max-width: 100%;
                        }

                        &:last-of-type {
                            margin-bottom: 0;
                        }
                    }
                }
            }

            .custom-content {
                @media (max-width: 1199px) {
                    display: none;
                }

                max-width: 536px;
                padding-top: 0;
                margin-right: 30px;
                

                .main-image {
                    height: 100%;
                    object-fit: cover;
                    z-index: 3;
                    position: relative;

                    img {
                        width: 100%;
                        max-width: 100%;
                        height: 100%;
                        max-height: 100%;
                        object-fit: cover;
                    }
                }
            }
        }
    }
}

/* About Split Content - end */

/* About Years : Origin Homepage */
section.homepage-years {
    &#ourBrandYears {
        background: var(--colorFadedBrown);
        .homepage-years-background {
            background: url(http://shang-properties-recode-new.local/wp-content/uploads/2026/05/about-years-bg.png) 0% 0% / cover no-repeat;
            z-index: 0;
        }

        .homepage-years-contents {
            .years-container {
                z-index: 0;

                .heading-text {
                    h2 {
                        max-width: 100%;
                    }
                }
            }
        }
    }
}
/* About Years - end */

/* About Docs */

section.about-docs {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--colorFadedBrown);
    display: flex;
    flex-direction: column;
    width: 100%;

    .about-docs-contents {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1300px;
        margin: auto;

        /* .heading-text {
            h2 {

            }
        } */

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 24px;

            .accordion-item {
                background: #fff;
                display: flex;
                flex-direction: column;
                width: 100%;

                .item-title {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                    padding: 32px;

                    h2 {
                        font-family: 'Aktiv Grotesk Light', sans-serif;
                        font-size: 28px;
                        margin: 0;
                        margin-right: 30px;
                    }

                    svg {
                        cursor: pointer;
                        transition: 0.4s ease;
                        width: 100%;
                        max-width: 20px;
                        max-height: 20px;
                        min-width: 20px;
                        min-height: 20px;

                        &.plus {
                            display: block;
                        }

                        &.minus {
                            display: none;
                        }
                    }
                }

                &.custom {
                    .item-content {
                        padding-top: 0;
                        padding-bottom: 0;
                        height: 0;
                        overflow: hidden;
                        transition: 0.4s ease;

                        p {
                            display: none;
                            opacity: 0;
                            transition: 0.4s ease;
                        }
                    }
                }

                &.upload {
                    .item-content {
                        &.uploads {
                            padding-top: 0;
                            padding-bottom: 0;
                            height: 0;
                            overflow: hidden;
                            transition: 0.4s ease;

                            .upload-item {
                                display: none;
                                opacity: 0;
                                transition: 0.4s ease;
                                /* padding: 32px; */
                                margin: 32px;
                                padding-top: 24px;
                                padding-bottom: 24px;
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                border-bottom: 1px solid #d7d7d7;

                                &:first-of-type {
                                    padding-top: 0;
                                    margin-top: 0;
                                }

                                span {
                                    font-size: 18px;
                                    font-family: 'Aktiv Grotesk Light', sans-serif;
                                }

                                .download-links {
                                    display: flex;
                                    align-items: center;
                                    gap: 16px;
                                    margin-left: 30px;

                                    a {
                                        &.view-link {
                                            img {
                                                width: 100%;
                                                min-width: 20px !important;
                                                min-height: 13px;
                                                max-width: 20px;
                                                min-width: 13px;
                                            }
                                        }

                                        &.download-link {
                                            img {
                                                width: 100%;
                                                min-width: 16px;
                                                min-height: 16px;
                                                max-width: 16px;
                                                min-width: 16px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                &.sub-upload {
                    .item-title {
                        
                    }

                    .item-content {
                        &.sub-uploads {
                            padding-top: 0;
                            padding-bottom: 0;
                            height: 0;
                            overflow: hidden;
                            transition: 0.4s ease;

                            .sub-upload-group {
                                position: relative;
                                
                                .sub-upload-title {
                                    padding: 32px;
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;

                                    h3 {
                                        font-family: 'Aktiv Grotesk Light', sans-serif;
                                        font-size: 18px;
                                        margin-bottom: 0;
                                    }

                                    svg {
                                        cursor: pointer;
                                        transition: 0.4s ease;
                                    
                                        &.plus {
                                            display: block;
                                        }

                                        &.minus {
                                            display: none;
                                        }
                                    }
                                }

                                .sub-document-uploads {
                                    display: none;
                                    padding-top: 0;
                                    padding-bottom: 0;
                                    opacity: 0;
                                    height: 0;
                                    overflow: hidden;
                                    transition: 0.4s ease;

                                   
                                    grid-template-rows: 0;
                                    
                                    
                                    .upload-item {
                                        display: none;
                                        opacity: 0;
                                        transition: 0.4s ease;
                                        /* padding: 32px; */
                                        margin: 0;
                                        padding-top: 0;
                                        padding-bottom: 0;
                                        justify-content: space-between;
                                        align-items: center;
                                        border-bottom: 1px solid #d7d7d7;

                                        span {
                                            font-family: 'Aktiv Grotesk Light', sans-serif;
                                            font-size: 16px;
                                        }

                                        .download-links {
                                            display: flex;
                                            align-items: center;
                                            gap: 16px;
                                            margin-left: 30px;

                                            a {
                                                &.view-link {
                                                    img {
                                                        width: 100%;
                                                        min-width: 20px !important;
                                                        min-height: 13px;
                                                        max-width: 20px;
                                                        min-width: 13px;
                                                    }
                                                }

                                                &.download-link {
                                                    img {
                                                        width: 100%;
                                                        min-width: 16px;
                                                        min-height: 16px;
                                                        max-width: 16px;
                                                        min-width: 16px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }

                                &.active {
                                    svg {
                                        &.plus {
                                            display: none;
                                        }

                                        &.minus {
                                            display: block;
                                        }
                                    }

                                    .sub-document-uploads {
                                        /* display: flex;
                                        flex-direction: column;
                                        height: 100%;
                                        opacity: 1; */

                                        display: grid;
                                        grid-template-rows: 1fr;
                                        height: 100%;
                                        opacity: 1;
                                        

                                        .upload-item {
                                            display: flex;
                                            opacity: 1;
                                            margin: 32px;
                                            padding-top: 24px;
                                            padding-bottom: 24px;
                                            

                                            .download-links {
                                                display: flex;
                                                align-items: center;
                                                gap: 16px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                &.active { /* active state */
                    .item-title {
                        svg {
                            &.plus {
                                display: none;
                            }

                            &.minus {
                                display: block;
                            }
                        }
                    }

                    &.custom {
                        .item-content {
                            padding: 32px;
                            height: 100%;

                            p {
                                display: flex;
                                opacity: 1;
                            }
                        }
                    }

                    &.upload {
                        .item-content {
                            height: 100%;

                            &.uploads {
                                .upload-item {
                                    display: flex;
                                    opacity: 1;
                                }
                            }
                        }
                    }

                    &.sub-upload {
                        .item-content {
                            height: 100%;
                            
                            &.sub-uploads {
                                .sub-upload-group {
                                    .sub-upload-title {
                                    
                                    }
                                }
                            }
                        }
                    }

                }
            }
        }
    }
}

section.about-docs {
    &.has-heading {
        /* padding-top: 100px;
        padding-bottom: 100px; */

        /* @media (max-width: 1199px) {
            padding-top: 70px;
            padding-bottom: 70px;
        } */

        /* @media (max-width: 767px) {
            padding-top: 50px;
            padding-bottom: 50px;
        } */

        .about-docs-contents {
            position: relative;
            
            &::before {
                content: "";
                background-color: #f8f5ef;
                width: 100%;
                max-width: 727px;
                left: -19px;
                height: 100%;
                max-height: 316px;
                position: absolute;
                top: 0;
                bottom: 0;
                display: block;
                z-index: 0;
            }

            .heading-text {
                margin-top: 32px;
                margin-bottom: 100px;
                z-index: 1;

                h2 {
                    margin-bottom: 0;
                }
            }

            .docs-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                align-items: start;
                z-index: 1;

                @media (max-width: 991px) {
                    grid-template-columns: repeat(1, 1fr);
                }

                & > :last-child {
                    grid-column: 1 / -1;
                    justify-self: center;
                    max-width: 638px;

                    @media (max-width: 991px) {
                        max-width: 100%;
                    }
                }

                .accordion-item {
                    .item-title {
                        h2 {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }

    &.two-col {

    }
}

/* About Docs - end */

/* About Contact Us - Origin:Homepage - Newsletter */
section.homepage-newsletter {
    &.about-us {
        background: var(--colorChalkBrown);
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        padding-top: 40px;
        padding-bottom: 40px;
        max-width: 1300px;
        margin: auto;

        .homepage-newsletter-contents {
            .text-content {
                h2 {
                    color: var(--colorRed);
                }
            }

            .form-main {
                form {
                    input {
                        background: none;
                    }

                    textarea {
                        background: none;
                        width: 100%;
                        padding: 15px;
                        border: 1px solid #000;
                        margin-bottom: 20px;
                        max-height: 56px;

                        &::placeholder {
                            font-family: 'Aktiv Grotesk Light';
                            font-size: 16px;
                            color: #777777;
                        }
                    }
                }
            }
        }
    }
}

/* About Contact Us - end */


/* About Split Content - Box Overlay */
section.about-split-content {
    &.box-overlay {
        .about-split-content-contents {
            padding-top: 40px;

            .heading-content {
                max-width: 100%;

                h2 {
                    font-size: 45px;
                    margin-bottom: 8px;
                }

                .heading-description {
                    .main-image {
                        &.mobile-only {
                            @media (min-width: 1200px) {
                                display: none;
                            }
                        }
                    }
                }
            }

            .custom-content {
                padding-top: 0;

                @media (max-width: 1199px) {
                    display: none;
                }
            }

            .main-image {
                position: relative;

                img {
                    width: 100%;

                    @media (max-width: 1199px) {
                        height: 100%;
                        max-height: 480px;
                        object-fit: cover;
                        margin-bottom: 30px;
                    }
                }

                &::before {
                    height: 105px;
                    width: 170px;
                    left: -24px;
                    position: absolute;
                    content: "";
                    background: var(--colorRed);
                    opacity: 0.4;
                    bottom: 0;
                }

                &::after {
                    position: absolute;
                    content: "";
                    background: var(--colorUltraLightBrown);
                    opacity: 0.4;
                    top: 0;
                    height: 85px;
                    width: 157px;
                    right: -31px;
                }
            }
        }
    }
}

/* About Split Content - Box Overlay - end */

/* About - Investors - Open & Effective */
section.about-split-content {
    &#investorsOpenEffective {
        background: var(--colorFadedBrown);
    }
}

/* About - Investors - Open & Effective -  end */


/* About - Investors - Investor Relations */
section.about-split-content {
    &#investorsInvestorRelations {
        background: #fff;
        padding-top: 0;

        .about-split-content-contents {
            margin-right: 0;

            .heading-content {
                max-width: 100%;
                padding-right: 12px;

                .heading-description {
                    p {
                        max-width: 835px;

                        @media (max-width: 1199px) {
                            max-width: 100%;
                        }
                    }
                }
            }

            .custom-content {
                max-width: 430px;

                .main-image {
                    left: -42%;

                    img {
                        width: 100vw;
                        max-width: 840px;
                        height: 100vh;
                        max-height: 560px;
                        object-fit: cover;
                        transition: 0.4s ease;

                        @media (max-width: 1440px) {
                            max-height: 684px;
                        }
                    }
                }
            }
        }
    }
}


section.about-split-content {
    &#investorsInvestorRelationsSub {
        background: var(--colorFadedBrown);
        padding-top: 40px;
        padding-bottom: 40px;

        .about-split-content-contents {
            padding-top: 0;
            background: var(--colorFadedBrown);

            .heading-content {
                display: none;
            }

            &::before {
                display: none;
            }

            .custom-content {
                padding-top: 0;
                max-width: 100%;
                
                .investor-relations-list {
                    display: flex;
                    gap: 24px;

                    @media (max-width: 767px) {
                        flex-direction: column;
                    }

                    .investor-relations-item  {
                        display: flex;
                        flex-direction: column;
                        width: 100%;

                        .address-detail {
                            display: flex;
                            flex-direction: column;
                            gap: 8px;
                            margin-bottom: 24px;
                        }

                        .contact-detail {
                            display: flex;
                            flex-direction: column;
                            gap: 8px;
                            margin-bottom: 24px;

                            &:last-of-type {
                                margin-bottom: 0;
                            }

                            a {
                                font-family: 'Aktiv Grotesk Light', sans-serif;
                                font-size: 14px;
                            }
                        }

                        h3 {
                            font-size: 26px;
                        }

                        p {
                            font-size: 14px;

                            &.subtitle {
                                text-transform: uppercase;
                                margin-bottom: 24px;
                            }
                        }

                        span {
                            font-size: 14px;

                            &.title {
                                color: var(--colorMochaBrown);
                                text-transform: uppercase;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* About - Investors- Investor Relations - end */

/* About - Investors - Docs */
section.about-docs {
    &#investorsDocs {
        .about-docs-contents {
            padding-top: 36px;
            flex-direction: row;
            gap: 24px;

            @media (max-width: 991px) {
                flex-direction: column;
            }

            .heading-text {
                width: 100%;
                max-width: 518px;

                h2 {
                    text-wrap: auto;
                }
            }

            .docs-grid {
                display: flex;
                flex-direction: column;
                width: 100%;

                & > :last-child {
                    max-width: 100%;
                }

                .accordion-item {
                    .item-title {
                        h3 {
                            font-family: "Aktiv Grotesk Light", sans-serif;
                            font-size: 18px;
                        }
                    }
                }

            }
        }
    }
}

/* About - Investors - Docs - end */

/* About - Careers */
section.about-split-content {
    &#careersEmpoweringPeople {
        padding-top: 0;
        background: var(--colorChalkBrown);

        .about-split-content-contents {
            &::before {
                display: none;
            }

            .heading-content {
                h2 {
                    max-width: 735px;

                    @media (max-width: 1199px) {
                        max-width: 100%;
                    }
                }

                .heading-description {
                    max-width: 735px;
                    margin-bottom: 24px;

                    @media (max-width: 1199px) {
                        max-width: 100%;
                    }
                }

                .main-content {
                    display: flex;
                    justify-content: space-between;
                    /* gap: 24px; */

                    @media (max-width: 1199px) {
                        flex-direction: column;
                    }

                    .main-image {
                        max-width: 650px;

                        @media (min-width: 1200px) {
                            max-height: 357px;
                            margin-right: 24px;
                        }

                        @media (max-width: 1199px) {
                            max-width: 100%;
                        }
                    }

                    .core-values-list {
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                        max-width: 518px;

                        @media (max-width: 1199px) {
                            max-width: 100%;
                            margin-top: 30px;
                        }
                    }
                }
            }
        }
    }
}

/* About - Careers - end */


/* About Grid */
section.about-grid {
    display: flex;
    flex-direction: column;
    width: 100%;

    &.six-item-grid {
        .about-grid-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 14px;
            row-gap: 25px;
        }
    }

    &.four-item-grid {
        .about-grid-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 14px;
            row-gap: 25px;
        }
    }

    &.five-item-grid {
        .about-grid-list {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            column-gap: 14px;
            row-gap: 25px;

            > * {
                grid-column: span 2;
            }

            > :nth-last-child(2) {
                grid-column: 2 / span 2;
            }

            > :last-child {
                grid-column: 4 / span 2;
            }
        }
    }

    .about-grid-contents {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        background: linear-gradient(180deg, #f8f5ef 48.96%, hsla(40, 39%, 95%, 0));
        padding: 40px;

        .heading-content {
            display: flex;
            flex-direction: column;
            text-align: center;
            width: 100%;
            max-width: 626px;
            margin: auto;

            h2 {
                margin-top: 8px;
                margin-bottom: 32px;
            }
        }

        .about-grid-list {
            width: 100%;
            max-width: 626px;
            margin: auto;

            @media (max-width: 767px) {
                display: flex;
                flex-direction: column;
            }

            .about-grid-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 15px;
                border: 1px solid var(--colorYellow);

                img {
                    max-width: 40px;
                    max-height: 40px;
                    margin-bottom: 12px;
                }

                span {
                    font-family: "Aktiv Grotesk Light", sans-serif;
                    font-size: 12px;
                }
            }
        }
    }

    &#careersListing {
        .about-grid-list {
            max-width: 100%;

            .about-grid-item {
                padding: 40px 35px;
                align-items: flex-start;
                text-align: left;

                ul {
                    list-style: disc;

                    li {
                        font-family: "Aktiv Grotesk Light", sans-serif;
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

/* About Grid - end */

/* About Split Content - Image Row Variant */
.about-split-content {

    .item-cta {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: auto;

        span {
            font-family: 'Aktiv Grotesk Light', sans-serif;
            font-size: 14px;
        }

        .arrow-cta {
            margin-top: 16px;

            a {
                display: flex;
                align-items: center;
                gap: 10px;

                svg {
                    transition: 0.4s ease;
                }

                &.arrow-link {
                    font-family: 'Aktiv Grotesk Cd';
                    font-size: 12px;
                    color: var(--colorRed);
                    letter-spacing: 0.18em;
                    font-weight: 700;
                    text-transform: uppercase;
                    transition: 0.4s ease;

                    br {
                        display: none;
                    }

                    .arrow-icons {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        transition: 0.4s ease;
                        
                        img {
                            transition: 0.4s ease;
                            transform: translateX(0);
                            opacity: 1;

                            &.yellow-arrow {
                                position: absolute;
                                opacity: 0;
                                visibility: hidden;
                            }

                            &.red-arrow {
                                opacity: 1;
                                visibility: visible;
                            }
                        }

                    }

                    &:hover {
                        color: var(--colorYellow);

                        .arrow-icons {
                            margin-left: 10px;

                            img {
                                &.yellow-arrow {
                                    opacity: 1;
                                    visibility: visible;
                                }

                                &.red-arrow {
                                    opacity: 0;
                                    visibility: hidden;
                                    transform: translateX(0);
                                }
                            }
                        }
                    }
                }
            }
        }


        
    }


    &.image-row {
        padding-top: 0;
        padding-bottom: 0;

        &.horizontal-flip {
            .about-split-content-contents {
                flex-direction: row-reverse;

                @media (max-width: 1199px) {
                    flex-direction: column;
                }
            }
        }

        .about-split-content-contents {
            padding-top: 0;
            justify-content: center;

            &::before {
                display: none;            
            }

            .heading-content {
                max-width: 398px;

                @media (max-width: 1199px) {
                    max-width: 100%;
                }

                .image-container {
                    height: 100%;
                    max-height: 100%;

                    img {
                        height: 100%;
                        object-fit: cover;
                    }
                }
            }

            .custom-content {
                padding-top: 0;
                max-width: 610px;

                @media (max-width: 1199px) {
                    max-width: 100%;
                }
            }    
        }
    }

    &#careersImageRowOne {
        padding-top: 40px;
        padding-bottom: 40px;
        background: var(--colorFadedBrown);
    }

    &#careersImageRowTwo {
        padding-bottom: 40px;
        background: var(--colorFadedBrown);
    }

    &#careersImageRowThree {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    &#careersImageRowFour {
        padding-bottom: 40px;
    }
}

/* About Split Content - Image Row Variant - end */

/* About - Careers - Form */
section.homepage-newsletter {
    &.careers {
        .homepage-newsletter-contents {
            .form-main {
                form {
                    .file-upload-wrapper {
                        input {
                            border: none;
                            padding: 0;
                            margin-bottom: 0;
                            font-family: "Aktiv Grotesk Light", sans-serif;

                            &::file-selector-button {
                                display: none;
                            }
                        }

                        button {
                            margin-top: 50px;
                            margin-bottom: 16px;
                        }
                    }
                }
            }
        }
    }
}
/* About - Careers - Form - end */

/* About - Kerry Foundation */
section.about-split-content {
    &#kerryFoundationBuildingCommunity {
        background: var(--colorFadedBrown);
    }
}

section.about-split-content {
    &#kerryFoundationBuildingCommunitySub {
        padding-top: 40px;
        padding-bottom: 40px;

        .about-split-content-contents {
            padding-top: 0;
            justify-content: center;

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 630px;

                @media (max-width: 1199px) {
                    margin: auto;
                    background: none;
                }

                .heading-description {
                    .sub-quote {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        margin-bottom: 80px;

                        span {
                            font-family: "Aktiv Grotesk Light", sans-serif;
                            font-size: 32px;
                            text-align: center;
                        }

                        img {
                            width: 100%;
                            max-width: 26px;
                            height: 100%;
                            max-height: 28px;
                        }
                    }

                    .text-content {
                        p {
                            color: #575757;
                            margin-bottom: 24px;

                            &:last-of-type {
                                margin-bottom: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* About - Kerry Foundation - end */


/* Businesses */
section.about-split-content {
    &#businessesContentHeading {
        background: linear-gradient(180deg, #f8f5ef 11.4%, #fff 80.55%);
        padding-top: 40px;
        padding-bottom: 40px;

        .about-split-content-contents {
            padding-top: 0;

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 100%;

                @media (max-width: 1199px) {
                    background: none;
                }

                h2 {
                    margin-top: 0;
                    margin-bottom: 8px;
                }
            }
        }
    }

    &#businessContentResidential {
        background: linear-gradient(
            180deg,
            #fff 14.64%,
            #fcfaf8 53.61%,
            #f8f5ef 84.9%
        );
    }

    &#businessContentMalls {
            background: linear-gradient(180deg, #f8f5ef 11.4%, #fff 80.55%);
    }

    &#businessContentOffices {
            background: linear-gradient(180deg, #fff 14.64%, #fcfaf8 53.61%, #f8f5ef 84.9%);
    }

    &#businessPropertyManagement {
            background: linear-gradient(180deg, #f8f5ef 11.4%, #fff 80.55%);
    }

    &#businessHospitality {
            background: linear-gradient(180deg, #fff 14.64%, #fcfaf8 53.61%, #f8f5ef 84.9%);
    }

}


section.about-split-content {
    &.box-overlay {
        &.business {
            padding-bottom: 40px;

            .about-split-content-contents {
                gap: 120px;

                &::before {
                    display: none;
                }

                .heading-content {
                    max-width: 518px;
                    justify-content: center;

                    @media (max-width: 1199px) {
                        max-width: 100%;
                    }
                }
            }
        }
    }
}

/* Businesses - end */

/* Residential */
section.about-split-content {
    &#residentialContentHeading {
        background: linear-gradient(180deg, #f8f5ef 11.4%, #fff 80.55%);
        padding-top: 40px;
        padding-bottom: 40px;

        .about-split-content-contents {
            padding-top: 0;

            &::before {
                display: none;
            }

            .heading-content {
                max-width: 100%;

                @media (max-width: 1199px) {
                    background: none;
                }

                h2 {
                    margin-top: 0;
                    margin-bottom: 8px;
                }

                p {
                    max-width: 951px;

                    @media (max-width: 1199px) {
                        max-width: 100%;
                    }
                }
            }
        }
    }

    &#residentialContentShangSummit {
        overflow: hidden;

        .about-split-content-contents {
            &::after {
                content: "";
                position: absolute;
                left: -19px;
                bottom: -40px;
                width: 200%;
                height: 312px;
                background-color: var(--colorFadedBrown);
                z-index: -1;
            }
        }
    }

    &#residentialContentShangBauhinia {
        overflow: hidden;

        .about-split-content-contents {
            &::after {
                content: "";
                position: absolute;
                left: -19px;
                bottom: -40px;
                width: 200%;
                height: 312px;
                background-color: var(--colorFadedBrown);
                z-index: -1;
            }
        }
    }
}


/* Residential - end */


/* Enterprise Center */
.page-id-403,
.page-id-409,
.page-id-435 {
    section.about-nav-mini {
        .about-nav-mini-contents {
            justify-content: center;
        }
    }
}

/* Enterprise Center - end */


/* Enterprise Project Details */
section.about-split-content {
    &.project-details-content {
        padding-bottom: 0 !important;
        
        .about-split-content-contents {
            padding-top: 0;
            gap: 64px !important;

            @media (max-width: 1199px) {
                flex-direction: column-reverse !important;
                gap: 0px !important;
            }

            .heading-content {
                max-width: 654px !important;
                    @media (max-width: 1199px) {
                        background: #fff;
                    }

                h2 {
                    font-family: "Aktiv Grotesk Light", sans-serif;
                    font-size: 32px !important;
                    margin-bottom: 16px;
                }

                .heading-description {
                    p {
                        margin-bottom: 24px;

                        /* &:first-of-type {
                            margin-bottom: 24px;
                        } */

                        &:last-of-type {
                            margin-bottom: 0;
                        }
                    }

                    .box-cta {
                        margin-top: 16px;
                    }
                }
            }

            .custom-content {
                .project-details {
                    background: var(--colorChalkBrown);
                    padding: 30px;
                    padding-top: 60px;

                    h2 {
                        font-family: "Aktiv Grotesk Light", sans-serif;
                        font-size: 18px !important;
                        margin-bottom: 16px;
                    }

                    .project-details-list {
                        display: flex;
                        flex-direction: column;
                        gap: 16px;

                        .project-details-item {
                            display: flex;
                            gap: 12px;
                            overflow: hidden;

                            img {
                                height: 100%;
                                max-height: min-content;
                                width: 100%;
                                max-width: min-content;
                            }

                            .item-details {
                                span {
                                    &.detail-title {
                                        display: block;
                                        font-family: "Aktiv Grotesk Light", sans-serif;
                                        font-size: 12px !important;
                                        text-transform: uppercase;
                                        color: #777;
                                    }
                                }

                                .detail-content {
                                    margin-top: 8px;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 4px;

                                    p {
                                        font-size: 12px;
                                        
                                        a {
                                            color: var(--colorRed);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                @media (max-width: 1199px) {
                    display: flex;
                    padding-right: 0;
                    padding-left: 0;
                }
            }
        }
    }
}
/* Enterprise Project Details - end */

/* Enterprise Carousel */
section.homepage-carousel {
    &.enterprise-carousel,
    &.assembly-grounds-carousel {
        background: #fff;;
        padding-top: 40px;

        .homepage-carousel-contents {
            max-width: -webkit-fill-available;

            .heading-text {
                margin-bottom: 16px;

                h2 {
                    text-align: center;
                }
            }

            .video-carousel {
                margin-bottom: 24px;

                &::before {
                    display: none;
                }

                .flickity-viewport {

                    .flickity-slider {

                        .carousel-cell {
                            display: flex;
                            width: 53%;
                            overflow: hidden;
                            object-position: center;

                            img {
                                &.carousel-thumbnail {
                                    width: 100%;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

section.carousel-navigation {
    &.enterprise-counter {
        background: #fff;
    }
}

.enterprise-modal {
    .modal-content {
        padding: 0;
        border: 0;
        width: 100%;
        /* max-width: 50vw; */

        span {
            &.close-btn {
                display: flex;
                justify-content: flex-end;
                position: relative;
                top: 0;
                right: -36px;

                svg {
                    pointer-events: none;
                    opacity: 0.6;
                    transition: 0.4s ease;
                }

                &:hover {
                    svg {
                        opacity: 1;
                    }
                }
            }
        }
    }
}

/* Enterprise Carousel - end */

/* Enterprise Project Highlights */
section.about-split-content {
    &#enterpriseContentProjectHighlights {
        margin-top: 40px;
        margin-bottom: 40px;
        background: var(--colorChalkBrown);
        padding-bottom: 0;

        .about-split-content-contents {
            max-width: 100%;
            gap: 80px;
            padding-top: 0;

            @media (max-width: 1199px) {
                flex-direction: column-reverse;
                gap: 0;
            }

            .heading-content {
                max-width: 614px;
                padding-top: 65px;
                padding-bottom: 65px;

                @media (max-width: 1199px) {
                    padding-top: 0;
                    max-width: 100%;
                }
                

                h2 {
                    margin-top: 0;
                    font-family: "Aktiv Grotesk Light", sans-serif;
                    font-size: 18px !important;
                    text-align: center;
                    margin-bottom: 32px;
                }

                .highlights-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;

                    @media (max-width: 575px) {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    @media (max-width: 380px) {
                        grid-template-columns: repeat(1, 1fr);
                    }

                    .highlights-item {
                        border: 1px solid var(--colorYellow);
                        padding: 10px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                        gap: 15px;

                        p {
                            text-wrap: auto;
                        }

                        img {
                            width: 100%;
                            height: 100%;
                            max-width: 46px;
                            max-height: 46px;
                        }
                    }
                }
            }

            .custom-content {
                max-width: 858px;

                @media (max-width: 1199px) {
                    display: flex;
                    max-width: 100%;
                    padding: 0;
                    margin-bottom: 32px;
                }

                .main-image {
                    &::before,
                    &::after {
                        display: none;
                    }

                    img {
                        transition: 0.4s ease;
                        min-height: 517px;
                        object-fit: cover;

                        @media (max-width: 1461px) {
                            min-height: 565px;
                        }

                        @media (max-width: 1199px) {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
    }
}

/* Enterprise Project Highlights - end */

/* Enterprise Years */
section.homepage-years {
    &.enterprise-years-block {
        max-height: 521px;

        .homepage-years-background {
            height: 100%;
            max-height: 100%;
        }

        .homepage-years-contents {
            justify-content: center;
            
            .years-container {
                flex-direction: column;
                max-width: 626px;
                gap: 16px;

                h2 {
                    font-family: "Aktiv Grotesk Light", sans-serif;
                    font-size: 32px;
                    text-wrap: pretty;
                    margin: 0;
                }

                .custom-content {
                    .box-content {
                        display: flex;
                        flex-direction: column;
                        gap: 15px;

                        a {
                            &.maps-link {
                                display: flex;
                                align-items: center;

                                br {
                                    display: none;
                                }

                                font-family: "Aktiv Grotesk Cd Regular", sans-serif;
                                color: var(--colorRed);
                                font-size: 12px;
                                font-weight: 700;
                                text-transform: uppercase;
                                letter-spacing: 4.16px;
                                line-height: normal;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Enterprise Years - end */

/* Malls - Assembly Grounds */
section.about-split-content {
    &#assemblyContentDelight {
        .about-split-content-contents {
            .heading-content {
                margin-top: 40px;
                margin-bottom: 40px;
            }
        }
    }
}

/* Malls - Assembly Grounds - end */


