/* VIDEO light box */
.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: scroll;
    position: fixed;
    display: none;
    z-index: 20;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
}

.lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 10% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .lightbox-container {
        margin-top: 40%;
    }
}

@media screen and (max-width: 414px) {
    .lightbox-container {
        margin-top: 55%;
    }
}

@media screen and (max-width: 320px) {
    .lightbox-container {
        margin-top: 45%;
    }
}

.lightbox-content {
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -22px;
    right: 3%;
    z-index: 3;
}

.video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

 .video_play {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    overflow: hidden
}

@media (min-width: 992px) {
    .video_play {
        display: block
    }
}

 .video_play img {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: -o-transform .5s;
    -moz-transition: transform .5s, -moz-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s, -moz-transform .5s, -o-transform .5s;
}

/* .video_play:before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, .4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
} */

.video_play:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.video_play:hover:before {
    content: '';
    opacity: 0.5;
}

/*******************VIDEO SECTION********************/
.video {
position: relative;
width:100%;
}

.video .bg-img {
 display: block;
width:100%;
}

.video .bg-img img {
    width:100%;
}

.film {
    width: 77%;
    position: absolute;
    top: 5%;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    border: 1px solid #fff;
    -webkit-filter: drop-shadow(0px 0px 20px rgba(60,24,0,.8));
    filter: drop-shadow(0px 0px 20px rgba(60,24,0,.8));
}

.film img {
    width: 100%;
}

.film a {
    width: 10%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 42%;
    display: block;
    z-index: 1;
}

.film a:hover {
    top: 42%;
}

 .film a img {
    width: 100%;
    display: block;
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, .9));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, .9));
    animation: circle-jump 0.5s linear infinite alternate;
    -webkit-animation: circle-jump 0.5s linear infinite alternate;
}

@-webkit-keyframes circle-jump {
    0% {
      transform: scale(0.85);
    }
    100% {
      transform: scale(1);
  }
  }
  
  @keyframes circle-jump {
    0% {
      transform: scale(0.85);
    }
    100% {
      transform: scale(1);
  }
  }


 .film a img:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50% 50%;
    background-color: rgba(0, 0, 0, .6);
}

.film.active {
    -webkit-animation: approach-from-bottom 1s;
    animation: approach-from-bottom 1s;
}


@-webkit-keyframes approach-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes approach-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 800px) {

 .film {
        width: 86%;
        top: 4vw;
        border-width: 0.5px;
    }

   .film a {
        width: 22%;
        top: 14vw;
    }
}