.service-section{
    width: 100%;
}

.service-section .service-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-section .service-container .first-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-section .service-container .first-row .main-heading{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.service-section .service-container .first-row .main-heading h2{
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.service-section .service-container .first-row .main-heading h1{
    font-size: 22px;
}

.service-section .service-container .first-row .main-heading p{
    text-align: center;
}

.service-section .service-container .first-row .main-data{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-section .service-container .first-row .main-data .free-service-table{
    width: 49%;
}

@media (max-width:750px) {

    .service-section .service-container{
        padding: 0px 15px;
    }

    .service-section .service-container .first-row .main-data{
        flex-direction: column;
        gap: 10px;
    }
    
    .service-section .service-container .first-row .main-data .free-service-table{
        width: 100%;
    }
    
}