#sliderPercorso {
    padding-bottom: 150px;
    padding-top: 80px;
}
#sliderPercorso .swiper-slide {
  height: auto;
}
#sliderPercorso .slide-content {
    height: 100%;
}
.percorso-item {
    background-color: white;
    border-radius: 20px 0 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 32px 48px 0 #8fa1b81c;
    padding: 2rem;
    height: 100%;
    gap: 1rem; 
    position: relative;
    z-index: 1;
}
#sliderPercorso .swiper-slide:first-child:before,
#sliderPercorso .swiper-slide:nth-child(3):before { 
    content: '';
    position: absolute;
    width: 87%;
    height: 120px;
    background-image: url('../images/freccia-su.svg');
    background-size: contain;
    background-position: center;
    top: -80px;
    left: 50%;
    z-index:0;
    background-repeat: no-repeat;
}

#sliderPercorso .swiper-slide:nth-child(2):after { 
    content: '';
    position: absolute;
    width: 87%;
    height: 120px;
    background-image: url('../images/freccia-giu.svg');
    background-size: contain;
    background-position: center;
    bottom: -145px;
    left: 50%;
    z-index:0;
    background-repeat: no-repeat;
}
.percorso-item__number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-image: url('../images/vernice-numero.svg');
    width: 55px;
    height: 40px;
    background-size: contain;
    text-align: center;
    font-family: var(--global-heading-font-family);
    color: var(--global-palette1);
    background-repeat: no-repeat;
}
.percorso-item img {
    width: 250px;
    height: 170px;
    object-fit: contain;
    object-position: center;
}
.percorso-item h3 {
    text-align: center;
    margin-bottom: 0;
}
.swiper-pagination-bullet {
    background-color: var(--global-palette1);
        width: 12px;
    height: 12px;
}
.swiper-pagination-bullet-active {
    background-color: var(--global-palette2);
}
#sliderPercorso.step-slider .swiper-slide:after,
#sliderPercorso.step-slider .swiper-slide:before {
    display: none;
}

#sliderPercorso.step-slider .percorso-item__number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-image: none;
    width: 40px;
    height: 40px;
    background-color: var(--global-palette2);
    border-radius: 50px;
    text-align: center;
    font-family: var(--global-heading-font-family);
    color: var(--global-palette1);
    background-repeat: no-repeat;
}
#sliderPercorso.step-slider  .percorso-item img {
    width: 300px;
    height: 250px;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 992px) {
    .percorso-item {
        opacity: 1!important;
        transform: translate(0)!important;
    }
}