.carousel {
    margin: 0 70px 25px;
}

.carousel::after {
    clear: both;
    content: '';
    display: block;
}

.carousel.wide {
    margin-left: 0;
    margin-right: 0;
}

.carousel .owl-stage {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.carousel.valign-top .owl-stage {
    align-items: flex-start;
}

.carousel .owl-carousel .owl-item img {
    width: auto;
}

.carousel .owl-carousel .item {
    padding: 0 5px;
}

.carousel .owl-carousel .item > *:last-child {
    margin-bottom: 0;
}

.owl-carousel .owl-stage-outer {
    margin-bottom: 25px;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    color: #5f5f5f;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
}

.carousel .owl-nav i::before {
    font-size: 32px;
}

.carousel .owl-nav .owl-prev {
    margin-left: -70px;
    left: 0;
}

.carousel .owl-nav .owl-next {
    margin-right: -70px;
    right: 0;
}

.carousel .owl-dots {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 5px 30px;
}

.carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.carousel .owl-dot span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #C7CCD1;
    display: block;
}

.carousel .owl-dot.active span {
    background-color: #5f5f5f;
}

@media screen and (max-width: 575px) {

    .carousel {
        margin: 0 0 20px;
    }

    .owl-carousel .owl-stage-outer {
        margin-bottom: 60px;
    }

    .carousel .owl-carousel .item,
    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        margin: 0;
        padding: 0;
    }

    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        top: auto;
        bottom: -55px;
    }

    .carousel .owl-nav .owl-prev {
        left: -5px;
    }

    .carousel .owl-nav .owl-next {
        right: -5px;
    }

    .carousel .owl-dots {
        bottom: -40px;
    }
}