.services {
    background: #fff;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.services-enum {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -8px;
}
.services-col {
    padding: 0 8px 16px;
    width: 25%;
}
a.services-item,
.services-item {
    border: 1px solid #e1e5ee;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    min-height: 90px;
    padding: 13px 20px;
    position: relative;
    transition: ease 300ms;
}
a.services-item:hover,
.services-item:hover {
    background: #f5f6fa;
}
.services-title {
    color: #1f1f1f;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
}
.services-icon {
    min-width: 50px;
}
.services-popup {
    background: #f24941;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    padding: 10px;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    visibility: hidden;
    text-align: center;
    text-transform: uppercase;
    transition: ease 300ms;
    width: 100%;
}
.services-item:hover .services-popup {
    visibility: visible;
    opacity: 1;
}
.services-popup:before {
    background: transparent;
    border: 10px solid transparent;
    border-top-color: #f24941;
    content: '';
    display: block;
    margin-left: -10px;
    position: absolute;
    bottom: -19px;
    left: 50%;
    height: 0;
    width: 0;
}
.services-item.-hidden .services-title,
.services-item.-hidden .services-icon {
    opacity: .6;
}
@media screen and (max-width: 1199.98px) {
    .services-col {
        width: 33.3333%;
    }
}
@media screen and (max-width: 991.98px) {
    .services-col {
        width: 50%;
    }
}
@media screen and (max-width: 767.98px) {
    .services-col {
        width: 100%;
    }
}