@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
@import url("./bootstrap5.3.8.css");
@import url("./owl.carousel.min.css");
@import url("./owl.theme.default.min.css");


a {
    text-decoration: none;
}

/* @media screen and (min-width:1200px) {
    .container {
        max-width: 1240px;
    }
} */


body {
    font-family: "Kanit", sans-serif;
}

p {
    font-size: 14px;
}

.aic {
    align-items: center;
}

.aie {
    align-items: end;
}

.tac {
    text-align: center;
}


.feature-list {
    margin-top: 20px;
    padding-left: 30px;

    li {
        list-style: none;
        position: relative;
        font-weight: 500;
        line-height: 26px;

        &:not(:last-child) {
            margin-bottom: 20px;
            border-bottom: 1px solid #E8E7ED;
            padding-bottom: 20px;
        }

        &::before {
            content: "";
            background-image: url("../image/rht_arw.png");
            background-size: 100%;
            background-repeat: no-repeat;
            width: 18px;
            height: 18px;
            position: absolute;
            left: -28px;
            top: 5px;
        }
    }
}

.sec_title {

    font-weight: 500;
    font-size: 63px;
    margin-bottom: 40px;

    @media screen and (max-width:1400px) {
        font-size: 50px;

    }

    span {
        color: #AD004B;

    }
}


/* Header */
header {
    background-image: url("../image/home/banner_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff !important;
    position: relative;
    padding-block: 10px;
    z-index: 1;
}

.navbar_call_sms {
    display: flex;
    width: 100%;
}

header .header_child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 230px;
    height: 69px;
}

header .right-side {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: center;
    justify-content: center;
}

header nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

header nav a {
    text-decoration: none;
    font-size: clamp(16px, 2vw, 18px);
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

header nav a:hover,
header nav a.active {
    color: #AD004B;
}

header .dropdown {
    position: relative;
}

header .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    white-space: nowrap;
    border-radius: 12px;
    padding: 10px;
}

header .dropdown-content a {
    display: block;
    padding: 6px 10px;
    color: #333;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 4px;
}

header .dropdown-content a:hover {
    color: #ffffff;
    background-color: #6a5acd;
}

header .dropdown-content a.active-sub {
    color: #ffffff;
    background-color: #6a5acd;
}

header .dropdown:hover .dropdown-content {
    display: block;
}

header .btn {
    background: #AD004B;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 2px;
}

header .btn:hover {
    border: 1px solid #AD004B;
    color: #AD004B;
}

header .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

header .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* header end */


/* banner start */
.banner {
    background: url("../image/home/banner_bg.png") no-repeat center/cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;

    img {
        width: 100%;
    }

    h1 {
        font-weight: 500;
        font-size: clamp(32px, 3.7vw, 80px);
        line-height: 73px;
        margin-bottom: 40px;
    }

    p {
        font-weight: 400;
        font-size: clamp(14px, 2vw, 18px);
        max-width: 540px;
        margin-bottom: 40px;

    }

    .stores_app {
        margin-top: 10px;

        a {
            display: inline-block;
            margin-right: 12px;

            img {
                width: 150px;
                max-width: 100%;
            }
        }
    }

    @media(max-width: 992px) {
        .hide {
            display: none;
        }

        .stores_app {
            justify-content: center;
        }

        &::after {
            display: none;
        }
    }

    /* Banner Right Mobile Image */
    .hand_mobile {
        position: absolute;
        width: 34%;
        bottom: -60px;
        right: -18px;

        @media(min-width: 1500px) {
            width: 30%;
            right: 50px;
        }

        @media(max-width: 992px) {
            width: 38%;
            right: -10px;
            bottom: -40px;

        }

        @media(max-width: 768px) {
            position: relative;
            width: 55%;
            margin: 40px auto 0;
            right: 0;
            bottom: 0;
            display: block;
        }

        @media(max-width: 480px) {
            width: 70%;
        }
    }

    /* Bottom White Fade */
    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 180px;
        background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
        pointer-events: none;
    }


    /* ------- Responsive Padding ------- */
    @media(max-width: 992px) {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    @media(max-width: 768px) {
        padding-top: 50px;
        padding-bottom: 70px;

        h1 {
            text-align: center;
        }

        p {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .stores_app {
            text-align: center;

            a img {
                width: 130px;
            }
        }
    }

    @media(max-width: 480px) {
        padding-top: 40px;
        padding-bottom: 50px;

        h1 {
            font-size: clamp(24px, 7vw, 36px);
        }

        p {
            font-size: 14px;
        }
    }
}

/* banner end */

/* about start */

.medical_Professionals_sec {
    margin-top: 30px;
}

.administering_img img {
    width: 100%;
}

.administering_content {
    padding-left: 55px;
}

.administering_content h3 {
    font-size: 40px;
    line-height: 62px;
    font-weight: 500;
    margin-bottom: 40px;
}

.administering_content h3 span {
    color: #7468F1;
}

.administering_content p {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.74px;
    margin-bottom: 20px;

}

/* about  end */

.vision_sec {
    margin-top: 50px;
    margin: auto;

    .vision_card {
        background-color: #FEF7FA;
        padding: 25px;
        border-radius: 12px;
        text-align: left;
        min-height: 340px;

        img {
            height: 50px;
        }

        /* p {
            margin-top: 20px;
            font-size: clamp(14px, 2vw, 18px);
            line-height: 34px;
        } */

    }
}

/* our vision-- start */

.what_we_offer {

    position: relative;
    padding: 110px 0 0px;

    .row {
        row-gap: 1.875rem;
    }

    .ourvision_para {
        line-height: 32px;
        font-size: 18px;
    }

    ul {
        margin-top: 30px;

        width: 80%;

        li {
            list-style: none;
            position: relative;
            line-height: 28px;
            font-weight: 400;
            font-size: clamp(14px, 2vw, 18px);

            &:not(:last-child) {
                margin-bottom: 28px;
            }

            &::before {
                content: "";
                background-image: url("../image/rht_arw.png");
                background-repeat: no-repeat;
                background-size: 100%;
                width: 20px;
                height: 20px;
                position: absolute;
                left: -30px;
                top: 5px;
            }
        }
    }





    .tabs {

        .custmer_vendor {
            background: #F9F9F9;
            border: 2px solid #E2E2E2;
            padding: 2px;
            border-radius: 6px;
            display: inline-block;
            margin: 20px 0;

        }

        .tab-btn {
            padding: 8px 50px;
            cursor: pointer;
            font-weight: 600;
            border-radius: 6px;
            margin-right: -4px;
            font-size: clamp(14px, 2vw, 18px);
            transition: 0.2s ease;
            border: unset;
            background-color: transparent;

            &.active {
                background: #AD004B;
                color: #fff;
                border-color: #AD004B;
            }
        }

        .tab-content {
            animation: fadeIn 0.3s ease forwards;



            img {
                width: 100%;
                border-radius: 12px;
                display: block;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

}


/* what we solve start */
.what_we_solve .solution_para {
    /* margin-bottom: 20px; */
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding-left: 15px;
    margin: 20px 0px 20px;
}

.what_we_solve .main_head {
    font-size: 22px;
    font-weight: 500;
    color: #1b2945;
    margin-bottom: 20px;

}

.what_we_solve .center_txt {
    font-size: 20px;
    font-weight: 500;
    color: #1b2945;
    margin-bottom: 20px;

}

.what_we_solve .vision_card ul li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}



/* how it works-- start */


.customer_app_overview {
    margin-top: 140px;

    .row {
        img {
            width: 78%;
            margin: auto;
            display: flex;
        }
    }

    .feature-list {
        li {
            font-size: 18px;

            &:not(:last-child) {
                border-bottom: unset;
            }
        }
    }

    .feature-list {
        li {
            &:not(:last-child) {
                margin-bottom: unset;
                padding-bottom: 30px;
            }
        }
    }

    .sec_title {
        margin-bottom: 40px;
    }
}

.customer_app_para {
    color: #161A25;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 40px;
}

/* how it works-- end */

/* key features */

.bt_tc {
    margin: 100px 0px 140px 0px;
}

.bt_tc_sections {
    display: flex;
    margin-top: 90px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.categories {
    background: linear-gradient(188.77deg, rgb(238 1 106 / 76%) -65.71%, rgba(255, 255, 255, 0.6) 37.74%);
    padding: 50px 30px 30px;
    border-radius: 25px;
    width: 380px;
    box-shadow: 0px 5px 30px 0px #19213D0F;

}

.categories h5 {
    font-weight: 500;
    font-size: 25px;
    text-align: center;
    color: #161A25;
    margin-bottom: 40px;
}

.categories ul {
    padding-left: 0px;
}

.categories ul li {
    font-weight: 400;
    font-size: 18px;
    color: #161A25;
    margin-bottom: 25px;
    list-style: none;
}

.categories ul li i {
    font-size: 12px;
    color: #d6025e;
    padding-right: 25px;
}

/* keyfeatures end */

/* why us --start */

.mission_sec {
    background-color: #FFE3EF;
    padding: 40px;
    border-radius: 20px;
    margin-top: 100px;

    .row {
        row-gap: 30px;
    }

    .mission_card {
        background-color: #fff;
        padding: 25px;
        border-radius: 18px;
        border: 2px solid #E2E2E2;
        height: 100%;
        text-align: left;

        img {
            height: 55px;
        }

        h5 {
            font-weight: 500;
            margin-top: 25px;
            min-height: 40px;
            line-height: 25px;
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 20px;
        }

        p {
            margin-top: 10px;
            font-size: clamp(15px, 2vw, 17px);
            line-height: 26px;
        }
    }
}

.whycooseus li {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* why us--end */

/* contact section start */

.banner_section {
    background-image: url("../image/contact_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    margin-top: 50px;
}

.banner_section .right_side_content {
    position: relative;
    top: 50px;
    row-gap: 30px;
}

.content-section {
    margin-bottom: 65px;
}

.content-section span {
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 12.7px;
    padding: 8px 20px;
    font-weight: 600;

    strong {
        color: #1468fb;
    }
}

.main-headline {
    font-weight: 500;
    font-size: 52px;
    line-height: 78px;
    letter-spacing: -0.12px;
    color: #fff;
}

.subheading {
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 27px;
    letter-spacing: 0.68px;
    color: #fff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px 0 #00000026;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group textarea {
    border-radius: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b7fed;
    box-shadow: 0 0 0 3px rgba(155, 127, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    color: #6b7280;
}

.required-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
    text-align: left;
}

.submit-btn {
    background: #AD004B;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 40%;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 127, 237, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact a {
    text-decoration: none;
    color: #ffffff;

    font-size: clamp(14px, 2vw, 18px);
    line-height: 100%;
    letter-spacing: 0.51px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.social_media_icon {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* contact section end */



/* Footer */
footer {
    background-color: #ffffff;
    padding: 60px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 100px auto 0;

    box-shadow: 0 -20px 40px 0 rgba(155, 141, 208, 0.10);
}

footer ul {
    padding: 0;
}

footer .logo-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

footer .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

footer .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

footer .logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

footer .logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
    line-height: 1.2;
}

footer .logo-text .line1,
footer .logo-text .line2 {
    display: block;
}

footer .description {
    color: #6b7280;
    line-height: 1.6;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 24px;
}

footer .footer-content {
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

footer .social-links {
    display: flex;
    gap: 12px;
}

footer .social-link img {
    width: 20px;
}

footer .footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
}

footer .footer-links {
    list-style: none;
}

footer .footer-links li {
    margin-bottom: 12px;
}

footer .footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    transition: color 0.2s ease;
}

footer .footer-links a:hover {
    color: #fec12c;
}

footer .contact-info-sec {
    list-style: none;
}

footer .contact-info-sec li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
}

footer .contact-info-sec li svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: #C10446;
    color: #C10446;
}

footer .contact-info-sec a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #C10446;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
}

footer .contact-info-sec a:hover {
    color: #C10446;
}

footer .footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright {
    color: #222B45;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    width: 100%;

    p {
        margin: 0;
    }
}

footer .footer-social {
    display: flex;
    align-items: center;
}

footer .footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer .footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: #6b7280;
    transition: fill 0.2s ease;
}

footer .footer-social-link:hover {
    border-color: #667eea;
    background-color: #667eea;
}

footer .footer-social-link:hover svg {
    fill: white;
}

footer .get_in_touch_sec span {
    color: #fec12c;
    font-weight: 600;
}

footer .description_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4F4F55;
}



.foot_end {
    display: flex;
    justify-content: end;
}


/* footer end */

/* responsive ---- start */

@media screen and (max-width: 1400px) {
    .what_we_offer {
        .tabs {
            .tab-content {

                .tab_1_img,
                .tab_2_img {
                    img {
                        &:nth-child(1) {
                            right: 74px;
                            width: 73%;
                        }

                        &:nth-child(2) {
                            width: 77%;
                        }
                    }
                }
            }
        }
    }

    .categories {
        padding: 30px 20px 30px;
        width: 300px;
    }

    .categories h5 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .categories ul li {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:1200px) {
    .what_we_offer {
        .ourvision_para {
            line-height: 32px;
            font-size: 16px;
        }
    }

    .what_we_solve .vision_card ul li {
        font-size: 16px;
    }

    .what_we_solve .main_head {
        font-size: 18px;
    }

    header nav {
        gap: 25px;
    }

    header nav a {
        font-size: 16px;
    }

    header .contact-info a {
        font-size: 16px;
    }

    header .btn {
        padding: 6px 14px;
        font-size: 10px;
    }

    .categories {
        padding: 30px 20px 30px;
        width: 295px;
    }

    .bt_tc_sections {
        gap: 20px;
        row-gap: 50px;
    }

    .categories ul li {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .categories h5 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .categories ul li i {
        font-size: 10px;
    }

    .bt_tc {
        margin: 100px 0px 100px 0px;
    }

    footer .footer-links a {
        font-size: 14px;
    }

    .footer-section .footer_section1 {
        padding: 0;
    }

    .administering_content h3 {
        font-size: 27px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .whycooseus li {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:1040px) {
    .logo-section.col-lg-4 {
        width: 50.333333%;
    }

    footer .footer-section.col-lg-2 {
        width: 22.666667%;
    }
}

@media screen and (max-width:992px) {
    .banner {
        padding-top: 40px;
        padding-bottom: 60px;
        text-align: center;

        h1 {
            font-size: 48px;
            line-height: 1.2;
        }

        p {
            width: 90%;
            margin: 0 auto;
            font-size: 16px;
        }

        .hand_mobile {
            position: relative;
            width: 60%;
            bottom: 0;
            right: 0;
            margin: 20px auto 0;
            display: block;
        }
    }

    .administering_img img {
        width: 60%;
        display: flex;
        margin: 0 auto 30px;

    }

    .administering_content {
        padding-left: 0px;
    }

    .administering_content h3 br {
        display: none;
    }

    .what_we_offer {

        ul {
            width: 100%;
        }


        .tab-btn {
            padding: 10px 25px;
        }

        #customer-img::after,
        #vendor-img::after {
            display: none;
        }


    }

    header {
        padding: 10px 0px;
        align-items: center;
    }

    .navbar_call_sms {
        display: flex;
    }

    header nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 20px;
    }

    header nav.active {
        display: flex;
    }

    header .contact-info {
        width: 100%;
        gap: 0;
        margin-bottom: 0;
    }

    header .menu-toggle {
        display: flex;
        margin: auto;
    }

    header .contact-info a span {
        display: none;
    }

    header .contact-info img {
        width: 25px;
    }

    header .navbar_call_sms {
        display: flex;
        align-items: center;
    }

    .about_banner h1 {
        font-size: 48px;
    }

    br {
        display: none;
    }

    .about_banner p {
        font-size: 16px;

    }

    .mission_sec {
        padding: 30px;
    }

    .footer-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width:768px) {
    .mission_sec {
        .mission_card {
            h5 {
                margin-bottom: 0px;
            }
        }
    }

    .what_we_solve .row {
        row-gap: 30px;
    }

    .banner {
        h1 {
            font-size: 35px;
            line-height: 50px;
        }
    }

    .about_banner {
        padding: 60px 10px;

        h1 {
            font-size: 38px;
        }
    }

    /* .sec_title {
        font-size: 40px;
    } */

    .sec_title {
        font-size: 34px;
    }

    .vision_card p,
    .mission_card p {
        font-size: 15px;
    }

    footer {
        padding: 0;
        padding-bottom: 20px;
    }

    footer .logo-section {
        margin-bottom: 30px;
    }

    .logo-section.col-lg-4 {
        width: 100%;
    }

    footer .footer-section.col-lg-2 {
        width: 48.666667%;
    }

    .foot_end {
        display: flex;
        justify-content: start;
    }

    .categories {
        padding: 30px 15px 30px;
        width: 250px;
    }

    .categories h5 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .categories ul li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .bt_tc_sections {
        gap: 15px;
        row-gap: 40px;
    }

}

@media (max-width: 580px) {
    .administering_img img {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .banner {
        h1 {
            font-size: 25px;
            line-height: 35px;
            margin-bottom: 20px;
        }

        p {
            font-size: 15px;
        }

        .hand_mobile {
            width: 80%;
        }
    }

    .custmer_vendor {
        width: 100%;
        display: flex;
        justify-content: space-between;

        .tab-btn {
            width: 50%;
            padding: 10px 0;
        }
    }

    .what_we_offer {
        padding: 40px 0;

        .tabs {
            .tab-content {
                img {
                    width: 90%;
                    margin: 0 auto;
                }
            }
        }

        ul li {
            font-size: 15px;
            line-height: 24px;
        }
    }

    .about_us p {
        width: 100%;
        font-size: 15px;
    }

    .about_banner h1 {
        font-size: 32px;
    }

    .about_banner p {
        font-size: 15px;
        line-height: 24px;
    }

    .mission_sec {
        padding: 20px;
        border-radius: 12px;
    }

    .mission_card {
        padding: 20px;
    }

    .mission_card h5 {
        min-height: unset;
    }

    .about_us {
        background-position: left;
    }

    .bt_tc_sections {
        gap: 15px;
        row-gap: 30px;
    }
}

@media screen and (max-width:540px) {
    header .logo img {
        width: 120px;
    }

    footer .footer-section.col-lg-2,
    .logo-section.col-lg-4 {
        width: 100%;
    }

    .administering_content h3 {
        font-size: 20px;
        line-height: 35px;
        margin-bottom: 20px;
    }
}



@media screen and (max-width:480px) {
    .sec_title {
        font-size: 24px;
    }

    .what_we_offer {
        .tabs {
            .tab-label {
                padding: 10px 30px;
            }
        }
    }
}

@media (max-width: 420px) {
    .about_banner h1 {
        font-size: 26px;
    }

    .about_banner p {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .banner h1 {
        font-size: 30px;
    }

    .tab-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    ul li {
        font-size: 14px;
    }

    .categories {
        padding: 30px 15px 30px;
        width: 280px;
    }

}

/* @media (max-width: 1200px) {
    br {
        display: none;
    }
} */