/* === Montazh Steps Block === */
.montazh-steps {
    padding: 80px 0 0px;
}
.montazh-steps__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    color: #3E3E51;
    margin: 0px 0 10px;
    line-height: 43px;
}
.montazh-steps__subtitle {
    text-align: center;
    font-size: 17px;
    color: #2E293E;
    line-height: 28px;
    margin: 0 0 64px;
}
.montazh-steps__grid {
    display: flex;
    gap: 84px;
    position: relative;
    justify-content: center;
}
.montazh-steps__card {
    background: #fff;
    border: 4px solid #FAE9DC;
    padding: 36px 43px 44px 72px;
    position: relative;
    max-width: 353px;
    border-radius: 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.montazh-steps__icon {
    width: 96px;
    height: 96px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: -48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.montazh-steps__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.montazh-steps__body {
    flex: 1;
    min-width: 0;
}
.montazh-steps__num {
    font-size: 15px;
    font-weight: 700;
    color: #4A4A5B;
    line-height: 24px;
    margin-bottom: 13px;
    text-transform: uppercase;
}
.montazh-steps__num span {
    color: #E0721B;
    font-size: 22px;
    line-height: 24px;
}
.montazh-steps__text {
    font-size: 15px;
    color: #2E293E;
    line-height: 24px;
    margin: 0;
}
.montazh-steps__grid::before {
    content: "";
    position: absolute;
    height: 4px;
    width: calc(100% + 100%);
    left: -50%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: #FAE9DC;
}
/* === /Montazh Steps Block === */

@media (max-width: 992px){

    .montazh-steps__title {
        font-size: 24px;
        line-height: 33px;
    }

    .montazh-steps__subtitle {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 34px;
    }

    .montazh-steps__grid {
        gap: 24px;
        flex-wrap: wrap;
    }

    .montazh-steps__grid::before {
        display: none;
    }

    .montazh-steps__icon {
        position: relative;
        left: 0;
    }

    .montazh-steps__card {
        padding: 30px 20px;
        flex-wrap: wrap;
    }

    .montazh-steps__body {
        flex: 100%;
        width: 100%;
    }

    .montazh-steps__num {
        font-size: 14px;
        line-height: 23px;
    }

    .montazh-steps__text {
        font-size: 14px;
        line-height: 23px;
    }

}


