.m-slideshow {
    width: 100%;
    margin-bottom: 80px;
}
.m-slideshow__item {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.m-slideshow__content {
    position: absolute;
    left: calc((100vw - 1240px) / 2);
    width: 600px;
    bottom: 80px;
    background: #005187;
    padding: 41px;
    padding-left: 0;
    z-index: 1;
}
.m-slideshow__content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #005187;
}
.m-slideshow__title {
    font-weight: 400;
    font-size: 60px;
    color: #eff2f4;
    margin-bottom: 16px;
    opacity: 0;
}

.m-slideshow__content,
.m-slideshow__text p{
    font-size: 16px;
    color: #ffffff;
    max-width: 90%;
    opacity: 0;
}

.m-slideshow__image {
    position: relative;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.m-slideshow__image img {
    width: 100%;
}
.m-slideshow .m-button {
    margin-left: calc(50vw - 20px);
}
.m-slideshow .owl-item {
    opacity: 0;
    animation: opacity 500ms ease 0s;
}
.m-slideshow .owl-item.active {
    opacity: 1;
}
.m-slideshow .owl-item.active .m-slideshow__content {
    animation: slideAnimation .5s ease-in-out .3s 1 both;
}
.m-slideshow .owl-item.active .m-slideshow__content .m-slideshow__title {
    animation: slideAnimation .5s ease-in-out .4s 1 both;
}
.m-slideshow .owl-item.active .m-slideshow__content .m-slideshow__text {
    animation: slideAnimation .5s ease-in-out .5s 1 both;
}
.m-slideshow .owl-item.active .m-slideshow__image{
}
.m-slideshow .owl-item.active .m-button{
    animation: slideAnimation .5s ease .6s 1 both;
}
.m-slideshow .owl-dots {
    position: absolute;
    display: flex;
    bottom: 100px;
    right: 100px;
    z-index: 9;
}
.m-slideshow .owl-dots .owl-dot span {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    border: solid 1px #fff;
    margin: 6px;
    transition: all .3s;
}

.m-slideshow .owl-dots .owl-dot span:hover {
    background-color: #002a3f;
}

.m-slideshow .owl-dots .owl-dot.active span {
    background: #0bbbef;
    border-color: #0bbbef;
}
@media (max-width: 1200px) {
    .m-slideshow {
        margin-bottom: 40px;
    }
    .m-slideshow__item {
        margin-bottom: 30px;
    }
    .m-slideshow__content {
        position: relative;
        max-width: 100%;
        width: 100%;
        left: auto;
        bottom: auto;
        padding: 30px 25px;
        order: 2;
    }
    .m-slideshow__image {
        height: auto;
    }
    .m-slideshow .m-button {
        margin-left: 0;
        align-self: flex-end;
        order: 3;
    }

    .m-slideshow .owl-dots {
        position: relative;
        justify-content: center;
        bottom: auto;
        right: auto;
    }

    .m-slideshow .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        background: #cccccc;
    }
}
@media (max-width: 576px) {  
    .m-slideshow__title {
        font-size: 48px;
        margin-bottom: 8px;
    }
    .m-slideshow__text {
        font-size: 16px;
        max-width: none;
    } 
}
