.w_service {
    position: relative;
    line-height: 1;
    border-radius: 30px;
    overflow: hidden;
    height: 420px;
    width: 100%;
    transition: 0.4s all;
}

.w_service .w_image img{
    height: 100%;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    filter: brightness(0.4);
    transition: 0.4s all;
}


.w_service .w_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 50px 30px 0 30px;
    z-index: 3;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    transition: 0.4s all;
}
.w_service .service-icon {
    margin-bottom: 22px;
    width: 65px;
    transition: 0.4s all;
}
.w_service .service-icon img {
    filter: brightness(0) invert(1);
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: 0.4s all;
}
.w_service .service-title{
    color: #fff;
    transition: 0.4s all;
}
.w_service .service-text{
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    opacity: 0;
    transition: 0.4s all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.w_service:hover .w_content {
    top: 0;
    background-color: var(--theme-color);
    transition: 0.4s all;
}
.w_service:hover .service-text{
    opacity: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}