.video-embed {
    width: 100%;
}

.video-embed-img {
    min-height: 400px;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.video-embed-content {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
}

    .video-embed-content * {
        z-index: 1;
    }

    .video-embed-content .video-embed-paragraph {
        margin-bottom: 15px;
    }

.video-embed-btn {
    margin-bottom: 0;
}

/* Extra small devices - xs */
@media (max-width: 575px) {
    .video-embed-btn {
        text-align: center;
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) - sm */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) - md */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) - lg */
@media (min-width: 992px) {
    .video-embed,
    .video-embed-img,
    .video-embed-content {
        min-height: 281px;
    }

    .video-embed-div {
        margin-bottom: 20px;
    }
}

/* Extra large devices (large desktops, 1200px and up) - xl */
@media (min-width: 1200px) {
    .video-embed,
    .video-embed-img,
    .video-embed-content {
        min-height: 400px;
    }

    .video-embed-div {
        margin-bottom: 0px;
    }
}

