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;
}
.hero-slider .index-video-wrapper .text-swiper {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 0 50px;
    animation-delay: 2s;
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.hero-slider .index-video-wrapper .text-swiper h2 {
    color: #fff;
}
/*.hero-slider .index-video-wrapper:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 250px;*/
/*    bottom: 0;*/
/*    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);*/
/*    z-index: 1;*/
/*}*/
/*********************************/
/* VIDEO LAYER */
/*********************************/
.video_layer {
    position: relative;
}

.video_layer .muted_layer {
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: relative;
    content: "\e91d";
    font-family: 'icomoon', 'sans-serif';
    font-size: 17px;
    color: #fff;
    margin: auto;
    display: block;

}

.video_layer .muted_layer:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 30px;
    background: #fff;
    border-radius: 10px;
    left: 5px;
    top: 12px;
    display: block;
    transform: rotate(-140deg);
}

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

}