#steps-block {
    padding: 80px 0px;
}
#steps-block .steps{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
#steps-block .step-item{
    display: flex;
    flex-direction: column;
    padding: 30px 35px;
    border-radius: 20px;
    background-color: var(--bg);
    background-repeat: no-repeat;
    background-position: bottom right;
    min-height: 370px;
}
#steps-block .number{
    background: linear-gradient(135deg, #4e4e4e 25.52%, #000000 100%);
    width: 100px;
    height: 100px;
    border: 16px solid white;
    border-radius: 50%;
    font-family: Lato;;
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
#steps-block .name{
    font-family: Lato;;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
    margin-top: 25px;
    margin-bottom: 10px;
}
#steps-block .desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--lText);
    display: block;
}
@media (max-width: 996px) {
    #steps-block .step-item {
        min-height: 300px;
        padding: 10px 15px;
    }
}
@media (max-width: 767px) {
    #steps-block .steps {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 600px) {
    #steps-block {
        padding: 40px 0px;
    }
    #steps-block .step-item {
        min-height: 230px;
    }
    #steps-block .number {
        width: 70px;
        height: 70px;
        border: 5px solid white;
    }
}
@media (max-width: 498px) {
    #steps-block .steps {
        display: flex;
        flex-direction: column;
    }
}