#why_cutbase {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: calc(80px - 1.5rem);

    box-sizing: border-box;

    background-color: #121518;
}

#why_cutbase .title {
    color: white;
}

#why_cutbase .sub_title {
    color: white;
}

.service_point_section {
    width: 100%;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service_point {
    width: calc( (100% - 24px)/2 );
    padding: 24px 24px;
    margin-bottom: 24px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 8px;
    background-color: white;
}

.point_headers {
    width: 100%;
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    
    align-items: flex-start;
}

.point_numbering {
    width: 48px;
    height: 48px;
    margin: 0;
    margin-bottom: 8px;
    padding: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-grow: 0;
    flex-shrink: 0;

    font-size: 24px;
    font-weight: 600;
    text-align: center;

    border-radius: 8px;
    color: white;
    background-color: black;
}

.point_title {
    margin: 0;

    font-size: 24px;
    font-weight: 500;
}

.point_description {
    margin: 0;

    font-size: 1rem;
    line-height: 1.5rem;
}

@media screen and (max-width: 585px) {
    .service_point_section {
        flex-direction: column;
    }

    .service_point {
        width: 100%;
    }

    .point_numbering {
        font-size: 20px;
    }

    .point_title {
        font-size: 20px;
    }

    .point_description {
        font-size: 14px;
    }
}