/*CUSTOM RESPONSIVE OWL SLIDER*/

/* Add Owlslider big to Wrapper in KC */
.owlslider_big {
    height: 80vh !important;
}

/* Height muss gleich von Height image sein */

.owl-carousel-images .owl-wrapper-outer {
    /*    height: 90vh;*/
    height: 80vh !important;
}

.item {
    /*    height: 90vh;*/
    height: 80vh;
}

.item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    -webkit-object-fit: cover !important;
}


/*
.owl_slider_fit {
    height: 100vh !important;
}



.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}


*/


/*MEDIA QUERY 1024 - ALLE SCREENS MIT RESOLUTION VON WIDTH 1024px - 999px --> iPad Landscape*/

@media only screen and (max-width: 1024px) {
    .owl-carousel-images .owl-wrapper-outer {
        height: 70vh !important;
        /*        height: auto;*/
    }
    .item {
        height: 70vh !important;
        /*        height: auto;*/
    }
}


/*MEDIA QUERY 999 - ALLE SCREENS MIT RESOLUTION VON WIDTH 999px - 767px --> Grosse Tablets - iPad Portrait*/

@media only screen and (max-width: 999px) {
    .owl-carousel-images .owl-wrapper-outer {
        height: 45vh !important;
        /*        height: auto;*/
    }
    .item {
        height: 45vh !important;
        /*        height: auto;*/
    }
}


/*MEDIA QUERY 767 - ALLE SCREENS MIT RESOLUTION VON WIDTH 767px - 479px --> iPhone Landscape*/

@media only screen and (max-width: 767px) {
    .owl-carousel-images .owl-wrapper-outer {
        height: 50vh !important;
        /*        height: auto;*/
    }
    .item {
        height: 50vh !important;
        /*        height: auto;*/
    }
}


/*MEDIA QUERY 479 - ALLE SCREENS MIT RESOLUTION VON WIDTH 479px - 0px --> Grosse Smartphone - iPhone etc...*/

@media only screen and (max-width: 479px) {}