.service-tabs {
    max-width: 80%;
    display: flex;
}
.service-tabs ul {
    list-style-type: none;
    padding: 0;
    width: auto;
    max-height: fit-content;
}
.service-tabs ul li {
    display: block;
    text-align: center;
}
.service-tabs ul li a {
    display: block;
    text-decoration: none;
    background: #11111a;
    font-size: 16px;
    padding: 1rem 1.5rem;
    max-width: 200px;

    /* Below changes done by Ashish */
    /* color: rgba(255, 255, 255, .6); */
    color: white;
    transition: all 0.2s ease-in-out;
}
.service-tabs ul li a.active {
    background: #fff;
    color: #2c2c2c;
}
.service-tabs ul li a:hover:not(.active) {
    color: #fff;
}
.service-tabs section {
    background: #fff;
    padding: 1.5rem 2.5rem;
    display: none;
    width: 80%;
}
.service-tabs section.active {
    display: block;
}

@media screen and (max-width: 767px) {
    .service-tabs {
        max-width: 100%;
    }
    .service-tabs ul {
        max-height: fit-content;
    }
    .service-tabs ul li {
        display: block;
        text-align: left;
        justify-content: left;
    }
    .service-tabs ul li a {
        font-size: 14px;
        width: fit-content;
    }

}
