.slider-hero {
    position: relative;
}

.slider-hero .swiper-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: content-box;
}

.slider-hero .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
    position: relative;
    display: block;
    opacity: 0;
    transition: all linear;
}

.slider-hero .swiper-wrapper .swiper-slide-active {
    opacity: 1;
}

.slider-hero .swiper-wrapper .swiper-slide:before {
    content: '';
    display: block;
    padding-top: calc(885 / 1600 * 100%);
}

.slider-hero .swiper-wrapper .swiper-slide .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-hero .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 1;
}

.slider-hero .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 68, 170, 0.50);
}

.slider-hero .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #D1003F;
}

@media screen and (max-width: 767px) {
    .slider-hero .swiper-wrapper .swiper-slide:before {
        content: '';
        display: block;
        padding-top: calc(1000 / 1600 * 100%);
    }
}

@media screen and (max-width: 575px) {
    .slider-hero .swiper-wrapper .swiper-slide:before {
        content: '';
        display: block;
        padding-top: calc(1200 / 1600 * 100%);
    }
}