.howto h2{
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1;
    text-transform: uppercase;
    color: #0A111D;
    font-size: 52px;
}

.howto h3 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0;
}

.howto p {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #727786;
    margin: 0;
}
.howto.wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 120px;

}

.howto div {
    box-sizing: border-box;
    display: flex;
}

.howto-inner {
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.howto-item {
    width: calc(33.333% - 24px);
    flex-direction: row;
    border-radius: 8px;
    gap: 20px;
    padding: 20px;
    background: #F7FAFF;
    justify-content: left;
    align-items: center;
}

.howto-item-title{
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #0A111D;
}
.howto-number{
    width: 40px;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FF4A4A;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .howto h2 {
        font-size: 36px;
    }

    .howto-item {
        width: 100%;
    }

    .howto-item-title {
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    .howto.wrap {
        margin: 60px auto;
    }
}