.video-text {
    background-color: #f5f5f5;
}

.video-text__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.video-text__video {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
}

.video-text__inner-wrapper {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.video-text__video iframe,
.video-text__video img{
    width: 100%;
    height: auto;
    min-height: 407px;
    border-radius: 12px;
    object-fit: cover;
}

.video-text__heading *,
.video-text__text * {
    color: #4a6671;
}

@media screen and (max-width: 991.98px) {
    .video-text__wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .video-text__inner-wrapper,
    .video-text__video {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .video-text__video img {
        max-height: 500px;
        width: 100%;
        min-height: 258px;
    }


}

@media screen and (max-width: 767.98px) {
    .video-text__wrapper {
        gap: 20px;
    }
}