/* ======================================
    HOME PAGE and COOMMON COMPONENTS
========================================= */
@media (max-width: 1260px) {
    .header {
        padding: 26px 30px;
    }

    .header>nav>ul {
        gap: 16px;
    }

    .header>a>img {
        width: 120px;
    }

    .home-hero-section,
    .services-section,
    .work-section,
    .google-reviews,
    .faq-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .about-section,
    .healthcare-section,
    .why-section,
    .appointment-section,
    .map-section,
    .footer-content,
    .copyright {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-section {
        gap: 40px;
    }

    .footer-content {
        padding-bottom: 80px;
    }

    .home-common-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .about-section h2,
    .home-hero-section h1 {
        font-size: 48px;
        line-height: 52px;
    }

    .home-hero-section p {
        max-width: 720px;
    }

    .header nav a,
    .header li span {
        font-size: 14px;
    }

    .footer-intro {
        margin-right: clamp(20px, 7%, 32px);
    }

    .footer-content {
        gap: 40px;
    }

    .footer-content .footer-links:nth-child(2) {
        margin-right: clamp(10px, 5%, 20px);
    }
}

@media (max-width:1025px) {
    body.menu-open {
        overflow: hidden;
    }

    .menu-overlay {
        display: block;
    }

    .header {
        align-items: center;
    }

    .header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 360px;
        height: 100vh;
        background: #111;
        padding: 120px 30px;
        transition: 0.35s;
        z-index: 999;
    }

    .header nav.active {
        right: 0;
        overflow-y: auto;
    }

    .header>nav>ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .burger {
        display: flex;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
    }

    .submenu ul {
        padding: 15px 0 0px 15px;
        background: transparent;
        box-shadow: none;
    }

    .has-submenu {
        flex-direction: column;
    }

    .submenu ul a {
        color: #fff;
    }

    .has-submenu.active .submenu {
        max-height: 5000px;
    }

    .header>nav>ul>li {
        height: auto;
    }

    .has-submenu span {
        width: 100%;
        justify-content: space-between;
    }

    .has-submenu:hover img {
        transform: none;
    }

    .header>nav>ul>li:last-child {
        padding-bottom: 40px;
    }

    .has-submenu.active span img {
        transform: rotate(180deg);
    }

    .header>nav>ul>li {
        align-items: flex-start;
    }

    .header li span {
        width: 200px;
    }

    .header li span img {
        width: 20px;
    }

    .header nav a,
    .header li span {
        font-size: 16px;
    }

    .about-section,
    .why-section,
    .work-section>div {
        flex-direction: column;
    }

    .connector {
        width: 3px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .connector::after {
        top: unset;
        bottom: 0;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }

    .why-section {
        background-position: 22%;
    }

    .why-section>div:nth-child(2) {
        margin-left: auto;
        max-width: 500px;
    }

    .about-section>div>img {
        max-width: 620px;
        margin: 0 auto;
        display: flex;
    }

    .work-section>p {
        margin: 4px 0 40px;
    }

    .appointment-section {
        flex-direction: column;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content .footer-links:nth-child(2) {
        margin-right: 0;
    }

    .footer-links {
        padding-top: 20px;
        justify-content: flex-start;
    }

    .about-section h2,
    .home-hero-section h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .home-hero-section p {
        margin: 4px 0 20px;
        max-width: 660px;
    }

    .about-section h6 {
        margin: 4px 0 12px;
    }

    .healthcare-section>div {
        flex-direction: column;
        max-width: 620px;
        margin: 0 auto;
    }

    .healthcare-section .home-common-heading {
        margin-bottom: 26px;
    }

    .home-hero-section h1 {
        max-width: 670px;
    }

    .services-section .home-common-heading {
        margin-bottom: 42px;
    }
}

@media (max-width: 768px) {

    .about-section h2,
    .home-hero-section h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .about-section,
    .services-section,
    .healthcare-section,
    .why-section,
    .work-section,
    .faq-section,
    .appointment-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer-content {
        padding-bottom: 60px;
    }

    .home-common-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .services-section .home-common-heading {
        margin-bottom: 26px;
    }

    .why-section .home-common-heading {
        margin: 0 0 4px;
    }

    .why-section {
        height: 867px;
        gap: 40px;
        background-position: 20%;
        justify-content: flex-start;
    }

    .why-section>div:nth-child(2) {
        padding: 28px 24px;
    }

    .work-section h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .copyright {
        flex-direction: column;
        gap: 4px;
    }

    .appointment-section {
        background-position: 24%;
        height: 888px;
    }

    .appointment-section .home-common-heading {
        margin-bottom: 0;
    }

    .appointment-section form {
        padding: 32px 30px 24px;
    }

    .about-section p {
        margin-bottom: 16px;
    }

    .services-section h3 {
        font-size: 20px;
        line-height: 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        padding-top: 0;
    }

    .map-section {
        padding-top: 50px;
    }

}

@media (max-width: 480px) {
    .main {
        overflow: hidden;
    }

    .header nav {
        width: 100%;
        max-width: 360px;
    }

    .home-hero-section,
    .about-section,
    .healthcare-section,
    .why-section,
    .appointment-section,
    .map-section,
    .footer-content,
    .copyright,
    .services-section,
    .work-section,
    .google-reviews,
    .faq-section,
    .appointment-section form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .healthcare-section>div>div>h3 {
        margin-top: 24px;
    }

    .home-hero-section h1 {
        max-width: 340px;
    }

    .services-section .splide__arrows {
        margin-top: 30px;
    }

    .about-section {
        gap: 30px;
    }

    .header {
        padding: 16px 20px;
    }

    .home-hero-section p,
    .about-section p,
    .healthcare-section>div>div>p,
    .why-section>div>p,
    .content-wrapper ul li,
    .work-section>p,
    .work-section div p,
    .faq p,
    .appointment-section p,
    .appointment-section input,
    .appointment-section textarea,
    .appointment-section input::placeholder,
    .appointment-section textarea::placeholder,
    .footer-links a,
    .footer-links p,
    .copyright p,
    .copyright a,
    .footer-intro p {
        font-size: 14px;
        line-height: 20px;
    }

    .appointment-section input,
    .appointment-section textarea {
        padding: 12px 20px 12px;
    }

    .faq h6 {
        font-size: 18px;
        line-height: 22px;
    }

    .faq {
        padding: 20px;
    }

    .faq p {
        padding: 10px 0 8px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        height: 190px;
    }

    .content-wrapper ul {
        gap: 20px;
    }

    .work-section>p {
        margin-bottom: 26px;
    }

    .home-hero-section p {
        max-width: 355px;
        margin-bottom: 16px;
    }

    .btn a,
    .appointment-section button,
    .header nav a,
    .header li span {
        font-size: 14px;
    }

    .appointment-section button {
        padding-left: 44px;
        padding-right: 44px;
    }

    .about-section h6 {
        font-size: 18px;
        line-height: 26px;
    }

    .about-section .btn {
        margin-top: 4px;
    }

    .healthcare-section .home-common-heading {
        margin-bottom: 16px;
    }

    .healthcare-section>div>div>div {
        width: 100px;
        height: 100px;
    }

    .healthcare-section>div,
    .footer-content {
        gap: 20px;
    }

    .footer-intro p {
        margin: 10px 0 20px;
    }

    .footer-intro img {
        width: 130px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links a img {
        height: 18px;
    }

    .appointment-section {
        background-position: 28%;
    }

    .content-wrapper ul li::before {
        width: 24px;
        height: 24px;
    }

    .content-wrapper ul li {
        padding-left: 40px;
    }
}

/* ======================================
    Energy Boost IV Drips
========================================= */
@media (max-width: 1260px) {

    .px-70 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .px-50 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .energy-decline,
    .benefits-section {
        gap: 40px;
    }

    .who-benefits-content {
        gap: 36px;
    }

    .process-cards-wrapper {
        gap: 60px;
    }

    .main .grid {
        gap: 12px 50px;
    }
}

@media (max-width: 1025px) {

    .energy-decline,
    .benefits-section,
    .who-benefits-content {
        flex-direction: column;
    }

    .energy-decline>div:first-child,
    .benefits-section>div:nth-child(2) {
        text-align: center;
    }

    .energy-decline p {
        max-width: 560px;
    }

    .process-cards-wrapper {
        gap: 20px;
    }

    .process-card {
        padding-inline: 20px;
    }

    .who-benefits-content>div:first-child {
        padding: 0;
    }

    .who-benefits-content {
        padding: 32px;
    }

    .common-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 34px;
    }

    .hero-section {
        height: 500px;
    }

    .main .bullet li {
        max-width: 574px;
    }

    .py-70 {
        padding-block: 50px;
    }

    .mb-70 {
        margin-bottom: 50px;
    }

    .hero-section p {
        margin-top: 6px;
    }
}

@media (max-width: 768px) {
    .main .grid {
        grid-template-columns: 1fr;
    }

    .process-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 50px;
    }

    .who-benefits-content p:first-of-type {
        margin: 12px 0 16px;
    }

    .process-card {
        padding-top: 36px;
    }

    .process-card div {
        width: 50px;
        height: 50px;
        top: -25px;
    }

    .process-card div span {
        font-size: 32px;
    }

    .performance-supporting p,
    .intro-section p {
        margin-top: 12px;
    }

    .treatment-process p:nth-of-type(2) {
        margin-top: 28px;
    }

    .benefits-section p:first-of-type {
        margin: 16px 0 12px;
    }

    .therapy-section p {
        margin-top: 14px;
    }


    .therapy-section h6,
    .energy-decline p {
        margin: 14px 0;
    }
}

@media (max-width: 480px) {

    .hero-section p,
    .intro-section p,
    .energy-decline p,
    .therapy-section p,
    .benefits-section p,
    .who-benefits-content p,
    .treatment-process>p:first-of-type,
    .process-card p,
    .treatment-process p:nth-of-type(2) {
        font-size: 14px;
        line-height: 20px;
    }

    .treatment-process>p:last-of-type {
        font-size: 13.5px;
        line-height: 20px;
        margin-top: 4px;
    }

    .who-benefits-content {
        padding-inline: 20px;
    }

    .hero-section h1 {
        font-size: 28px;
        line-height: 30px;
    }

    .common-heading {
        font-size: 28px;
        line-height: 33px;
    }

    .px-50,
    .px-70 {
        padding-inline: 20px;
    }

    .hero-section {
        padding-bottom: 40px;
    }

    .energy-decline p:last-child {
        margin-top: 18px;
    }

    .energy-decline,
    .benefits-section {
        gap: 30px;
    }

    .who-benefits-content>div:last-child {
        padding-inline: 20px;
    }
}

/* ======================================
    Hangover IV Drip
========================================= */
@media (max-width: 1025px) {
    .card-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .card p {
        margin: 14px 0;
    }
}

@media (max-width: 480px) {

    .card p {
        font-size: 14px;
        line-height: 20px;
    }

    .card p:last-child {
        margin-top: 18px;
    }
}

/* ======================================
    Gut Health IV Drip
========================================= */

@media (max-width: 768px) {

    .intro-section-2 p {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {

    .intro-section-2 p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ======================================
    Gut Health IV Drip
========================================= */

@media (max-width: 1260px) {
    .treatment-steps-wrapper {
        gap: 60px;
    }
}

@media (max-width: 1025px) {
    .treatment-steps-wrapper {
        flex-direction: column;
        gap: 80px;
        margin: 40px 0 80px;
    }
}

@media (max-width: 768px) {
    .step-number {
        width: 50px;
        height: 50px;
        bottom: -25px;
        left: 89px;
    }

    .treatment-steps-wrapper {
        gap: 55px;
        margin: 30px 0 60px;
    }
}


@media (max-width: 480px) {

    .treatment-step-section>p:first-of-type,
    .step-card p,
    .treatment-step-section>p:nth-of-type(2) {
        font-size: 14px;
        line-height: 20px;
    }

    .treatment-step-section>p:last-of-type {
        font-size: 13.5px;
        line-height: 20px;
        margin-top: 4px;
    }

    .step-card {
        padding: 82px 80px 10px 30px;
    }

    .treatment-step-sec-dark .step-card {
        padding-top: 86px;
    }

    .step-card p,
    .step-card:last-of-type p {
        max-width: unset;
    }
}

/* ======================================
    Anti Aging IV Drip
========================================= */

@media (max-width: 1025px) {
    .anti-aging-intro {
        padding-bottom: 0;
    }

    .therapy-support,
    .support-section {
        flex-direction: column;
    }

    .therapy-support p {
        margin-top: 16px;
    }

    .supporting-hydration>div:nth-child(2) {
        text-align: left;
    }

    .supporting-hydration>div:nth-child(1) {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .who-benefits-light .who-benefits-content p:first-of-type {
        margin: 16px 0 12px;
    }

    .support-section .common-heading {
        margin-bottom: 12px;
    }

    .support-section {
        gap: 30px;
    }

    .therapy-support h6 {
        margin-bottom: 16px;
    }

    .hydration-therapy-wellness p:last-child {
        margin-top: 18px;
    }

    .hydration-therapy-wellness h6 {
        margin-bottom: 10px;
    }

    .benefits-section p:first-of-type {
        margin-bottom: 16px;
    }

    .supporting-hydration p:last-of-type {
        margin-top: 18px;
    }

    .why-vitamin p:first-of-type {
        margin-bottom: 0;
        margin-top: 16px;
    }

    .why-vitamin p:nth-of-type(2) {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {

    .therapy-support p,
    .therapy-support h6,
    .support-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .therapy-support {
        gap: 16px;
    }

    .hydration-steps .step-card:nth-child(2) {
        padding-top: 92px;
    }

    .hrdration-benefits .common-heading {
        max-width: 260px;
    }

    .hydration-steps .step-card:nth-child(3) {
        padding-top: 70px;
        padding-left: 38px;
    }

    .step-number {
        left: 82px;
    }

    .immunity-booster-step-sec .step-card:last-of-type {
        padding-top: 85px;
    }

    .immunity-booster-step-sec .step-card {
        padding-top: 70px;
    }

    .jet-lag-step .step-card:first-of-type {
        padding-top: 78px;
    }

    .jet-lag-step .step-card:last-of-type {
        padding-top: 75px;
    }

    .nad-step .step-card {
        padding-top: 70px;
    }
}

/* ======================================
    Blog Page
========================================= */
@media (max-width: 1260px) {
    .blog-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-wrapper h1 {
        font-size: 48px;
        line-height: 52px;
    }
}

@media (max-width: 1025px) {
    .hero-wrapper {
        height: 500px;
        padding-bottom: 80px;
    }

    .blog-section p {
        max-width: unset;
    }

    .blog-section h3 {
        max-width: unset;
    }

    .hero-wrapper h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .blog-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-wrapper h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .blog-section h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .hero-wrapper p {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        grid-template-columns: 1fr;
    }

    .blog-section {
        gap: 30px;
    }

    .hero-wrapper {
        padding-bottom: 50px;
    }

    .blog-section h3 {
        max-width: 300px;
    }

    .blog-section p {
        max-width: 314px;
    }

    .navigation-wrapper {
        padding: 0 20px 50px;
    }

    .navigation-wrapper>div {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .hero-wrapper h1 {
        font-size: 28px;
        line-height: 32px;
    }
}

@media (max-width: 350px) {
    .navigation-wrapper>div {
        width: 32px;
        height: 32px;
        font-size: 15px;
        border-radius: 8px;
    }
}


/* ======================================
    Contact Page
========================================= */


@media (max-width: 1024px) {
    .contact-hero {
        padding-bottom: 120px;
    }

    .contact-info-wrapper {
        gap: 20px;
    }

    .contact-info-wrapper>div,
    .contact-info-wrapper form {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-bottom: 80px;
    }

    .contact-section>p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .contact-info-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-wrapper>div {
        gap: 30px;
    }

    .contact-info {
        gap: 16px;
    }

    .contact-info h6 {
        font-size: 16px;
    }

    .contact-info p,
    .contact-info a {
        font-size: 14px;
        line-height: 22px;
    }

}

@media (max-width: 480px) {
    .contact-hero {
        padding-bottom: 60px;
        background-position: 90%;
    }

    .contact-info-wrapper {
        padding: 8px;
        border-radius: 12px;
    }

    .contact-info-wrapper form {
        padding: 20px;
    }

    .contact-info-wrapper>div {
        padding: 12px;
    }

    .contact-info-wrapper h3 {
        font-size: 20px;
    }

    .contact-info {
        gap: 10px;
    }

    .contact-info img {
        width: 20px;
        height: 20px;
    }

    .social-wrapper a {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .contact-info-wrapper form input,
    .contact-info-wrapper form textarea {
        font-size: 14px;
        padding: 14px 18px;
    }

    .contact-info-wrapper form textarea {
        height: 100px;
    }
}


/* ======================================
    Our Vision And Mission Page
========================================= */
@media (max-width: 1024px) {
    .vision-hero {
        padding-bottom: 90px;
    }

    .vision-intro {
        gap: 20px;
    }

    .commitment-section {
        gap: 40px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .vision-hero {
        padding-bottom: 70px;
    }

    .vision-intro {
        gap: 16px;
    }

    .commitment-section {
        gap: 30px;
    }

    .commitment-section img {
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .vision-hero {
        padding-bottom: 60px;
    }

    .vision-intro {
        gap: 12px;
    }

    .vision-intro p {
        font-size: 14px;
        line-height: 22px;
    }

    .commitment-section {
        gap: 24px;
    }

    .commitment-section p {
        font-size: 14px;
        line-height: 22px;
    }

    .commitment-section img {
        border-radius: 10px;
    }

    .commitment-section p {
        margin-top: 4px;
    }
}



/* ======================================
    Our Team Page
========================================= */
@media (max-width: 1024px) {
    .team-hero {
        padding-bottom: 80px;
    }

    .team-intro {
        gap: 16px;
    }

    .team-intro>div {
        padding: 35px;
        border-radius: 20px;
    }

    .professionals-section div {
        padding: 26px;
        gap: 20px;
    }

    .disciplinary-approach>div:nth-child(1) {
        text-align: center;
    }

    .disciplinary-approach>div:nth-child(2) {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding-bottom: 60px;
    }

    .team-intro {
        flex-direction: column;
    }

    .team-intro>div {
        padding: 25px;
    }

    .professionals-section div {
        padding: 22px;
        gap: 18px;
        margin-top: 18px;
    }

    .disciplinary-approach p:first-of-type {
        margin-bottom: 18px;
    }

    .content-wrapper .disciplinary-approach ul {
        gap: 10px;
    }

    .personalised-care {
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .team-hero {
        padding-bottom: 50px;
    }

    .hero-wrapper p {
        font-size: 14px;
        line-height: 18px;
    }

    .professionals-section .common-heading,
    .personalised-care .common-heading {
        font-size: 26px;
    }

    .team-intro>div {
        padding: 20px;
        border-radius: 16px;
    }

    .team-intro p {
        font-size: 14px;
        line-height: 22px;
    }

    .professionals-section div {
        padding: 18px;
        border-radius: 14px;
    }

    .professionals-section p {
        font-size: 14px;
        line-height: 22px;
    }

    .content-wrapper .disciplinary-approach ul {
        gap: 8px;
    }

    .personalised-care {
        padding-bottom: 40px;
    }

    .team-hero {
        background-position: 80%;
    }
}

/* ======================================
    How It Works Page
========================================= */
@media (max-width: 1440px) {
    .premium-care-content {
        padding-inline: 40px;
    }
}

@media (max-width: 1260px) {
    .premium-care-content {
        padding-inline: 40px;
    }

    .how-it-works {
        gap: 30px;
        flex-wrap: wrap;
    }

    .service-card {
        width: 300px;
        height: 443px;
    }

    .service-card p {
        padding: 18px 24px;
    }
}

@media (max-width: 1024px) {

    .service-intro p {
        font-size: 18px;
        line-height: 30px;
    }


}

@media (max-width: 768px) {

    .services-hero {
        padding-bottom: 80px;
    }

    .service-card>div:first-child {
        padding: 20px;
    }

    .premium-care-content p {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

    .services-hero {
        padding-bottom: 50px;
        background-position: 56%;
    }

    .services-hero h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .service-intro p {
        font-size: 16px;
        line-height: 26px;
    }

    .service-card>div:first-child {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 24px;
        padding: 25px 20px;
    }

    .premium-care-content {
        padding-inline: 20px;
    }
}

/* ======================================
    Single Blog Page
========================================= */

@media (max-width: 1025px) {
    .single-blog-hero {
        height: 500px;
    }
}

@media (max-width: 768px) {

    .single-blog-hero {
        padding-bottom: 70px;
    }

    .single-blog-hero h1 {
        font-size: 28px;
        line-height: 38px;
        padding-inline: 20px;
    }

    .single-blog-hero p {
        font-size: 16px;
        line-height: 22px;
    }

    .blog-content {
        padding-bottom: 70px;
    }

    .blog-content h2 {
        font-size: 28px;
        line-height: 36px;
        margin: 40px 0 10px;
    }

    .blog-content h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .single-blog-hero p {
        margin-bottom: 10px;
    }

    .blog-content ul {
        margin: 20px 0 16px;
    }
}

@media (max-width: 480px) {

    .single-blog-hero {
        padding-bottom: 50px;
    }

    .single-blog-hero h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .single-blog-hero p {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .blog-content h2 {
        margin: 24px 0 6px;
    }

    .blog-content ul {
        gap: 16px;
    }

    .blog-content {
        padding-bottom: 50px;
    }

    .single-blog-hero {
        background-position: 17%;
    }
}


/* ======================================
    Doctors At Home Page
========================================= */

@media (max-width: 1260px) {
    .two-col-sec {
        gap: 36px;
    }
}


@media (max-width: 1025px) {
    .two-col-sec p {
        font-size: 15px;
        line-height: 24px;
    }

    .two-col-sec {
        flex-direction: column;
        gap: 24px;
    }

    .reliable-sec p,
    .team-intro p,
    .who-benefits-content p {
        max-width: unset;
    }

    .physio-hero p {
        max-width: 530px;
    }


}

@media (max-width: 768px) {

    .two-col-sec img {
        border-radius: 16px;
    }

    .two-col-sec p {
        margin-bottom: 20px;
    }

    .two-col-sec .common-heading {
        margin-bottom: 16px;
    }

    .hero-wrapper .btn {
        margin-top: 12px;
    }

    .two-col-sec ul {
        margin-bottom: 16px;
    }

    .two-col-sec h6 {
        margin-bottom: 8px;
    }

    .lab-intro div {
        padding: 32px 26px;
    }

    .lab-cards .card {
        padding: 32px 26px;
    }

    .rehabilitation-sec .common-heading {
        max-width: 500px;
        margin-inline: auto;
    }
}

@media (max-width: 480px) {
    .two-col-sec {
        gap: 20px;
    }

    .rehabilitation-sec .common-heading {
        max-width: 327px;
    }

    .physio-session .common-heading{
        font-size: 24px;
        line-height: 29px;
    }

    .lab-intro div {
        padding-inline: 20px;
    }

    .two-col-sec p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .lab-intro p {
        font-size: 14px;
        line-height: 22px;
    }

    .two-col-sec .common-heading {
        margin-bottom: 12px;
    }

    .professional-care .common-heading {
        max-width: 300px;
        margin-inline: auto;
    }

    .doctors-hero p {
        max-width: 300px;
    }

    .lab-hero {
        background-position: 55%;
        padding-bottom: 30px !important;
    }

    .lab-cards .card {
        padding-inline: 20px;
    }
}







/* ======================================
    Lab Tests At Home Page
========================================= */