/*******************************************************
 *
 * Intro Video
 *
 *******************************************************/

body.intro-ended.sp-active {
    overflow: hidden !important;
}

/*Intro Video*/
body.home:not(.intro-ended) {
    overflow: hidden;
    /* position: relative; */
}

body.home:not(.intro-ended):before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    pointer-events: none;
    z-index: 9998;
}

/* body.home.user-navigated-from-a-page-on-the-site {
    overflow: auto;
} */

.intro-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    background-color: #000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-video.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.ip-container .intro-video {
    display: none;
}

body.intro-ended .intro-video {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
}

body.intro-ended {
    overflow: hidden auto!important;
}

.intro-inner, .intro-inner .textwidget {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intro-video video {
    min-width: 100%;
    min-height: 100%;
    max-width: 150%;
    max-height: 150%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}

/* .user-navigated-from-a-page-on-the-site .intro-video {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    display: none;
} */

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

 
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */ 
@media only screen and (max-width: 1199px) {

} 

/* iPad(portrait) | Galaxy Tab 4(portrait)  */ 
@media only screen and (max-width: 991px) {
    
    
} 

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */ 
@media only screen and (max-width: 767px) {

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */ 
@media only screen and (max-width: 480px) {

}
 
