.play-btn-container {
    margin-top: 35px;
    cursor: pointer;
    color: #fff;
}

.play-video {
    margin-top: 0px;
    margin-bottom: 10px;
    color: #fff;
    background-color: transparent;
    border: none;
}

.play-video i {
    font-size: 32px;
    border: 4px solid;
    padding: 14px 16px 14px 20px;
    border-radius: 50%;
}

.banner-container {
    /* position: relative; */ /* did not seem to have an impact when removed */
}

.youtube-video-section {
    position: relative;
    width: 100%;
    height: unset;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
}
@media (max-width: 768px) {
    .youtube-video-section {
        /*overflow: hidden;*/ /* did not seem to have an impact when removed */
        height: unset;
        aspect-ratio: 16/9;
        width: 100%;
    }
}

.content {
    text-align: center;
    color: white;
    z-index: 2;
}

.title {
    font-size: 3rem;
    margin: 0 0 10px 0;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.video-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: 3;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.close-button {
    position: absolute;
    top: 4px;
    right: 4px;
    /*background-color: rgba(0, 0, 0, 0.6);*/
    background-color: white;
    /*color: white;*/
    color: black;
    border: none;
    padding: 10px 12px 10px 12px;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
    z-index: 4;
    border-radius: 50%;
    transition: background-color 0.3s;
}
@media (max-width: 768px) {
    .close-button {
        top: -40px;
        right: 20px;
    }
}
.close-button:hover {
    /*background-color: rgba(0, 0, 0, 0.8);*/
    background-color: rgba(255, 255, 255, 0.8);
}

.yt-video-title-bottom h2 {
    margin-top: 20px;
    margin-bottom: 0;
    font-family: 'aller';
    color: white;
}

.yt-video-title-bottom p {
    margin-top: 0;
    font-size: 18px;
    font-family: 'aller_lightregular';
    color: white;
    padding-bottom: 0px;
}


.youtube-video-section-wrapper {
    background-color: #031a33;
}

.video-container-mobile {
    padding-bottom: 177.77% !important;
}

.youtube-video-section-wrapper-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}


/* if mobile version */

@media (max-width: 768px) {
    .youtube-video-section-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .youtube-video-section-yt-full {
        height: 34vh;
    }
}