/* .services {
} */

.services-wrapper {
    position: relative;
    top: -5rem;
    z-index: 990;
}

.service-wrapper {
    
    margin-top: 1rem;
}

.service {
    border-radius: 1.5rem;
    background-color: #e0dcd2;
    padding: 2rem 2rem;
    text-align: center;
    transition: all .2s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px;
    height: 100%;
}

.service:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
}

.service i {
    font-size: 4rem;
    transform: scaleX(-1);
}

.service img {
    width: 4rem;
}

.service .service-title {
    margin-top: .75rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.service .service-param {
    margin-top: .5rem;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(0, 0, 0, .6);
}

.service .service-more span {
    padding: .6rem .9rem;
    font-weight: 700;
    font-size: .85rem;
    background-color: white;
    border-radius: 1.2rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px;
    color: gray;
    transition: all .2s;
}

.service .service-more span:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}