
.steps-slider{
    overflow: hidden;
}
.steps-slider .content-wrapper{
    max-width: 1570px;
}

.steps-slider__slider{
    overflow: visible;
}
.steps-slider__slider .card:hover{
    cursor: default;
}
.steps-slider__slider .card__image-container:hover img{
    scale: 1;
}
.steps-slider__content{
    margin-bottom: 40px;
}
.steps-slider__bullet{
    background-color: #004577;
    padding: 4px 25px;
    font-size: 12px;
    color: white;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #004577;
    transition: var(--transition);
}

.steps-slider__bullet:hover{
    background-color: white;
    color: #004577;
}
.steps-slider__bullet--showing{
    background-color: #2582C5;
}

.steps-slider__pagination{
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.steps-slider .card__body{
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}
.steps-slider .card__body.showing{
    max-height: 550px;
    position: relative;
}
.steps-slider__card__footer svg{
    cursor: pointer;
}
.steps-slider .card__body::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 56%);
    transition: var(--transition);
}
.steps-slider .card__body.showing::before{
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 56%);
}
.steps-slider .card__image-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    color: white;
    font-size: 60px;
    z-index: 3;
    padding: 40px;
    font-weight: 700;
}

.steps-slider__card__footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: -20px;
    transition: var(--transition);
}

.card__footer__minus-icon{
    display: none;
}
.steps-slider__card__footer.showing{
    top: 0;
}

.card-slider-carousel-swiper__pagination{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    gap: 32px;
}
.card-slider-carousel-swiper__navigation{
    display: flex;
}
.swiper-pagination-progressbar{
    position: relative;
}

.swiper-pagination-progressbar-fill{
    height: 8px !important;
    border-radius: 55px;
    top: -2px !important;
}
@media screen and (min-width: 768px){
    .steps-slider__pagination{
        margin-bottom: 98px;
}