.service-block {
    width: 31.33%;
    margin: 1%;
    background: #1B2947;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
}

.service-content {
    padding: 1.5rem;
}

.service-img img {
    width: 100%;
}

.services-holder {
    z-index: 7;
}

.service-content h4,
.service-description h4 {
    font-size: 1.25rem;
    font-weight: var(--medium);
    color: var(--lightgray);
    margin-bottom: 1rem;
}

.service-content p {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-img {
    max-height: 15rem;
    overflow: hidden;
}

.service-description {
    position: absolute;
    bottom: -110%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(40 58 96 / 95%) 0% 0% no-repeat padding-box;
    border-radius: 0.5rem;
    opacity: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(3px);
    padding: 2rem;
    transition: all 0.5s;
}

.service-block:hover .service-description {
    bottom: 0;
}

@media screen and (max-width: 992px) {
    .service-block {
        width: 48%;
    }
}

@media(max-width:680px) {
    .service-block {
        width: 100%;
        margin-top: 1rem;
    }
}