.numbers-module{
    background-repeat: no-repeat;
    .grid{
        display: grid;
        gap: 0 30px;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 80px;
        @media (max-width: 1100px){
            grid-template-columns: repeat(2, 1fr);
        }
           @media (max-width: 767px){
            grid-template-columns: repeat(1, 1fr);
             margin-top: 40px;
        }
    }
    .item{
        display: grid;
        grid-row: span 3;
        grid-template-rows: subgrid;
       
        .item__number{
            font-size: 54px;
            font-style: normal;
            font-weight: 800;
            line-height: 40px;
            margin-bottom: 23px; 
            // text-align: center;
        }
        .item__title{
          font-size: 30px;
            font-style: normal;
            font-weight: 600;
            line-height: 30px;
            margin-bottom: 23px;
            //  text-align: center;
        }
         .item__content{
           
        }
    }
}