.m-featured-posts {
    margin-bottom: 60px;
}

.m-featured-posts__item {
    position: relative;
    width: 800px;
    min-height: 300px;
}

.m-featured-posts__item .m-link {
    color: #83d0f5;
}

.m-featured-posts__item:hover .m-link {
    color: white;
}

.m-featured-posts__item .m-link::before {
    background-color: white;
}

.m-featured-posts__item:hover .m-link::before {
    transform: scale(1);
}

.m-featured-posts__item:hover .m-link::after {
    transform: translateX(3px);
}

.m-featured-posts__item .m-link::after {
    background: url("images/arrow-right.svg") no-repeat;
}

.m-featured-posts__item:hover .m-link::after {
    background: url("images/arrow-white.svg") no-repeat;
}

.m-featured-posts__item__content {
    position: absolute;
    width: 384px;
    left: 0;
    bottom: 0;
    padding: 30px;
    background: #005187;
}

.m-featured-posts__item__image {}

.m-featured-posts__item__category {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #83d0f5;
    margin-bottom: 8px;
}

.m-featured-posts__item__category:hover {
    color: #83d0f5;
}

.m-featured-posts__item__title {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.m-featured-posts__item__date {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    border-left: solid 1px #fff;
    padding-left: 10px;
    margin-bottom: 20px;
}

.m-featured-posts__item__date::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url("images/ico-calendar-white.svg") no-repeat;
    margin-right: 5px;
}

.m-featured-posts .owl-stage-outer {
    overflow: visible;
}

.m-featured-posts .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 100%;
}

.m-featured-posts .owl-nav .owl-prev,
.m-featured-posts .owl-nav .owl-next {
    position: absolute;
    transition: all 0.3s;
}

.m-featured-posts .owl-nav .owl-prev.disabled,
.m-featured-posts .owl-nav .owl-next.disabled {
    display: none;
}

.m-featured-posts .owl-nav .owl-prev {
    left: -76px;
    transform: rotate(-180deg);
}

.m-featured-posts .owl-nav .owl-next {
    right: -76px;
}

.m-featured-posts .owl-nav .owl-next:before,
.m-featured-posts .owl-nav .owl-prev:before {
    display: block;
    content: "";
    width: 56px;
    height: 56px;
    background: #fff url("images/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;
}

.m-featured-posts .owl-nav .owl-next:hover:before,
.m-featured-posts .owl-nav .owl-prev:hover:before {
    background-color: #002a3f;
    background-position-x: -32px;
}

.m-featured-posts .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.m-featured-posts .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
}

.m-featured-posts .owl-dots .owl-dot.active span {
    background: #0bbbef;
    border-color: #0bbbef;
}

@media (max-width: 576px) {
    .m-featured-posts__item {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .m-featured-posts__item__image {
        width: 100%;
    }

    .m-featured-posts__item__image img {
        max-width: 100%;
    }

    .m-featured-posts__item__content {
        position: relative;
        width: 100%;
        left: auto;
        bottom: auto;
        padding: 15px;
    }

    .m-featured-posts .owl-stage-outer {
        overflow: hidden;
    }
}