.slider_presentation {
    display: none;
}

.news-slider {
    margin-top: -75px;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.news-slider .owl-carousel {
    margin-bottom: 30px;
    position: static;
} 
.news-slide {
    width: 360px;
    height: 100%;
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.news-img {
    height: 270px;
}
.news-img img{
    object-fit: cover;
}
.news-slide_wrapper{
    padding: 37px 40px 77px;
}
.news-slide_title {
    font-size: 18px;
    font-weight: 500;
    color: #407d87;
    margin:0 0 10px 0;
    line-height: 23px;
}
.news-slide_text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,.9);
    margin: 0 0 11px 0;
    line-height: 21px;
}
.time-of-publish {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(0,0,0,.5);
}

.archive-link{
    display: block;
    width: 150px;
    margin: auto;
    border-radius: 30px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #36c0c8;
    border: 1px solid #36c0c8;
    text-decoration: none;
    text-transform: uppercase;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}
.archive-link:hover{
    color: #fff;
    background-color: #36c0c8;
}

/* this link wrap all slide */
.news-slide_link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-slider .owl-stage {
    display: flex;
    flex-wrap: wrap;
}

.news-slider .owl-nav button{
    width: 40px;
    height: 40px;
    background-color: #36c0c8 !important;
    border-radius: 50%;
    transition: .3s linear;
}
.news-slider .owl-nav button span{
    font-size: 32px;
    font-weight: 100;
    color: #fff;
    line-height: 14px;
}
.news-slider .owl-nav button:hover{
    background-color: #fff !important;
}
.news-slider .owl-nav button:hover span{
    color: #36c0c8;
}
.news-slider .owl-nav{
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 25px;
    box-sizing: border-box;
}

.news-slider .owl-nav button.disabled {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility .3s, opacity .3s;
}

.news-slider .owl-nav button {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


@media screen and (max-width: 1300px) {
    .news-slider .owl-nav{
        left: 35%;
        top: auto;
        bottom: -65px;
        width: 30%;
    }
}