.service-box {
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 18px 14px 25px 14px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.service-box .imgbox {
    width: 100%;
    height: 350px;
    margin-bottom: 15px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.service-box .imgbox img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 10px;
    object-fit: cover;
}
.service-box .imgbox:hover img {
    transform: scale(1.1);
}
.servicebox-wrap {
    padding-right: 19px !important;
    padding-left: 19px !important;
    margin-bottom: 65px;
}
.service-wrapper .row {
    margin-right: -19px;
    margin-left: -19px;
}
.service-wrapper {
    padding-top: 102px;
    background: rgba(246, 239, 246, 0.54);
}
.service-box .text {
    text-align: center;
}
.service-box .text p {
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services h2 {
    padding: 0px 15px;
    margin-bottom: 40px;
}
.service-box h6 {
    font-size: 22px;
}