/* Default height for mobile screens */
.responsive-video {
    height: 20vh;
}

@media (min-width: 380px) {
    .responsive-video {
        height: 30vh;
    }
}

/* Height for tablets (portrait) */
@media (min-width: 600px) {
    .responsive-video {
        height: 35vh;
    }
}

/* Height for tablets (landscape) and small desktops */
@media (min-width: 900px) {
    .responsive-video {
        height: 40vh;
    }
}

/* Height for large desktop screens */
@media (min-width: 1200px) {
    .responsive-video {
        height: 60vh;
    }
}

.responsive-video-playlist {
    height: 20vh;
}

@media (min-width: 380px) {
    .responsive-video-playlist {
        height: 16vh;
    }
}

/* Height for tablets (portrait) */
@media (min-width: 578px) {
    .responsive-video-playlist {
        height: 23vh;
    }
}

@media (min-width: 600px) {
    .responsive-video-playlist {
        height: 23vh;
    }
}

/* Height for tablets (landscape) and small desktops */
@media (min-width: 900px) {
    .responsive-video-playlist {
        height: 14vh;
    }
}

@media (min-width: 1000px) {
    .responsive-video-playlist {
        height: 20vh;
    }
}

/* Height for large desktop screens */
@media (min-width: 1200px) {
    .responsive-video-playlist {
        height: 24vh;
    }
}

@media (min-width: 1400px) {
    .responsive-video-playlist {
        height: 28vh;
    }
}

.bg-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: white;
    color: #000000;
}

.bg-video .mb-4 {
    border-bottom: #0f0f0f solid 1px;
}