/* module_services.css */
.module_services {
    flex-direction: column;
    background-color: #F6F8F8;
    margin: 0;
    padding: 60px 0 10px 0;
    align-items: center;
}

.module_services .header {
    padding: 0 20px;
}

.module_services .header h2 {
    color: #000000;
}

.module_services .header h2 span {
    color: #007481;
}

.module_services .services {
    flex-direction: row;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    flex-wrap: wrap;
}

.module_services .services .wrapper {
    flex-direction: row;
    display: flex;
    justify-content: center;
    /*width: 100%;*/
    flex-wrap: wrap;
}

.module_services .services .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
    /*width: 292px;*/
    width: 275px;
}

.module_services .services .service i {
    margin-bottom: 10px;
    height: 100px;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100px;
    background-position-y: 50%;
}

.module_services .services .service a {
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #007481;
    font-size: 13px;
    line-height: 15px;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    flex: auto;
}

.module_services .services .service a:hover,
.module_services .services .service a:focus {
    background-color: #052e33;
}

@media only screen and (max-width: 1280px) {
    .module_services {
        padding: 60px 0 0 0;
    }
    
    .module_services .services {
        flex-wrap: wrap;
        padding-bottom: 5px;
    }
    
    .module_services .services .service a {
        margin-bottom: 55px;
    }
}

@media only screen and (max-width: 1024px) {
    /*.module_services .services .service {
        padding: 0 40px;
        width: 372px;
    }*/
}

@media only screen and (max-width: 767px) {
    .module_services .services .service {
        width: 314px;
    }
    
    .module_services .services {
        flex-wrap: wrap;
    }
    
    .module_services .services .service {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 680px) {
    .module_services .services {
        margin: 0;
    }
    
    .module_services .services .wrapper {
        width: 100%;
    }
    
    .module_services .services .service {
        padding: 0 20px;
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    /*.module_services .header h2 {
        font-size: 40px;
        line-height: 40px;
    }*/

    /*.module_services .header h2 span {
        font-size: 13px;
        line-height: 13px;
    }*/
    
    .module_services .services .wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .module_services .services {
        margin: 0 20px;
    }
    
    .module_services .services .service {
        width: 100%;
        padding: 0;
    }
    
    .module_services .services {
        padding-bottom: 25px;
    }
    
    .module_services .services .service a {
        letter-spacing: 1.5px;
        margin-bottom: 35px;
    }
}
