.container-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.container-steps .side {
    width: 50%;
    display: flex;
    align-items: center;
}

.container-steps .steps {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 32px;
    position: relative;
}

.container-steps .steps .item {
    display: flex;
    gap: 16px;
    position: relative;
    max-width: 340px;
    min-height: 68px;
}

.container-steps .steps .item::before {
    position: absolute;
    content: '';
    left: 15px;
    width: 2px;
    height: calc(100% + 32px);
    background-color: #d9d9d9;
    z-index: 0;
    bottom: 100%;
}

.container-steps .steps .item.active::before {
    background-color: #3A8340;
}

.container-steps .steps .item:first-child:before {
    display: none;
}

.container-steps .steps .item .rojo {
    display: none;
}

.container-steps .steps .item .btn-step {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #595959;
    background-color: #d9d9d9;
    border-radius: 50%;
    font-family: 'Santander Headline';
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    outline: 0;
    border: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.container-steps .steps .item.active .btn-step {
    color: #fff;
    background-color: #ec0000;
}

.container-steps .steps .item .btn-step img {
    width: 24px;
    height: 24px;
}


.container-steps .steps .item img {
    width: 54px;
    height: auto;
}

.container-steps .steps .item svg {
    width: 54px;
    height: 54px;
    fill: #ec0000;
}

.container-steps .steps .item .no-step {
    font-family: 'Santander Headline';
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.2em;
    text-align: left;
    color: #767676;
    margin-bottom: 8px;
}

.container-steps .steps .item.active .no-step {
    color: #ec0000;
}

.container-steps .steps .item .description-step {
    font-family: 'Santander Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    color: #767676;
    margin-bottom: 0;
}

.container-steps .steps .item.active .description-step {
    color: #191919;
}

.container-steps .splide .splide__item {
    text-align: center;
}

.container-steps .splide .splide__item .img-step {
    width: 100%;
    max-width: 270px;
}

@media(max-width: 991px){
    .container-steps {
        flex-direction: column-reverse;
        margin-top: 24px;
        gap: 24px;
        /* padding-bottom: 24px; */
    }

    .container-steps .side {
        justify-content: center;
        width: 100%;
    }

    /* .container-steps .splide {
        position: inherit;
    } */
    
    .container-steps .splide .splide__item .img-step {
        max-width: 210px;
    }

    .container-steps  .splide .splide__pagination {
        /* margin: 0; */
        /* position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); */
    }

    .container-steps .steps {
        width: 100%;
    }
    
    .container-steps .steps .item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
        max-width: none;
    }

    .container-steps .steps .item.active-mobile {
        display: flex;
    }
    
    .container-steps .steps .item::before {
        background-color: #3A8340;
        left: -24px;
        height: 2px;
        width: calc(100% + 48px);
        top: 15px;
        transform: none;
    }

    .container-steps .steps .item::before {
        background-color: #3A8340;
        left: -81px;
        width: calc(100% + 162px);
    }

    .container-steps .steps .item:first-child::before{
        display: block;
        width: calc(50% + 81px);
        right: -81px;
        left: auto;
    }

    .container-steps .steps .item:last-child::before {
        width: calc(50% + 81px);
    }

    .container-steps .steps .item .no-step {
        text-align: center;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .container-steps .steps .item .description-step {
        text-align: center;
        font-size: 18px;
        margin-bottom: 0;
    }

    .container-steps .steps .item.active .description-step {
        max-width: 375px;
    }
    
}

@media(max-width: 767px){
    .container-steps .steps .item::before {
        left: -54px;
        width: calc(100% + 108px);
    }

    .container-steps .steps .item:first-child::before{
        width: calc(50% + 54px);
        right: -54px;
    }

    .container-steps .steps .item:last-child::before {
        width: calc(50% + 54px);
    }
}

@media(max-width: 575px){
    .container-steps .steps .item::before {
        left: -24px;
        width: calc(100% + 48px);
    }

    .container-steps .steps .item:first-child::before{
        width: calc(50% + 24px);
        right: -24px;
    }

    .container-steps .steps .item:last-child::before {
        width: calc(50% + 24px);
    }
}