.service_element {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service_categories {
    margin-bottom: 20px;
}

.service__icon img {
    width: initial;
    margin-right: 0.6rem;
    display: inline-block;
}
.service_content h2, .service_content h3 {
    font-size: 2rem;
}

/* Categories*/
.service_categories span { font-weight: 700;}
.service__green { color: #89DE26; }
.service__orange { color: #FF8D27; }
.service__purple { color: #D952CB; }
.service__blue { color: #2D97D7;}

@media(min-width: 2000px) {
    .service_element {
        width: 80%;
        justify-content: space-evenly;
    }
    .service_categories span { font-size: 1.2em;}
    .service_link .btn.btn-primary {
        font-size: 1.2em;
        padding: .75em 1.4em;
    }
}

@media(min-width: 769px) and (max-width: 1024px) {
    .service_content h2, .service_content h3 {
        font-size: 1.6rem;
    }
}
@media(min-width: 592px) and (max-width: 768px) {
    .service_element h2, .service_content h3 { font-size: 1.5rem;}
    .service_element p { font-size: 1rem;}    
}
@media(max-width: 592px) {
    .service_element {
        max-width: 100%;
        margin: 2rem 0;
    }
    #service .service__icon img {
        display: inline-block;
    }
}