.services-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-top: 30px;
    height: 100%;
}
.services-container h1 {
    margin: 0;
}
.services-offered-container p.title {
    margin-bottom: 15px;
}
.services-item-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}
.services-item {
    display: grid;
    grid-template-rows: 250px auto;
    height: auto;
    background: #FFF;
    padding: 10px;
    margin-bottom: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
}
.services-item img {
    width: 100%;
    height:  100%;
}
.services-item-content h2 {
    margin-top:5px;
}

.services-item-content h2 a {
    text-decoration: none;
    color: #111;
    transition: all .3s ease;
}
.services-item-content h2 a:hover {
    color: #213778;
}
.services-overview-p {
    margin-top: 0;
    color: gray;
    font-size: 12px;
}

.services-2 {
    display: flex;
    justify-content: center;
}
.services-2 .services-item {
    width: 350px;
    height: auto;
}
.services-2 img {
    height: 250px;
}
.services-item h2 {
    margin-bottom: 0;
}
.services-item-p {
    margin: 0;
}
.services-item-h2 {
    text-align: center;
}

/* mobile devices */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .services-container {
        padding-top: 0;
        height: 100%;
    }
    .services-item-container {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
    .services-2 {
        display: grid;
    }
    
}

/* ipads / tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    
}

/* small screens and laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .services-container {
        max-width: 1140px;
    }
}
