.item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s;
    left:0;
    z-index: -1;
}
.swiper-slide:hover .item-bg,.swiper-slide-active .item-bg {
    background: var(--web-color);
}
.swiper-slide:hover a,.swiper-slide-active a{
    color: #fff;
}
.news-slider {
    padding: 40px;

}
.news-slider .swiper-slide a{
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 576px) {
    .news-slider {
        margin-top: 45px;
    }
}

.news-slider__arrow {
    background: #000;
    border: none;
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 12;
    cursor: pointer;
    outline: none !important;
}
.news-slider__arrow:hover{
    background-color: var(--web-color);
}

.news-slider__arrow:focus {
    outline: none !important;
}
.news-slider__arrow .iconfont{
    color: #fff;
}
.news-slider__arrow .iconfont {
    display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
    left: 0;
    transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
    right: 0;
    transform: translateY(-50%);
}
.news-slider__pagination {
    text-align: center;
    margin-top: 50px;
}
.news-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #333;
    opacity: 0.2;
    margin: 0 5px;
    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: var(--web-color);
    width: 50px;
    transition-delay: 0s;
}
@media screen and (max-width: 576px) {
    .news-slider__pagination .swiper-pagination-bullet-active {
        width: 50px;
    }
}
.swiper-slide {
    padding: 40px;
    border-radius: 10px;
    display: block;

}

@media screen and (max-width: 992px) {
    .swiper-slide {
        padding: 30px;
    }
}
@media screen and (max-width: 576px) {
    .swiper-slide {
        padding: 20px;
    }
}
.news-date {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
    .news-date {
        margin-bottom: 10px;
        display: inline-flex;
        align-items: center;
        padding-bottom: 0;
    }
}
.news-date__title {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}
@media screen and (max-width: 576px) {
    .news-date__title {
        margin-right: 10px;
    }
}
.news-date__txt {
    font-size: 16px;
}
.news__title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
    .news__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
.news__txt {
    margin: 10px 0;
    line-height: 1.6em;
    font-size: 15px;

}
.news__img {
    border-radius: 10px;
    box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
    height: 200px;
    margin-top: 30px;
    width: 100%;
    transition: all 0.3s;

}
@media screen and (max-width: 576px) {
    .news__img {

        margin-top: 20px;
    }
}
.news__img img {
    max-width: 100%;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 992px) {
    .history{
        padding: 0 0 20px;
    }
    .news-slider__arrow{
        box-shadow: 0 0 6px #ccc;
    }
    .news-slider__arrow.news-slider-prev{
        left: 0;
    }
    .news-slider__arrow.news-slider-next{
        right: 0;
    }
    .news-slider{
        padding: 20px;
        margin: 0;
    }

}