.list-card-carousel.m-cards {
    margin-bottom: 60px;
    margin-top: 30px;

}
.list-card-carousel  .m-cards__list {
    display: flex;
}
.list-card-carousel  .m-cards__item {
    margin-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.list-card-carousel  .m-cards__item:last-child {
    margin-right: 0;
}
.list-card-carousel  .m-cards__item a {
    position: relative;
    display: block;
    width: 384px;
    height: 168px;
    padding: 20px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    text-decoration: none;
    transition: all .3s;
}
.list-card-carousel .m-cards__item--small a {
    width: 176px;
    height: 176px;
}

.list-card-carousel .m-cards__item a:hover {
    transform: scale(1.05);
}

.list-card-carousel .m-cards__item a:after {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 11px;
    right: 20px;
    bottom: 20px;
    background: url("../../../assets/images/icons/arrow.svg") no-repeat;
    transition: all .3s;
}
.list-card-carousel .m-cards__item:hover a::after {
    transform: translateX(3px);
}
.list-card-carousel .m-cards__item__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}
.list-card-carousel .m-cards__item--small .list-card-carousel .m-cards__item__title {
    font-size: 14px;
}
.list-card-carousel .m-cards__item p {
    font-size: 14px;
    color: var(--font-color);
}
.list-card-carousel .m-cards__item__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    background: #002a3f;
    border-radius: 2px;
    padding: 4px;
}
.list-card-carousel.m-cards .owl-stage-outer {
    overflow: visible;
}
.list-card-carousel.m-cards .owl-stage-outer:before {
    content: "";
    background:#fff;
    position: absolute;
    width: 100%;
    height: calc(100% + 40px);
    left: -100%;
    margin-top: -20px;
    margin-left: -10px;
    top: 0;
    z-index: 10;
}
.list-card-carousel.m-cards .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width:100%;
}
.list-card-carousel.m-cards .owl-nav .owl-prev,
.list-card-carousel.m-cards .owl-nav .owl-next {
    position: absolute;
    transition: all .3s;
}
.list-card-carousel.m-cards .owl-nav .owl-prev.disabled,
.list-card-carousel.m-cards .owl-nav .owl-next.disabled {
    display: none;
}
.list-card-carousel.m-cards .owl-nav .owl-prev {
    left: -76px;
    transform: rotate(-180deg);
}
.list-card-carousel.m-cards .owl-nav .owl-next {
    right: -76px;
}
.list-card-carousel.m-cards .owl-nav .owl-next:before,
.list-card-carousel.m-cards .owl-nav .owl-prev:before {
    display: block;
    content: "";
    width: 56px;
    height: 56px;
    background: #fff url("../../../assets/images/icons/arrow-big.svg") no-repeat 17px center;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 100%;
    transition: all 0.3s;
}
.list-card-carousel.m-cards .owl-nav .owl-next:hover:before,
.list-card-carousel.m-cards .owl-nav .owl-prev:hover:before {
    background-color: #002a3f;
    background-position-x: -32px;
}
.list-card-carousel.m-cards .owl-nav .owl-next:before:hover,
.list-card-carousel.m-cards .owl-nav .owl-prev:before:hover {
    background: var(--light-blue) url("../../../assets/images/icons/arrow-big-white.svg") no-repeat center center;

}
.list-card-carousel.m-cards .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.list-card-carousel.m-cards .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
}
.list-card-carousel.m-cards .owl-dots .owl-dot.active span {
    background: #0bbbef;
    border-color: #0bbbef;
}
.list-card-carousel.m-cards .owl-stage {
    left: 0px;
}

@media (max-width: 1200px) {

    .list-card-carousel.m-cards .owl-stage-outer {
        overflow: hidden;
    }
    .list-card-carousel.m-cards .owl-stage-outer:before {
        display: none;
    }
    .list-card-carousel.m-cards .owl-nav .owl-prev {
        left: 0px;
        transform: rotate(-180deg);
    }
    .list-card-carousel.m-cards .owl-nav .owl-next {
        right: 0px;
    }
}

@media (max-width: 576px) {
    .list-card-carousel .m-cards__list {
        flex-direction: column;
    }
    .list-card-carousel .m-cards__item {
        margin-right: 0;
    }
    .list-card-carousel .m-cards__item a {
        width: auto;
        height: 196px;
    }

    .list-card-carousel .m-cards__item--small a {
        width: auto;
    }
}
