/* SCHOOL CATEGORY */
.school-category .column {
    float:left;
    width:33.33%;

}
.school-category .school-cat-name {
    min-height:200px;
    line-height:200px;
    margin:5px;
    text-align:center;
    box-sizing: border-box;
    padding: 40px 10px 20px;
    line-height:1.3em;
    position:relative;

}
.school-category .school-cat-name::before {
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    left:0px;
    top:0px;
    background:rgba(0,0,0,0.5);
    transition:all ease 0.3s;
}
.school-cat-name:hover::before {
    background:rgba(33,55,117,0.5);
}
.heading-browse-by-categories {
    margin-bottom:0;
}

.school-category .school-cat-name a {
    color:#FFF;
    font-size:20px;
    font-family: "Poppins", sans-serif;
    line-height:1.2em;
    position:relative;
}

/*EDUCATION SEARCH FORM  */
.education_search_form {
    background:#F1F1F1;
    border:1px solid #ccc;
    padding:20px;
}
.education_search_form h3 {
    margin-top:0;
    margin-bottom: 10px;
}
.education_search_form .field {
    box-sizing:border-box;
    padding:0 5px;
}
.education_search_form .field {
    float:left;
    width:22.5%;
}
.education_search_form .field select,
.education_search_form .field input[type="submit"],
.education_search_form .field input[type="text"]
{
    width:100%;
    background:#FFF;
}
.education_search_form .field select,
.education_search_form .field input[type="text"],
.education_search_form .field input[type="submit"] {
    border:1px solid #ccc;
    line-height:40px;
    border-radius:0px;
    height: 40px;
    font-size:14px;
}
.education_search_form .field input[type="submit"] {
    background:#213775;
    padding: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}


.education_search_form .field.edu-form-search {
    //width:30%;
}
.education_search_form .field.edu-form-search-btn {
    width: 10%;
}
body.search-results .education_search_form.mini {
    display:none;
}
.education_search_form.mini .field {
    float:left;
    width:100% !important;
    margin-bottom:10px;
}
.education_search_form.mini h3 {
    font-size:20px;
}

@media only screen and (max-width: 768px) {
    .school-category .column {
        float:left;
        width:30%;

    }
    .education_search_form .field {
        float:left;
        width:100% !important;
        margin-bottom:10px;
    }
}

@media only screen and (max-width: 480px) {
    .school-category .column {
        float:none;
        width:100%;

    }
    .school-entry .school-details h4 {
        margin-top:0;
    }

}