/* CSS Document */

#feature {
}

#feature .feature_items {
    width: 100%;
    background-color: #EBEBEB;
    padding: 60px 0;
}

#feature .feature_items .feature_list {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .feature_items .feature_list .feature_box {
    width: 48%;
    padding: 15px;
    background-color: #fff;
    height: 240px;
    margin-bottom: 4%;
}


#feature .feature_items .feature_list .feature_box .feature_box_number {
    font-weight: bold;
    font-size: 36px;
    background-color: #F29600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 14px;
}

#feature .feature_items .feature_list .feature_box .feature_box_heading {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: bold;
    color: #F29600;
    text-align: center;
}


#feature .feature_items .feature_list .feature_box .feature_box_text {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    #feature .feature_items .feature_list {
        flex-direction: column;
    }

    #feature .feature_items .feature_list .feature_box {
        width: 70%;
        height: inherit;
    }
}

@media screen and (max-width: 767px) {
    #feature .feature_items .feature_list .feature_box {
        width: 100%;
    }
    
    #feature .feature_items .feature_list .feature_box .feature_box_number {
        font-size: 24px;
    }

    #feature .feature_items .feature_list .feature_box .feature_box_heading {
        font-size: 18px;
    }


    #feature .feature_items .feature_list .feature_box .feature_box_text {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
    }
}





.contact_wrapper {
    text-align: center;
    padding: 70px 0 0 0;
}

.contact_wrapper .contact_lead {
    margin-bottom: 24px;
}

.contact_wrapper .contact_link {
    padding: 12px 68px;
    background-color: #F29600;
    font-weight: bold;
    color: #fff;
    border: 1px solid #F29600;
}

.contact_wrapper .contact_link:hover {
    color: #F29600;
    background-color: #fff;
}

.contact_wrapper .contact_link span {
    margin-left: 14px;
}
