.how_it_works-vertical{
    position: relative;
    z-index: 0;
}
.how_it_works-vertical .wrapper>*:not(.cards) {
    max-width: 770px;
    margin: 0 auto;
}

.how_it_works-vertical .wrapper>.title {
    margin-bottom: 20px;
}

.how_it_works-vertical .cards {
    max-width: 950px;
    margin: 100px auto 50px auto;
    display: flex;
    flex-direction: column;
}

.how_it_works-vertical .cards .card {
    display: flex;
    align-items: center;
    gap: 144px;
    padding-bottom: 40px;
    position: relative;
}

.how_it_works-vertical .cards .card:last-child {
    padding-bottom: 0;
}

.how_it_works-vertical .cards .card .icon {
    height: 150px;
    width: 150px;
    min-width: 150px;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.how_it_works-vertical .cards .card .icon img {
    width: 90px;
    height: 90px;
}

.how_it_works-vertical .cards .card .content .step {
    margin-bottom: 10px;
    text-align: left;
    color: var(--primary);
}

.how_it_works-vertical .cards .card .content .title, 
.how_it_works-vertical .cards .card .content .subtitle {
    text-align: left;
}
.how_it_works-vertical .cards .card .content .title{
    font-weight: 400;
}

.how_it_works-vertical .cards .card:nth-child(3) .icon {
    padding-left: 45px;
}

.how_it_works-vertical .cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 216px;
    height: 100%;
    width: 2px;
    background: var(--secondary);
    z-index: 999;
}

.how_it_works-vertical .cards .card::after {
    content: '';
    position: absolute;
    top: calc(50% - 25px);
    left: 210px;
    height: 10px;
    width: 10px;
    background: var(--white);
    border: 2px solid var(--secondary);
    z-index: 9999;
}

@media(max-width: 769px) {
    .how_it_works-vertical .cards .card {
        flex-direction: column;
        gap: 20px;
    }
    .how_it_works-vertical .cards .card::before,
    .how_it_works-vertical .cards .card::after {
        display: none;
    }
    .how_it_works-vertical .cards {
        margin: 20px 0;
    }
}

@media(max-width: 480px) {
    .sliders-title {
        display: none;
    }
    .how_it_works {
        margin-bottom: 20px;
    }
}