@charset "UTF-8";
.scrollup{
    display: none;
}
.full_screen, .full_screen .carousel-item {
    /* height: calc(100vh - 96px);
    min-height: calc(100vh - 96px); */
    height: calc(100vh - 135px);
    min-height: calc(100vh - 135px);
}
@media only screen and (max-width: 767px){
    .full_screen, .full_screen .carousel-item {
        /* height: calc(100vh - 62px);
        min-height: calc(100vh - 62px); */
        height: calc(100vh - 128px);
        min-height: calc(100vh - 128px);
    }
}
/* Home Video */
.image_block, .video_block{
    height: calc(100vh - 156px);
}
.video_block video{
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
    z-index:-2;
}
.image_block{
    width: 100%;
    height: 100%;
}
.image_block > div{
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}
@media only screen and (max-width: 991px){
    .image_block, .video_block{
        height: calc(100vh - 152px);
    }
    .image_block.tablet_kv{
        display: block;
    }
    .image_block.mobile_kv{
        display: none;
    }
}
@media only screen and (max-width: 767px){
    .image_block, .video_block{
        height: calc(100vh - 126px);
    }
    .image_block.tablet_kv{
        display: block;
    }
    .image_block.mobile_kv{
        display: none;
    }
}
@media (max-width: 575px){
    .image_block, .video_block{
        height: calc(100vh - 126px);
    }
    .image_block.tablet_kv{
        display: none;
    }
    .image_block.mobile_kv{
        display: block;
    }
}