/* Services Starts*/
.serviceBox {
    color: #555;
    text-align: center;
    padding: 15px 0 0;
    padding-top: 2.4rem !important
}

.serviceBox .service-icon {
    color: #fff;
    background: var(--secondary-color);
    font-size: 45px;
    line-height: 103px;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.serviceBox .service-icon:before {
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 5px solid var(--secondary-color);
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.serviceBox .title {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.serviceBox .description {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    text-align: center !important;
}


.serv-header {
    position: absolute !important;
    left: 0;
    right: 0;
}

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 40px;
    }
}

/* Services Ends*/