.index-video-wrapper {
    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;
}
.main-slider {
    height: 100vh !important;
    max-height: calc(100vh) !important;
}
.index-video-wrapper {
    position: relative;
    height: 100vh !important;
    max-height: calc(100vh) !important;
    width: 100%;
    background-size: cover;
    overflow: hidden;
}
.index-video-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 400px;
    top: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(93, 74, 55, 0) 0%, rgba(93, 74, 55, 0.78) 100%);

}
.index-video-wrapper .text-swiper > div {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.index-video-wrapper .text-swiper > div:nth-child(1) {
    animation-delay: 1.3s;
}

.index-video-wrapper .text-swiper > div:nth-child(2) {
    animation-delay: 1.5s;
}

/*********************************/
/* VIDEO LAYER */
/*********************************/
.video_layer {
    transition: all .4s;
}

.video_layer .muted_layer {
    position: relative;
    width: 30px;
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: relative;
    content: "\e911";
    font-family: 'icomoon'  ;
    font-size: 17px;
    color: var(--secondary);
    margin: auto;
    display: block;
    text-align: center;
}

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

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