/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.index-carousel {
    margin: 25px 0;
    padding: 0 15px;
}
.index-carousel img{
    border-radius: 10px;
}
.index-carousel:hover .owl-nav{
    opacity: 1;
}
@media screen and (max-width: 767px){
    .index-carousel{
        border-radius: 0;
        padding: 0;
    }   
    .index-carousel img{
        border-radius: 0;
    }
    .index-carousel .owl-nav{
        opacity: 1;
    }
}

body .owl-nav .owl-prev, body .owl-nav .owl-next{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
}

body .owl-prev{
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgb(141 141 141 / 50%) !important;
    left: 2px;
}

body .owl-next{
    background-color:rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgb(141 141 141 / 50%) !important;
    right: 2px;
}

.owl-prev.disabled{
    opacity: .5;
}
.owl-next.disabled{
    opacity: .5;
}
