.number{
    padding-top: 107px;
    position: relative;
}

.number::before{
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 627px;
    aspect-ratio: 627 / 837;
    background: url(../img/sec4_bg.png) no-repeat center center / cover;
}

.number__title{
    position: relative;
    display: inline-block;
}

.number__title::before{
    position: absolute;
    content: "";
    width: 480px;
    aspect-ratio: 480 / 95;
    background: url(../img/numbers.svg) no-repeat center center / cover;
    bottom: -35%;
    right: 33px;
    transform: translateX(100%);
}

.number__items{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 48px;
    position: relative;
}

.number__item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(33.3333% - 30px * 2 / 3);
    background: #F9F9F9;
    padding: 24px 10px;
    border-radius: 5px;
    position: relative;
}

.number__heading{
font-weight: 700;
font-size: 20px;
line-height: 100%;
letter-spacing: normal;
text-align: center;

}

.number__count{
    font-family: Lato;
font-weight: 700;
font-size: 64px;
line-height: 80%;
letter-spacing: normal;
font-family: "Lato", sans-serif;
margin-top: 4px;
color: #0F65EF;

}

.number__count small{
font-weight: 700;
font-size: 20px;
line-height: 100%;
letter-spacing: normal;
}

.number__comment{
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: normal;
text-align: center;
margin-top: 12px;
}

@media (max-width: 991px) {
    .number__title::before{
        position: absolute;
        content: "";
        width: 251px;
        aspect-ratio: 96 / 19;
        background: url(../img/sp/numbers_sp.svg) no-repeat center center / cover;
        bottom: -30px;
        right: -19px;
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    .number{
        padding-top: 59px;
        position: relative;
    }
    
    .number::before{
        content: "";
        position: absolute;
        top: 50px;
        right: 0;
        width: 627px;
        aspect-ratio: 627 / 837;
        background: url(../img/sec4_bg.png) no-repeat center center / cover;
    }
    
    .number__title::before{
        position: absolute;
        content: "";
        width: 251px;
        aspect-ratio: 96 / 19;
        background: url(../img/sp/numbers_sp.svg) no-repeat center center / cover;
        bottom: -69%;
        right: -19px;
        transform: translateX(0%);
    }
    
    .number__items{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 32px;
        position: relative;
    }
    
    .number__item{
        width: calc(50% - 16px * 1 / 2);
        background: #F9F9F9;
        padding: 24px 10px;
    }
    
    .number__heading{
    font-size: 18px;
    
    }
    
    .number__count{
    font-size: 48px;
    margin-top: 12px;
    }
    
    .number__count small{
    font-size: 18px;
    }
    
    .number__comment{
    font-size: 14px;
    margin-top: 12px;
    }
}