#services {
    position: relative;
    z-index: -1;
}

.services-title {
    margin: 0 auto;
}

.services-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services-content-item {
    width: calc(100% / 3 - 48px);
    min-width: 324px;
    margin: 40px 24px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .services-content-item {
        width: 100%;
    }
}

.service-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom, #FF7F50, #FEB47B);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto;
}

.service-title {
    font-size: 1.375em;
    margin: 24px 0 12px 0;
}

