/* ====================================
   WSI YouTube Video Slider
==================================== */

.wsi-video-slider{
    position:relative;
    width:100%;
    height:700px;
    overflow:hidden;
    background:#000;
}

.wsi-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease;
}

.wsi-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.wsi-slide iframe{
    width:100%;
    height:100%;
    border:none;
}

/* Desktop */
@media (min-width:1200px){

    .wsi-video-slider{
        height:700px;
    }

}

/* Tablet */
@media (max-width:1024px){

    .wsi-video-slider{
        height:550px;
    }

}

/* Mobile */
@media (max-width:767px){

    .wsi-video-slider{
        height:350px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .wsi-video-slider{
        height:280px;
    }

}