.side-by-side {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
}

.side-by-side-item {
    width: 100%;
}

.side-by-side-item>img {
    width: 100%;
}

.side-by-side-item>.image-wrapper {
    width: 100%;
    background-color: var(--col-aqua-teal);
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.side-by-side-item>.image-wrapper>img {
    height: 100%;
}

@media only screen and (min-width: 999px) {
    .side-by-side {
        flex-direction: row;
    }

    .side-by-side-item {
        width: 49%;
        margin-right: 1%;
    }

    .side-by-side-item.right {
        margin-right: 0;
        margin-left: 1%;
    }
}
