.steps-block__title {
    margin-bottom: 40px;
}
.steps-block__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.steps-block__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    background: var(--background-secondary);
    border-radius: 10px;
    overflow: hidden;
}
.steps-block__item-text {
    padding: 30px 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.steps-block__item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    background: var(--head-secondary);
    padding: 17px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--primary);
}
.steps-block__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--head-primary);
    margin-bottom: 15px;
}
.steps-block__item-descr p {
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text-primary);
}
.steps-block__item-descr a {
    display: block;
    margin: 10px 0;
    font-weight: 600;
    color: var(--primary);
}
.steps-block__item-img img{
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 991px) {
    .steps-block__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .steps-block__content {
        grid-template-columns: repeat(1, 1fr);
    }
    .steps-block__item-text {
        padding: 20px;
        flex-direction: row;
    }
    .steps-block__item-img {
        height: 150px;
    }
    .steps-block__item-descr p {
        font-size: 14px;
    }
}
