.nt-images-home {
    --images-gap: 30px;

    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: 16px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
}
.nt-images-home__block-txt h2 {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.nt-images-home__block-txt h2 svg {
    width: 58px;
    height: auto;
}
.nt-images-home__block-txt h2 span {
    display: block;
}

@media (max-width: 767px) {
    .nt-images-home {
        --images-gap: 18px;
    }
    .nt-images-home__block-txt {
        width: 180px;
    }
    .nt-images-home__block-txt h2 {
        font-size: 1rem;
    }
    .nt-images-home__block-txt h2 svg {
        width: 36px;
    }
}