.nt-images-home {
    --images-gap: 30px;
    --block-txt-padding: 16px;
    --block-txt-width: 250px;
    --block-txt-font-size: 2.25rem;

    display: flex;
    align-items: center;
    gap: var(--images-gap);
    height: 100%;
    width: 100%;
}
.nt-images-home__left,
.nt-images-home__right {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: var(--images-gap);
}


.nt-images-home__block {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.nt-images-home__block--1 {
    aspect-ratio: 0.7;
}
.nt-images-home__block--2 {
    aspect-ratio: 1;
}
.nt-images-home__block--3 {
    aspect-ratio: 0.75;
}
.nt-images-home__block-image {
    position: absolute;
    inset: 0;
    display: flex;
}
.nt-images-home__block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nt-images-home.step-2 .nt-images-home__block-image--2 {
    opacity: 1!important;
    visibility: visible!important;
}
.nt-images-home__block--1 .nt-images-home__block-image--2 {
    transition: .6s 0s;
}
.nt-images-home__block--2 .nt-images-home__block-image--2 {
    transition: .6s .2s;
}
.nt-images-home__block--3 .nt-images-home__block-image--2 {
    transition: .6s .4s;
}


.nt-images-home__block-txt {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--e-global-color-primary);
    color: white;
    padding: var(--block-txt-padding);
    border-radius: 10px;
    text-align: center;
    width: var(--block-txt-width);
}
.nt-images-home__block-txt h2 {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: var(--block-txt-font-size);
    font-weight: 600;
    line-height: 1;
}
.nt-images-home__block-txt h2 small {
    display: block;
    font-size: 0.66em;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .nt-images-home {
        --images-gap: 12px;
        --block-txt-padding: 10px 8px;
        --block-txt-width: 165px;
        --block-txt-font-size: 1.5rem;
    }
}