/* MP4 background item */
.mp4-video-bg-grid12 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
    margin-bottom: 20px;
}

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

.mp4-video-bg-grid12 .item-content:not(.top):after {
    content: '';
    width: 100vw;
    position: absolute;
    left: calc(50% - 50vw);
    top: 0;
    height: 100%;
    background-color: rgba(49,13,10,0);
    background-image: linear-gradient(0deg,#310d0a 0,rgba(49,13,10,0));
    z-index: -1;
}

.mp4-video-bg-grid12 .item-content.top {
    bottom: auto;
    top: 0;
    color: #000000;
}

.mp4-video-bg-grid12 .item-content .title {
    line-height: 42px;
    letter-spacing: 2px;
    margin: 15px 0;
    font-size: 30px;
}

.mp4-video-bg-grid12 .item-content .description {
    margin: 0 auto 20px;
}

.mp4-video-bg-grid12 .item-content .description,
.mp4-video-bg-grid12 .item-content .description p {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.7px;
}

.mp4-video-bg-grid12 .item-content:not(.top) .description p {
    color: rgba(255,255,255,0.8);
}

.mp4-video-bg-grid12 .item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

/* Volume icons */

.mp4-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;
}

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

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

.mp4-video-bg-grid12.muted .volume-icons-wrapper i.fa-volume-off:before{
    content: url("../../../_static/images/unitedfashion_v2022/mute_icon.svg");
    display: block;
    width: 20px;
    height: 29px;
}

.mp4-video-bg-grid12.unmuted .volume-icons-wrapper i.fa-volume-up:before{
    content: url("../../../_static/images/unitedfashion_v2022/unmute_icon.svg");
    display: block;
    width: 35px;
    height: 29px;
}

.mp4-video-bg-grid12 .subtitle {
    display: none;
}


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

    /* Volume icons */

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

    .mp4-video-bg-grid12 .volume-icons-wrapper i {
        font-size: 30px;
    }

    .mp4-video-bg-grid12{
        height:100%
    }

    .mp4-video-bg-grid12 .item-video{
        position: static;
    }

}
