#steps-block {}

#steps-block .steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#steps-block .steps-main-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
width: 100%;
}

#steps-block .steps-left {
    width: 50%;
    max-width: 750px;
}

#steps-block .steps-right {
    width: 50%;
}

#steps-block .step-photo {
    width: 100%;
    height: 100%;
    max-width: 750px;
    object-fit: cover;
}

#steps-block .step-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#steps-block .step-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#steps-block .step-top-left {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;

}

#steps-block .step-icon {
    border-radius: 25px;
    padding: 13px;
    width: 50px;
    height: 50px;
    background: var(--bg-primary-second);
}

#steps-block .line {
    border: 1px dashed var(--bg-primary-stroke);
}

#steps-block .step-button-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#steps-block .step-desc {
    color: var(--text-primary-main);
}

@media (max-width: 1024px) {
    #steps-block .steps-main-wrapper {
        flex-direction: column;
    }

    #steps-block .steps-left,
    #steps-block .steps-right {
        width: 100%;
        max-width: none;
    }

    #steps-block .step-photo,
        #steps-block .step-photo img {
        max-width: none !important;
        max-height: 400px;
        width: 100%;
    }
    #steps-block .step-wrap {
        gap: 20px;
    }
}


#steps-block .btn:hover {
    background: var(--bg-primary-second);
    color: var(--text-primary-main);
    border-color: var(--bg-primary-second);
}

#steps-block .step-counter {
    border: 1px solid var(--bg-primary-stroke);
border-radius: 1000px;
padding: 10px 20px;
margin-left: auto;
color: var(--text-primary-main);
}

/*# sourceMappingURL=block.css.map */