.service-card {
    width: 96%;
    height: 278px;
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.13);
    margin-bottom: 40px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all .5s ease;
}

.service-card:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #0a6562;
    right: 0;
    bottom: -278px;
    border-radius: 0px;
    transition: all .5s ease;
}

.service-card .serv-icon {
    padding: 70px 0 0;
    height: 130px;
    position: relative;
    opacity: 1;
    text-align: center;
    transition: all .5s ease;
}

.service-card h5 {
    padding: 0 5px;
    font-size: 1em;
    margin-top: 45px;
    margin-bottom: 60px;
    text-align: center;
    transition: all .5s ease;
    color: #666;
    position: relative;
}

.service-card p {
    position: relative;
    text-align: center;
    padding: 5px 20px;
    padding-top: 10px;
    opacity: 0;
    transition: all .3s ease;
    font-size: 13px;
    color: #fff;
}

.service-card .service-btn-wrapper {
    position: absolute;
    width: 100%;
    height: 71px;
    left: 0;
    z-index: 2;
    overflow: hidden;
    bottom: 0;
}

.service-card .service-btn-wrapper .serv-btn.orange {
    background: #b5893d;
}

.service-card .service-btn-wrapper .serv-btn {
    text-align: center;
    color: #fff;
    font: normal 1em / 2.5 DroidArabicKufi, arial, sans-serif;
    border-radius: 35px;
    width: 75%;
    margin: 0 1%;
    height: 35px;
    background: #5aaeb0;
    position: relative;
    display: inline-block;
    transition: all .3s ease;
    opacity: 0;
    margin-top: 5px;
    text-decoration: none;
}

.service-card:hover {
    box-shadow: 0px 18px 35px 0px rgba(0, 0, 0, 0.13);
}

.service-card:hover:before {
    bottom: 0;
}

.service-card:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    /* background: #0a6562; */
    /* background: linear-gradient(to top, #375f71 0%, #58656c 100%); */
    background: #eee6d8;
    right: 0;
    bottom: -278px;
    border-radius: 0px;
    transition: all .5s ease;
}

.service-card:hover h5 {
    color: #000;
    margin-top: 35px;
    margin-bottom: 8px;
}

.service-card:hover p {
    transition-delay: .2s;
    opacity: 1;
    padding-top: 5px;
}

.service-card .service-btn-wrapper .serv-btn.orange {
    background: #b5893d;
}

.service-card:hover .serv-btn {
    transition-delay: .35s;
    opacity: 1;
    margin-top: 10px;
}

.service-card:hover .serv-icon {
    margin-top: -130px;
    opacity: 0;
}

.service-card img {
    max-width: 65%;
    width: fit-content;
    max-height: 90px;
    border-radius: 10px;
}

.accordion-button:focus {
    border-style: none !important;
}