body {
    margin: 0px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.header {
    position: fixed;
    top: 0px;
    left: 0%;
    width: 100%;
    height: 70px;
    transform: translateY(-100%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s, background 0.3s;
    z-index: 900;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(0px);
}

.header.show .inner {
    justify-content: flex-end;
}

.header:not(.show) .nav {
    opacity: 0;
    pointer-events: none;
}

.header .header-logo img {
    max-height: 16.7rem;
    transition: inherit;
}

.header.show .header-logo img {
    max-height: 3rem;
}

.header .header-logo {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translate(-50%) scale(1);
    transform-origin: center center;
}

.header.show .header-logo {
    top: 35px;
    left: calc((100vw - min(95vw, 1440px)) / 2 + clamp(2rem, 3vw, 4rem));
    transform: translate(0, -50%) scale(0.7);
    transform-origin: left center;
}

.header .header-logo {
    transition: none;
}

.header .header-logo.is-ready {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), left 0.6s cubic-bezier(0.25, 1, 0.5, 1), top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-wrap {
    position: fixed;
    top: 356px;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    height: 60vh;
    transition: 0.9s;
    overflow: hidden;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: medium;
}

.video-wrap.full {
    width: 100vw;
    height: calc(-1px + 100vh);
    top: 0px;
}

.video-wrap.full::after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 0px;
}

.video-wrap.full iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eso-content1 {
    margin-top: calc(550px + 100vh);
}

.eso-content1.full-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    box-sizing: border-box;
    background: none;
}

.eso-content1.full-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.eso-content1.full-section::after {
    display: none;
}

.eso-content1 .center-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0px 2rem;
}

.eso-content1 .center-content h2 {
    color: white;
    font-size: clamp(2.8rem, 5.5vw, 6.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: clamp(1.8rem, 2.2vw, 2.5rem);
}

.eso-content1 .center-content h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1rem, 2.2vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.eso-content2 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgb(5, 5, 5);
}

.eso-content2.full-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    box-sizing: border-box;
    padding: 0px;
    min-height: 100vh;
}

.eso-content2 .bg-image {
    position: absolute;
    top: 0px;
    z-index: -1;
    left: 0px;
    right: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.eso-content2 .bg-image::before {
    content: "";
    position: absolute;
    inset: 0px 0px 0px 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(360deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%);
    z-index: 1;
    pointer-events: none;
}

.eso-content2 .bg-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    will-change: transform;
}

.eso-content2 .bg-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.eso-content2 .center-content {
    text-align: center;
    z-index: 1;
    padding: 30.6rem 20rem 5rem;
    margin: 0px;
}

.eso-content2 .center-content h2 {
    font-size: clamp(2.8rem, 3.6vw, 4.8rem);
    font-weight: 600;
    margin-bottom: 0px;
}

.eso-content2 .center-content h3 {
    color: rgb(129, 129, 129);
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    font-weight: 300;
    line-height: 1.5;
    margin-top: clamp(2.9rem, 4.5vw, 6.5rem);
}

.eso-content2 .en-sub {
    color: rgb(109, 109, 109);
    font-size: clamp(1.2rem, 1.6vw, 2rem);
    font-family: var(--font-en);
    font-weight: 500;
    margin-top: clamp(2rem, 2.5vw, 3rem);
}

.eso-content2 .en-sub.en-sub-sub {
    margin-top: 0.8rem;
    margin-bottom: 8rem;
}

.eso-content3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgb(4, 4, 5);
}

.eso-content3.full-section {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-sizing: border-box;
    padding: 0px;
}

.eso-content3 .bg-image {
    position: absolute;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.eso-content3 .bg-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    will-change: transform;
    border-radius: inherit;
}

.eso-content3 .center-content {
    text-align: center;
    z-index: 1;
    margin: 3rem 0px clamp(4rem, 5vw, 11.6rem);
}

.eso-content3 .center-content h2 {
    font-size: clamp(2.8rem, 3.5vw, 4.8rem);
    line-height: 1.4;
    font-weight: 600;
    margin-top: clamp(5rem, 19vw, 34.4rem);
    margin-bottom: clamp(1rem, 1.25vw, 1.5rem);
}

.eso-content3 .center-content h3 {
    color: rgb(109, 109, 109);
    font-size: clamp(1rem, 1.9vw, 2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: clamp(2rem, 2.5vw, 3rem);
}

.eso-content3 .center-content h4 {
    color: rgb(108, 108, 108);
    font-size: clamp(1rem, 1.1vw, 1.4rem);
    font-weight: 300;
    margin-bottom: clamp(0.8rem, 0.85vw, 0.9rem);
}

[class^="maqee"] {
    display: flex;
    width: max-content;
    white-space: nowrap;
    gap: 10px;
    margin-bottom: 30px;
    will-change: transform;
}

[class^="maqee"] img {
    height: 300px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
    opacity: 0.9;
    backface-visibility: hidden;
}

.maqee1, .maqee3 {
    animation: 30s linear infinite paused marquee-ltr;
}

.maqee2 {
    animation: 35s linear infinite paused marquee-rtl;
}

@keyframes marquee-rtl {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    100% {
        transform: translate3d(-33.333%, 0px, 0px);
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translate3d(-33.333%, 0px, 0px);
    }

    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

.maqee-inner {
    display: flex;
    width: max-content;
    transform: translate3d(0px, 0px, 0px);
    animation: 30s linear infinite marquee-rtl;
}

@keyframes marquee-rtl {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    100% {
        transform: translate3d(-33.333%, 0px, 0px);
    }
}

.chart-section {
    padding: 0px;
    color: rgb(255, 255, 255);
}

.chart-wrap {
    width: 896px;
    margin: 1.5rem auto 0px;
    position: relative;
}

.box-scroll-wrapper {
    margin-top: clamp(3rem, 7vw, 10.7rem);
}

.chart-title {
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.title-main {
    color: white;
    font-size: clamp(1.4rem, 1.6vw, 2.2rem);
    font-family: var(--font-ko);
    font-weight: 400;
    margin: 1rem 0px;
}

.title-sub {
    font-size: clamp(1rem, 1.1vw, 1.4rem);
    color: rgb(109, 109, 109);
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.base-line {
    stroke: rgb(24, 24, 24);
    stroke-width: 1.5;
}

.goal-line {
    stroke: rgb(124, 77, 255);
    stroke-dasharray: 4, 4;
    stroke-width: 1.5;
}

.ghost-value {
    position: absolute;
    right: 0px;
    top: clamp(-3rem, -3vw, -1.5rem);
    color: rgba(255, 255, 255, 0.3);
    font-size: clamp(1.2rem, 1.6vw, 2.2rem);
    font-family: var(--font-en);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.line {
    fill: none;
    stroke: rgb(139, 123, 255);
    stroke-width: 2;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

.area {
    fill: rgba(139, 123, 255, 0.15);
    opacity: 0;
}

.pt {
    fill: rgb(139, 123, 255);
    opacity: 0;
    transform: translateY(10px);
    transform-box: fill-box;
    transform-origin: center center;
}

.goal-line {
    stroke: rgb(139, 123, 255);
    stroke-dasharray: 4;
    opacity: 0;
}

.txt {
    position: absolute;
    opacity: 0;
    transform: translate(-50%, 20px);
}

.chart-svg {
    overflow: visible;
    display: block;
}

.t1, .t2, .t3, .t4 {
    color: rgb(217, 217, 217);
    font-size: clamp(1.4rem, 1.8vw, 2.4rem);
    font-family: var(--font-ko);
    font-weight: 600;
}

.t1 {
    left: 40px;
    top: 450px;
}

.t2 {
    left: 190px;
    top: 400px;
}

.t3 {
    left: 340px;
    top: 330px;
}

.t4 {
    left: 540px;
    top: 250px;
}

.t5 {
    right: 0px;
    top: 0px;
    color: rgb(167, 155, 255);
    font-size: clamp(3rem, 3.8vw, 4.8rem);
    font-family: var(--font-ko);
    font-weight: 600;
    transform: none;
    bottom: 20px;
}

.chart-years {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 12px;
    font-weight: 400;
    color: rgb(174, 174, 174);
    font-size: clamp(1rem, 1.3vw, 1.8rem);
    font-family: var(--font-ko);
}

.chart-years .year {
    font-size: clamp(1.2rem, 1.4vw, 1.8rem);
}

.grid-lines {
    display: none;
}

.area {
    fill: url("#areaGradient");
    opacity: 0;
}

.line {
    stroke: rgb(167, 155, 255);
    stroke-width: 1;
    fill: none;
}

.pt {
    fill: rgb(167, 155, 255);
}

circle.pt.pt1 {
    cx: 6px !important;
}

.box {
    width: 920px;
    position: relative;
    display: flex;
    margin: 4rem 0px 0px;
    gap: 1rem;
}

.box-inner {
    flex: 1 1 0%;
    padding: 3.8rem;
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(60, 60, 60, 0.6);
    box-shadow: rgba(167, 155, 255, 0.08) 2px 2px 8px inset, rgba(0, 0, 0, 0.3) -3px -3px 4px inset;
    overflow: hidden;
    border-radius: clamp(0.8rem, 1.2vw, 1.6rem);
}

.box-inner .txt1 {
    font-size: clamp(1.4rem, 1.8vw, 2.4rem);
    font-weight: 400;
}

.box-inner .txt2 {
    font-size: clamp(3rem, 3.3vw, 3.6rem);
    font-family: var(--font-ko);
    font-weight: 600;
    margin-top: 1rem;
}

.box-inner .txt2 .sub {
    color: rgb(85, 85, 85);
    font-size: 1.2rem;
    font-weight: 400;
    float: right;
    margin-top: 3rem;
}

.box-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
}

.box-inner.active {
    opacity: 1;
    transform: translateY(0px);
}

.box h4 {
    color: rgb(85, 85, 85);
    font-size: clamp(0.8rem, 1.2vw, 1.6rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: clamp(3rem, 15vw, 25.4rem);
    text-align: center;
}

.eso-content4 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 1;
    background: rgb(4, 4, 5);
    height: 100vh;
}

.eso-content4::before {
    content: "";
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 0px;
}

.eso-content4 .bg-image {
    position: absolute;
    inset: 0px;
    z-index: -1;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.eso-content4 .bg-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    will-change: transform;
    border-radius: inherit;
}

.eso-content4 .center-content {
    position: absolute;
    text-align: center;
    z-index: 1;
    top: 3.8rem;
}

.eso-content4 .center-content h2 {
    font-size: clamp(2.8rem, 3.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.54;
}

.eso-content4 .center-content h2.bold {
    font-weight: 600;
}

.eso-content4 .center-content h3 {
    margin-top: clamp(1.2rem, 1.3vw, 1.6rem);
    color: rgb(150, 150, 150);
    font-size: clamp(1rem, 1.5vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.eso-content4 .center-content h4 {
    color: rgb(85, 85, 85);
    font-size: clamp(0.8rem, 1.2vw, 1.6rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: clamp(10.3rem, 17vw, 25.4rem);
}

.eso-content5 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 1;
    background: rgb(4, 4, 5);
    height: 100vh;
}

.eso-content5 .bg-image {
    position: relative;
    top: 0px;
    z-index: -1;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.eso-content5 .bg-image img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    will-change: transform;
    object-position: center center;
}

.eso-content5 .center-content {
    position: absolute;
    text-align: center;
    z-index: 1;
    margin: 0px;
    top: 30%;
}

.eso-content5 .center-content h2 {
    margin-top: 0rem;
    font-size: clamp(3rem, 4vw, 4.8rem);
    font-weight: 600;
    line-height: 1.4;
}

.eso-content5 .center-content h3 {
    margin-top: clamp(1.2rem, 1.4vw, 1.5rem);
    color: rgb(150, 150, 150);
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.eso-content5 .center-content h4 {
    margin-top: clamp(5.8rem, 7.2vw, 8.6rem);
    color: rgb(85, 85, 85);
    font-weight: 500;
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    line-height: 1.7;
}

.eso-content5 .center-content h4 div {
    transition: color 0.2s, font-weight 0.2s;
}

.eso-content5 .center-content h4 div.active {
    color: rgb(255, 255, 255);
    font-weight: 600;
    opacity: 1;
}

.eso-content5 h4 div {
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 100%) 100% 0px / 200% 100% padding-box text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: rgba(255, 255, 255, 0) 0px 0px 15px;
    transition: text-shadow 0.5s;
}

.esosticky {
    position: sticky;
    top: 0px;
    align-self: center;
}

.eso-content6 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 1;
    background: rgb(20, 20, 20);
    height: 100%;
}

.eso-content6 .bg-image {
    position: relative;
    inset: 0px;
    z-index: -1;
    overflow: hidden;
    background: rgb(0, 0, 0);
}

.eso-content6::before {
    content: "";
    background: linear-gradient(black 20%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    filter: blur(2px);
}

.eso-content6 .bg-image img {
    position: relative;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
}

.eso-content6 .center-content {
    position: absolute;
    text-align: center;
    z-index: 1;
    margin: 0px;
    padding-top: clamp(11rem, 18vw, 25.5rem);
}

.eso-content6 .center-content h2 {
    font-size: clamp(2.8rem, 3.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.55;
}

.eso-content6 .center-content h2.bold, .eso-content6 .center-content h2 .bold {
    font-weight: 600;
}

.eso-content6 .center-content h3 {
    margin-top: clamp(2rem, 2.5vw, 3rem);
    color: rgb(150, 150, 150);
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03em;
    margin-bottom: clamp(24rem, 26vw, 30rem);
}

@media (max-width: 1024px) {
    html, body {
        overscroll-behavior-y: none;
        overflow-x: hidden;
    }

    body .header {
        padding: 0px;
    }

    .header .header-logo {
        top: 98px;
    }

    .header.is-home.show .header-logo {
        top: 28px;
    }

    .header:not(.show) .header-logo img {
        width: 83vw;
    }

    .logo img {
        max-width: 100%;
    }

    .eso-content4 .bg-image img {
        width: 100%;
        height: auto;
        object-fit: unset;
    }

    .video-wrap {
        width: 90vw;
        aspect-ratio: 9 / 16;
        height: auto;
        top: 140px;
        padding: 20px 16px;
        box-sizing: border-box;
        z-index: 0;
    }

    .video-wrap iframe {
        width: calc(300% - 40px);
        height: auto;
        aspect-ratio: 16 / 9;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .eso-content1 .center-content h2 {
        line-height: 1.6;
    }

    .eso-content2 .center-content {
        padding: 2rem 2rem 8rem;
    }

    .eso-content2.full-section {
        height: 100vh;
    }

    .eso-content3 {
        position: relative;
        z-index: 3;
    }

    .eso-content2 .bg-image {
    }

    .eso-content2 .bg-image img {
        object-position: center top;
        object-fit: contain;
    }

    .eso-content4 .center-content {
        top: 18rem;
    }

    .eso-content5 .bg-image img {
        height: 100%;
    }

    .maqee1, .maqee2, .maqee3 {
        display: none;
    }

    .visual-section {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: rgb(0, 0, 0);
    }

    .pin-wrapper {
        position: relative;
        width: 95%;
        aspect-ratio: 16 / 11;
        flex-shrink: 0;
        align-self: center;
        left: 2.5%;
    }

    .visual-section .content-box-inner {
        position: absolute;
        inset: 0px;
        aspect-ratio: 16 / 11;
        z-index: 1;
        overflow: hidden;
        border-radius: 10px;
    }

    .visual-section .content-box-inner:first-child {
        z-index: 2;
    }

    .visual-section .image-box {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        clip-path: inset(100% 0px 0px);
    }

    .visual-section .content-box-inner:first-child .image-box {
        clip-path: inset(0% 0px 0px);
    }

    .visual-section .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .visual-section .text-group {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        text-align: center;
        opacity: 0;
        will-change: transform, opacity;
        width: 100%;
    }

    .visual-section .content-box-inner .txt1 img {
        max-width: 60%;
    }

    .visual-section .content-box-inner .txt2 {
        font-size: 1.1em;
        font-family: var(--font-en);
        color: rgb(207, 207, 207);
        font-weight: 500;
        margin-top: 0.8rem;
        text-transform: uppercase;
    }

    .visual-copyright {
        position: relative;
        margin-top: 2.8rem;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    .visual-copyright h4 {
        color: rgb(108, 108, 108);
        font-size: clamp(1rem, 1.1vw, 1.4rem);
        font-weight: 300;
        margin-bottom: clamp(0.8rem, 0.85vw, 0.9rem);
        line-height: 1.5;
    }

    .title-main {
        margin: 0.5rem 0px;
    }

    .chart-section {
        padding: 0px;
        margin-left: auto;
        margin-right: auto;
        width: 90vw !important;
    }

    .chart-wrap {
        max-width: 896px;
        width: 100%;
        margin: 8.4rem auto 0px;
        position: relative;
        padding: 0px;
    }

    .t5 {
        right: 0px;
        left: auto;
        text-align: right;
        transform: none;
    }

    .eso-content6 .bg-image img {
        object-fit: contain;
        padding: 15rem 0px 0px;
    }

    .eso-content3.full-section {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        overflow: hidden;
        z-index: 2;
        box-sizing: border-box;
    }

    .box-scroll-wrapper {
        overflow: visible;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .box {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin: 8.5rem 0px 0px;
        padding: 0px !important;
    }

    .box-inner {
        flex: 1 1 0%;
        width: 100%;
        box-sizing: border-box;
        padding: 3rem;
        opacity: 1;
        transform: none;
    }

    .eso-content4 {
        height: auto;
    }

    .eso-content4::before {
        z-index: 1;
    }

    .eso-content4 .bg-image {
        position: relative;
        inset: auto;
        z-index: 0;
    }
}
