.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 30px;
    width: 100%
}

.col {
    flex: 1
}

.col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px
}

@media (max-width:768px) {
    .row {
        flex-direction: column;
        margin-top: 30px
    }

    .row.reverse {
        flex-direction: column-reverse
    }
}