@charset "utf-8";

#main-content .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 600rem;
    /* background: radial-gradient(circle at 20% 0, #648de3 10%, #6768e3) 0 / cover no-repeat; */
    color: #fff;

    /* &::before {
        content: '히어로';
        position: absolute;
        inset: 0;
        margin: auto;
        align-content: center;
        text-align: center;
        font: 200 var(--font-size-32) var(--font-sans);
    } */

    [data-tab="tab1"] {
        background-color: #f9f9f9;
    }

    [data-tab="tab2"] {
        background-color: #000011;
    }

    [data-tab="tab3"] {
        background-color: #f9f9f9;
    }

    .banner-wrap {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .banner {
        flex: 1;
        height: 100%;
        transition: flex 2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .banner.active {
        flex: 3;
    }

    [data-target="tab1"] {
        background: linear-gradient(135deg, #9C2B32 0%, #BA2427 100%);
    }

    [data-target="tab2"] {
        background: url(/assets/images/home/bg-robot-main.png) no-repeat center center / cover;
    }

    [data-target="tab3"] {
        background: url(/assets/images/home/bg-quantum-main.png) no-repeat center center / cover;
    }

    .content {
        position: relative;
        display: flex;
        width: 100%;
        height: 100%;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active[data-target="tab1"].active,
    .content.active[data-target="tab2"].active {
        border-radius: 0px 200px 0px 0px;
    }

    .content.active[data-target="tab3"].active {
        border-radius: 200px 0px 0px 0px;
    }

    .content .car-main {
        position: absolute;
        width: 100%;
        min-width: 650px;
        bottom: 5%;
        left: 10%;
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1;
    }

    .content.active .car-main {
        left: 30%;
    }

    .content[data-target="tab1"]::before {
        content: "";
        position: absolute;
        display: block;
        top: -180px;
        left: -180px;
        width: 350px;
        height: 320px;
        background: url("/assets/images/components/ornament.png") no-repeat center center / cover;
    }

    .content[data-target="tab1"]::after {
        content: "";
        position: absolute;
        display: block;
        top: 45%;
        left: 45%;
        width: 350px;
        height: 320px;
        background: url("/assets/images/components/ornament.png") no-repeat center center / cover;
    }

    .content .robot-main {
        position: absolute;
        width: 100%;
        max-width: 440px;
        bottom: -5%;
        right: 50%;
        transform: translateX(50%);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active .robot-main {
        right: 25%;
    }

    .content .quantum-main {
        position: absolute;
        width: 100%;
        max-width: 270px;
        bottom: 10%;
        right: 50%;
        transform: translateX(50%);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active .quantum-main {
        max-width: 400px;
        right: 25%;
    }

    .title-wrap {
        display: grid;
        grid-template-rows: auto 1fr 1fr;
        width: 100%;
        margin: clamp(24px, calc(100 / var(--container) * 100vw), 100px);
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .title-wrap .logo-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 12px;
        height: 76px;
    }

    .title-wrap>.logo-main>p {
        display: flex;
        padding: 8px 24px;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        font-size: 0rem;
        opacity: 0;
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .title-wrap>.logo-main>p.mobility,
    .title-wrap>.logo-main>p.quantum {
        border-radius: 99px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.12);
    }

    .title-wrap>.logo-main>p.security {
        border-radius: 99px;
        border: 1px solid rgba(34, 34, 34, 0.04);
        background: rgba(34, 34, 34, 0.06);
    }

    .content.active .title-wrap>.logo-main>p {
        opacity: 1;
        font-size: 14rem;
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .title-wrap>.logo-main>img {
        /* width: 100%; */
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .content .title-wrap .title {
        opacity: 0;
        visibility: hidden;
        filter: blur(5px);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active .title-wrap .title {
        opacity: 1;
        visibility: visible;
        filter: none;
        white-space: nowrap;
        min-width: 0;
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .title-wrap .title p {
        font-family: var(--font-sans);
        font-size: var(--font-size-14);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active .title-wrap .title p {
        font-size: var(--font-size-32);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-target="tab1"] .title-wrap .title p {
        color: #FFF;
    }

    [data-target="tab2"] .title-wrap .title p {
        color: #B92427;
    }

    [data-target="tab3"] .title-wrap .title p {
        color: #FFF;
    }

    .title-wrap .title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-20);
        line-height: 140%;
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
        margin-top: 24px;
    }

    .content.active .title-wrap .title h1 {
        font-size: var(--font-size-60);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-target="tab2"] .title-wrap .title h1 span {
        color: #B92427;
    }

    .title-wrap a {
        visibility: hidden;
        opacity: 0;
        display: flex;
        width: fit-content;
        height: fit-content;
        padding: 18px 40px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        border-radius: 50px;
        /* margin-top: 100px; */
        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .content.active .title-wrap a {
        opacity: 1;
        visibility: visible;
    }

    [data-target="tab1"] .title-wrap a {
        background: #FFF;
        color: #B92427;
    }

    [data-target="tab2"] .title-wrap a {
        background: #B92427;
        color: #fff;
    }

    [data-target="tab3"] .title-wrap a {
        background: #FFF;
        color: #B92427;
    }

    [data-target="tab2"] .title-wrap {
        color: #000;
    }

    [data-target="tab2"] .title-wrap button {
        background: #000;
        color: #FFF;
    }

    @media (max-width: 1280px) {
        .title-wrap {
            margin: clamp(24px, calc(60 / var(--container) * 100vw), 60px);
        }

        .content.active .title-wrap .title h1 {
            font-size: var(--font-size-54);
        }

        /* Image */

        .content.active .robot-main {
            max-width: 380px;
            right: 30%;
        }

        .content.active .quantum-main {
            max-width: 330px;
            right: 30%;
        }

        /* End of image */

        .content.active[data-target="tab1"].active,
        .content.active[data-target="tab2"].active {
            border-radius: 0px 120px 0px 0px;
        }

        .content.active[data-target="tab3"].active {
            border-radius: 120px 0px 0px 0px;
        }

        .title-wrap>.logo-main {
            height: 68px;
        }
    }

    @media (max-width: 1024px) {
        .title-wrap {
            grid-template-rows: auto;
        }

        .banner-wrap {
            flex-direction: column;
        }

        .banner-wrap>.banner {
            flex: unset;
        }

        .banner-wrap>.banner.active {
            flex: unset;
        }

        /* .content.active .title-wrap,
        .content .title-wrap {
            margin: 24px;
        } */

        .content.active[data-target="tab1"].active,
        .content.active[data-target="tab2"].active,
        .content.active[data-target="tab3"].active {
            border-radius: unset;
        }

        /* Image */

        .content.active .car-main {
            left: 50%;
        }

        .content .car-main {
            max-width: 700px;
        }

        .content .robot-main {
            max-width: 240px;
            right: 10%;
            transform: translateX(0);
        }

        .content .quantum-main {
            max-width: 220px;
            right: 10%;
            transform: translateX(0);
        }

        /* end of image */

        .content.active .title-wrap .title h1 {
            font-size: var(--font-size-42);
        }

        .content .title-wrap .title h1 {
            opacity: 1;
            visibility: visible;
            font-size: var(--font-size-42);
        }

        .title-wrap .title p {
            opacity: 1;
            visibility: visible;
        }

        .title-wrap a {
            opacity: 1;
            visibility: visible;
            margin-top: 32px;
            padding: 16px 28px;
        }
    }

    @media (max-width: 768px) {
        .title-wrap>.logo-main {
            height: 45px;
        }

        /* Image */

        .content .car-main {
            max-width: unset;
            min-width: unset;
        }

        .content .robot-main {
            max-width: 180px;
            right: 2%;
        }

        .content .quantum-main {
            max-width: 140px;
            right: 5%;
        }

        /* End of image */
    }
}

.copany-list {
    position: relative;
}

.copany-list-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-block: 120px;

    .title {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .title .wrap-title p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        color: #BA2427;
    }

    .title .wrap-title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    }

    .title button {
        display: flex;
        align-items: center;
        gap: 20px;
        height: fit-content;
        padding-block: 20px;
        color: #89262C;
        font-size: var(--font-size-20);
        border-bottom: 1px solid #89262C;
    }

    .list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, auto));
        gap: 32px;
    }

    .list .card-company {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        border-radius: 54px 18px 54px 18px;
        overflow: hidden;
        background-color: #fff;
    }

    .list .card-company .img {
        display: flex;
        align-items: center;
        max-height: 175px;
        overflow: hidden;
    }

    .list .card-company .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .list .card-company .text {
        padding: 24px;
        border-top: 1px solid #ddd;
    }
}

.copany-list::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 550px;
    border-radius: 0 240px 0 0;
    background: linear-gradient(180deg, #F0DBDB 0%, #ffffff 100%);
}

.layout-home .program-participant {
    position: relative;
}

.layout-home .program-participant::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    border-radius: 0 240px 0 0;
    background: linear-gradient(180deg, #F0DBDB 0%, #ffffff 60%);
}

.layout-home .program {
    position: relative;

    .program-content {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 80px;
        padding-block: clamp(60rem, calc(90 / var(--container) * 100vw), 90rem);
    }

    .program-content>.title {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .program-content>.title>.wrap-title p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        color: #BA2427;
    }

    .program-content>.title>.wrap-title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    }

    .program-content>.title>button {
        font-weight: 800;
        color: #999999;
    }

    .program-content>.title>button>span {
        padding: 8px;
        background-color: #BA2427;
        border-radius: 50%;
        color: #fff;
        margin-left: 10px;
    }

    .program-content>.list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .program-content>.list>.card {
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        border: 1px solid #ddd;
        background-color: #fff;
        padding: 28px;
        gap: 52px;
        overflow: hidden;
    }

    .program-content>.list>.card>.content {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .program-content>.list>.card>.content>.status {
        display: flex;
        justify-content: end;
        width: 100%;
    }

    .program-content>.list>.card>.content>.status>p {
        display: flex;
        padding: 6px 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: fit-content;
        border-radius: 100px;
    }

    .program-content>.list>.card>.content>.status.schedule>p {
        border: 1px solid #BA2427;
        color: #BA2427;
    }

    .program-content>.list>.card>.content>.status.progress>p {
        border: 1px solid #0084D1;
        color: #0084D1;
    }

    .program-content>.list>.card>.content>.status.closed>p {
        border: 1px solid #A1A1A1;
        color: #A1A1A1;
    }

    .program-content>.list>.card>.footer {
        padding-top: 24px;
        border-top: 1px solid #ddd;
    }

    .program-content>.list>.card>.footer>.date {
        margin-bottom: 16px;
    }

    .program-content>.list>.card>.footer>.date,
    .program-content>.list>.card>.footer>.location {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .program-content>.list>.card>.desc-hover {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(100%);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 28px;
        color: #fff;
        border-radius: 12px;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        background: url(/assets/images/components/bg-card-program-hover.png) center / cover no-repeat;
    }

    @media (hover: hover) {
        .program-content>.list>.card:hover .desc-hover {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .program-content>.list>.card>.desc-hover>p {
        font-size: var(--font-size-16);
        line-height: 180%;
    }

    .program-content>.list>.card>.desc-hover>a {
        display: flex;
        align-items: center;
        width: fit-content;
        gap: 20px;
        height: fit-content;
        padding-block: 12px;
        color: #ffffff;
        font-size: var(--font-size-20);
        border-bottom: 1px solid #ffffff;
    }
}

.layout-home .participant {
    position: relative;

    marquee {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 200px;
        color: rgba(0, 0, 0, 0.02);
        font-family: var(--font-primary);
        text-transform: uppercase;
        overflow: hidden;
        white-space: nowrap;
    }

    .participant-content {
        display: flex;
        flex-direction: column;
        gap: 80px;
        padding-block: clamp(60rem, calc(90 / var(--container) * 100vw), 90rem);
    }

    .participant-content>.title {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .participant-content>.title>.wrap-title p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        color: #BA2427;
    }

    .participant-content>.title>.wrap-title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    }

    .participant-content>.title>button {
        display: flex;
        align-items: center;
        gap: 20px;
        height: fit-content;
        padding-block: 20px;
        color: #89262C;
        font-size: var(--font-size-20);
        border-bottom: 1px solid #89262C;
    }

    .participant-content>.list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        row-gap: 32px;
        column-gap: 20px;
    }

    @media (max-width: 1024px) {
        .participant-content>.list {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .participant-content>.list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .participant-content>.list {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .participant-content>.list>.card-company {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .participant-content>.list>.card-company:hover .img {
        border: 2px solid #BA2427;
    }

    /* .participant-content>.list>.card-company>.img::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #9C2B32 0%, #BA2427 100%);
        z-index: -1;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .participant-content>.list>.card-company:hover .img::before {
        top: 0;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    } */

    .participant-content>.list>.card-company>.img {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #ddd;
        height: 158px;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .participant-content>.list>.card-company>.img>img {
        width: 100%;
        height: 100%;
        max-height: 72px;
        object-fit: contain;
        object-position: center;
    }
}

.virtual-cluster-content {
    padding-block: 120px;

    .title {
        text-align: center;
        margin-bottom: 120px;
    }

    .title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
        line-height: 110%;
        margin-bottom: 30px;
    }

    .title h1 span {
        font-family: var(--font-sans);
        font-weight: 400;
        color: #89262C;
    }

    .content {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, auto));
        gap: 24px;
    }

    .content .card {
        position: relative;
        color: #fff;
        padding: 24px;
    }

    .content .card:nth-child(3) {
        overflow: hidden;
        border-radius: 0px 0px 100px 0px;
    }

    .content .card .card-logo {
        margin-bottom: 50px;
    }

    .content .card .bg-banner {
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .content .card .blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(12px);
        filter: blur(10px) saturate(1.1) brightness(0.6);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 1) 65%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        z-index: -1;
    }

    .content span.shape {
        position: absolute;
        bottom: -30px;
        right: -30px;
        display: block;
        width: 400px;
        height: 280px;
        background: linear-gradient(135deg, #9C2B32 0%, #BA2427 100%);
        border-radius: 0px 0px 100px 0px;
        z-index: -3;
    }
}

.performance-slider {
    background-color: #FBF4F4;
}

.performance-summary {
    position: relative;
    background: linear-gradient(to right, rgb(0 0 0 / 50%), rgb(0 0 0 / 0%)), url(/assets/images/home/bg-performance.png) center / cover no-repeat;
    border-radius: 0px 0px 0px 240px;

    .backdrop {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 60%;
        height: 670px;
        border-radius: 126px 0 0 0;
        background: linear-gradient(135deg, #9C2B32 0%, #BA2427 100%);
    }
}

.performance-summary-content {
    position: relative;
    display: grid;
    justify-content: space-between;
    grid-auto-flow: column;
    padding-block: 120px;
    z-index: 1;
    gap: 56px;

    .wrap-title {
        width: 100%;
        color: #fff;
    }

    .wrap-title h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
        line-height: 110%;
    }

    .wrap-title p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        margin-bottom: 12px;
    }

    .content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 54px;
        width: 100%;
        max-width: 775px;
    }

    .content>.card:nth-child(1) {
        grid-area: 1 / 1 / 3 / 2;
    }

    .content>.card:nth-child(2) {
        grid-area: 3 / 1 / 5 / 2;
    }

    .content>.card:nth-child(3) {
        grid-area: 2 / 2 / 4 / 3;
    }

    /* .content .left {
        display: flex;
        flex-direction: column;
        gap: 64px;
    } */

    .content .card {
        width: 100%;
        background-color: #fff;
        border-radius: 18px 64px 18px 18px;
        box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.02), 0px 5px 4px rgba(3, 7, 18, 0.03), 0px 12px 9px rgba(3, 7, 18, 0.05), 0px 20px 15px rgba(3, 7, 18, 0.06), 0px 32px 24px rgba(3, 7, 18, 0.08);
    }

    .content .card-title {
        padding: 44px;
        border-bottom: 1px solid #ddd;
    }

    .content .card-title .card-head {
        margin-bottom: 24px;
    }

    .content .card-data {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 44px;
    }

    .content .card-data span {
        display: flex;
        justify-content: space-between;
    }

    .content .card-data span .data {
        display: flex;
        align-items: end;
        gap: 12px;
    }

    .content .card-data span .data span {
        color: #BA2427;
        font-size: var(--font-size-28);
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
    }
}

@media (max-width: 1024px) {
    .performance-summary {
        border-radius: 0px 0px 0px 100px;
    }

    .performance-summary-content>.content {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .performance-summary-content>.content>.card {
        grid-area: unset !important;
    }
}

@media (max-width: 640px) {
    .performance-summary-content {
        grid-auto-flow: row;
        justify-content: center;
    }
}

.slider-chart {
    overflow: hidden;
}

.slider-chart-content {
    padding-block: 120px;

    .swiper {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .swiper .btn-next,
    .swiper .btn-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        width: fit-content;
        height: fit-content;
        padding: 31px 21px;
        border-radius: 34.5px;
        background: #EEE;
        z-index: 1;
    }

    .swiper .btn-prev {
        left: 38px;
    }

    .swiper .btn-next {
        right: 38px;
    }

    .swiper .btn-next.swiper-button-disabled,
    .swiper .btn-prev.swiper-button-disabled {
        opacity: 0.5;
        cursor: default;
    }

    .swiper-slide {
        height: 100%;
        min-height: 728px;
        text-align: center;
        font-size: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 80px;
        border-radius: 100px;
        padding: 100px 150px;
        background: #FFF;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
    }

    .swiper .swiper-wrapper .swiper-slide>.title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* .swiper .swiper-wrapper .swiper-slide .title .title-text {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    } */

    .swiper .swiper-wrapper .swiper-slide .title .wrap-title {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .swiper .swiper-wrapper .swiper-slide .title .wrap-title>p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        color: #BA2427;
    }

    .swiper .swiper-wrapper .swiper-slide .title .wrap-title>h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, auto));
        gap: 24px;
        width: 100%;
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart .chart {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart .chart .title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-top: 24px;
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart .chart .title p {
        font-size: var(--font-size-24);
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart .chart .title span {
        font-size: var(--font-size-20);
        color: #BA2427;
    }

    .swiper .swiper-wrapper .swiper-slide .wrap-chart .chart p {
        font-size: var(--font-size-13);
    }

    @media (max-width: 1024px) {
        .swiper-slide {
            padding: clamp(24px, calc(100 / var(--container) * 100vw), 100px);
            border-radius: 64px;
        }
    }

    @media (max-width: 640px) {
        .swiper-slide {
            border-radius: 32px;
        }

        .swiper .swiper-wrapper .swiper-slide>.title {
            flex-direction: column;
            align-items: start;
        }
    }
}

.best-practice-content {
    padding-block: 120px;

    .title {
        display: flex;
        justify-content: space-between;
    }

    .title-head {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    /* .title .title-text {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    } */

    .title-head>.wrap-title {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .title-head>.wrap-title>p {
        font-family: var(--font-sans);
        font-size: var(--font-size-32);
        color: #BA2427;
    }

    .title-head>.wrap-title>h1 {
        font-family: var(--font-primary);
        font-size: var(--font-size-60);
    }

    .title-head .btn-more-case {
        display: flex;
        align-items: center;
        gap: 20px;
        height: fit-content;
        padding-block: 20px;
        color: #89262C;
        font-size: var(--font-size-20);
        border-bottom: 1px solid #89262C;
    }

    .tab {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-block: 48px;
    }

    .tab a {
        display: flex;
        width: 160px;
        padding: 12px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 999px;
        border: 1px solid rgba(51, 51, 51, 0.64);
        font-size: var(--font-size-16);
    }

    .tab a.active {
        background: linear-gradient(135deg, #9C2B32 0%, #BA2427 100%);
        color: #fff;
    }

    .swiper {
        padding-top: 32px;
        border-top: 1px solid #000;
    }

    .swiper .swiper-wrapper .swiper-slide .card {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .swiper .swiper-wrapper .swiper-slide .card .card-img {
        width: 100%;
        height: 200px;
        background-color: #ddd;
        border-radius: 20px;
        overflow: hidden;
        background: url(/assets/images/home/img-placeholder.png) center / cover no-repeat;
        ;
    }

    .swiper .swiper-wrapper .swiper-slide .card .card-img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .swiper .swiper-wrapper .swiper-slide .card .title {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .swiper .swiper-wrapper .swiper-slide .card .title .date {
        font-size: var(--font-size-16);
    }

    .swiper .swiper-wrapper .swiper-slide .card .title h3 {
        font-size: var(--font-size-18);
    }

    .swiper .btn-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 48px;
    }

    .swiper .btn-wrap .btn-prev,
    .swiper .btn-wrap .btn-next {
        display: flex;
        width: fit-content;
        height: fit-content;
        padding: 31px 21px;
        border-radius: 34.5px;
        background: #EEE;
    }

    .swiper .btn-wrap .btn-prev.swiper-button-disabled,
    .swiper .btn-wrap .btn-next.swiper-button-disabled {
        opacity: 0.5;
        cursor: default;
    }

    .swiper .btn-wrap .pagination {
        width: fit-content;
    }

    .swiper .btn-wrap .pagination .swiper-pagination-current {
        font-weight: 700;
        color: #89262C;
    }
}