#carrousel {
    margin: 10px 10px 40px 10px;
}
@media (max-width: 768px) {
    #carrousel {
        margin: 0 0 40px 0;
    }
}
@media (max-width: 425px) {
    #carrousel {
        margin: 0 0 40px 0;
    }
}
#carrousel .title {
    margin-bottom: 10px;
    font-size: 30px;
}
#carrousel .owl-carousel .owl-stage-outer img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 300px;
    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);
    border: 5px solid #fff;
}
#carrousel .owl-carousel .owl-item {
    height: 300px;
    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);
    -ms-transform: scale(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: 50%;
    width: 600px;
    left: calc(50% - 300px);
}
#carrousel .owl-nav img {
    height: 20px;
    display: block;
}
#carrousel .owl-nav .owl-next img {
    margin-left: 2px;
    margin-top: 2px;
}
#carrousel .owl-nav .owl-prev img {
    margin-top: 1px;
    margin-right: 2px;
    height: 18px;
}
#carrousel .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: -17px;
    font-size: 0;
    background: #0064E4;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#carrousel .owl-nav .owl-prev:hover {
    color: #adadad !important;
}
#carrousel .owl-nav .owl-next {
    position: absolute;
    right: 0;
    top: -17px;
    font-size: 0;
    background: #0064E4;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#carrousel .owl-nav .owl-next:hover {
    color: #adadad !important;
}
@media (max-width: 650px) {
    #carrousel .owl-nav {
        width: auto;
        left: 10px;
        right: 10px;
    }
}