.wrapper-card_slider {
    position: relative;
    overflow: hidden;
}
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
.background-card_slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.background-card_slider:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(209, 0, 42, 0.6) 0%, #0E5DC4 100%);
    opacity: 0.9;
}
.background-card_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.news-slider {
    z-index: 2;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.news-slider__wrp {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
}
.news-slider__item {
    width: 380px;
    flex-shrink: 0;
}
.news-slider__item.swiper-slide {
    opacity: 0;
    pointer-events: none;
    height: auto;
}
.news-slider__item.swiper-slide-active, .news-slider__item.swiper-slide-prev, .news-slider__item.swiper-slide-next {
    opacity: .1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
    transition: all 3s;
    pointer-events: auto;
}
.news-slider__item.swiper-slide-active {
    opacity: 1;
}
.news__item .news__btns {
    text-align: center;
    margin-top: 20px;
}
.news-slider__item:not(.swiper-slide-active) .news__item .btn {
    visibility: hidden;
}
.news-slider__ctr {
    position: relative;
    z-index: 12;
    margin-top: 50px;
}
.news-slider__arrow {
    background: #fff;
    border: none;
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 13px 3px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 12;
    cursor: pointer;
    outline: none !important;
}
.news-slider__arrow:focus {
    outline: none !important;
}
.news-slider__arrow .icon-font {
    display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
    left: 15px;
    transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
    right: 15px;
    transform: translateY(-50%);
}
.news-slider__pagination {
    text-align: center;
    transform: translateY(-50%);
}
.news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: #fff;
    opacity: 0.2;
    margin: 0 10px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
}
.news-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    width: 50px;
    transition-delay: 0s;
}
@media screen and (max-width: 576px) {
    .news-slider__pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
}
.news__item {
    padding: 30px;
    border-radius: 10px;
    display: block;
    transition: all 0.3s;
}
.news__title {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}
.news__txt {
    line-height: 1.6em;
}
.news__img {
    text-align: center;
}
.news__img img {
    max-height: 100%;
    width: auto;
}
.news-slider__arrows__wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
}
.news-slider__arrows {
    position: relative;
    margin: 0 auto;
    max-width: 380px;
}
@media screen and (max-width: 576px) {
    .news-slider__item {
        width: 260px;
    }
    .news__img {
        height: 200px;
    }
    .news-slider__arrows__wrap {
        top: 48%;
    }
    .news-slider__arrows {
        max-width: 270px;
    }
    .news-slider__arrow {
        width: 30px;
        height: 30px;
    }
    .news__title {
        font-size: 16px;
    }
}