.steps-block .content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.steps-block .step {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--stroke-secondary);
    cursor: pointer;
    transition: all 0.3s;
}
.steps-block .step__top {
    display: flex;
    position: relative;
    width: 100%;
    gap: 20px;
    padding: 30px;
}
.steps-block .step__top__count {
    width: 30px;
    color: var(--primary);
}
.steps-block .step__top__title {
    margin-left: 180px;
}
.steps-block .step__top__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
}
.steps-block .step__top__plus * {
    transition: all 0.3s;
}
.steps-block .step:hover .step__top__plus svg path {
    opacity: 1;
}
.steps-block .step.is-opened .step__top__plus svg path:last-of-type {
    opacity: 0;
}

.steps-block .step__bottom {
    display: flex;
    position: relative;
    width: 100%;
    gap: 30px;
    padding: 0 30px 30px 260px;
}
.steps-block .step__bottom .form-one {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 750px;
    gap: 30px;
    border-radius: 15px;
    padding: 30px;
    background: var(--thirdly);
}
.steps-block .step__bottom .form-one__text {
    max-width: 330px;
    color: var(--white);
}
.steps-block .step__bottom .form-one .form-top {
    flex-direction: row;
}
.steps-block .step__bottom .form-one .form-top .btn {
    max-width: 150px;
}

.steps-block .step__bottom .form-two {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 460px;
    padding: 30px;
    gap: 20px;
    border-radius: 20px;
    background: var(--white);
}
.steps-block .step__bottom .form-two .btn {
    margin-top: auto;
}

.steps-block .step__bottom__subtitle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 230px;
}
.steps-block .step__bottom__desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 620px;
    color: var(--main-text-primary);
}
.steps-block .step.is-opened {
    background: var(--background);
    border: 1px solid var(--background);
}



@media (max-width: 1480px) {
    .steps-block .step__top__title {
        margin-left: 80px;
    }
    .steps-block .step__bottom {
        padding-left: 160px;
        gap: 20px;
    }
}
@media (max-width: 1300px) {
    .steps-block .step__bottom .form-two {
        width: 55%;
        min-width: auto;
        height: fit-content;
        padding-right: 30px;
    }
    .steps-block .step__bottom .form-one .form-top {
        flex-direction: column;
    }
    .steps-block .step__bottom .form-one .form-top .btn,
    .steps-block .step__bottom .form-two .btn {
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 1100px) {
    .steps-block .step__top__title {
        margin-left: 0;
    }
    .steps-block .step__bottom {
        padding-left: 80px;
    }
    .steps-block .step__bottom .form-one {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 20px;
    }
    .steps-block .step__bottom .form-two {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .steps-block .step__top {
        padding: 20px;
    }
    .steps-block .step__bottom {
        padding: 20px;
        padding-top: 0;
        gap: 15px;
    }
    .steps-block .step__bottom__subtitle {
        min-width: 200px;
    }
}
@media (max-width: 576px) {
    .steps-block .step__top {
        align-items: center;
        gap: 20px;
    }
    .steps-block .step__bottom {
        flex-direction: column;
    }
    .steps-block .step__bottom .form-two {
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 380px) {
    .steps-block .step__top {
        padding: 10px;
        gap: 10px;
    }
    .steps-block .step__bottom {
        padding: 0 10px 10px 10px;
    }
}   