.video-wrap {
    position: relative;
    width: 100%;
    height: 400px;
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.video-wrap__grippy {
    position: absolute;
    left: 0;
    width: 40%;
    top: 32px;
    bottom: 40px;
    z-index: 3;
}
.video-wrap__grippy:before {
    position: absolute;
    display: block;
    content: '';
    width: 60%;
    height: 35%;
    top: 0;
    left: 100%;
}
.video-wrap__grippy + .video-wrap__grippy {
    left: auto;
    right: 0;
}
.video-wrap__grippy + .video-wrap__grippy:before {
    bottom: 0;
    top: auto;
    right: 100%;
    left: auto;
}
.carousel-cell{
    opacity: .6;
    filter: brightness(30%);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.carousel-cell:not(.is-selected):hover{
    opacity: .95;
    filter: brightness(95%);
}
.is-selected{
    opacity: 1;
    filter: brightness(100%);
}


.flickity-prev-next-button.previous {
    left: 5%;
}
.flickity-prev-next-button.next {
    right: 5%;
}