.services_section {
    padding-top: 6.5rem;
    padding-bottom: 4.25rem;
    background-color: #45a29e;
}

.serviceBox {
    text-align: center;
    padding: 40px 16px 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 1;
}

.serviceBox:after, .serviceBox:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease 0s;
}

.serviceBox:after {
    border-bottom: 2px solid #c5c6c7;
    border-top: 2px solid #c5c6c7;
    transform: scaleX(0);
    transform-origin: 0 100% 0;
    z-index: -1;
}

.serviceBox:before {
    border-left: 2px solid #c5c6c7;
    border-right: 2px solid #c5c6c7;
    transform: scaleY(0);
    transform-origin: 100% 0 0;
    z-index: -1;
}

.serviceBox:hover:after {
    transform: scaleX(1);
}

.serviceBox:hover:before {
    transform: scaleY(1);
}

.serviceBox .service-icon i {
    padding-bottom: 20px;
    font-size: 35px;
    line-height: 35px;
    color: #0b0c10;
    transition: all 0.3s ease 0s;
}

.serviceBox .service-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0b0c10;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section_service_p {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #1f2833;
    margin-bottom: 1.5rem;
}

.serviceBox .service-content p {
    color: #1f2833;
    font-size: 1rem;
    font-weight: 600;
    line-height: 26px;
}

.serviceBox a:hover, .serviceBox:hover .service-icon i {
    color: #c5c6c7;
}

@media screen and (max-width: 990px) {
    .serviceBox {
        margin-bottom: 10px;
    }
}

/* section header */

.section_services {
    text-decoration: none;
    display: block;
    padding: 5px 0;
    line-height: 1;
    font-weight: bold;
    position: relative;
    font-weight: 800;
    z-index: 1;
    text-align: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #c5c6c7, #c5c6c7 50%, #0b0c10 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
}

.section_services:before {
    display: block;
    content: '';
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background: #c5c6c7;
    transition: all 0.3s ease-in-out;
}

.section_services:hover {
    background-position: 0%;
}

.section_services:hover:before {
    margin-left: 25%;
    width: 50%;
}