.index-video-wrapper {
    width: 100%;
    height: 100%;
}
.index-video-wrapper:after  {
    content: '';
    position: absolute;
    width: 100%;
    height: 350px;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(51, 32, 24, 1) 0%, rgba(51, 32, 24, 0) 100%);
    z-index: 1;
}

#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;
}
.index-video-wrapper.play-animation .slide-content {
    opacity: 1;
}
.index-video-wrapper.play-animation .slide-content.text-reveal .splitting .char {
    animation: slide-in 1.6s cubic-bezier(.2, 0, .1, 1) both;
    animation-delay: calc(30ms * var(--char-index));
    will-change: transform;
    transform-origin: top left;
}


@keyframes slide-in {
    from {
        transform: translateY(5px) scaleY(1.1);
        opacity: 0;
    }
}

/*********************************/
/* VIDEO LAYER */
/*********************************/
.video_layer {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px;
    display: inline-block;
    text-align: center;
    z-index: 10;
    transition: all .5s;
    transform: scale(1);
}
.video_layer:hover {
    transform: scale(1.05);
}
.video_layer .muted_layer {
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before,
.video_layer .muted_layer:after {
    position: relative;
    font-family: 'icomoon';
    color: #fff;
    font-size: 17px;
}

.video_layer .muted_layer:before {
    content: "\e92e";
    display: none;
}

.video_layer .muted_layer:after {
    content: "\e92a";
}

.video_layer .muted_layer.active:after {
    display: none;
}

.video_layer .muted_layer.active:before {
    display: block;
}
