
.nt-home-scrolling-content {
    height: 180vh;
}

.nt-home-scrolling-content__inner {
    position: sticky;
    top: 0;
    height: 100vh;
}

.nt-home-scrolling-content__columns {
    display: flex;
    align-items: center;
    height: 100%;
    padding-block: 76px;
}
.nt-home-scrolling-content__column-left {
    height: 100%;
    position: relative;
    aspect-ratio: 1;
}
.nt-home-scrolling-content__column-right {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 40px;
    max-width: 100%;
}
.nt-home-scrolling-content__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    height: 100%;

    position: absolute;
    inset: 0;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    transition: .5s;
}
.nt-home-scrolling-content__image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 20px;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(1) {
    grid-row: 1 / 3;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(2),
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(3) {
    aspect-ratio: 1;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(1) {
    transition: opacity .6s;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(2) {
    transition: opacity .6s .25s;
}
.nt-home-scrolling-content__image-grid .nt-home-scrolling-content__image:nth-child(3) {
    transition: opacity .6s .5s;
}

.nt-home-scrolling-content__text-content {
    width: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0.25;
}
.nt-home-scrolling-content__text-content-title {
    margin-bottom: 6px;
}

.nt-home-scrolling-content__image-grid--1 .nt-home-scrolling-content__image--3 {
    background-color: var(--e-global-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-home-scrolling-content__image-grid--1 .nt-home-scrolling-content__image--3 img {
    aspect-ratio: auto;
    width: 60%;
    height: auto;
    object-fit: contain;
    position: relative;
}
.nt-home-scrolling-content__text-content-mobile-image {
    display: none;
}


@media (max-width: 1200px) {
    .nt-home-scrolling-content {
        height: auto;
    }
    .nt-home-scrolling-content__inner {
        position: static;
        height: auto;
    }
    .nt-home-scrolling-content__text-content {
        opacity: 1!important;
    }
    .nt-home-scrolling-content__text-content-mobile-image {
        display: block;
        margin-top: 10px;
    }
    .nt-home-scrolling-content__text-content-mobile-image img {
        width: calc(100% + 70px);
        margin-left: -35px;
        margin-right: -35px;
        max-width: none;
    }
}