.service-item{
    margin-bottom: 1em;
    min-height: 125px;
}

.service-item-interior {
    border-radius: 10px;
    border: 2px solid var(--color-orange-fade);
    padding: 1.5em;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
    text-align: center;
}

.service-item:hover .service-item-interior{
    background: var(--color-orange);
}

.service-item:hover a{
    color: var(--color-white);
}

.service-item-interior h3{
    font-size: var(--font-size-quinary-heading);
    font-family: Poppins;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {
    .services .buttons{
        margin-top: 2em;
    }
}

/*Devices 768px in width*/
@media only screen and (min-width: 48em) {
    .services .buttons{
        margin-top: 2em;
    }
}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {
    .services .row .text{
        padding-right: 4em;
    }

    .services .buttons{
        margin-top: 0;
    }

}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {
    .services .buttons{
        margin-top: 0;
    }
}