.swiper-impatto{
	width: 100%;
	overflow: visible;
	padding: 0;
}

.swiper-impatto .swiper-slide{
	border: 0;
	background-color: transparent;
	transition: 0.3s ease-in-out;
	max-width: 400px;
}

.swiper-impatto .card-custom{
	min-height: 300px;
	max-width: 380px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--white);
	padding: 0;
}

.swiper-impatto .card-custom h2{
	font-size: 120px;
	color: var(--blue);
	font-weight: 700;
}

.swiper-impatto .card-custom h4{
	color: var(--black);
}

.swiper-impatto .card-custom p{
	color: var(--black);
	max-width: 280px;
}

.swiper-impatto .blue-line{
	width: 50px;
	height: 2px;
	background-color: var(--blue);
}

.swiper-impatto.black-color h4, .swiper-impatto.black-color p{
	color: var(--black);
	max-width: 300px;
}

.swiper-impatto.white-color h4, .swiper-impatto.white-color p, .swiper-impatto.white-color h2{
	color: var(--white);
}

.swiper-impatto.white-color .blue-line{
	background-color: var(--white);
}

.swiper-scrollbar-custom2 {
  position: absolute;
  bottom: -70px;
  left: 12px;
  width: 90%;
  height: 2px;
  background: rgba(180, 180, 180, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.swiper-scrollbar-progress2 {
  height: 100%;
  width: 0%;
  background: #1E00C3;
  transition: width 0.3s ease-in-out;
  border-radius: 5px;
}

@media only screen and (max-width: 768px){
	
	.swiper-impatto .card-custom h2{
		font-size: 100px;
	}
	
	.swiper-impatto .card-custom h4{
		font-size: 30px;
	}
}

.swiper-arrows-impatto {
    position: absolute;
    bottom: -82px; /* stessa altezza della scrollbar */
    right: 12px;   /* attacca tutto a destra */
    display: flex;
    gap: 50px;     /* spazio tra le due frecce */
    z-index: 10;
}

/* Rendi le frecce cliccabili e visibili */
.swiper-arrows-impatto .swiper-button-prev,
.swiper-arrows-impatto .swiper-button-next {
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* Icona freccia SINISTRA */
.swiper-arrows-impatto .swiper-button-prev::after {
    content: "";
    background-image: url(/wp-content/uploads/2025/12/arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(180deg);
}

/* Icona freccia DESTRA */
.swiper-arrows-impatto .swiper-button-next::after {
    content: "";
    background-image: url(/wp-content/uploads/2025/12/arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}

@media only screen and (max-width: 1440px) {
   .swiper-impatto .swiper-scrollbar-custom2 {
        width: 80%;
      }
}
/* Mobile fix */
@media(max-width: 768px){
    .swiper-arrows-impatto {
        right: -10px;
    }
	.swiper-impatto .swiper-scrollbar-custom2 {
    width: 70%;
}
