.steps-block .wrapper {
    display: flex;
    gap: 30px;
}
.steps-block .left-side {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 41%;
    align-items: flex-start;
}
.steps-block .main-title {
    margin-bottom: 20px;
    text-align: left;
}
.steps-block .block-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 20px;
}
.steps-block .form-holder {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background: var(--background-thirdly);
    border-radius: 30px;
    padding: 30px;
    position: sticky;
    top: 160px;
}
.steps-block .form-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.steps-block .form-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 40px;
}
.steps-block .steps {
    display: flex;
    flex-direction: column;
    width: 59%;
    gap: 10px;
}
.steps-block .form-bot {
    display: flex;
    align-items: center;
    gap: 20px;
}
.steps-block .socs-wrapper {
    display: flex;
    gap: 15px;
}
.steps-block .soc {
    filter: grayscale(1) brightness(2);
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
}
.steps-block .soc img,
.steps-block .soc svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.steps-block .soc:hover {
    filter: unset;
}
.steps-block .step-item {
    display: flex;
    background: var(--background-thirdly);
    border-radius: 20px;
    padding: 10px;
    gap: 30px;
}
.steps-block .step-left-side {
    display: flex;
    flex-direction: column;
    padding: 20px 0px 20px 20px;
    flex-grow: 1;
}
.steps-block .step-img {
    width: 350px;
    min-width: 350px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
}
.steps-block .step-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.steps-block .step-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.steps-block .counter {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--second);
    width: fit-content;
    border-radius: 7px;
    padding: 7px 13px;
    background: var(--primary);
    min-width: fit-content;
    height: fit-content;
}
.steps-block .step-name {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
}
.steps-block .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.steps-block .list-el {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    padding-left: 20px;
}
.steps-block .list-el:before {
    content: "";
    width: 10px;
    height: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(images/listBefore.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}


@media (max-width: 1800px) {
    .steps-block .form-holder {
        top: 130px;
    }
}

@media (max-width: 1400px) {
    .steps-block .step-left-side {
        padding: unset;
    }
    .steps-block .step-name {
        font-size: 18px;
    }
    .steps-block .step-top {
        margin-bottom: 10px;
    }
    .steps-block .form-holder {
        padding: 10px;
    }
    .steps-block .form-desc {
        margin-bottom: 10px;
    }
    .steps-block .step-img {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 1200px) {
    .steps-block .step-item {
        gap: 10px;
    }
    .steps-block .step-img {
        width: 200px;
        min-width: 200px;
    }
    .steps-block .list-el {
        font-size: 14px;
        padding-left: 15px;
    }
    .steps-block .main-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 996px) {
    .steps-block .counter {
        padding: 3px 7px;
        font-size: 12px;
    }
    .steps-block .step-name {
        font-size: 14px;
    }
    .steps-block .step-top {
        gap: 10px;
    }
    .steps-block .form-title {
        font-size: 16px;
    }
    .steps-block .form-desc {
        font-size: 14px;
    }
    .steps-block .socs-wrapper {
        gap: 5px;
    }
    .steps-block .wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .steps-block .left-side {
        width: 100%;
    }
    .steps-block .steps {
        width: 100%;
    }
}

@media (max-width: 498px) {
    .steps-block .step-item {
        flex-direction: column;
    }
    .steps-block .step-img {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 400px) {
    .steps-block .form-bot {
        flex-direction: column;
        gap: 10px;
    }
    .steps-block .socs-wrapper {
        width: 100%;
        order: 1;
    }
    .steps-block .form-bot .btn {
        width: 100%;
        order: 2;
    }
}