.services {
    background-color: #F3F2ED;
}

.services-grid {
    display: grid;
    justify-content: center;
}

.services-title h6 {
    margin-top: 110px;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #0d3c00;
    letter-spacing: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.services-title h5 {
    font-family: 'Poppins', sans-serif;
    color: #0d3c00;
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.1em;
}

.services-title h5::after {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.services-content {
    margin-top: 50px;
    margin-bottom: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 60px;
}

.services-content img{
    margin-left: auto;
    margin-right: auto;
    border-radius: 160px;
    max-width: 250px;
}

.services-content h2{
   text-transform: uppercase;
   font-family: 'Raleway', sans-serif;
   font-weight: 600;
   text-align: center;
   margin-top: 20px;
   color: #0d3c00;
}

.services-content a img {
    transition: .5s;
}

.services-content a:hover img {
    transform: scale(1.05);
}

@media only screen and (min-width: 750px) and (max-width:1350px) {
    .services-content {
        margin-top: 50px;
        margin-bottom: 90px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 60px;
    }
}
@media only screen and (max-width:749px) {
    .services-content {
        margin-top: 50px;
        margin-bottom: 90px;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }
}