
/*Services*/

.services-section {
    background: #F9FAF9;
}

.services-header {
    width: max-content;
    border-bottom: 2px solid #F1592B;
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
}

.services-sub-header {
    font-size: 40px;
    font-weight: 400;
    color: #000B41;
    max-width: 35%;
    line-height: 1.4;
    margin-top: 20px;
}


.services-link {
    width: max-content;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    background: #072a70;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
    border-radius: 6px;
}

.service-card {
    background: #fff;
    padding: 30px !important;
    border-radius: 20px;
    text-decoration: none;
    height: 350px;
    transition: all .4s ease-in-out;
    position: relative;
}

@media(max-width:575px) {
    .services-header {
        font-size: 30px;
    }

    .services-sub-header {
        font-size: 18px;
        max-width: 90%;
    }

    .services-line {
        flex-direction: column;
        gap: 20px;
    }
}

.service-card img {
    width: 64px;
    height: 64px;
}

.service-card-header {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-right: 15px;
}

.service-card-text {
    color: #808380;
}

.service-number {
    color: #98A393;
    font-size: 14px;
}

.service-card .line-container {
    display: flex;
    align-items: center;
    gap: 0px;
}

.service-card .dot {
    width: 8px;
    height: 8px;
    background-color: #FFE8E1;
    border-radius: 50%;
}

.service-card .line {
    width: 98%;
    height: 2px;
    background-color: #FFE8E1;
}

.service-card-footer {
    width: calc(100% - 60px);
    left: 30px;
    bottom: 30px;
    position: absolute;
}

.service-detail-link {
    text-decoration: none;
    color: #1075BD;
    text-transform: capitalize;
    display: block;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 400;
}

.service-card:hover {
    background: #E6F3FC;
}

@media(max-width:575px) {
    .service-card img {
        width: 30px;
        height: 30px;
    }

    .service-card-header {
        /* font-size: 20px; */
    }

    .service-card-text,
    .service-detail-link {
        font-size: 13px;
    }
}

@media(min-width:575px) and (max-width:991px) {
    .services-header {
        font-size: 40px;
    }

    .services-sub-header {
        font-size: 18px;
        max-width: 90%;
    }

    .service-card img {
        width: 45px;
        height: 45px;
    }

    .service-card-header {
        font-size: 20px;
    }

    .service-card-text,
    .service-detail-link {
        font-size: 16px;
    }

    .service-card {
        height: 400px;
    }
}

@media(min-width:992px) and (max-width:1199px) {

    .services-sub-header {
        max-width: 90%;
        font-size: 36px;
    }

    .service-card {
        height: 420px;
    }
}
@media(max-width:575px){
    .service-card{
        padding: 10px !important;
        height: 300px;
    }
    .service-card-header{
        font-size: 17px;
    }
    .service-card-footer{
        width: calc(100% - 20px);
        left: 10px;
        bottom: 10px;
    }
}

