.slider-home {
    position: relative;
    width: 100%;
    height: 500px;
    top: 80px;
    overflow: hidden;
}

.slider-home .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-home .slide.active {
    opacity: 1;
}

.slider-home .slide img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-home .slide.active img.show {
    opacity: 1;
}

@media(min-width:1200px) {
    .slider-home .slide img {
        height: auto;
        max-height: 100%;
    }
}

@media(max-width:767px) and (orientation: portrait), (max-width:932px) and (orientation: landscape) {
    .home .slider-home {
        height: 250px;

    }

    .slider-home .slide img {
        width: 100%;
    }

    body.home .slider-hone+.wrapper {
        margin-top: 0;
    }
}

@media only screen and (min-width: 810px) and (max-height:1080px) and (orientation: portrait) {

    /*li#menu-item-1100 a{padding: 55px 0 66px 0 !important;}
	li#menu-item-1101 a,#menu-item-1102 a{padding: 42px 0 52px 0 !important;}
	li#menu-item-2876 a{padding: 20px !important;}
	li#menu-item-1047 > a{padding: 19.8px 8px !important;}
	li#menu-item-1049 a{padding: 33.5px !important;}
	ul li#menu-item-1104 > a{padding: 33.4px 0 !important;}
	*/


    .slider-home .slide img {
        height: 200px;
    }


}