/* evidence-claims-hero css */
.evidence-claims-hero {
    --width: 57.7rem;
    --gap-x: 11rem;
	padding-top: 17.5rem;
    padding-bottom: 16.5rem;
}
.evidence-claims-hero .hero-single-content {
    max-width: 100%;
    gap: 0 var(--gap-x);
}
.evidence-claims-hero .hero-single-content-inner {
    width: var(--width);
}
.evidence-claims-hero .hero-single-content-img {
    width: calc(calc(100% - (var(--width) + var(--gap-x))) / 1);
}

.evidence-claims-hero-slider {
    position: relative;
    padding-bottom: 3rem;
}
.evidence-slider-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1.2rem;
}
.evidence-slider-item img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.swiper-pagination,
.customer-pagination {
    bottom: 0!important;
    z-index: 3;
}
.swiper-pagination-bullet,
.customer-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background-color: var(--light);
    opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active,
.customer-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

@media (max-width: 1050px) {
    .evidence-claims-hero {
        --width: 50rem;
        --gap-x: 4rem;
		padding-top: 13.5rem;
        padding-bottom: 8.5rem;
    }
    .evidence-slider-item {
        border-radius: 0.8rem;
    }
}
@media (max-width: 991px) {
    .evidence-claims-hero {
        padding-top: 11.5rem;
        padding-bottom: 6.5rem;
    }
    .evidence-claims-hero {
        --width: 100%;
        --gap-x: 4rem;
    }
    .evidence-claims-hero .hero-single-content {
        max-width: 100%;
        gap: var(--gap-x);
    }
    .evidence-claims-hero .hero-single-content-img {
        width: 100%;
    }
}