.hero-slider {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: clamp(320px, 34vw, 560px);
    background: #ffffff;
}

.hero-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-swiper img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: fill;
}

.slider-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-arrow::before {
    display: block;
    font-size: 42px;
    font-weight: 300;
    line-height: 38px;
}

.slider-arrow--prev {
    left: 10px;
}

.slider-arrow--prev::before {
    content: '\2039';
}

.slider-arrow--next {
    right: 10px;
}

.slider-arrow--next::before {
    content: '\203A';
}

.slider-dots {
    bottom: 10px !important;
}

.slider-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 6px !important;
    background: #777777;
    opacity: 0.55;
}

.slider-dots .swiper-pagination-bullet-active {
    background: #a7090e;
    opacity: 1;
}

@media (max-width: 600px) {
    .hero-swiper {
        height: 320px;
    }
}
