.c-widget-how-it-works .how-it-works-description {
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
}

.c-widget-how-it-works .how-it-works-content {
    display: flex;
}

.c-widget-how-it-works .banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: auto;
    border-radius: 20px;
    margin-right: 60px;
}

.c-widget-how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 50%;
    counter-reset: step-counter;
    margin: -15px;
}

.c-widget-how-it-works .step {
    display: flex;
    flex-direction: column;
    background-color: #272728;
    width: calc(50% - 30px);
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    opacity: 0;
    transform: translateY(100px) scale(0.95); /* Сначала блоки чуть меньше */
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-widget-how-it-works .step:nth-child(odd) {
    transform: translateX(-80px);
}

.c-widget-how-it-works .step:nth-child(even) {
    transform: translateX(80px);
}

.c-widget-how-it-works .step.visible {
    opacity: 1;
    transform: translateY(0) scale(1)  translateX(0);
}

.c-widget-how-it-works .step .num {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #915CE5;
    counter-increment: step-counter;
    content: counter(step-counter);
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.c-widget-how-it-works .step .num::before {
    content: counter(step-counter);
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
    color: #915CE5;
}

.c-widget-how-it-works .step .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.c-widget-how-it-works .step .description {
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.c-widget-how-it-works .step .button {
    margin-top: 20px;
}

.c-widget-how-it-works .step .button .btn-def {
    width: auto;
}

@media all and (max-width: 1280px) {
    .c-widget-how-it-works .how-it-works-content {
        flex-direction: column;
    }

    .c-widget-how-it-works .banner {
        padding-bottom: 480px;
        margin: 0 0 60px;
    }
}


@media all and (max-width: 640px) {
    .c-widget-how-it-works .step {
        width: 100%;
    }
}

@media all and (max-width: 480px) {
    .c-widget-how-it-works .banner {
        padding-bottom: 300px;
    }
}