.block-with-2-images-section {
    margin: 150px 0 120px;
    padding: 50px 0;
    background: #fff;
}

.block-with-2-images__inner {
    display: flex;
    flex-direction: row;
    gap: 50px;
    position: relative;
}

.block-with-2-images__content {
    max-width: calc(100% - 465px);
    width: 100%;
}

.block-with-2-images__items {
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    width: auto;
    transform: translateY(-50%);
}

.block-with-2-images__items img {
    max-width: 475px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .block-with-2-images-section {
        margin: 100px 0;
    }
    .block-with-2-images__inner {
        flex-direction: column;
        gap: 15px;
    }
    .block-with-2-images__content {
        max-width: 100%;
    }
    .block-with-2-images__items {
        position: relative;
        top: 0;
        transform: none;
    }
    .block-with-2-images__items img {
        max-width: 100%;
        width: 100%;
    }
}