@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

:root {
    --red: #c80919;
    --blue: #2964bc;
    --maroon: #c80919;
    --navy-blue: #082755;
    --green: #35b518;
    --lh: 1.4rem;
    --lightgray: #f5f5f5;
    --lightblue: #2964bca3;
    /* New Design Colors */
    --white: #ffffff;
    --new-blue: #0333de;
    --new-light-blue: #d4edff;
    --new-light-sky-blue: #eef8ff;
    --new-red: #cc1814;
    --new-light-red: #ecc9b3;
    --new-green: #43b820;
    --new-light-green: #e4ffdb;
    --zinc: #353535;
    --new-gray: #d9d9d9;
    --new-light-gray: #fafafa;
    --new-light-gray-variant: #f9f9f9;
    --star-color: #ffa600;
    --navy-blue: #082755;
    --header-bg-color: #d4edffcc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-out;
}

html, body {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

p {
    margin: 0;
}

/* New Home Design Styles */
a,
button {
    border: none;
    outline: none;
    background-color: transparent;
    text-decoration: none;
    color: #000;
}

/* Utilities */
.gap-small {
    gap: 0.1rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.fs-13 {
    font-size: 0.8125rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-12 {
    font-size: 0.75rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.fs-22 {
    font-size: 1.375rem !important;
}

.fs-28 {
    font-size: 1.75rem !important;
}

.fs-40 {
    font-size: 2.5rem !important;
}

.fs-30 {
    font-size: 1.95rem !important;
}

.bg-blue {
    background-color: var(--new-blue);
}

.bg-light-blue {
    background-color: var(--new-light-blue);
}

.bg-light-sky-blue {
    background-color: var(--new-light-sky-blue);
}

.bg-green {
    background-color: var(--new-green);
}

.bg-new-red {
    background-color: #ff0004;
}

.bg-red {
    background-color: var(--new-red);
}

.bg-light-red {
    background-color: var(--new-light-red);
}

.bg-zinc {
    background-color: var(--zinc);
}

.bg-new-light-gray {
    background-color: var(--new-light-gray);
}

.bg-light-gray-var {
    background-color: var(--new-light-gray-variant);
}

.bg-navy-blue {
    background-color: var(--navy-blue);
}

.border-blue {
    border: 3px solid var(--new-blue) !important;
}

.border-blue-2 {
    border: 2px solid var(--new-blue) !important;
}

.border-blue-3 {
    border: 1px solid var(--new-blue);
}

.border-navy-blue-2 {
    border: 2px solid var(--navy-blue);
}

.text-blue {
    color: var(--new-blue);
}

.text-navy-blue {
    color: var(--navy-blue);
}

.text-gold {
    color: var(--star-color);
}

.text-navy-blue {
    color: var(--navy-blue);
}

.text-red {
    color: var(--new-red);
}

.text-new-red {
    color: #ff0004;
}

.text-green {
    color: var(--new-green);
}

.w-max {
    width: max-content;
}

.max-w-logo {
    max-width: 200px;
}

.w-60 {
    width: 60% !important;
}

.w-40 {
    width: 40% !important;
}

.w-65 {
    width: 65% !important;
}

.w-35 {
    width: 35% !important;
}

.w-85 {
    max-width: 85%;
}

.w-80 {
    max-width: 80%;
}

.min-w-80 {
    min-width: 80%;
}

.border-active-bottom {
    border-bottom: 2.5px solid var(--new-blue);
}

.hover-anim {
    position: relative;
}

.hover-anim::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2.5px;
    background-color: var(--new-blue);
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.hover-anim:hover::after {
    width: 100%;
}

/* Header Styles */

.top-head {
    background-color: var(--new-light-blue);
}

.join-btn {
    background-color: var(--zinc);
}

.join-btn:hover {
    background-color: black;
}

.join-btn button {
    color: white;
    overflow: hidden;
}

.v-line {
    height: 30px;
    width: 2px;
    color: var(--white);
    background-color: var(--white);
}

.sm-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sm-toggler:focus {
    box-shadow: none !important;
}

.new-logo img {
    max-width: 217px;
    height: auto;
}

.search-container {
    max-width: 460px;
    width: 100%;
    border: 2px solid var(--new-blue);
    background-color: white;
}

.search-bar {
    width: 100%;
    border: none;
    outline: none;
    border-top-left-radius: 0.4rem;
    border-bottom-left-radius: 0.4rem;
}

.search-icon {
    background-color: var(--new-gray);
    font-size: 1rem;
    border-top-right-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
}

.search-icon i {
    margin-right: 0px;
}

.navbar-container .nav-link {
    font-weight: 600;
}

.navbar-container .nav-link i {
    min-width: 1.5rem;
    min-height: 1.5rem;
    margin: auto;
}

.online-btn {
    border: 2px solid var(--new-blue);
}

.online-btn:hover {
    background-color: var(--new-blue);
    color: var(--white);
    & .online-dot-new {
        background-color: var(--white);
    }
    transition: all 0.3s ease-in-out;
}

.online-dot-new {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #3bff00;
    animation: blinking 1.5s infinite;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.cart-count-new {
    background-color: var(--new-blue);
    min-width: 1.25rem;
    min-height: 1.25rem;
    bottom: -0.8rem;
    right: -0.5rem;
    font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
    .new-logo img {
        max-width: 180px;
    }
}

@media screen and (max-width: 360px) {
    .new-logo img {
        max-width: 160px;
    }
}

/* end header styles */

/* Footer Styles */

.footer-logo-container {
    width: min-content;
}

.new-footer-logo img {
    width: 100%;
}

.social-links-section {
    width: max-content;
}

.social-links-container a:hover {
    color: white;
    background-color: var(--new-blue);
    transition: all 0.3s ease-in-out;
}

.logo-and-link-section {
    max-width: 300px;
}

.social-links-container a {
    color: var(--new-blue);
    border: 2px solid var(--new-blue);
    min-width: 2rem;
    min-height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links-container i {
    margin-right: 0px;
}

@media screen and (max-width: 768px) {
    .footer-logo-container {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .footer-logo-container {
        width: 100%;
    }
}

/* Hero Section Styles */

.new-hero-section .carousel-indicators {
    margin-bottom: 0.25rem;
}

.new-hero-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: var(--new-blue);
    border-radius: 50%;
}

#side-promo .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

#side-promo .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.highlight-blue {
    color: var(--new-blue);
}

.promo-card {
    background-color: var(--new-light-green);
}

.service-card {
    background-color: var(--new-light-gray);
}

.card-text-cont h5 {
    white-space: nowrap;
}

.card-btn {
    width: max-content;
    cursor: pointer !important;
}

@media screen and (max-width: 991px) {
    .new-hero-section .fs-14 {
        font-size: 0.75rem !important;
    }
}

@media screen and (max-width: 768px) {
    .new-hero-section .fs-14 {
        font-size: 0.875rem !important;
    }

    .service-card {
        max-height: 150px;
    }

    .service-card img {
        height: 100% !important;
    }

    .card-text-cont .fs-6 {
        font-size: 0.95rem !important;
    }
}

@media screen and (max-width: 360px) {
    .service-card img {
        height: auto !important;
    }
}

/* Our Guide Section */
.our-guide-section .nav-item .active {
    background-color: var(--navy-blue);
}

.guide-img-container {
    user-select: none;
    min-height: 370px;
}

.wave-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
}

@media screen and (max-width: 991px) {
    .our-guide-section button {
        font-size: 0.875rem !important;
    }
}

@media screen and (max-width: 769px) {
    .our-guide-section button {
        font-size: 0.75rem !important;
    }
}

/* Promotion Section */

@media screen and (max-width: 576px) {
    .promotion-section .w-65,
    .promotion-section .w-35 {
        width: 100% !important;
    }
}

/* Promotion Section End */

/* Mission Statement Section */
.consult-btn {
    width: max-content;
}

.new-arrow-icon {
    min-width: 2rem;
    min-height: 2rem;
    border: 3px solid white;
}

@media screen and (max-width: 576px) {
    .mission-section {
        background-color: var(--white) !important;
    }

    .mission-section-last-img .consult-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        border: 2px solid var(--new-blue);
    }
    .mission-section-last-img:after {
        content: "";
        position: absolute;
        border-radius: 0.5rem;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.44);
        z-index: 1;
    }
}

/* Mission Statement Section End */

/* Our Partners Section */

.our-partners-section {
    background-image: url("doodles.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.our-partners-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.partner-scroll {
    user-select: none;
    position: relative;
}

.partner-scroll::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    min-width: 30px;
    width: 10%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, white 0.5%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.partner-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    min-width: 30px;
    width: 10%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to left, white 0.5%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.partner-logo-container {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    user-select: none;
}

.partner-logo-container img {
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
    max-height: 100px;
}

.partner-scroll:hover .partner-logo-container {
    animation-play-state: paused;
}

/* Our Partners Section End */

/* Client Testimonials Section Start */

.card-min-size {
    min-height: 210px;
}

.client-pic {
    max-width: 3.125rem;
    max-height: 3.125rem;
}

.client-pic img {
    object-position: top center;
}

.text-overflow {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.text-overflow-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (min-width: 576px) {
    #clientTestimonial .carousel-inner {
        display: flex;
    }
    #clientTestimonial .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2) !important;
    }
}

/* FAQs Section */

.new-faq-section {
    background-image: url(faq.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 14%;
}

#faqsSection .accordion-button {
    box-shadow: none;
}

#faqsSection .accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--new-blue);
    box-shadow: none;
}

#faqsSection .accordion-item {
    border: none;
}

#faqsSection .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E") !important;
}

@media screen and (max-width: 769px) {
    .new-faq-section {
        background-image: none;
    }
}

/* Moile App Promotion Section */

.mob-app-section {
    background-image: url(app-promotion-bg.webp);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 650px;
}

.mob-app-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4ffdbb2;
}

.mob-app-section > div {
    max-height: 450px;
}

.app-img {
    max-width: 350px;
}

.app-head {
    line-height: 34px;
    letter-spacing: 0.5px;
}

.app-para {
    text-transform: capitalize;
}

.app-icon {
    max-width: 40px;
    max-height: 40px;
}

.app-link-container button {
    height: 48%;
}

@media screen and (max-width: 769px) {
    .mob-app-section {
        min-height: 800px;
    }

    .mob-app-section > div {
        max-height: fit-content;
    }

    .app-img-cont {
        left: 50%;
        transform: translateX(-50%);
    }

    .app-img {
        max-width: 225px;
    }

    .mob-app-section .w-80 {
        max-width: 90%;
    }

    .promotion-product-name {
        font-size: 1rem !important;
    }

    .app-icon {
        max-width: 25px;
        max-height: 25px;
    }

    .scan-btn {
        font-size: 0.875rem !important;
    }
}

@media screen and (max-width: 576px) {
    .mob-app-section .w-80 {
        max-width: 95%;
    }

    .mob-app-section .fs-22 {
        font-size: 1.25rem !important;
    }

    .new-para {
        font-size: 0.875rem !important;
    }
}

@media screen and (max-width: 330px) {
    .scan-btn {
        font-size: 0.75rem !important;
    }
}

/* mobile app promotion section ended */

/* @media screen and (min-width: 1440px) {
    .fs-28 {
        font-size: calc(1.65rem + 0.25vw) !important;
    }

    .fs-15 {
        font-size: calc(0.85rem + 0.25vw) !important;
    }

    .small-head {
        font-size: calc(0.75rem + 0.25vw) !important;
    }

    .fs-12 {
        font-size: calc(0.75rem + 0.25vw) !important;
    }

    .fs-14 {
        font-size: calc(0.825rem + 0.25vw) !important;
    }

    .fs-22 {
        font-size: calc(1.55rem + 0.25vw) !important;
    }

    .new-arrow-icon {
        min-width: calc(2rem + 0.25vw);
        min-height: calc(2rem + 0.25vw);
    }

    .new-arrow-icon i {
        font-size: calc(1rem + 0.25vw);
    }

    .new-para {
        font-size: calc(1rem + 0.25vw);
    }

    .navbar-container .nav-link,
    #carouselExample p,
    .join-btn button,
    .join-btn .dropdown-item,
    .search-bar {
        font-size: calc(0.9rem + 0.25vw);
    }

    .cart-count-new {
        width: calc(25px + 0.25vw);
        height: calc(25px + 0.25vw);
        font-size: calc(0.85rem + 0.25vw);
    }

    .whatsapp-icon img {
        width: calc(25px + 0.25vw);
        height: calc(25px + 0.25vw);
    }

    .search-icon i {
        font-size: calc(1rem + 0.75vw);
    }

    .navbar-container .nav-link img {
        width: calc(30px + 0.25vw);
        height: calc(30px + 0.25vw);
    }

    .new-logo img {
        max-width: 300px;
        width: 100%;
    }

    .card-heading {
        font-size: calc(1.5rem + 0.25vw);
    }

    .search-container {
        max-width: 475px;
        width: 70%;
    }

    .card-text-cont h5 {
        font-size: calc(1rem + 0.25vw) !important;
    }

    .card-text-cont p,
    .card-text-cont a {
        font-size: calc(0.8rem + 0.25vw) !important;
    }

    .our-guide-section h2 {
        font-size: calc(1.75rem + 0.5vw);
    }

    .our-guide-section .nav-item {
        font-size: calc(0.95rem + 0.25vw);
    }

    .guide-img-container {
        min-height: calc(400px + 5vw);
    }

    .guide-img-container h5 {
        font-size: calc(0.85rem + 0.5vw) !important;
    }

    .consult-btn span:first-child {
        font-size: calc(0.95rem + 0.25vw);
    }

    .promotion-product-name {
        font-size: calc(1.25rem + 0.25vw);
    }

    .mission-section .fs-3 {
        font-size: calc(1.3rem + 0.6vw) !important;
    }

    .mission-section .fs-14 {
        font-size: calc(0.875rem + 0.25vw) !important;
    }

    .client-rating span {
        font-size: calc(1rem + 0.25vw);
    }

    .client-pic {
        min-width: calc(3.125rem + 0.4vw);
        min-height: calc(3.125rem + 0.4vw);
    }

    .card-min-size {
        min-height: 248px;
    }

    .new-faq-section {
        background-size: 13%;
    }

    #faqsSection .accordion-button {
        font-size: calc(1rem + 0.25vw);
    }

    .mob-app-section {
        min-height: 700px;
    }

    .social-links-container a {
        min-width: calc(2rem + 0.25vw);
        min-height: calc(2rem + 0.25vw);
    }

    .social-links-container a i {
        font-size: calc(1rem + 0.15vw);
    }

    .new-footer-heading {
        font-size: calc(1.25rem + 0.25vw);
    }

    .social-links-section a {
        font-size: calc(1rem);
    }
} */

@media screen and (min-width: 2560px) {
    .navbar-container .nav-link,
    #carouselExample p,
    .join-btn button,
    .join-btn .dropdown-item {
        font-size: calc(1.25rem + 0.5vw);
    }

    .navbar-container .nav-link img {
        width: calc(40px + 0.35vw);
        height: calc(40px + 0.35vw);
    }
}

/* utility media screen styles */
@media screen and (max-width: 769px) {
    .w-85 {
        max-width: 92%;
    }

    .fs-14 {
        font-size: 0.75rem !important;
    }
}

@media screen and (max-width: 576px) {
    .fs-28 {
        font-size: 1.375rem !important;
    }

    .fs-15 {
        font-size: 0.875rem !important;
    }
}

/* New Home Design Styles end */

/* New Header Styles */

.new-header {
    background-image: url("about-bg.png");
    background-position: center 5%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.new-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--header-bg-color);
    border-radius: 0.5rem;
}

.new-header-inner {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    .new-header .fs-30 {
        font-size: 1.5rem !important;
    }
}

/* New Header Styles End */

/* About Us Styles */

/* Join Section */

.join-us-cards .card {
    min-height: min(70vh, 400px);
    transition: transform 0.3s ease-out;
}

.join-us-cards .card:hover {
    transform: translateY(-0.5rem);
}

.icon-join {
    width: 4rem;
    height: 4rem;
}

.icon-join img {
    aspect-ratio: 1/1;
    filter: invert(1);
}

@media screen and (min-width: 1440px) {
    .join-us-cards .card {
        min-height: min(70vh, 370px);
    }
}

@media screen and (max-width: 991px) {
    .join-us-cards .card {
        min-height: min(45vh, 300px);
    }
}

/* About Us Styles end */

/* E-Visit Styles Start */

/* Buttons Section */
.main-buttons .btn:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

.e-visit-new-image {
    object-position: center 18%;
}

/* E-Visit Styles End */

/* Shops Page Styles Start */

.shops-page .new-header {
    background-image: url("shops_image.webp");
    background-position: center;
}

.shops-page .card {
    min-height: 200px;
}

.shop-logo {
    width: 140px;
    height: 80px;
}

.vertical-stick {
    width: 1px;
    height: 20px;
    background-color: #747474;
}

.shops-page .search-container {
    width: 100%;
    max-width: none;
}

@media screen and (max-width: 576px) {
    .shop-logo {
        width: 100%;
    }
}

/* Shops Page Styles End */

/* Pharmacy Page Styles Start */

.medicine-card-section .card {
    height: 215px;
}

.new-arrow-icon-2 {
    width: 25px;
    height: 25px;
    border: 2px solid var(--white);
}

.read-btn-new {
    bottom: -4%;
    color: #fe1014;
    border-color: #fe1014;
}

.read-btn-new:hover {
    background-color: #fe1014 !important;
    color: var(--white) !important;
    border-color: #fe1014;
}

/* Pharmacy Page Styles End */

/* Lab Page Styles Start */

.lab-card-section .card {
    min-height: 225px;
}

.lab-card-section .text-overflow {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}
/* Lab Page Styles End */

/* Our Doctors Styles Start */

.checkbox-wrapper-new input[type="radio"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-new label {
    position: relative;
    padding: 0.5rem 1rem 0.5rem 2rem;
    /* padding-left: 2rem;
  padding-right: 1rem; */
    line-height: 2;
    cursor: pointer;
    display: inline-flex;
    z-index: 0;
    line-height: 1.2;
    font-size: 14px;
}

.checkbox-wrapper-new label:before {
    box-sizing: border-box;
    content: " ";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 1.4em;
    height: 1.4em;
    background-color: #e3e3e3;
    border-radius: 6px;
    z-index: -1;
}

.checkbox-wrapper-new input[type="radio"]:checked + label {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
}
.checkbox-wrapper-new input[type="radio"]:checked + label:before {
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2.25rem;
    background-color: white;
    border: 2px solid var(--new-blue);
}

.checkbox-wrapper-new label,
.checkbox-wrapper-new label::before {
    transition: 0.25s all ease;
}

.new-doc-card-cont .card,
.doctor-cont2 .card {
    min-height: 225px;
}

.doc-new-profile {
    width: 124px;
    height: 110px;
}

.doc-new-profile img {
    object-position: center 25%;
}

.new-indicator {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
}

.doctor-cont2 .experience-badge {
    margin: auto auto -0.5rem -0.5rem;
}

.experience-badge {
    margin: auto auto -1rem -1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.our-doctors-page .client-rating .custom-star {
    font-size: 0.85rem !important;
}

/* Our Doctors Styles End */

.offer-banner > span {
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #c7c7c7;
}

::-webkit-scrollbar-thumb {
    background: #3b35ac;
}

::-webkit-scrollbar-thumb:hover {
    background: #082755;
}

/* html,
body {
    width: 100%;
    overflow-x: hidden;
} */

header {
    background-color: white;
}

#contact-bar {
    height: 50px;
    background-color: var(--red);
    color: white;
    font-size: small;
}

#navbar {
    background-color: white;
}

#left-side > div > div,
#right-side > div,
#social-icons > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 30px;
    padding: 6px;
}

#contact-bar img {
    width: 15px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: white !important;
    text-decoration: none;
    background-color: var(--navy-blue);
}

.wrap {
    height: 100%;
    width: 93%;
    margin: 0 auto;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.logo > img {
    width: 250px;
}

#nav-right-side {
    justify-content: flex-end;
}

#nav-left-side,
#nav-right-side {
    gap: 20px;
}

#nav-left-side {
    justify-content: center;
    margin-top: 0.6rem;
}

#navbar a {
    text-decoration: none;
    color: black;
    border-bottom: 2px solid transparent;
    font-size: 15px;
    padding: 3px 0 2px 0;
    font-weight: 600;
    width: max-content;
}

.blink-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.online_docs {
    border: 2px solid var(--green) !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 1.5rem;
}

.online_docs:hover {
    background: var(--green);
    color: white;
}

.online_docs:hover .blink-dot {
    background-color: white;
}

.online_docs:hover span {
    color: white;
}

.header-search-container {
    width: 325px !important;
}

header > .header-search-container {
    display: none;
    margin: 10px auto 0 auto;
    width: 90% !important;
}

.header-search-field {
    border: none;
    outline: none;
}

.header-search-result {
    /* position: absolute;
    left: 0; */
    top: 100% !important;
    display: none;
    /* background-color: red; */
    /* max-height: 300px; */
    /* height: 300px; */
    width: 100%;
    /* border: 2px solid black; */
    /* overflow-y: hidden; */
    /* z-index: 2; */
}

.header-search-result li {
    min-width: 100% !important;
}

.header-search-result li:hover {
    background-color: #0048b1 !important;
}

.header-search-result li:hover .product-name {
    color: white;
}

.header-search-result li:hover .category-name {
    color: gainsboro;
}

.header-search-result li a {
    text-decoration: none;
    color: black;
}

.product-name {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: black;
    font-weight: 600 !important;
}

.category-name {
    font-size: 0.75rem;
    color: gray;
}

.header-search-field:focus ~ .header-search-result {
    display: block;
}

.header-search-container:hover .header-search-result {
    display: block;
}

.header-search-btn {
    border: none;
    background: none;
}

.header-search-result::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

.header-search-result::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.header-search-result::-webkit-scrollbar-thumb {
    background: #888; /* Change the color to make it visible */
    border-radius: 10px;
}

.header-search-result::-webkit-scrollbar-thumb:hover {
    background: #555; /* Optional: change color when hovering */
}

.cart-search-container {
    display: none !important;
}

.cart-mob,
.search-btn-mob {
    font-size: 20px;
}

.cart-mob img {
    width: 25px;
}

.dropdown .fa-user-group {
    font-size: 0.8rem;
}

#drawer a {
    margin-left: 1rem;
}

#nav-left-side > a:hover {
    border-bottom: 2px solid var(--red);
}

#checker,
#joinDropdown {
    border: 2px solid var(--green);
    padding: 5px 15px;
    border-radius: 30px;
    background: #ffff;
    font-weight: 600;
}

.background-secondary {
    background: #f5f5f5;
    height: 100%;
}

#checker > img,
#joinDropdown > img {
    width: 25px;
}

#checker:hover,
#joinDropdown:hover {
    border: 2px solid var(--red);
}

.nav_btns {
    display: flex;
    align-items: center;
    justify-content: between;
    border: 2px solid var(--green);
    border-radius: 30px;
    background: #ffff;
    padding: 3px 15px;
}

.nav_btns > a {
    font-size: 16px !important;
    text-decoration: none;
    color: black;
    padding: 0px !important;
    margin-bottom: 0 !important;
    margin-left: 5px;
    font-weight: 500;
}

.nav_btns:hover {
    border: 2px solid var(--red);
}

#nav-right-side > div:last-child > img {
    width: 25px;
}

#checker,
#joinDropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.primary-bg {
    background: #0048b1;
}

.price {
    position: absolute;
    top: 5%;
    left: 5%;
}

.price p {
    font-weight: 600;
    z-index: 5;
    font-size: 12px !important;
    color: white !important;
    background: var(--blue) !important;
    padding: 5px 10px;
    border-radius: 10px;
}

.price-tag {
    position: absolute;
    top: 1%;
    left: -4%;
    font-size: 1.4rem;
}

.price-tag::before {
    content: "";
    height: 40%;
    width: 35%;
    background: #a31f2c;
    position: absolute;
    bottom: -20%;
    left: -1%;
    transform: rotate(20deg);
    border-bottom-left-radius: 10px;
    z-index: -2;
}

.products_available {
    position: absolute;
    top: 0.5rem;
    left: -0.6rem;
}

.products_available p {
    position: relative;
    font-weight: 600;
    font-size: 12px !important;
    color: white !important;
    background: var(--blue) !important;
    padding: 5px 20px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 8px 1px;
}

/* Left fold */
.products_available p:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 6px solid #0056b3;
    border-left: 10px solid transparent;
    z-index: 1;
}

.main-hero-section {
    overflow: hidden;
}

#hero-section {
    background-image: url("./slider-1.jpeg");
    background-position: 80% center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max(550px, 30vh);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-shape-divider-bottom-1731191537 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1731191537 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 69px;
}

.custom-shape-divider-bottom-1731191537 .shape-fill {
    fill: #ffffff;
}

.custom-shape-divider-bottom-17311915372 {
    position: absolute;
    bottom: -1%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-bottom-17311915372 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 69px;
}

.custom-shape-divider-bottom-17311915372 .shape-fill {
    fill: #ffffff;
}

/* .box {
    width: 100%;
    height: max(550px, 30vh);
    position: absolute;
    background: linear-gradient(to right, var(--navy-blue), rgb(18 18 18 / 0%) , rgb(18 18 18 / 0%) , var(--navy-blue));
  } */

#hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    color: white;
    height: max-content;
    position: relative;
    padding: 20px 50px;
}

#hero-content > p {
    width: 90%;
}

#hero-content > h1 {
    font-size: 50px;
    font-weight: bold;
}

#hero-content > p {
    font-size: 17px;
    color: rgb(241, 237, 237);
    text-align: justify;
    text-align-last: center;
    padding-bottom: 15px;
    width: 60%;
}

#slider-button > a,
.last-content > a {
    text-decoration: none;
    color: white;
    border-radius: 20px;
}

#slider-button {
    padding: 5px 15px;
    border-radius: 40px;
    background-color: none;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

#slider-button:hover {
    background: radial-gradient(circle, var(--red), var(--maroon));
    border: 2px solid transparent;
}

#slider-button > img {
    width: 40px;
}

.carousel-img {
    height: 360px;
}

.red {
    color: var(--red);
}

/* About us section */

.company-intro-section {
    /* background: linear-gradient(135deg, var(--lightgray) 0%, #ffffff 100%); */
    padding: 12px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* .company-intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red) 0%,
        var(--blue) 50%,
        var(--green) 100%
    );
}

.company-intro-section::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lightblue) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
} */

.intro-content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.intro-heading {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 3.25rem;
    /* margin-bottom: 30px; */
    position: relative;
    /* text-align: center; */
}

/* .intro-heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    border-radius: 2px;
} */

.intro-paragraph {
    font-size: 1rem;
    line-height: var(--lh);
    color: gray;
    /* text-align: center; */
    /* max-width: 900px; */
    margin: 15px 0;
    font-weight: 400;
}

/* Steps section */

#step-heading > .underline {
    background-color: var(--red);
}

#steps-section {
    max-width: 100vw;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    background-color: white;
}

#steps-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

#step-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

#step-heading > h2 {
    font-size: 30px;
}

#steps {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
}

.step {
    text-align: center;
    width: 300px;
    min-height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    gap: 10px;
    position: relative;
    transition: scale 0.3s ease-out;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 2px 2px 1px 1px #e4e3e3;
}

.num {
    font-size: 20px;
    color: var(--red);
    font-weight: 600;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0.5rem;
}

.pharmacy-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step:hover {
    border: 1px solid var(--blue);
}

.pharmacy-content hr {
    width: 100%;
    border: 1px solid gainsboro;
    margin: 20px 0;
}

.hr {
    width: 100%;
    border: 1px solid gainsboro;
    margin: 20px 0;
}

.pharmacy-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-size: 13px;
    width: 230px;
    background: var(--navy-blue);
    color: white;
    cursor: pointer;
    clip-path: polygon(0 20%, 10% 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
}

.pharmacy-category:hover {
    background: linear-gradient(to right, var(--red), #ec3544);
}

.pharmacy-category > i {
    font-size: 1.8rem;
}

.pharmacy_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: -6%;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
}
.pharmacy_btn2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.read-more {
    font-size: 12px;
    width: 49%;
    padding: 10px 0px;
    border-radius: 8px;
    background: white;
}

.read-more:hover {
    color: white;
    background: var(--red);
}

.add-to-cart {
    color: white;
    font-size: 12px;
    background: var(--navy-blue);
    width: 49%;
    padding: 10px 0px;
    border-radius: 8px;
    text-decoration: none;
}
.pharmacy_btn:active {
    background: #fff;
}

.add-to-cart:hover {
    color: var(--navy-blue);
    background: #ffffff;
    border: 1px solid var(--navy-blue);
}

.add-to-cart:active {
    color: var(--navy-blue);
    background: #ffffff;
    border: 1px solid var(--navy-blue);
}

.view_all:hover {
    color: var(--red);
    background: #ffffff;
    border: 1px solid var(--red);
}

.step:hover .step-icon {
    box-shadow: 0px 0px 14px -5px var(--navy-blue);
    color: #2964bc;
    animation: leftborder 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes leftborder {
    0% {
        border-top: 4px solid var(--blue);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    25% {
        border-top: 4px solid var(--blue);
        border-left: 4px solid var(--blue);
        border-right: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    50% {
        border-top: 4px solid var(--blue);
        border-left: 4px solid var(--blue);
        border-right: 4px solid transparent;
        border-bottom: 4px solid var(--blue);
    }

    75% {
        border-top: 4px solid var(--blue);
        border-left: 4px solid var(--blue);
        border-right: 4px solid var(--blue);
        border-bottom: 4px solid var(--blue);
    }

    100% {
        border-top: 4px solid var(--blue);
        border-left: 4px solid var(--blue);
        border-right: 4px solid var(--blue);
        border-bottom: 4px solid var(--blue);
    }
}

.step-icon {
    padding: 25px;
    width: 35px;
    height: 35px;
    border: 4px double gainsboro;
    color: var(--red);
    border-radius: 50%;
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 4px solid;
}

.step-icon > i {
    font-size: 30px;
    color: gray;
}

.step-heading {
    width: 100%;
}

.step-heading > h3 {
    font-size: 16px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.step-para > p {
    color: rgb(61, 61, 61);
    text-align: justify;
    text-align-last: center;
    padding: 0px;
    font-weight: 600;
}

.arrow {
    padding-top: 2%;
    display: none;
}

.arrow > i {
    font-size: 35px;
    color: gray;
}

.down_arrow {
    display: none !important;
}

.container1 {
    background: #f5f5f5;
    box-shadow: 0px -1px 6px 1px rgba(128, 128, 128, 0.322);
}

.container1 > section {
    min-height: 70vh;
}

.tabs-section-container {
    padding: 2rem;
}

.tabs-section-heading {
    text-align: left;
    font-size: 1.7rem;
    color: var(--navy-blue);
    width: max-content;
}

.tabs-section-container > p {
    padding: 10px 0;
}

.tabs-section-container > h4 {
    width: auto;
}

.tabs-section-para {
    font-size: 16px;
    padding: 10px 0px 20px 0px;
}

.cart-count {
    position: absolute;
    top: -45%;
    right: -50%;
    background: var(--red);
    color: white;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-visit-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
    gap: 1rem;
}

.doc-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* .left {
    box-shadow: -50px -50px 0 -45px var(--red), 50px 50px 0 -45px var(--red);
    padding: 2rem;
    width: 50%;
    background: #fcfbfb;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
} */

.right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.right > img {
    object-fit: cover;
    max-width: 500px;
    width: 100%;
    height: 100%;
    transform: translateX(5%);
    border-top-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
    box-shadow: -10px 8px 6px -1px gray;
}

.medicine-total {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.counter_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 2px;
    border: 1px solid var(--navy-blue);
    border-radius: 10px;
    cursor: pointer;
}

.medicine_detail_container {
    background: linear-gradient(to right, #f5f5f5, transparent, transparent);
}

/* .items-bg-image {
      position: absolute;
      background-image: url('./jpg/doctor-image.jpg');
      background-position: top left;
      background-repeat: no-repeat;
      background-size: 150vw;
      width: 100%;
      height: max(400px, 50vh);
      z-index: 2;
      top: 0;
      right: 0;
  }

  .gradient-color {
      background: linear-gradient(to right, #f5f5f5, #f5f5f5, #f5f5f5);
      width: 100%;
      height: max(400px, 50vh);
      right: 0;
      position: absolute;
      z-index: 3;
      top: 0;
  } */

#buttons-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;
    margin: 0 auto;
    /* padding: 10px 0; */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.button-section {
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    flex-wrap: nowrap;
}

#buttons-section > hr {
    width: 100%;
    border: 1px solid gainsboro;
    margin: 20px 0;
}

.button-section > div {
    padding: 7px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    padding-bottom: 10px;
    padding-top: 10px;
}

.button-section > .active {
    background: #f5f5f5;
    position: relative;
    border-radius: 10px;
    text-decoration: underline;
    transition: all 0.09s ease-in-out;
    box-shadow: 0px -2px 1px 0px rgba(128, 128, 128, 0.322);
}

.button-section > .active > div {
    color: var(--maroon);
    font-weight: 600;
}

.button-section > .active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -11px;
    height: 10px;
    width: 10px;
    background-color: transparent;
    border-radius: 0px 0px 10px 0px;
    box-shadow: 9px 7px 0px 5px #f5f5f5;
    z-index: 5;
    transition: all 0.4s ease-in-out 0.4s;
}

.button-section > .active::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -11px;
    height: 10px;
    width: 10px;
    background-color: transparent;
    border-radius: 0px 0px 0px 10px;
    box-shadow: -8px 8px 0px 5px #f5f5f5;
    z-index: 5;
    transition: all 0.4s ease-in-out 0.4s;
}

.button-section > div:hover,
.doctor-button:hover div {
    text-decoration: underline;
}

.button-section > div > div {
    text-decoration: none;
    color: var(--maroon);
    font-size: 15px;
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
}

.button-section > div > img {
    width: 18px;
}

.doctor-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: transparent;
    color: white;
    border: 2px solid red;
    gap: 5px;
    border-radius: 10px;
    cursor: pointer;
}

.doctor-button:hover {
    background-color: var(--red);
    color: white;
    border: 2px solid transparent;
}

.doctor-button:hover > a {
    color: white;
}

.doctor-button:hover > i {
    color: white;
}

.doctor-button:hover > span {
    color: white !important;
}

.doctor-button > a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.doctor-button > i {
    font-size: 25px;
    color: black;
}

.para > p {
    color: rgb(103, 97, 97);
    text-align: left;
    font-size: 16px;
    padding-right: 10px;
}

#problems-section {
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: start;
    padding-top: 3%;
    width: 100%;
}

.partner-heading {
    font-size: 45px;
}

.border-right {
    border-right: 1px solid grey;
}

#bg-image {
    background-image: url("./solution bg.webp");
    background-position: 20% center;
    background-repeat: repeat;
    background-size: 50vw;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    top: 0;
    z-index: -1;
}

.blob {
    position: absolute;
    left: 0;
    top: 20px;
    width: 400px;
    height: 300px;
    z-index: -1;
    opacity: 0.5;
}

.blob2 {
    position: absolute;
    right: -100px;
    width: 650px;
    bottom: 0;
    z-index: -2;
    opacity: 0.5;
}

.blob3 {
    position: absolute;
    left: -100px;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
}

#problems-section > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

#problems-section > div > h2 {
    font-size: 30px;
    color: var(--navy-blue);
    text-align: center;
}

.underline {
    width: 75%;
    background-color: var(--red);
    height: 2px;
    border-radius: 20px;
}

#problems-section > p {
    width: 78%;
    font-size: 16px;
    color: rgb(102, 96, 96);
    text-align: justify;
    text-align-last: center;
}

.image-content {
    display: flex;
    gap: 20px;
    max-width: 100vw;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 350px;
}

.content {
    display: flex;
    align-items: center;
    width: 95%;
    gap: 50px;
}

.first-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-content > img {
    max-width: 550px;
    width: 100%;
    position: relative;
    left: 70px;
    box-shadow: -40px 0px 0px 70px #f5f5f5;
}

#e-visit-dot {
    top: -25px;
    border-top-left-radius: 30px;
}

.design {
    position: absolute;
    bottom: -10px;
    left: -20px;
    border-radius: none;
    z-index: -1;
}

.bg-box {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 200px;
    height: 200px;
    background-color: gray;
    z-index: -1;
    opacity: 0.3;
}

.image-bg {
    position: absolute;
    top: 10%;
    right: 0;
    width: 50%;
    height: 80%;
    background-color: #f3ecff;
    z-index: -2;
}

#e-visit-box {
    top: 160px;
    left: 325px;
    border-bottom-right-radius: 30px;
}

.last-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heading > h2 {
    font-size: 35px;
    color: var(--navy-blue);
    text-align: left;
    padding-right: 5px;
}

#solution-section {
    position: relative;
    min-height: 150px;
    overflow-x: hidden;
}

.animated-shapes > img {
    width: 100%;
}

.custom-shape-divider-bottom-1731257443 {
    position: absolute;
    bottom: -1%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom-1731257443 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 56px;
}

.custom-shape-divider-bottom-1731257443 .shape-fill {
    fill: #082755;
}

.new-footer-cont {
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-blue);
    padding: 40px 0 20px 0;
    gap: 20px;
}

#footer-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    width: 90%;
    gap: 20px;
    color: white;
}

.footer-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: start;
}

#footer-1 {
    display: flex;
    justify-content: space-between;
}

.footer-content-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.footer-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading > h3 {
    font-size: 24px;
}

.footer-content-new > h4 {
    font-weight: 400;
    color: gainsboro;
}

.footer-content-new > div > a {
    text-decoration: none;
    color: gainsboro;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info > img {
    width: 10px;
}

.footer-info > a {
    border-bottom: 1px solid transparent;
}

.footer-info > a:hover {
    border-bottom: 1px solid var(--red);
    color: white;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--red);
    padding: 10px 15px;
    border-radius: 20px;
}

.footer-highlight > img {
    width: 20px;
}

.footer-highlight > a:hover {
    color: gainsboro;
}

#footer-logo-new {
    display: block;
}

#footer-logo-new > img {
    width: 80%;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    min-width: 220px;
}

#footer-2 > .footer-content-new > h4 {
    text-decoration: 1px solid underline;
}

#social-icons {
    display: flex;
    justify-content: space-between;
}

#social-icons > a {
    background-color: var(--red);
    border: none;
    padding: 8px;
    color: white;
    text-decoration: none;
    min-width: 33px;
    min-height: 33px;
}

#social-icons > a > i {
    font-size: 17px;
}

#footer-4 > div > h4 {
    font-weight: 500;
    color: white;
    font-size: 18px;
}

#copyright > p {
    color: gainsboro;
    text-align: center;
    padding: 0 0.5rem;
}

#copyright > span {
    font-weight: bold;
}

.seperation {
    width: 100%;
    height: 1px;
    background-color: gainsboro;
}

#disclaimer {
    background-position: cover center;
    background-repeat: no-repeat;
    background-size: 100vw;
    position: relative;
    min-height: 410px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.disclaimer-box {
    width: 100%;
    background-color: white;
    opacity: 0.82;
}

#disclaimer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

#disclaimer-content > div:first-child > .underline {
    background-color: var(--navy-blue);
}

#disclaimer-content > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 40px;
    color: var(--red);
}

#disclaimer-content > div:first-child > h2 {
    color: var(--red);
    font-size: 2.5rem;
    margin-top: 1rem;
}

#disclaimer-content > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#disclaimer-content > div > p {
    font-size: 16px;
    padding: 0 50px;
    color: var(--navy-blue);
    text-align: justify;
    text-align-last: center;
    font-weight: 400;
}

.disclaimer-blob {
    position: absolute;
    left: -300px;
    top: -100px;
    opacity: 0.2;
    width: 700px;
    z-index: -1;
}

.hamburger_container {
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
}

.drawer-item {
    color: var(--blue);
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    color: #202020;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding-top: 40px;
    z-index: 999;
    border-right: 1px solid #ff5757;
}

.drawer a {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.drawer hr {
    width: 90%;
    border: 1px solid #ff5757;
    margin: 0.25rem auto;
}

.drawer a:hover {
    border-bottom: 1px solid var(--red) !important;
}

.drawer.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #202020;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff5757;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.blur-overlay.active {
    display: block;
}

.border-sm-bottom {
    border-bottom: 1px solid #eeeeee;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* utility.css  */

.text-center {
    text-align: center;
}

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

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 10px;
}

.between {
    justify-content: space-between;
}

/* faqs  */

/* ///////////////////////////////////// */
/* ///////////////////////////////////// */
/* ///////////////////////////////////// */

#faqs {
    margin-top: 1rem;
    padding: 2rem 11px 0;
    min-height: 50vh;
}

#faqs h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #333;
}

#faqs h2 .red {
    color: #e74c3c;
}

#faqs > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    padding: 0px 20px;
}

#faqs > div > .underline {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#faq-content {
    max-width: 75%;
    margin: 2rem auto;
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 1rem;
}

.faq:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq.open .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq:hover .faq-question h3 {
    color: #e74c3c;
}

.faq-question:hover i {
    transform: scale(1.1);
}

.medicines-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
    padding: 10px;
}

.medicines-container > .card:hover {
    transform: scale(1.02);
}

.medicines-container .card {
    flex: 1 1 calc(25% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(25% - 15px);
    height: 250px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    border-radius: 10px;
    position: relative;
    padding: 10px;
    box-shadow: -2px 2px 3px 0px rgba(128, 128, 128, 0.322);
    margin-bottom: 20px;
}

.button-section > div > i {
    font-size: 1.8rem;
    margin: 5px;
    text-decoration: none;
    color: #0048b1;
}

.button-section > .active > i {
    color: var(--red);
}

.medicines-container .card h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 3%;
    margin-bottom: 0;
    min-height: 20px;
    padding: 2px;
    width: 100%;
}

.medicines-container .card h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    margin-bottom: 0px;
    min-height: 17px;
    padding: 2px;
    width: 100%;
}

.medicines-container .card p {
    font-size: 11px;
    color: gray;
    line-height: normal;
}

.prescription {
    position: absolute;
    top: 0;
    right: 0;
    background: #f5f5f5;
    padding: 6px;
    font-size: 11px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0px 0px 0px 6px #f5f5f5;
}

.prescription p {
    color: white !important;
    padding: 5px;
    border-radius: 20px;
}

.prescription::after {
    content: "";
    position: absolute;
    bottom: -63%;
    right: 0px;
    display: block;
    height: 45%;
    width: 15%;
    background: transparent;
    border-top-right-radius: 22px;
    box-shadow: 7px -9px 3px 5px #f5f5f5;
    z-index: 1;
}

.prescription::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -19%;
    display: block;
    height: 50%;
    width: 15%;
    background: transparent;
    border-top-right-radius: 22px;
    box-shadow: 8px -7px 3px 4px #f5f5f5;
    z-index: 1;
}

.med-img {
    margin-top: 2rem;
    padding: 0 1rem 0 1rem;
    height: 52.5%;
    display: flex;
}

.med-img2 {
    margin-top: 2rem;
    padding: 0 1rem 0 1rem;
    height: 105px;
    display: flex;
}

.med-img img {
    width: 100%;
    /* max-width: 100px; */
    margin: 0 0 0.25rem 0;
    object-fit: contain;
}

.med-img2 img {
    width: 100%;
    /* max-width: 100px; */
    margin: 0 0 0.25rem 0;
    object-fit: contain;
}

.drawer img[alt="shop-icon"] {
    width: 25px;
    margin-left: 1rem;
}

.drawer div {
    margin-top: 0.35rem;
}

.drawer .cart-count {
    top: -8px;
    left: 32px;
    color: white;
    height: 15px;
    width: 15px;
    font-size: 8px;
}

.read_more {
    color: var(--red) !important;
    font-size: 14px !important;
    margin-top: 10px;
}

.btn-div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-div button {
    padding: 12px 40px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--red);
    color: white;
    cursor: pointer;
}

.test_content h2 {
    font-size: 30px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 20px;
}

.tests-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    justify-content: start;
}

.tests-card {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: 250px;
    height: max(230px, 10vh);
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    border-radius: 20px;
    position: relative;
    padding: 10px;
    box-shadow: -2px 2px 3px 0px rgba(128, 128, 128, 0.322);
    margin-top: 10px;
    z-index: 2;
}

.tests-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    height: 70%;
    width: 100%;
    z-index: -1;
    border-radius: 20px;
}

.test-card-price {
    position: absolute;
    top: 5%;
    left: 5%;
}

.discounted-price {
    color: var(--blue);
    padding: 6px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0px 0px 0px 4px #f5f5f5;
}

.actual-price {
    font-size: 12px;
    color: gray;
    font-weight: 500;
    text-decoration-line: line-through;
}

/* .cont-disc {
    width: 100%;
    height: max-content;
    background-color: white;
} */

.discount-no {
    position: absolute;
    top: 25%;
    right: -3%;
    color: white;
    background-color: var(--blue);
    font-size: 12px;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
}

.discount-no::after {
    content: "";
    position: absolute;
    right: 0;
    top: 72%;
    width: 40%;
    height: 50%;
    background: #0e4495;
    z-index: -1;
    transform: rotate(331deg);
    border-radius: 5px;
}

.tests-card:hover {
    transform: scale(1.02);
}

.lab-test-page-price {
    position: absolute;
    top: 2%;
    right: 2%;
    color: var(--blue);
    padding: 6px;
    font-size: 2.2rem;
    font-weight: 600;
    z-index: 2;
}

.tests-card h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: underline;
    text-align: left;
    width: 75%;
}

.tests-card p {
    font-size: 12px;
    color: gray;
    line-height: normal;
}

.test-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: start;
    justify-content: end;
    overflow-x: hidden;
    background-color: white;
}

.add_to_cart_btn {
    border: none;
    height: 40px;
    width: 40%;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    background: var(--red);
    border: 1px solid transparent;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0px 0px 0px 8px #f5f5f5;
}

.add_to_cart_btn:hover {
    background: white;
    color: var(--red);
    border: 1px solid var(--red);
}

.add_to_cart_btn::after {
    content: "";
    position: absolute;
    bottom: -65%;
    border-top-right-radius: 10px;
    right: 0;
    width: 30%;
    height: 40%;
    background: transparent;
    box-shadow: 5px -5px 0px 3px #f5f5f5;
}

.add_to_cart_btn::before {
    content: "";
    position: absolute;
    top: 0;
    border-top-right-radius: 10px;
    left: -49px;
    width: 40px;
    height: 10px;
    background: transparent;
    box-shadow: 5px -5px 0px 3px #f5f5f5;
}

.add_to_cart_btn i {
    font-size: 1.1rem;
}

.learn_btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    border: none;
    border-radius: 5px;
    border: 1px solid var(--navy-blue);
    background: #ffffff;
    color: var(--blue);
    cursor: pointer;
}

.medicine_btn {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    border: 1px solid white;
    background: var(--navy-blue);
    color: white;
    cursor: pointer;
}

.medicine_btn:hover {
    border: 1px solid var(--navy-blue);
    background: white;
    color: var(--navy-blue);
}

.learn_btn:hover {
    background: var(--navy-blue);
    color: white;
}

.psychiatry-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.psychiatry-box {
    flex: 1 1 calc(25% - 15px);
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: white;
    color: var(--navy-blue);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.psychiatry-box p {
    font-size: 16px;
    color: var(--red);
    text-align: left;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid gainsboro;
}

.psychiatry-box img {
    width: 15%;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-right: 10px;
}

.pain-management-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.pain-management-box {
    flex: 1 1 calc(25% - 15px);
    max-width: 300px;
    background-color: white;
    color: var(--navy-blue);
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.pain-management-box img {
    width: 20%;
    margin-bottom: 10px;
}

.pain-management-box:hover {
    transform: scale(1.05);
    border: 1px solid var(--navy-blue);
}

.substance-abuse-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.substance-abuse-box {
    flex: 1 1 calc(33.33% - 15px);
    background-color: white;
    color: var(--navy-blue);
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.substance-abuse-box:hover {
    transform: scale(1.05);
    border: 1px solid var(--navy-blue);
}

.substance-abuse-box img {
    width: 20%;
}

.truncate-overflow {
    --max-lines: 3;
    position: relative;
    max-height: calc(var(--lh) * var(--max-lines));
    overflow: hidden;
}

.truncate-overflow::before {
    position: absolute;
    content: "...";
    bottom: 0;
    right: 0;
}

/* about css  */

.about-page-container {
    overflow-x: hidden;
}

.about-heading-section {
    padding: 15px 0;
    position: relative;
    background-color: #f5f5f5;
}

.about-container {
    /* width: 95%; */
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-header-icon {
    width: 50px;
}

.about-header {
    font-size: 40px;
    color: #c80919;
    text-align: center;
    text-transform: uppercase;
}

.underline1 {
    width: 10%;
    height: 3px;
    background-color: #082755;
}

.underline2 {
    width: 20%;
    height: 3px;
    background-color: #082755;
}

.underline3 {
    width: 30%;
    height: 3px;
    background-color: #ffff;
}

/* .bg-opacity {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0.8;
    width: 100%;
    height: 100%;
  } */

.hero-section {
    background-image: url("./hero-section.webp");
    background-repeat: no-repeat;
    background-position: 30% center;
    height: max-content;
    background-size: 100%;
    padding: 35px 0;
}

.hero-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: left;
    justify-content: center;
    color: white;
    padding-left: 7%;
}

.line {
    width: 20%;
    height: 3px;
    background-color: blue;
}

.hero-small-heading,
.hero-main-heading {
    text-transform: uppercase;
}

.hero-small-heading {
    color: aquamarine;
    font-weight: 600;
}

.hero-main-heading {
    font-size: 35px;
}

.hero-section-para {
    font-size: 15px;
    font-weight: 300;
    font-weight: 300;
}

.highlight {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: aquamarine;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-content > .line {
    background-color: #082755;
}

.about-content {
    padding-top: 40px;
    /* padding: 80px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 80%;
    color: #082755;
}

.about-small-heading,
.about-main-heading {
    text-transform: uppercase;
}

.about-small-heading,
.about-main-heading,
.about-para {
    text-align: center;
}

.about-small-heading {
    font-weight: 600;
}

.about-main-heading {
    font-size: 35px;
}

.about-para {
    width: 65%;
    font-size: 13px;
}

.about-highlight {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #082755;
}

.about-image {
    position: relative;
    bottom: 0;
    /* mix-blend-mode: overlay; */
}

.tablets,
.medkit {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 200px;
    height: 200px;
    opacity: 0.3;
    z-index: -1;
}

.tablets {
    position: absolute;
    left: 10%;
    bottom: 20%;
    background-image: url("./tablets.svg");
}

.medkit {
    position: absolute;
    right: 10%;
    bottom: 20%;
    background-image: url("./medkit.svg");
}

/* .bar-section {
    margin-bottom: 30px;
  } */

.bar-content {
    background-color: #e41223;
}

.bar-container {
    background-color: #c80919;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
    width: 102.5vw;
    margin-left: -5px;
    position: relative;
    z-index: 2;
}

.bar-items {
    padding: 15px 0;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    opacity: 0;
}

.icon {
    width: 50px;
    filter: invert(1);
}

.bar i {
    font-size: 3rem;
}

.icon-heading {
    font-size: 30px;
}

.desc-about-section {
    background: url("./background-about.jpg") no-repeat center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    position: relative;
}

.desc-about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.desc-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.desc-main-heading {
    width: 74%;
    font-size: 40px;
    font-weight: normal;
    color: #ffff;
    z-index: 2;
}

.desc-para {
    width: 45%;
    color: #ffff;
    font-weight: 400;
    font-size: 15px;
    z-index: 2;
}

/* .desc-bg {
    background: url('./background-about.jpg') no-repeat center/cover;
    height: 30vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;

  } */

.about_heading_img {
    background: url("./background-about.jpg") no-repeat center;
    min-height: 30vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about_heading_inner_div > h1 {
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.about_heading_inner_div {
    z-index: 2;
}

.about_heading_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* contact section  */

.contact-section {
    background-image: url("./hero-section.webp");
    background-repeat: no-repeat;
    background-position: 30% center;
    background-size: cover;
    min-height: 25vh;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-content {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    height: 100%;
    color: white;
    z-index: 3;
    text-align: center;
    padding-top: 20px;
}

.contact-content h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    padding-top: 20px;
}

.contact-form {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 10px;
    word-wrap: normal;
}

.contact-info p {
    color: white;
    font-size: 12px;
    text-align: left;
}

.contact-info i {
    min-width: 2rem;
    font-size: 2rem;
}

.contact-left {
    background: linear-gradient(to right, var(--navy-blue), var(--blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-radius: 20px;
}

.contact-right h4 {
    color: var(--navy-blue);
    font-size: 1.8rem;
}

.contact-right p {
    color: var(--navy-blue);
    font-size: 0.8rem;
}

.contact-right textarea {
    resize: none;
}

.contact-btn {
    padding: 10px 40px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-right: 1px solid white;
    color: white;
    text-decoration: none;
}

.contact-email-para {
    word-break: break-word;
}

.contact-icons a:last-child {
    border-right: none;
}

.contact-icons div i {
    font-size: 1.2rem;
}

/* pharmacy page  */

.pharmacy-page-container {
    min-height: 20vh;
}

.custom-search-container {
    padding: 0.75rem;
    border-radius: 8px;
    color: white;
    width: 100%;
}

.category-dropdown {
    max-width: 350px;
    min-width: 300px;
}

.custom-select {
    border: 2px solid var(--blue);
    border-radius: 5px;
    background-color: white;
    color: var(--navy-blue);
    padding: 0.5rem;
    font-weight: 500;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 6px var(--red);
}

.custom-input {
    border: 2px solid var(--blue);
    border-radius: 5px 0 0 5px;
    padding: 0.5rem;
}

.custom-input:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 4px var(--navy-blue);
}

.custom-btn {
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: var(--red);
    color: white;
}

.alphabetical-categories {
    padding: 1rem 0;
    border-radius: 8px;
    margin: auto;
    text-align: center;
}

.doctor-data-container {
    width: 100% !important;
}

/* Alphabet Buttons */
.alphabets {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alphabet-group {
    position: relative;
    display: inline-block;
}

.alphabet {
    display: inline-block;
    background-color: var(--navy-blue);
    color: white;
    padding: 0.5rem;
    min-width: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.alphabet-group:hover .alphabet {
    background-color: var(--red);
}

.alphabet-group:hover .alphabet::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--red);
}

.alphabet-group:hover .alphabet::before {
    content: "";
    position: absolute;
    bottom: -16%;
    height: 8px;
    width: 100%;
    background: transparent;
    left: 0;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    max-height: 300px;
    min-height: 0;
    overflow-y: auto;
    top: 114%;
    left: 0;
    background-color: white;
    border: 1px solid var(--red);
    border-radius: 4px;
    display: none;
    /* Initially hidden */
    min-width: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.categories-list li {
    min-width: 150px;
    max-width: 200px;
    text-align: left;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #dadada;
    color: var(--dark-gray);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li:hover {
    background-color: #4f8be6;
    color: white;
}

/* Show Dropdown on Hover */
.alphabet-group:hover .categories-list {
    display: block;
}

/* modal css  */

.modal-header {
    background: #08295a;
    color: #fff;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #673ab7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#msform fieldset {
    background: #fff;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

#msform .custom_input {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0;
    margin-bottom: 14px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;
    background-color: #eceff1;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform .action-button {
    width: 100px;
    background: #673ab7;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0 10px 5px;
    float: right;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0;
    float: right;
}

.login-or-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.modal-header .btn-close {
    opacity: 1;
    position: absolute;
    right: -13px;
    top: -10px;
    background-color: beige;
    border-radius: 50%;
    font-size: 19px;
    padding: 12px;
}

.message__div {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
}

.right__user {
    display: flex;
    justify-content: end;
    gap: 14px;
    align-items: end;
    padding: 2px;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

.dropdown-select {
    display: none;
}

.dropdown .dropdown-menu li a {
    color: #000;
    font-size: 14px !important;
    padding: 10px !important;
    display: block;
    font-weight: 500 !important;
    text-decoration: none !important;
    color: #000 !important;
    font-size: 14px !important;
    padding: 8px !important;
    text-decoration: none;
    width: 100% !important;
}

.chatmain {
    max-height: 180px;
    overflow-y: auto;
}

.right_p {
    background-color: #08295a;
    padding: 10px 19px;
    border-radius: 10px 10px 0 10px;
    color: #fff;
    max-width: 400px;
    word-break: break-word;
}

.right__user_img {
    border-radius: 15px;
    width: 30px;
    height: 30px;
}

.message__div {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
}

.left_p {
    background-color: #cecece;
    padding: 10px 19px;
    border-radius: 10px 10px 10px 0;
    color: #000;
    text-align: left;
    max-width: 400px;
    margin-top: 10px;
    margin-bottom: 10px;
    word-break: break-word;
}

.left_user {
    display: flex;
    justify-content: start;
    width: 100%;
    gap: 14px;
    align-items: end;
    flex-direction: row-reverse;
    padding: 5px;
}

.contact-wrapper .button,
.modal-body {
    text-align: center;
}

.botIcon,
.modal {
    z-index: 9999;
}

.modal-e-visit-btn button,
.modal-login-reg-btn a,
.modal-login-reg-btn button {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px, rgba(0, 0, 0, 0.3) 0 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0 -3px 0 inset;
    text-decoration: none;
    color: var(--navy-blue);
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    border: 1px solid var(--navy-blue);
    border-radius: 10px;
}

#checker {
    opacity: 0;
}

.modal-login-reg-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-e-visit-btn button:hover,
.modal-login-reg-btn a:hover,
.modal-login-reg-btn button:hover {
    background: #08295a;
    color: #fff !important;
}

.labsbutton.active,
.modal-e-visit-btn a:hover {
    color: #fff !important;
}

.modal-e-visit-btn button {
    padding: 7px 0;
    border: none;
    border-radius: 20px;
    width: 70%;
    margin-bottom: 20px;
    font-weight: 600;
}

#msform fieldset:not(:first-of-type),
#text,
.botSubject,
.checkout-steps-wrap #checkoutform fieldset:not(:first-of-type),
.lte8 .hover-text-new .tooltip,
.messages,
.myDiv,
.resp-cart-icon,
.showBotSubject .botIconContainer,
.showMessenger .botIconContainer {
    display: none;
}

#msform,
#msform fieldset,
#progressbar li,
.about-sec-wrapper,
.affiliate-grid,
.back-arrow-about,
.medicines-container .card,
.catalog-left,
.contact-wrapper .card,
.e-visit-wrapper,
.last,
.login-inp,
.medium,
.text-area {
    position: relative;
}

#clearBtn,
#msform .action-button,
#progressbar li.active:after,
#progressbar li.active:before {
    background: #08295a;
}

#msform .action-button-previous:focus,
#msform .action-button-previous:hover,
.health_cards a:hover,
.labsbutton button.active {
    background-color: #08295a;
    color: #fff;
}

#msform .action-button:focus,
#msform .action-button:hover,
.input-group-text,
.progress-bar,
.slider-content button,
.top-header {
    background-color: #08295a;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.div1 {
    grid-row: span 2 / span 2;
    grid-column: span 1 / span 1;
}

.div2 {
    grid-column: span 3 / span 4;
    grid-row: span 2 / span 2;
}

.div3 {
    grid-column: span 4 / span 4;
    grid-row-start: 3;
}

.custom-card:nth-child(1) {
    background: #d9effd;
}

.custom-card:nth-child(1) button {
    background: var(--navy-blue);
}

.custom-card:nth-child(1) button:hover {
    background: #0f3e85;
}

.custom-card:nth-child(2) {
    background: #cdecc3;
}

.custom-card:nth-child(2) button:hover {
    background: #219408;
}

.custom-card:nth-child(2) button {
    background: #209106;
}

.custom-card:nth-child(3) {
    background: #f0c2c2;
}

.custom-card:nth-child(3) button {
    background: var(--red);
}

.custom-card:nth-child(3) button:hover {
    background: #df2130;
}

.custom-card {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd5d;
    border-radius: 8px;
    padding: 12px;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 2px 2px 2px 0px rgba(228, 228, 228, 0.849);
    overflow: hidden;
    height: 32%;
    position: relative;
    overflow-x: hidden;
}

.custom-card-body {
    flex: 1;
}

.custom-card-title {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    margin-bottom: 0px;
    text-decoration: underline;
}

.custom-card-text {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 5px 0;
}

.custom-btn2 {
    font-size: 0.8rem;
    margin-top: 8px;
    width: 120px;
}

.custom-card-img {
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -16%;
    bottom: -5%;
}

.custom-card-img img {
    height: auto;
    width: 60%;
    object-fit: cover;
}

.h-98 {
    height: 98%;
}

.card-secondary-div {
    padding-right: 0.5%;
    padding-left: 0;
}

.card-secondary {
    border: 1px solid #d3d3d3;
    padding: 20px 7px;
    margin: 2px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 0px rgba(228, 228, 228, 0.849);
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.card-secondary img {
    width: 68%;
    height: auto;
}

.col-lg-3 .card-secondary button {
    font-size: 0.7rem;
    margin-top: 8px;
    width: 100px;
    border: none;
    outline: none;
}

.col-lg-3:nth-child(1) .card-secondary {
    background: #f9e9e2;
}

.col-lg-3:nth-child(1) .card-secondary button {
    background: #d59092;
}

.col-lg-3:nth-child(3) .card-secondary {
    background: #f8e3d7;
}

.col-lg-3:nth-child(3) .card-secondary button {
    background: #b28268;
}

.col-lg-3:nth-child(2) .card-secondary {
    background: #fbe6ef;
}

.col-lg-3:nth-child(2) .card-secondary button {
    background: #e291a8;
}

.col-lg-3:nth-child(4) .card-secondary {
    background: #d1d9d83d;
}

.col-lg-3:nth-child(4) .card-secondary button {
    background: #12487b;
}

.card-secondary div h1,
.card-secondary div h2,
.card-secondary div h3,
.card-secondary div h4,
.card-secondary div h5 {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    margin-bottom: 0px;
    text-decoration: underline;
}

.card-secondary div p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.card-secondary div p:nth-child(3) {
    font-size: 0.7rem;
    margin-top: 5px;
    color: var(--red);
}

.icon-top .fa-check {
    font-size: 50px;
    border: 1px solid #1fe31f;
    padding: 13px 17px;
    border-radius: 50%;
    color: #1fe31f;
}

.animate__fadeInLeft {
    --animate-duration: 0.6s;
}

.animate__fadeInUp {
    --animate-duration: 0.6s;
}

.custom-card {
    opacity: 0;
}

.custom-card.animate__animated {
    opacity: 1;
}

.partners_logos > img:first-child {
    width: 40%;
}

.partners_logos > img:last-child {
    width: 25%;
}

.last-content {
    width: 50%;
}

.footer-content-new > p {
    font-size: 0.9rem;
}

.footer-content-new > div > a {
    font-size: 0.8rem;
}

.faq-answer p {
    margin-top: 0.25rem;
}

.doctor_degree {
    line-height: 1.25 !important;
}

/* media queries  */

@media screen and (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1340px;
    }

    .offer-banner > span {
        font-size: 1.1rem;
    }

    .logo > img {
        width: 40%;
    }

    .dropdown-menu li a {
        font-size: 1.1rem !important;
    }

    #joinDropdown,
    #navbar a,
    .nav_btns > i {
        font-size: 1.1rem !important;
    }

    #nav-right-side > div:last-child > img {
        width: 35px;
    }

    #nav-right-side > div:last-child {
        width: 6%;
    }

    .custom-card-body h1,
    .custom-card-body h2,
    .custom-card-body h3,
    .custom-card-body h4,
    .custom-card-body h5 {
        font-size: 1.15rem;
    }

    .custom-card-body p {
        font-size: 1rem;
    }

    .custom-btn2 {
        font-size: 1rem;
        width: 180px;
    }

    .carousel-img {
        height: auto;
    }

    .custom-card-img img {
        width: 70%;
    }

    .custom-card-img {
        right: -15%;
    }

    .card-secondary div h1,
    .card-secondary div h2,
    .card-secondary div h3,
    .card-secondary div h4,
    .card-secondary div h5 {
        font-size: 1.1rem;
    }

    .card-secondary div p {
        font-size: 1rem;
    }

    .col-lg-3 .card-secondary button {
        font-size: 1rem;
        width: 180px;
    }

    .card-secondary {
        padding: 30px 10px;
    }

    .div3 h2 {
        font-size: 2.25rem;
    }

    #step-heading h2 {
        font-size: 2.4rem;
    }

    .products_available p {
        font-size: 14px !important;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .step-heading > h3 {
        font-size: 1.25rem;
    }

    .step {
        width: 24%;
        padding: 10px;
    }

    .button-section > div > div {
        font-size: 1.2rem;
    }

    .button-section > div > i {
        font-size: 1.35rem;
    }

    /* .left h1,
    .left h2,
    .left h3,
    .left h4 {
        font-size: 2rem !important;
    }

    .left > p {
        font-size: 1.1rem;
    } */

    .doctor-button > a {
        font-size: 1.1rem;
    }

    .doctor-button > i {
        font-size: 1.5rem;
    }

    .right > img {
        min-width: 600px;
        width: 100%;
    }

    .container1 > section {
        min-height: 50vh;
    }

    .partner-heading {
        font-size: 3.3rem;
    }

    .first-content {
        width: 50%;
    }

    .first-content > img {
        min-width: 650px;
        width: 100%;
        left: 20%;
    }

    .heading > h2,
    .heading > h1 {
        font-size: 2.3rem;
    }

    .para > p {
        font-size: 1.2rem;
    }

    #solution-para figure {
        font-size: 1.1rem;
    }

    #solution-para > h4,
    #solution-para > h5,
    #solution-para > h6 {
        font-size: 1.5rem;
    }

    #solution-para > ul,
    #solution-para > ol {
        font-size: 1.15rem;
    }

    .tabs-section-container > h4 {
        font-size: 2rem;
    }

    .tabs-section-container > p {
        font-size: 1.1rem;
    }

    .medicines-container .card {
        min-height: 320px;
    }

    .price p {
        font-size: 1.15rem !important;
    }

    .prescription p {
        padding: 0.5rem;
    }

    .medicines-container .card p {
        font-size: 0.95rem;
    }

    .medicines-container .card h4 {
        font-size: 1.25rem;
    }

    .medicines-container .card h6 {
        font-size: 1rem;
    }

    .read-more,
    .add-to-cart {
        font-size: 0.9rem;
    }

    .read-more > i,
    .add-to-cart > i {
        font-size: 1rem;
    }

    .test-card-price {
        font-size: 1.15rem;
    }

    .add_to_cart_btn {
        font-size: 0.95rem;
    }

    .truncate-overflow {
        --max-lines: 3.5;
    }

    .tests-card h4 {
        font-size: 1.25rem;
    }

    .tests-card p {
        font-size: 0.9rem;
    }

    .learn_btn {
        font-size: 1rem;
    }

    .learn_btn i {
        font-size: 1.25rem;
    }

    .psychiatry-box {
        min-width: 300px;
        max-width: none;
    }

    .psychiatry-box img {
        width: 20%;
    }

    .psychiatry-box p {
        font-size: 1.15rem;
    }

    .pharmacy-category {
        font-size: 1.05rem;
    }

    .btn-div button {
        font-size: 1.2rem;
    }

    #faqs h2 {
        font-size: 2.5rem;
    }

    .faq-question h3 {
        font-size: 1.4rem;
    }

    .faq-answer p {
        font-size: 1.15rem;
    }

    #faqs {
        min-height: 30vh;
    }

    #disclaimer-content > div:first-child > h2 {
        font-size: 2.5rem;
    }

    .med-img2 {
        height: 160px;
    }

    #disclaimer-content > div > p {
        font-size: 1.2rem;
    }

    .footer-heading > h3 {
        font-size: 1.75rem;
    }

    .footer-content-new > p {
        font-size: 1.1rem;
    }

    .footer-content-new > div > a {
        font-size: 1.1rem;
    }

    #social-icons > a > i {
        font-size: 1.3rem;
    }

    #social-icons {
        gap: 1.5rem;
    }

    #copyright > p {
        font-size: 1.15rem;
    }

    .footer-content-new > iframe {
        width: 400px !important;
        height: 200px;
    }

    #footer-logo-new > img {
        width: 100%;
        min-width: 225px;
    }

    .pagination {
        margin-top: 1rem;
        scale: 1.1;
    }

    /* Pharmacy Page */

    .alphabet {
        font-size: 1.25rem;
    }

    .container-fluid > h3 {
        font-size: 2.25rem;
    }

    .container-fluid > p {
        font-size: 1.2rem;
    }

    .searchbar {
        min-width: 500px;
    }

    .tests-card {
        height: max(250px, 10vh);
    }

    .categories-list li {
        min-width: 200px;
        max-width: 200px;
    }

    /* Our Doctors Page */

    .doctor-list-card-container {
        min-height: 260px !important;
    }

    .doctor-list-container h2 {
        font-size: 2.5rem !important;
    }

    .doctor-list-container > p {
        font-size: 1.15rem !important;
    }

    .doctor-pic-container {
        width: 6rem !important;
        height: 6rem !important;
    }

    .doctor-data-container h5 {
        font-size: 1.2rem !important;
    }

    .doctor-data-container .specialization-doc {
        font-size: 0.9rem !important;
    }

    .doctor-data-container .education-doc {
        font-size: 0.75rem !important;
    }

    .doctor-verify {
        font-size: 0.9rem !important;
    }

    .doctor-ratings > i {
        font-size: 1.2rem !important;
    }

    .doctor-experience-badge {
        font-size: 0.9rem !important;
    }

    .doctor-list-card-container button {
        font-size: 1.15rem;
    }

    .search-bar-container {
        width: 40% !important;
    }

    /* About Us Page */

    .about_heading_inner_div > h1 {
        font-size: 2.5rem;
    }

    .about-main-heading {
        font-size: 2.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .desc-container h2 {
        font-size: 2.75rem;
    }

    .desc-container p {
        font-size: 1.15rem;
        width: 55%;
    }

    .about-image {
        bottom: 0;
    }

    .about-image img {
        min-width: 800px;
    }

    .about-content p {
        width: 62%;
    }

    /* Contact Page */

    .contact-right h4 {
        font-size: 2.25rem;
    }

    .contact-right p {
        font-size: 1rem;
    }

    .contact-info > div > div {
        font-size: 1.25rem;
    }

    .contact-info > div > p {
        font-size: 0.9rem;
    }

    .contact-icons i {
        font-size: 1.35rem;
    }

    .contact-right .form-control {
        font-size: 1.15rem;
    }

    .contact-btn {
        font-size: 1.15rem;
    }

    /* E-Visit Page */

    .gallery {
        width: auto;
    }

    .pharmacy-page-container .container p {
        margin-bottom: 1.5rem;
    }

    .e_visit_btns button {
        font-size: 1.15rem;
    }

    .contact-content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 2000px) {
    .offer-banner > span {
        font-size: 1.2rem;
    }

    .logo > img {
        width: 40%;
    }

    .dropdown-menu li a {
        font-size: 1.2rem !important;
    }

    #joinDropdown,
    #navbar a,
    .nav_btns > i {
        font-size: 1.2rem !important;
    }

    #nav-right-side > div:last-child {
        width: 6%;
    }

    #nav-right-side > div:last-child > img {
        width: 65%;
    }

    .custom-card-body h1,
    .custom-card-body h2,
    .custom-card-body h3,
    .custom-card-body h4,
    .custom-card-body h5 {
        font-size: 1.2rem;
    }

    .custom-card-body p {
        font-size: 1rem;
    }

    .custom-btn2 {
        font-size: 1.2rem;
        width: 290px;
    }

    .carousel-img {
        height: auto;
    }

    .custom-card-img img {
        width: 100%;
    }

    .custom-card-img {
        right: 0;
    }

    .card-secondary div h1,
    .card-secondary div h2,
    .card-secondary div h3,
    .card-secondary div h4,
    .card-secondary div h5 {
        font-size: 1.2rem;
    }

    .card-secondary div p {
        font-size: 1rem;
    }

    .col-lg-3 .card-secondary button {
        font-size: 1.2rem;
        width: 290px;
    }

    .card-secondary {
        padding: 50px 10px;
    }

    .div3 h2 {
        font-size: 3rem;
    }

    #step-heading h2 {
        font-size: 3rem;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .step-heading > h3 {
        font-size: 1.4rem;
    }

    .step {
        width: 24%;
        padding: 30px 10px;
    }

    .button-section > div > div {
        font-size: 2rem;
    }

    .button-section > div > i {
        font-size: 2rem;
    }

    /* .left > h1,
    .left > h2 {
        font-size: 3rem;
    }

    .left > p {
        font-size: 1.2rem;
    } */

    .doctor-button {
        font-size: 1.2rem;
    }

    .right {
        width: 40%;
    }

    .right > img {
        width: 100%;
    }

    .container1 > section {
        min-height: 50vh;
    }

    .partner-heading {
        font-size: 2.5rem;
    }

    .first-content {
        width: 50%;
    }

    .first-content > img {
        width: 70%;
    }

    .heading > h2,
    .heading > h1 {
        font-size: 2.5rem;
    }

    .para > p {
        font-size: 1.2rem;
    }

    #solution-para > h4,
    #solution-para > h5,
    #solution-para > h6 {
        font-size: 1.2rem;
    }

    #solution-para > ul,
    #solution-para > ol {
        font-size: 1.2rem;
    }

    #faqs h2 {
        font-size: 2.5rem;
    }

    .faq-question h3 {
        font-size: 1.8rem;
    }

    .faq-answer p {
        font-size: 1.3rem;
    }

    #faqs {
        min-height: 30vh;
    }

    #disclaimer-content > div:first-child > h2 {
        font-size: 2.5rem;
    }

    #disclaimer-content > div > p {
        font-size: 1.5rem;
    }

    .footer-heading > h3 {
        font-size: 2rem;
    }

    .footer-content-new > p {
        font-size: 1.3rem;
    }

    .footer-content-new > div > a {
        font-size: 1.3rem;
    }

    #social-icons > a > i {
        font-size: 1.5rem;
    }

    #social-icons {
        gap: 1.3rem;
    }

    #copyright > p {
        font-size: 1.3rem;
    }

    #footer-logo-new > img {
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .medicines-container .card {
        flex: 1 1 calc(33.33% - 15px);
        max-width: calc(33.33% - 15px);
    }

    .tests-card {
        flex: 1 1 calc(33.33% - 15px);
        max-width: calc(33.33% - 15px);
    }

    .gallery {
        width: auto;
        margin: auto;
    }

    .pharmacy-page-container h2 {
        font-size: 1.5rem;
    }

    .pharmacy-page-container p {
        font-size: 0.9rem;
    }

    .gallery-container {
        margin: auto;
    }

    .pharmacy-page-container h2:first-child {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .para > p {
        font-size: 13px;
    }

    #footer-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .medicines-container .card {
        flex: 1 1 calc(33.33% - 15px);
    }

    .psychiatry-box {
        flex: 1 1 calc(33.33% - 15px);
    }

    .pain-management-box {
        flex: 1 1 calc(50% - 15px);
    }

    #navbar a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1000px) {
    #steps {
        flex-wrap: wrap;
    }

    .step {
        margin-bottom: 8px;
    }

    .arrow2 > .right_arrow {
        visibility: hidden;
    }
}

@media (max-width: 992px) {
    .parent {
        display: flex;
        flex-direction: column;
    }

    .div1,
    .div2,
    .div3 {
        grid-column: auto;
        grid-row: auto;
    }

    .carousel-img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 980px) {
    #hero-content > h1 {
        font-size: 39px;
    }

    #hero-content > p {
        font-size: 15px;
        width: 70%;
    }

    #slider-button {
        padding: 3px 10px;
        font-size: 14px;
    }

    .first-content > img {
        position: relative;
        left: 70px;
    }

    .heading > h2 {
        font-size: 26px;
    }

    #nav-left-side,
    #nav-right-side {
        display: none;
    }

    .hamburger_container {
        display: block;
    }

    #problems-section > div > h2 {
        font-size: 45px;
    }

    .e-visit-content {
        flex-direction: column;
        gap: 20px;
    }

    /* .left {
        box-shadow: -50px -50px 0 -45px var(--red), 50px 50px 0 -45px var(--red);
        padding: 20px;
        width: 100%;
        text-align: justify;
    } */

    .right {
        display: none;
    }

    .image-bg {
        top: 1%;
        height: 100%;
    }

    .read-more {
        font-size: 10px;
    }

    .add-to-cart {
        font-size: 10px;
    }

    .contact-info {
        word-wrap: normal;
        padding: 0 10px;
    }

    .cart-search-container {
        display: flex !important;
    }
}

@media (max-width: 900px) {
    .medicines-container .card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .tests-container {
        justify-content: center;
    }

    .tests-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* @media (min-width: 767px) and (max-width: 856px) {
    .doctor-list-card-container {
        min-height: 230px !important;
    }
} */

@media screen and (max-width: 855px) {
    #problems-section > div > h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .search-bar-container {
        width: 100% !important;
    }

    #footer-logo-new > img {
        max-width: 400px;
    }

    #hero-content {
        padding: 0 30px;
    }

    .border-right {
        border-right: none;
        border-bottom: 1px solid rgb(201, 201, 201);
    }

    .partners_logos img {
        width: 150px;
    }

    #hero-content > h1 {
        font-size: 35px;
    }

    .button-section > div > a {
        font-size: 10px;
    }

    #problems-section > div > h2 {
        font-size: 35px;
    }

    #problems-section > p {
        font-size: 15px;
    }

    .pharmacy-categories {
        flex-wrap: wrap;
    }

    #footer-section {
        grid-template-columns: 1fr;
    }

    .medicines-container .card {
        flex: 1 1 calc(50% - 15px);
    }

    .medicines-container .card h4 {
        margin-top: 8%;
    }

    .psychiatry-box {
        flex: 1 1 calc(50% - 15px);
    }

    .substance-abuse-box {
        flex: 1 1 calc(50% - 15px);
    }

    #buttons-section {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 90%;
        margin: 10px auto;
    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        background-color: #f5f5f5;
        border-bottom: 1px solid #f5f5f5;
    }

    .button-section {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        border-radius: 10px;
    }

    #buttons-section > hr {
        width: none;
        border: none;
        margin: none;
    }

    .button-section > div {
        padding: 7px 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-width: 25%;
        transition: all 0.3s ease-in-out;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .button-section > .active {
        background: #f5f5f5;
        position: relative;
        border-radius: 10px;
        text-decoration: underline;
        transition: all 0.09s ease-in-out;
        box-shadow: 0px 3px 1px 2px rgba(128, 128, 128, 0.322);
    }

    .button-section > .active > div {
        color: var(--maroon);
        font-weight: 600;
    }

    .button-section > .active::after {
        content: "";
        position: static;
        height: none;
        width: none;
        background-color: none;
        border-radius: none;
        box-shadow: none;
        transition: all 0.4s ease-in-out 0.4s;
    }

    .button-section > .active::before {
        content: "";
        position: static;
        height: none;
        width: none;
        background-color: none;
        border-radius: none;
        box-shadow: none;
        transition: all 0.4s ease-in-out 0.4s;
    }

    .button-section > div:hover,
    .doctor-button:hover div {
        text-decoration: underline;
    }

    .button-section > div > div {
        text-decoration: none;
        color: var(--maroon);
        font-size: 15px;
        font-weight: 500;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .button-section > div > img {
        width: 18px;
    }

    .first-content {
        display: none;
    }

    .last-content {
        width: 100%;
    }

    .doctor_name {
        font-size: 1.75rem;
    }

    .doctor_designation {
        font-size: 1rem !important;
    }

    .doctor_degree {
        font-size: 0.8rem !important;
    }

    .nav-tabs {
        --bs-nav-tabs-border-color: none;
    }

    .doctor-data-container .education-doc {
        font-size: 0.8rem !important;
    }

    /* about us section */
    .intro-heading {
        font-size: 2.2rem;
    }

    .intro-paragraph {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 700px) {
    #step-heading > h2 {
        font-size: 25px;
    }

    .step-heading > h3 {
        text-align: left;
    }

    .step {
        width: 350px;
        min-height: 38px;
        border-radius: 20px;
        padding: 10px 10px;
        gap: 4px;
    }

    #steps-wrapper {
        gap: 25px;
    }

    .right_arrow {
        display: none !important;
    }

    .down_arrow {
        display: block !important;
    }

    #problems-section > div > h2 {
        font-size: 32px;
    }

    #problems-section > p {
        font-size: 14px;
    }

    .blob {
        position: absolute;
        left: -150px;
        top: 0;
        width: 400px;
        height: 300px;
        z-index: -1;
        opacity: 0.5;
    }

    .blob2 {
        position: absolute;
        right: -200px;
        width: 450px;
        bottom: 0;
        z-index: -2;
        opacity: 0.5;
    }

    .custom-search-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .custom-search-container > div {
        width: 100% !important;
    }

    .category-dropdown {
        max-width: none;
    }
}

@media screen and (max-width: 650px) {
    .para > p {
        font-size: 8px;
    }

    .heading > h2 {
        font-size: 28px;
    }

    .doctor-button {
        font-size: 11px;
    }

    .heading > h2 {
        font-size: 22px;
    }

    .para > p {
        font-size: 12px;
    }

    .medicines-container .card h4 {
        margin-top: 14%;
    }

    .image-bg {
        top: 7%;
        height: 85%;
    }

    #disclaimer-content > div > p {
        font-size: 12px;
    }

    #faqs h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    #disclaimer-content > div:first-child > h2 {
        font-size: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .partner-heading {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .medicines-container .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .tabs_icons {
        font-size: 1.5rem;
    }

    .tests-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .medicines-container .card h6 {
        margin-bottom: 1rem !important;
    }

    .gallery {
        width: auto;
    }

    .doctor-filter {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 540px) {
    #hero-content > h1 {
        font-size: 40px;
    }

    #hero-content > p {
        font-size: 15px;
        width: 100%;
    }

    .first-content > img {
        width: 271px;
    }

    .first-content > img {
        display: none;
    }

    .image-bg {
        display: none;
    }

    #disclaimer-content > div:first-child > h2 {
        font-size: 32px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }

    .button-section > div {
        max-width: 50%;
    }

    .medicines-container .card {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 480px) {
    #faq-content {
        max-width: 90%;
    }

    #disclaimer-content > div > p {
        padding: 0 1.5rem;
    }

    .healthcare-section h4 {
        font-size: 0.8rem !important;
    }

    #hero-content {
        padding-top: 40px;
        padding-bottom: 70px;
        gap: 10px;
    }

    #hero-content > h1 {
        font-size: 35px;
    }

    .psychiatry-box {
        flex: 1 1 100%;
    }

    .pain-management-box {
        flex: 1 1 100%;
    }

    .substance-abuse-box {
        flex: 1 1 100%;
    }

    .medicines-container .card h4 {
        margin-top: 10%;
    }

    .tabs-section-container > .e-visit-content h4 {
        font-size: 1.25rem;
    }

    /* .left p {
        font-size: 0.8rem;
    } */

    .doctor-button {
        font-size: 0.7rem;
    }

    .doctor-button > i {
        font-size: 1.2rem;
    }

    .tabs-section-container {
        padding: 1rem;
    }

    .button-section > div > div {
        font-size: 0.75rem;
    }

    .button-section > div > i {
        font-size: 1.4rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .footer-content-new i {
        margin-left: 0 !important;
    }

    .footer-content-new iframe {
        width: 280px !important;
    }

    .pharmacy-page-container {
        padding: 0 0.75rem !important;
    }

    .pharmacy-page-container p {
        font-size: 0.75rem;
    }

    .doctor-list-card-container {
        padding-top: 2rem !important;
    }

    .doctor-list-container > p {
        font-size: 0.85rem;
    }

    .content {
        width: 90%;
    }

    .logo > img {
        width: 200px;
    }
}

/* new design */

.checkbox-wrapper-47 input[type="radio"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-47 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.checkbox-wrapper-47 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
    font-size: 14px;
}

.checkbox-wrapper-47 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
}

.checkbox-wrapper-47 input[type="radio"] + label {
    padding: 0.25rem 0.5rem;
    border: 2px solid transparent;
    border-radius: 0.25rem;
}

.checkbox-wrapper-47 input[type="radio"]:checked + label {
    /* background: #506EEC; */
    color: #506eec;
    border: 2px solid #506eec;
    transition: all 0.2s ease-in;
}

.checkbox-wrapper-47 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-47 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.checkbox-wrapper-47 .cbx span:last-child {
    padding-left: 8px;
}

.checkbox-wrapper-47 .cbx:hover span:first-child {
    border-color: #506eec;
}

.checkbox-wrapper-47 .inp-cbx:checked + .cbx span:first-child {
    background: #506eec;
    border-color: #506eec;
    animation: wave-46 0.4s ease;
}

.checkbox-wrapper-47 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-47 .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}

/* DOCTORS PROFILE PAGE CSS */

/* .profile_main {
    overflow-x: auto !important;
} */

.profile_main h3 {
    margin-bottom: 0;
}

.ratings > i {
    color: rgb(206, 206, 26);
}

.ratings > p {
    color: gray;
}

.profile_pic_container {
    width: 13.625rem;
    height: 12.0625rem;
    overflow: hidden;
}

.profile_pic_container > img {
    object-position: center 25%;
}

.doctor_designation {
    font-size: 1.2rem;
}

.bio_points {
    min-height: 0;
    margin-bottom: 0;
    color: rgb(88, 88, 88) 2;
}

.bio_points > .btn {
    font-size: 1.1rem !important;
}

.profile_icon .icon_container i {
    color: white;
}

.profile_service {
    color: gray;
}

.profile_service > div > div {
    background: rgb(255, 255, 255);
    padding: 5px;
}

.doctor_info {
    border-bottom: 0 !important;
    border-bottom-left-radius: 1.75rem !important;
    border-bottom-right-radius: 1.75rem !important;
    background: #ffffff3f;
    top: 5px;
    bottom: 5px;
}

.doctor_info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor_info .new-arrow-icon {
    border: 2px solid white;
}

.doctor_experience div:first-child div {
    font-size: 14px;
}

.appointment-date-container .accordion-button:not(.collapsed) {
    background-color: white;
}

.appointment_btn {
    border-radius: 5rem;
}

.appointment_btn:hover {
    background-color: var(--blue);
}

.appointment_btn:hover .new-arrow-icon {
    background-color: var(--blue);
}

.doctor_info u {
    text-decoration: none;
}

.doctor_exp_text {
    color: rgb(88, 88, 88) 2;
    line-height: 1rem;
}

@media only screen and (max-width: 576px) {
    .alphabet {
        font-size: 0.8rem;
    }
    .border-sm-bottom {
        border: none;
    }

    .page-link {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .container-fluid > p {
        font-size: 0.8rem;
    }

    .tablets,
    .medkit {
        display: none;
    }

    .about-content {
        width: 90%;
    }

    .about-content p {
        text-align: center;
        width: 80%;
        font-size: 13px;
    }

    .profile_pic_container {
        width: 8rem;
        height: 8rem;
        min-width: 8rem;
        min-height: 8rem;
    }

    .doctor_name {
        font-size: 1.5rem !important;
    }

    .doctor_designation {
        font-size: 1rem;
    }

    .about-image > img {
        width: 100%;
    }

    .desc-container h2 {
        width: 85%;
        font-size: 28px;
    }

    .desc-container p {
        width: 70%;
        font-size: 13px;
    }

    .faq-answer p,
    .faq-answer span {
        font-size: 0.8rem !important;
    }

    #faq-content {
        padding: 0 10px !important;
    }

    .contact-content {
        padding-top: 0;
        align-items: center;
        margin: auto 0 4rem 0;
    }

    .underline3 {
        width: 55%;
    }

    .disclaimer-blob {
        /* width: 500px;
        left: -250px;
        top: 100px; */
        display: none;
    }

    .view-button {
        position: static !important;
    }

    .view-button > button {
        width: 100% !important;
    }

    .doctor-list-card-container {
        min-height: 200px !important;
    }

    .categories-list li {
        min-width: 0;
        max-width: 80px;
        font-size: 12px;
        padding: 0.25rem 0.5rem;
    }

    .product-name {
        font-size: 1rem !important;
    }
}

@media only screen and (max-width: 423px) {
    .doctor_name {
        font-size: 1.15rem;
    }

    .doctor_degree {
        font-size: 1rem !important;
    }

    .offer-banner > span {
        font-size: 14px;
    }

    .pharmacy-page-container > div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media only screen and (max-width: 373px) {
    .logo > img {
        width: 170px;
    }

    .healthcare-section {
        --bs-gutter-x: 0;
    }

    .page-link {
        font-size: 0.7rem;
        padding: 0.35rem;
    }

    .ratings {
        gap: 0.25rem !important;
    }

    .profile_comments {
        font-size: 0.9rem;
    }

    .ratings > i {
        font-size: 0.8rem;
    }

    .checkbox-wrapper-47 label {
        font-size: 0.8rem;
    }

    .hamburger div {
        width: 25px;
    }
}

@media only screen and (max-width: 335px) {
    .offer-banner > span {
        font-size: 12px;
    }

    .tests-card {
        min-width: auto;
    }

    .background-secondary {
        padding: 0.5rem !important;
    }

    .healthcare-section h4 {
        font-size: 0.75rem !important;
    }

    .doctor-filter {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
        text-align: center;
    }
}

/* Doctor's List Page */
.doctor-filter {
    min-width: 640px;
}

.doctor-list-container {
    width: 92%;
}

.doctor-list-section hr {
    margin: 0.1rem 0;
}

.search-field {
    border: none;
    outline: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.search-btn {
    border: none;
    background: none;
}

.doctor-list-card-container {
    min-height: 250px;
    border-top: 6px solid var(--blue);
    box-shadow: 1px 1px 2px 0px #d0c0c0;
    background: white;
}

.doctor-list-card-container > h6 {
    background-color: rgb(189, 189, 255);
    color: var(--blue);
    letter-spacing: 0.1rem;
}

.doctor-pic-container {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    box-shadow: 0px 2px 5px 0px var(--blue);
}

.doctor-experience-badge {
    position: absolute;
    top: 2%;
    right: -3%;
    background: var(--green);
    border-radius: 8px;
    font-size: 0.7rem;
    color: white;
    padding: 0.3rem 0.5rem;
}

.doctor-experience-badge::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 50%;
    background: #219408;
    top: 75%;
    right: -1px;
    border-bottom-right-radius: 10px;
    transform: rotate(331deg);
    z-index: -1;
}

.doctor-pic-container > img {
    object-position: top center;
}

.doctor-ratings {
    gap: 2px;
}

.doctor-ratings > i {
    color: rgb(231, 231, 20);
    font-size: 0.8rem;
}

.search-bar-container {
    width: 50%;
}

.doctor-data-container h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.doctor-verify {
    margin: 0 0 0.1rem 0;
    font-size: 0.7rem;
    color: var(--red);
}

.doctor-data-container .specialization-doc {
    font-size: 0.8rem;
}

.doctor-data-container .education-doc {
    font-size: 0.65rem;
    /* white-space: nowrap;
    width: 60%;
    text-overflow: ellipsis;
    overflow: hidden; */
}

@media screen and (min-width: 1200px) {
    .search-bar-container {
        width: 40%;
    }
}

@media screen and (min-width: 992px) {
    .search-bar-container {
        width: 40%;
    }
}

@media screen and (max-width: 576px) {
    .search-bar-container {
        width: 70%;
    }

    .gallery > img:hover {
        width: 120px;
        height: 75px;
    }

    .main-hero-section .order-3 .w-50 {
        width: 100% !important;
    }

    .modal-header .btn-close {
        opacity: 1;
        position: absolute;
        right: 0;
        top: -10px;
        background-color: beige;
        border-radius: 50%;
        font-size: 16px;
        padding: 8px;
    }

    .modal-login-reg-btn {
        gap: 5px;
    }

    .modal-login-reg-btn a {
        min-width: 12.5rem;
    }
}

/* Doctor Cards Carousel Section */

.doctor-carousel-card-container {
    min-height: 200px;
    border-top: 6px solid var(--blue);
    box-shadow: 1px 1px 2px 0px #d0c0c0;
}

.doctor-carousel-card-container > h6 {
    background-color: #ffe4e7;
    color: var(--red);
    letter-spacing: 0.1rem;
}

.carousel-pic-container {
    width: 100px;
    height: 100px;
    box-shadow: 0px 2px 5px 0px var(--blue);
}

.carousel-pic-container > img {
    object-position: top center;
}

.carousel-doctor-ratings > i {
    color: rgb(231, 231, 20);
}

.doctor-carousel-container .carousel-control-prev-icon,
.doctor-carousel-container .carousel-control-next-icon {
    filter: invert(1);
}

.doctor-carousel-container .carousel-control-prev,
.doctor-carousel-container .carousel-control-next {
    position: static;
    width: 25%;
}

.doctor-carousel-container .carousel-control-next-icon,
.doctor-carousel-container .carousel-control-prev-icon {
    width: 2rem;
    height: 2rem;
}

.doctor-carousel-container .carousel {
    padding-inline: 0;
    display: flex;
    gap: 3px;
}

.doctor-carousel-card-container h6 {
    font-size: 0.9rem;
}

.doctor-carousel-card-container p {
    font-size: 0.9rem;
}

.doctor-carousel-container .carousel-item {
    transition: all 0.5s ease-out;
}

@media screen and (max-width: 991px) {
    .doctor-carousel-card-container h6 {
        font-size: 0.7rem;
    }

    .doctor-carousel-card-container h5 {
        font-size: 1rem;
    }

    .doctor-carousel-card-container p {
        font-size: 0.8rem;
    }

    .carousel-pic-container {
        width: 80px;
        height: 80px;
    }

    .checkbox-wrapper-47 label {
        font-size: 0.9rem !important;
    }

    #faqs {
        margin-top: 0.25rem !important;
        padding: 0 11px !important;
    }

    #faq-content {
        margin: 0 auto;
    }

    .faq:last-child {
        border-bottom: 1px solid #ddd;
    }

    .doctor-filter {
        min-width: 100px;
    }
}

@media (max-width: 575px) {
    .doctor-carousel-container
        .carousel-inner
        .carousel-item
        > div:first-child {
        display: block;
    }

    .doctor-carousel-container .carousel-inner .carousel-item-end.active,
    .doctor-carousel-container .carousel-inner .carousel-item-next {
        transform: translateX(100%);
    }

    .doctor-carousel-container .carousel-inner .carousel-item-start.active,
    .doctor-carousel-container .carousel-inner .carousel-item-prev {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 375px) {
    .doctor-carousel-container > h2 {
        font-size: 1.2rem;
    }
}

.doctor-carousel-container .carousel-inner .carousel-item.active,
.doctor-carousel-container .carousel-inner .carousel-item-next,
.doctor-carousel-container .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 576px) {
    .doctor-carousel-container .carousel-inner .carousel-item-end.active,
    .doctor-carousel-container .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .doctor-carousel-container .carousel-inner .carousel-item-start.active,
    .doctor-carousel-container .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .doctor-carousel-container .carousel-inner .carousel-item-end.active,
    .doctor-carousel-container .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .doctor-carousel-container .carousel-inner .carousel-item-start.active,
    .doctor-carousel-container .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

@media (min-width: 992px) {
    .doctor-carousel-container .carousel-inner .carousel-item-end.active,
    .doctor-carousel-container .carousel-inner .carousel-item-next {
        transform: translateX(16.6666667%);
    }

    .doctor-carousel-container .carousel-inner .carousel-item-start.active,
    .doctor-carousel-container .carousel-inner .carousel-item-prev {
        transform: translateX(-16.6666667%);
    }
}

.doctor-carousel-container .carousel-inner .carousel-item-end,
.doctor-carousel-container .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

/* american doctors page   */

.hero-section-doctor {
    background-image: url("./american-doc-hero-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 80vh;
    position: relative;
}

.hero-doctor-heading {
    font-size: 3.5rem;
    width: 70%;
    font-weight: 700;
}

.hero-doctor-para {
    width: 40%;
}

.hero-small-heading {
    color: var(--red);
}

.specialization-container {
    width: 85%;
}

.specialized-column {
    background: white;
    overflow: hidden;
    min-height: 4rem;
    height: 200px;
    position: relative;
}

.specialized-column > h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.specialized-column > p {
    font-size: 0.9rem;
}

.specialized-column:hover {
    background: var(--blue);
    color: white;
    scale: 1.05;
}

.specialized-column:hover .specialized-icons > i,
.specialized-column:hover .specialized-icons > p {
    color: var(--blue);
}

.specialized-icons > i {
    position: absolute;
    font-size: 2rem;
    background: #f5f5f5;
    border-radius: 50%;
    padding: 1.2rem;
    right: -0.6rem;
    bottom: -0.6rem;
}

.work-headings > h3 {
    font-size: 1rem;
}

.work-headings > p {
    font-size: 0.75rem;
}

.work-icons {
    height: 100%;
    width: 30%;
    padding: 1.5rem 3.3rem;
    background: var(--red);
    color: white;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.work-icons > i {
    font-size: 2rem;
}

.healthcare-small-heading {
    color: var(--red);
    border: 2px solid rgba(128, 128, 128, 0.538);
}

.healthcare-section {
    width: 85%;
}

.healthcare-section h4 {
    font-size: 1.2rem;
    width: max-content;
}

.healthcare-large-heading {
    border-left: 5px solid var(--red);
    padding-left: 1rem;
    padding-block: 0.5rem;
    border-radius: 0.3rem;
    color: var(--navy-blue);
}

.image-container-virtual > img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

@media screen and (max-width: 900px) {
    .hero-small-heading {
        font-size: 1.2rem;
    }

    .hero-doctor-heading {
        font-size: 2.5rem;
    }

    .hero-doctor-para {
        font-size: 0.9rem;
    }

    .healthcare-section h4 {
        font-size: 1rem;
    }

    .healthcare-large-heading {
        font-size: 1.5rem;
    }

    .healthcare-section p {
        font-size: 0.8rem;
    }

    .healthcare-section li {
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 768px) {
    .work-column {
        justify-content: center !important;
        background: none !important;
        width: max-content !important;
    }
}

@media screen and (max-width: 650px) {
    .hero-small-heading {
        font-size: 1rem;
    }

    .hero-doctor-heading {
        font-size: 2rem;
        width: 80%;
    }

    .hero-doctor-para {
        font-size: 0.9rem;
        width: 80%;
    }

    .checkbox-wrapper-47 label {
        font-size: 0.8rem !important;
    }
}

.pointer {
    cursor: pointer !important;
}

.doctor-new-container > p {
    font-size: 0.75rem;
}

.online-dot {
    min-width: 20px;
    min-height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    right: 2px;
    bottom: 2px;
}

.doctor-list-card-container {
    padding-top: 2rem !important;
}

.view-button {
    bottom: 5px;
    left: 0;
}

.view-button > button {
    width: 95%;
    background-color: white;
}

.doctor-list-card-container .truncate-overflow:before {
    content: "";
    position: static;
}
