

.how-to__steps {
    margin-top: 50px;
    padding-left: 55px;
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr;

    gap:80px;
}

.how-to__step {
    font-size: 14px;
    line-height: 23px;
    position: relative;

}

.how-to__step:nth-of-type(3n) {
    margin-right: 0;
}

.how-to__step:before {
    color: rgba(177, 229, 223, 0.7);
    font-size: 80px;
    line-height: 23px;
    font-weight: bold;
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -55px;
    top: 25px;
}
@media (min-width: 576px) {
    .how-to__steps {
        grid-template-columns: repeat(2, 1fr);
        }
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
    .how-to__steps {
    grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {

}
