/* Youtube background item */
.yt_video_bg-grid12 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: calc(15em + 25vw);
}

.yt_video_bg-grid12 .item-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 1000px;
    max-width: calc(100% - 20px);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.yt_video_bg-grid12 .item-content .title {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 2px;
    margin: 15px 0;
}

.yt_video_bg-grid12 .item-content .description {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.7px;
    width: 75%;
    margin: 0 auto 20px;
}

.yt_video_bg-grid12 .loading-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.yt_video_bg-grid12 .loading-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt_video_bg-grid12 iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 200vh;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Youtube background item with popup video */
.ytvideo-bg-and-popup.yt_video_bg-grid12 .item-content {
    bottom: 20px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ytvideo-bg-and-popup.yt_video_bg-grid12 .item-content .title {
    letter-spacing: 12px;
    font-weight: 700;
}

.ytvideo-bg-and-popup.yt_video_bg-grid12 .item-content .description,
.ytvideo-bg-and-popup.yt_video_bg-grid12 .item-content .description p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
}

.ytvideo-bg-and-popup.yt_video_bg-grid12 .item-content .description img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
    max-width: 25px;
}

/* Volume icons */

.yt_video_bg-grid12 .volume-icons-wrapper {
    position: absolute;
    right: 100px;
    bottom: 100px;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
}

.yt_video_bg-grid12 .volume-icons-wrapper i {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: #FFFFFF;
    transform: translate(-50%, -50%);
}

.yt_video_bg-grid12.muted .volume-icons-wrapper i.fa-volume-off,
.yt_video_bg-grid12.unmuted .volume-icons-wrapper i.fa-volume-up {
    display: block;
}

@media screen and (max-width: 768px) {

    /* Volume icons */

    .yt_video_bg-grid12 .volume-icons-wrapper {
        right: 50px;
        bottom: 50px;
        width: 50px;
        height: 50px;
    }

    .yt_video_bg-grid12 .volume-icons-wrapper i {
        font-size: 30px;
    }

}
