.-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-50 {
    margin-bottom: 50px;
}
._title {
    font-size: 30px;
    line-height: 125%;
    font-weight: bold;
}
.-sub_title {
    font-size: 20px;
    margin-bottom: 20px;
}



@media screen and (max-width: 1023px){
    .-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px){
    .-grid-4 {
        grid-template-columns: 1fr;
    }
    .-grid-3 {
        grid-template-columns: 1fr;
    }
    ._title {
        font-size: 22px;
    }
    .-sub_title {
        font-size: 15px;
    }
    .table_wrap {
        overflow: scroll;
    }
}