html,body{
    width: 100%;
    height: 100%;
}
#index-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -100;
    right: 0;
    bottom: 0;
    background-size: cover;
    overflow: hidden;
}

.index-video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    overflow: hidden;
}
/*********************************/
/* VIDEO LAYER */
/*********************************/
.wr_slideshow .video_layer {
    display: none;
}
.video_layer {
    position: relative;
    top: -1px;
}

.video_layer .muted_layer {
    cursor: pointer;
    float: right;
    position: relative;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: relative;
    content: "\f028";
    font-family: 'FontAwesome', 'sans-serif';
    font-size: 17px;
    color: #333;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    display: block;
    text-align: center;
}

.video_layer .muted_layer:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 30px;
    background: #333;
    border-radius: 10px;
    left: -1px;
    top: 2px;
    margin: 9px auto;
    display: block;
    transform: rotate(-140deg);
    transition: width 0.6s ease 0s;
}

.video_layer .muted_layer.active:after {
    width: 0;

}