.steps-block .steps {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.steps-block .step-item {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}
.steps-block .step-left-side {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 30px;
    background: var(--bg-primary-main);
}
.steps-block .counter {
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
    background: var(--bg-alt-second);
    margin-bottom: 15px;
    width: fit-content;
}
.steps-block .step-name {
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 15px;
}
.steps-block .step-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
}
.steps-block .step-img {
    width: 50%;
    display: flex;
    height: auto;
}
.steps-block .step-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .steps-block .step-left-side {
        padding: 10px;
    }
}

@media (max-width: 1200px) {
    .steps-block .counter {
        margin-bottom: 5px;
        font-size: 14px;
        padding: 3px 7px;
    }
    .steps-block .step-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .steps-block .step-desc {
        font-size: 14px;
    }
}

@media (max-width: 996px) {
    .steps-block .steps {
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 498px) {
    .steps-block .step-item {
        flex-direction: column;
    }
    .steps-block .step-left-side {
        width: 100%;
    }
    .steps-block .step-img {
        width: 100%;
        max-height: 200px;
    }
}