img.vr-section-background {
    width: 100%;
    position: relative;
    z-index: -1;
    min-height: 425px;
    object-fit: cover;
    border-radius: 34px;
}

.vr-wrapper {
    position: relative;
}

.vr-flex {
    position: absolute;
    left: var(--spacing-large);
    right: var(--spacing-large);
    top: 0;
    bottom: 0;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vr-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex: 0 0 40%;
}

.vr-content > * {
    margin: 0;
}

.vr-image-wrapper {
    position: relative;
    top: 25%;
}



/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {

    img.vr-section-background {
        min-height: 540px;
    }

    .vr-flex {
        flex-direction: column;
        padding: var(--spacing-small);
    }

    .vr-image-wrapper {
        top: 0;
    }

}