#carrousel {
    width: 50%;
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 768px) {
    #carrousel {
        margin: 70px 0px 0px 0px;
    }
}

@media (max-width: 425px) {
    #carrousel {
        margin: 50px 0px 0px 0px;
    }
}

#carrousel .owl-carousel img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 400px;
    object-fit: cover;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-shadow: 12px 12px 10px -10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 12px 12px 10px -10px rgba(0, 0, 0, 0.25);
    box-shadow: 12px 12px 10px -10px rgba(0, 0, 0, 0.25);
}

#carrousel .owl-carousel .owl-item {
    height: 400px;
    position: relative;
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    transition: all 0.2s;
    -webkit-transform: all 0.2s;
    z-index: 1;
}

@media (max-width: 768px) {
    #carrousel .owl-carousel .owl-item {
        height: 270px;
    }
}

@media (max-width: 380px) {
    #carrousel .owl-carousel .owl-item {
        height: 200px;
    }
}

#carrousel .owl-carousel .owl-stage-outer {
    padding-bottom: 10px;
}

#carrousel .owl-item.big {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    z-index: 3;
}

#carrousel .owl-item.medium {
    transform: scale(0.8);
    -ms-transform: scale(0.8);
    z-index: 2;
}

#carrousel .owl-item.medium.mdright {
    /*border: solid 1px red;*/
    position: relative;
    left: -30px;
}

@media (min-width: 768px) {
    #carrousel .owl-item.medium.mdright {
        left: 0px;
    }
}

#carrousel .owl-item.medium.mdleft {
    /*border: solid 1px blue;*/
    position: relative;
    right: -30px;
}

@media (min-width: 768px) {
    #carrousel .owl-item.medium.mdleft {
        right: 0px;
    }
}

#carrousel .owl-item.smallRight.active {
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    position: relative;
    left: -30px;
}

#carrousel .owl-item.smallLeft.active {
    transform: scale(0.7);
    -ms-transform: scale(0.7);
    position: relative;
    right: -30px;
}

#carrousel .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
}

#carrousel .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
    top: 10px;
    background: transparent !important;
    color: #000 !important;
    font-size: 40px !important;
}

#carrousel .owl-nav .owl-prev:hover {
    color: #adadad !important;
}

#carrousel .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    top: 10px;
    background: transparent !important;
    color: #000 !important;
    font-size: 40px !important;
}

#carrousel .owl-nav .owl-next:hover {
    color: #adadad !important;
}