html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
    background: #fff;
    color: #212529;
}

* {
    box-sizing: border-box;
}



.container {
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}

.row {
    display: flex;
}




/* ------------------------ header section ------------------------ */
.header-section .modal .modal-content .modal-body {
    padding: 0 !important;
}

.error {
    color: #ff0000;
    font-size: 12px;
    margin-top: 6px;
}

.modal-dialog {
    max-width: 70%;
}

.header-logo-box a {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.header-logo-box img {
    width: 58px;
}

.logo-title-box {
    margin: 5px 10px;
}

.logo-title-box h2 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 0.8;
    color: #82c600;
}

.logo-title-box p {
    font-size: 15px;
    color: gray;
    font-weight: 600;
}

/* ----------------------------- End ------------------------- */

ul li span {
    font-size: 1.2rem;
}

.sub-heading-text {
    margin-bottom: 10px;
    padding: 0px;
    color: rgb(35, 32, 32);
    font-weight: 500;
    font-size: 15px;
}

.main-heading-text {
    font-size: 35px;
    color: #000000;
    font-weight: 600;
}

.main-heading-text span {
    color: #057709;
}

/* =================================== */

.card-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f9fafc;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

/* Left Content */
.card-content {
    padding: 40px;
    flex: 1;
    position: relative;
    border-radius: 25px;
}

.badge {
    display: inline-block;
    background: #ffe4e1;
    color: #d9534f;
    font-size: 14px;
    font-weight: bold;
    border-radius: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.card-title span {
    color: #0fb806;
    font-size: 35px;
    font-weight: 600;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.card-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-list i {
    color: #82c600;
    margin-right: 10px;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.deadline {
    font-size: 16px;
    border: 1.5px solid #82c600;
    border-radius: 10px;
    padding: 10px;
    color: #82c600;
    font-weight: bold;
    cursor: pointer;
}

.apply-btn {
    background: #82c600;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.apply-btn:hover {
    background: #04a409;
    transition: transform 0.3s;
}


.card-img-top {
    border-radius: 15px 15px 0px 0px;
}

.card-image {
    flex: 0.8;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 150%;
    height: 100%;
    background: #084d98;
    clip-path: ellipse(80% 50% at 100% 50%);
    z-index: 1;
}

.card-image img {
    position: relative;
    z-index: 2;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        max-width: 90%;
    }

    .card-content {
        padding: 20px;
        text-align: center;
    }

    .card-title {
        font-size: 24px;
    }

    .card-list li {
        font-size: 14px;
    }

    .card-footer {
        flex-direction: column;
    }

    .deadline,
    .apply-btn {
        width: 60%;
        text-align: center;
    }

    .card-image {
        order: -1;
        margin-bottom: 20px;
    }

    .card-image img {
        height: 250px;
    }

    .card-image::before {
        left: 0;
        width: 100%;
        height: 50%;
        clip-path: ellipse(90% 40% at 50% 0%);
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 20px;
        text-align: start;
    }

    .card-content {
        padding: 15px;
    }

    .card-list li {
        text-align: start;
        font-size: 12px;
    }

    .card-image img {
        width: 300px;
    }

    .card-image::before {
        display: none;
    }

    /* .card-container {
        box-shadow: none;
    } */

    /* .deadline{
      width: 200px;
    } */

    .deadline,
    .apply-btn {
        width: 60%;
        text-align: center;
    }
}

/* ------------- End ------------- */

/* ---------------- Second Section counter card ----------------- */

.counter-card {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .card-heading {
    font-size: 25px;
} */

/* .info-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info-card h3 {
    font-size: 35px;
    font-weight: 600;
    color: #82c600;
}

.info-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.divider {
    width: 2px;
    background-color: #ddd;
    height: 50px;
} */

/* ============= End =============== */

.logos img {
    max-width: 50px;
    margin-right: 10px;
}

.text-container {
    max-width: 850px !important;
}

/* .sub-heading {
    color: #6c757d;
} */

.feature-card {
    max-width: 300px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s;
    text-align: center;
    padding: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(165, 254, 138, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.feature-card .feature-icon i {
    color: #82c600;
    font-size: 2rem !important;
}

/* --------UI/UX Bootcamp Industry Experts--------- */

.expert-description-card {
    border-radius: 15px;
    height: 340px;
    max-height: 340px;
    border: .2px solid rgb(241, 238, 238);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: calc(0.9rem + 0.1vw);
    color: #777;
    font-weight: 500;
}

/* ----------- UI-UX Program Section ------------ */

.career-heading {
    font-weight: bold;
    /* color: #ff4b5a; */
    text-align: left;
}

.nav-tabs {
    overflow-x: scroll;
    /* Keeps the element scrollable horizontally */
    -ms-overflow-style: none;
    /* Hides scrollbar in Internet Explorer and Edge */
    scrollbar-width: none;
    /* Hides scrollbar in Firefox */
}

.nav-tabs::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in Chrome, Safari, and Edge */
}

.nav-tabs {
    overflow-x: scroll;
    min-width: 100%;
}

.nav-tabs .nav-link {
    text-align: left;
    border: none;
    color: #777;
    font-size: 1rem;
    font-weight: 500;
    min-width: 180px !important;
    /* overflow-x: scroll; */
}

.nav-tabs .nav-link:hover {
    border-bottom: none;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #82c600;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #82c600;
    font-weight: 500;
}

.bar-chart div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar {
    width: 40px;
    background-color: #1f8c87;
    margin: 5px 0;
}

.bar-light {
    background-color: #d9f2f2;
}

.demand-section i {
    font-size: 2rem;
    /* color: #ff4b5a; */
}

.demand-section p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    max-width: 220px;
    color: #777;
}

.company-logos img {
    max-width: 120px;
    margin: 10px;
}

/* Read More Hidden Content */
#moreContent {
    display: none;
}

#readMoreLink {
    font-size: 18px;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

/* -------------------------- Master 8+ Cutting-Edge Design and AI Tools -------------------------------- */

.icon-container {
    background-color: #e9fee8;
    color: #82c600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.icon-container svg {
    width: 1.5rem;
    height: 1.5rem;
}

.tool-title {
    font-size: calc(1.2rem + 0.2vw);
    font-weight: 600;
    color: #1f2937;
}

.tool-description {
    color: #777;
    font-size: calc(0.9rem + 0.1vw);
}

.title-box {
    max-width: 100%;
}

.right-column img {
    width: 600px;
}



/* -------------------- UI/UX Design Course --------------- */
.success-stories-sec .profile-card {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
    min-height: 320px;
}

.success-stories-sec .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.success-stories-sec .image-wrap {
    width: 20%;
    margin-right: 15px;
}

.success-stories-sec .image-wrap img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}









.success-card img {
    width: 50px;
    object-fit: contain;
}

.after-text {
    color: #82c600;
}

@media (max-width: 720px) {
    .timeline-card-text {
        font-size: 14px;
        font-weight: 700;
    }

}



/* UI/UX Design Course Curriculum Section start */
/* .curriculum-header {
    font-size: 1.8rem;
    display: block;
    font-weight: bold;
    color: #084d89;
} */

.module-sec .module-tabs {
    border-radius: 10px;
    padding: 0.5rem;
}

.module-sec .module-tabs .nav-link {
    color: #333;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    border-radius: 10px;
    min-width: 200px;
    cursor: pointer;
}

.module-sec .nav-tabs .nav-link:hover {
    border: 1px solid #82c600;
    transition: all 0.2s ease-in-out;
}

.module-sec .nav-link p {
    color: black;
}

.module-sec .nav-link h6 {
    font-size: 18px;
    font-weight: 600;
}

.module-sec .module-tabs .nav-link.active {
    border: 1.5px solid #82c600;
    border-bottom: 3px solid #82c600;
    color: #82c600;
    border-radius: 10px;
}

/* .card-content {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

/* .card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
} */

.module-sec .card-content h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #535353;
    margin: 20px 0px !important;
}

.module-sec .topics-list {
    list-style: none;
    max-height: 85px;
    overflow-y: hidden;
    margin-bottom: 20px;
}

.module-sec .topics-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.module-sec .topics-list li i {
    color: #82c600;
}



.module-sec .list {
    list-style: disc;
}
.module-sec .list h4{
    font-size: 18px;
    color: #82c600;
    font-weight: 700;
    margin-bottom: 16px;
}
.module-sec .list li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.module-sec .list li .sub-list {
    list-style: circle;
    margin: 10px 0px 0 50px;
}

.module-sec .list li .sub-list li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
}


.modal .modal-content .modal-body{
    padding: 2rem 3rem;
}


.module-sec #accordion-container .common-sec{
    padding: 10px 20px;
}







/* UI/UX Design Course Curriculum Section end */
.checkbox-list {
    list-style: none;
}

.checkbox-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkbox-list i {
    font-size: 1.2rem;
    color: #28a745;
}






/* certificate-section start */
.certificate-section .on_desktop_view img {
    width: 100%;
}
/* certificate-section end */






/* Ribbon section start */
.scrolling-ribbon-container {
    overflow: hidden;
    position: relative;
}

.scrolling-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3rem;
    padding: 1rem;
    animation: scroll 15s linear infinite;
}

.logos-scrolling-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    padding: 1rem;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.tool,
.logo-box {
    flex: 0 0 auto;
    display: flex;
    column-gap: 20px;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    /* min-width: 120px; */
    width: 120px;
    height: 40px;
}

.tool img {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 60px;
    margin-bottom: 0.5rem;
}

.tool h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}


.logo-box img {
    /* margin-bottom: 0.5rem; */
    object-fit: contain;
}



/* ---------------- Media Query ----------------  */

@media (max-width: 768px) {
    .card-image img {
        display: none;
    }

    .feature-card {
        margin-bottom: 20px;
        max-width: 200px;
    }

    .logos img {
        max-width: 40px;
    }

    .module-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .curriculum-header {
        font-size: 1.2rem;
    }

    .info-card {
        border-radius: 20px;
        margin-top: 20px;
    }

    .title-box {
        max-width: 450px;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .icon-container svg {
        width: 2rem;
        height: 2rem;
    }

    /* .profile-card{
        min-height: auto;
    } */
}

/* @media (max-width: 425px) {
   
}

@media (min-width: 768px) {
 
} */

@media (max-width: 576px) {

    .feature-card {
        margin-bottom: 20px;
        width: 100%;
    }

    .icon-container {
        width: 50px;
        height: 50px;
    }

    .icon-container svg {
        width: 1.2rem;
        height: 1.2rem;
    }
}









/* .success-stories-sec p{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #636363;
    max-width: 60%;
    margin: 0 auto;
}
.success-stories-sec .profile-header p{
    font-size: 16px;
    max-width: 100%;
} */


.review-sec .mbox {
    margin-top: 45px;
}

.review-sec .video_title h4 {
    font-size: 30px;
    color: #fff;
    margin-right: 45px;
}

.review-sec .video_title_box a {
    box-shadow: 0 0 0 0 #fff;
    animation: pulse-white 2s infinite;
    border-radius: 50%;
}

.review-sec .video-cover img.h250 {
    height: 250px;
}

@media screen and (max-width: 992px) {
    .review-sec .row {
        justify-content: center;
        grid-row-gap: 20px;
    }
}




.contact-footer .logo-wrap {
    max-width: 300px;
    width: 300px;
    margin: 0 auto;
    display: block;
    padding-bottom: 40px;
}

.contact-footer .logo-wrap img {
    width: auto;
    display: block;
    height: 72px;
}


@media screen and (max-width: 768px) {
    .contact-footer .logo-wrap img {
        width: auto;
        display: block;
        height: 59px;
        margin: auto;
    }
}

@media screen and (max-width: 400px) {
    .contact-footer .logo-wrap img {
        height: 50px;
    }
}

@media screen and (max-width: 360px) {
    .contact-footer .logo-wrap img {
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 320px) {
    .contact-footer .logo-wrap img {
        height: 41px;
    }
}


.footer .contact-info {
    margin-bottom: 20px;
}

.footer-logo img {
    border-radius: 15px;
    padding: 8px;
    height: 80px;
}






/* our prtners recruit start */
.our_prtners {
    padding: 50px 0px;
    background-color: #fff7f7;
}

.our_prtners .sec_title {
    width: 85%;
    margin: 0 auto;
}

.our_prtners .sec_title h1 {
    font-family: Poppins;
    font-size: 38px;
    font-weight: 700;
    line-height: 49px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.our_prtners .sec_title h1 span {
    color: #82c600;
}

.our_prtners .sec_title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #636363;
    width: 78%;
    text-align: center;
    margin: 0 auto;
}

.our_prtners .mbox {
    margin-top: 45px;
}

.our_prtners .row {
    justify-content: center;
}

.our_prtners .video-cover {
    position: relative;
}

.our_prtners .video_title_box {
    position: absolute;
    bottom: 30px;
    padding: 0 30px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.our_prtners .video_title h3 {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
}

.our_prtners .video_title_box .btn {
    box-shadow: 0 0 0 0 #fff;
    border-radius: 50%;
}

.our_prtners .video-cover img {
    border-radius: 8px;
    width: 100%;
    animation: pulse-white 2s infinite;
}
iframe {
    min-height: 500px;
}
@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgb(221 221 221 / 70%);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


.overlay:target {
    visibility: visible;
    opacity: 1;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.popup-h h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.popup-h .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

iframe {
    border: 0;
}

@media (max-width: 1366px) {
    .popup-h {
        margin: 70px auto;
        padding: 20px;
        background: #fff;
        border-radius: 5px;
        width: 95%;
        position: relative;
        transition: all 2s ease-in-out;
    }
}

@media (max-width: 1366px) {
    iframe {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .our_prtners .sec_title h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .our_prtners .video_title_box {
        bottom: 50px;
        right: 80px;
    }
}

@media (max-width: 576px) {
    .our_prtners .sec_title {
        width: 100%;
    }

    .our_prtners .sec_title h1 {
        font-size: 24px;
        line-height: 34px;
    }

    .our_prtners .sec_title p {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .our_prtners .sec_title h1 {
        font-size: 22px;
    }
}




.modal .modal-content .modal-header {
    justify-content: space-between;
}

.modal .modal-content .modal-header h3 {
    font-size: 32px;
    font-weight: 600;
}


@media screen and (max-width: 992px) {
    .review-sec .row {
        justify-content: center;
        grid-row-gap: 20px;
    }
}


@media screen and (max-width: 576px) {
    .modal-dialog {
        max-width: 100%;
    }
}


/* our prtners recruit end */
    .feature-card {
        min-width: 300px;
        min-height: 172px;
    }
/* Tution Fee section start */
.sec_title h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.sec_title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #636363;
    width: 78%;
    text-align: center;
    margin: 0 auto;
}

.tab-content {
    max-width: 70%;
    margin: 0 auto;
}

.tabination-sec .tab-content .box-wrap {
    background: #fffffff6;
    box-shadow: 0 0rem 3rem #00000017;
    min-height: auto;
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    margin-top: 20px;
}

.tabination-sec .content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 100%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.tabination-sec .content-table thead tr {
    background-color: #82c600;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.tabination-sec .content-table thead tr th {
    color: #fff;
}

.tabination-sec .content-table th,
.content-table td {
    padding: 12px 15px;
    text-align: center;
}

.tabination-sec .content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

#emiModal1 h2 {
    font-size: 22px;
}

/* Tution Fee section end */








/* Module Section start */
.module-sec .on_desktop_view a {
    cursor: pointer;
    margin-top: 10px;
}

/* Module Section end */

























/* footer section start */
.footer-section {
    background-color: #F2F0EF;
    width: 100%;
    position: relative;
}

.footer-section .top-footer {
    padding: 50px 0;
}

.footer-section .top-footer h3 {
    color: #3b3b3b;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-section .top-footer h3 span {
    color: #82c600;
}

.footer-section .top-footer .footer-content ul li {
    color: #82c600;
}

.footer-section .bg-color {
    background-color: #ffffff;
    padding: 30px;
    display: flex;
    border-radius: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.footer-section .logo-wrap {
    max-width: 300px;
    width: 300px;
    margin: 0 auto;
    display: block;
    padding-bottom: 40px;
}

.footer-section .logo-wrap img {
    width: auto;
    display: block;
    height: 72px;
}






.footer-section .top-footer .footer-content .social-info {
    padding: 0;
    margin: 0;
}

.footer-section .top-footer .footer-content .social-info li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    grid-column-gap: 8px;
}

.footer-section .top-footer .footer-content .social-info li a {

    color: #101828;

    text-decoration: none;

    position: relative;

    font-size: 16px;

    font-family: 'Open Sans', sans-serif;

    transition: all 0.3s linear;

}

.footer-section .top-footer .footer-content .social-info li a:hover {

    color: #82c600;
}



.footer-section .top-footer .footer-content .social-info li span {

    font-size: 16px;

}



.footer-section .top-footer .footer-content .social-info li i {

    margin-right: 10px;

    color: #82c600;

    font-size: 16px;

}





/* .footer-section .top-footer .footer-content .social-menu li a .fa{color: #80a948; font-size: 16px;}

.footer-section .top-footer .footer-content .social-menu li a .fa-brands{color: #80a948; font-size: 16px;} */

.footer-section .top-footer .footer-content .social-menu li a {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 40px;

    height: 40px;

    background: #fff;

    text-decoration: none;

    border-radius: 50%;

    box-shadow: 0 4px 10px 2px rgba(136, 174, 96, 0.3);

    color: #82c600;

    transition: all 0.3s linear;

}



.footer-section .top-footer .footer-content .social-menu li a:hover {

    background-color: #82c600;

    color: #ffffff;

}



.footer-section .top-footer .footer-content .social-menu {

    margin: 0;

    padding: 0;

    list-style: none;

}



.footer-section .top-footer .footer-content .social-menu li {

    margin: 0 10px 0 0;

}



.footer-section .top-footer .footer-content .social-menu li i {

    margin: 0;

}





.footer-section .top-footer .footer-menu .services_list ul {

    margin: 0;

    padding: 0;

    list-style: none;

}



.footer-section .top-footer .footer-menu .services_list ul li {

    list-style: none;

    align-items: baseline;

}



.footer-section .footer-menu p {

    margin: 0;

    font-size: 16px;

    font-weight: 400;

    font-family: 'Open Sans', sans-serif;

}



.footer-section .top-footer .footer-menu .services_list li i {

    color: #80a948;

    margin-right: 10px
}





.footer-section .bottom-footer {

    background-color: #343a40;
    color: white;
    padding: 16px 0;
}



.footer-section .bottom-footer .col-lg-12 p {

    color: #ffffff;

    font-family: 'Roboto', sans-serif;

    margin: 0;

    font-size: 14px;

    text-align: center;

}

.footer-section .bottom-footer .col-lg-12 p a {

    color: #ffffff;

    text-decoration: none;

}

.footer-section .bottom-footer .col-lg-12 p a:hover {

    color: #80a948;

}

/* footer section start */