.m-timeline {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 80px;
}
.m-timeline__title {
    width: 350px;
    min-width: 350px;
    margin-right: 100px;
    margin-left: calc((100vw - 1240px) / 2);
}
.m-timeline__item {
    position: relative;
    display: flex;
    height: 600px;
}
.m-timeline__item__year {
    position: absolute;
    right: 0;
    display: block;
    font-weight: 500;
    font-size: 80px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1em;
    color: #fff;
}
.m-timeline__item__image {
    margin-top: 44px;
    margin-right: 30px;
}
.m-timeline__item__image img {
    width: auto !important;
}
.m-timeline__item__title h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #002a3f;
    margin-bottom: 5px;
}
.m-timeline__item__title p {
    font-size: 12px;
    color: #444444;
    margin-bottom: 0;
}
.m-timeline .owl-carousel {
    position: static;
}
.m-timeline .owl-carousel::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    top: 50%;
    height: 96px;
    background: #005187;
    z-index: 0;
}
.m-timeline .owl-carousel::after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 48px solid transparent;
    border-bottom: 48px solid transparent;
    border-left: 38px solid #fff;
    border-right: 0;
    z-index: 2;
}

.m-timeline .owl-item:nth-child(even) .m-timeline__item {
    transform: translateY(96px);
    align-self: flex-end;
}

.m-timeline .owl-item:nth-child(odd) .m-timeline__item {
    transform: translateY(calc(50% + 126px));
    align-self: flex-start;
}

.m-timeline .owl-item:nth-child(even) .m-timeline__item__year {
    transform: translateY(calc(100% + 110px));
}

.m-timeline .owl-item:nth-child(odd) .m-timeline__item__year {
    top: -95px;
}
.m-timeline .owl-dots {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    margin-top: 20px;
}
.m-timeline .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border: solid 1px #fff;
    margin: 6px;
    background: #cccccc;
}
.m-timeline .owl-dots .owl-dot.active span {
    background: #0bbbef;
    border-color: #0bbbef;
}
@media (max-width: 1200px) {
    .m-timeline {
        flex-direction: column;
        padding: 0 15px;
    }
    .m-timeline__title {
        width: 100%;
        min-width: auto;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 40px;
    }
    .m-timeline__item {
        flex-direction: column;
        height: auto;
        padding-top: 120px;
    }
    .m-timeline__item__image {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .m-timeline .owl-carousel {
        position: relative;
    }
    .m-timeline .owl-carousel::before {
        top: 0;
    }
    .m-timeline .owl-carousel::after {
        display: none;
    }
    .m-timeline .owl-item:nth-child(even) .m-timeline__item {
        transform: none;
        align-self: flex-start;
    }

    .m-timeline .owl-item:nth-child(odd) .m-timeline__item {
        transform: none;
    }

    .m-timeline .owl-item:nth-child(even) .m-timeline__item__year {
        top: 0;
        transform: none;
    }

    .m-timeline .owl-item:nth-child(odd) .m-timeline__item__year {
        top: 0;
    }
}
