/**
 * Theme Name:     Twenty Twenty Child
 * Author:         the WordPress team
 * Template:       twentytwenty
 * Text Domain:	   twenty-twenty-child
 * Description:    Our default theme for 2020.
 */


/* ********************* Global ********************* */

:root {
    --primary: #0B1D2A;
    --secondary: #A88A5A;
    --secondary-dark: #997838;
    --bg: #F6F5F2;
    --stone: #4B4F56;
    --white: #fff;
    --black: #000;

    --font-title: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;

    --container: 1760px;
    --sec-pad-block: 80px;
    --sec-pad-inline: clamp(1.25rem, 1.92vw + 0.56rem, 2rem);
    --transition: all .3s ease;
    --transition-img: all .5s ease-in-out;

    --header-height: 112px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.25;
}

a {
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

div p a {

    color: var(--secondary);
}

p {
    margin-bottom: 1rem;
}

P:last-child {
    margin-bottom: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: top;
}

section {
    padding-block: var(--sec-pad-block);
    padding-inline: var(--sec-pad-inline);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ********************* Global ********************* */

/* ********************* Utils ********************* */

.h--1,
h1 {
    font-size: 56px;
}

.h--2,
h2 {
    font-size: 48px;
}

.h--3,
h3 {
    font-size: 40px;
}

.h--4,
h4 {
    font-size: 34px;
}

.h--5,
h5 {
    font-size: 28px;
}

.h--6,
h6 {
    font-size: 24px;
}


.block {
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}

.text-link {
    display: flex;
    width: fit-content;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    align-items: center;
    gap: 0.65em;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-color: transparent;
}

.text-link:after {
    content: '';
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMjEuNjYsMTMzLjY2bC03Miw3MmE4LDgsMCwwLDEtMTEuMzItMTEuMzJMMTk2LjY5LDEzNkg0MGE4LDgsMCwwLDEsMC0xNkgxOTYuNjlMMTM4LjM0LDYxLjY2YTgsOCwwLDAsMSwxMS4zMi0xMS4zMmw3Miw3MkE4LDgsMCwwLDEsMjIxLjY2LDEzMy42NloiPjwvcGF0aD48L3N2Zz4=);
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 1.3em;
    height: 1.3em;
}

.text-link:hover {
    text-decoration-color: currentColor;
    color: var(--secondary-dark);
}

.bottom-line {
    position: relative;
    margin-bottom: var(--bl-gap, 1.25rem);
    padding-bottom: var(--bl-gap, 1.25rem);
}

.bottom-line::after {
    position: absolute;
    background: var(--secondary);
    content: '';
    width: 4rem;
    height: 2px;
    bottom: 0;
    left: 0;
}

.text--center .bottom-line::after {
    left: 50%;
    transform: translateX(-50%);
}

.btn,
.menu-btn a {
    padding: 0.7em 1.5em;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65em;
    position: relative;
    width: auto;
}

.btn-icon::after {
    content: '';
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMjEuNjYsMTMzLjY2bC03Miw3MmE4LDgsMCwwLDEtMTEuMzItMTEuMzJMMTk2LjY5LDEzNkg0MGE4LDgsMCwwLDEsMC0xNkgxOTYuNjlMMTM4LjM0LDYxLjY2YTgsOCwwLDAsMSwxMS4zMi0xMS4zMmw3Miw3MkE4LDgsMCwwLDEsMjIxLjY2LDEzMy42NloiPjwvcGF0aD48L3N2Zz4=);
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 1.3em;
    height: 1.3em;
}

.btn-primary,
.menu-btn a {
    background: var(--secondary);
    color: var(--white)
}

.btn-primary:hover,
.menu-btn a:hover {
    background-color: var(--secondary-dark);
}

.btn-white-outline {
    outline: 1px solid var(--white);
    outline-offset: -1px;
}

.btn-outline {
    border: 1px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--primary);
}

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

.gap-m {
    gap: 4rem;
}

.gap-s {
    gap: 3rem;
}

/* ********************* Utils ********************* */

/* ********************* Home ********************* */

/* Benefit Sec */

.benefits-sec {
    background: var(--primary);
    padding-block: 2rem;
    color: var(--white);
}

.benefits-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.benefit-card svg {
    color: var(--secondary);
    height: 4rem;
    width: auto;
}

.benefit-card__divider {
    width: 1px;
    background: var(--white);
    flex-shrink: 0;
    opacity: 0.3;
}

.benefit-card__divider:last-of-type {
    display: none;
}

/* Benefit Sec */

/* Partner Sec */

.partner-sec {
    padding-top: 2.5rem;
}

.partner-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.partner-card {
    display: flex;
    flex-direction: column;
}

.partner-card__img {
    overflow: hidden;
}

.partner-card__img img {
    aspect-ratio: 4/3.5;
    transform: scale(1.01);
    transition: var(--transition-img);
}


.partner-card__content {
    background: var(--bg);
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-card__title {
    font-size: 2rem;
}

.partner-card__cta {
    margin-top: auto;
}

.partner-card__desc {
    margin-bottom: 2.5rem;
}

.partner-cta-card {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2.5rem;
    justify-content: center;
}

.partner-cta-card__title {
    font-size: 2.6rem;
    --bl-gap: 1.5rem;
}

.partner-cta-card__desc {
    margin-bottom: 2rem;
}

/* Partner Sec */

/* CTA Sec */
/* .cta-sec {
    padding-bottom: 0px;
} */

.cta-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    background: var(--bg);
    padding: 2rem 3rem;
    border-radius: 12px;
}

.cta_inner {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 30px;
}

.cta-info__title {
    font-size: 1.5rem;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-icon-wrap svg {
    width: auto;
    height: 80px;
}

/* CTA Sec */

/* Banner Sec */

.hero-banner {
    min-height: 100svh;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #050f16 44%, transparent 100%);
    top: 0;
    left: 0;
}

.hero-banner .container {
    z-index: 1;
    position: relative;
    margin-top: var(--header-height);
}

.hero-banner__row {
    max-width: 768px;
}


.hero-banner__title {
    font-size: 78px;
    --bl-gap: 1.5rem;
}

.hero-banner__title strong {
    color: var(--secondary);
}

.hero-banner__desc {
    font-size: 18px;
    max-width: 500px;
}

.hero-banner__cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

/* Banner Sec */

/* Patient Sec */

.home-template .patient-sec {
    padding-block: 0px;
}

.patient-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.patient-card {
    padding: 30px;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.patient-card:first-child {
    border: 0px;
}

.patient-card .patient-card_title {
    font-size: 1.6rem;
}

.patient-card .patient-card_icon svg {
    width: auto;
    height: 44px;
}

.patient-card .text-link {
    margin-inline: auto;
}

.patient-card__links {
    margin-top: auto;
}

/* Patient Sec */

/* feature Sec */
.home-template .feature-sec {
    background: #f9f9f9;
}

.feature-sec .feature-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-sec .feature-wrap .feature-card {
    border: 1px solid #A88A5A24;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(25% - 15px);
}

.feature-sec .feature-wrap .feature-card .feature-card_title {
    color: var(--secondary-dark);
    font-size: 22px;
    line-height: 1.2;
}

.feature-sec {
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

/* feature Sec */
.logo-sec .logo-note {
    text-align: center;
}

.logo-sec .intro {
    max-width: 768px;
    margin: auto;
}

.logo-sec .logo-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-card {
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: calc(20% - 24px);
    gap: 20px;
}

.logo-card .logo-card_img {
    display: flex;
}

.logo-card .logo-card_img img {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    width: 100%;
    display: block;
}

.logo-card .logo-card_title {
    font-size: 20px;
    line-height: 1.2;
}

/* ********************* Home ********************* */

/* ********************* Contact us ********************* */
.banner-sec {
    min-height: 50svh;
}

.banner-sec .hero-banner__row {
    max-width: 900px;
}

.banner-sec .hero-banner__row .hero-banner__desc {
    max-width: 768px;
}

.banner-sec .hero-banner__row .hero-banner__title {
    font-size: 60px;
}

.contact-form-sec .contact-form-grid {
    grid-template-columns: 35% 1fr;
    gap: 40px;
}

.contact-form-sec .contact-form_get {
    background: var(--bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-detals-wrap {
    display: flex;
    flex-direction: column;
}

.contact-detals-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 14px 0px;
    border-bottom: 1px solid #e1e1e1;
}

.contact-detals-card_icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--secondary);
}

.contact-detals-card_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detals-card:last-child {
    border: 0px;
}

.contact-facility-sec {
    background: #f9f9f9;
}

.contact-facility-sec .contact-facility-grid {
    grid-template-columns: 35% 1fr;
    gap: 40px;
}

.contact-facility-sec .contact-maps iframe {
    height: 500px !important;
    overflow: hidden;
    border-radius: 12px;
    width: 100% !important;
}

.contact-facilit-wrap ul {
    list-style: none;
}

.contact-facilit-wrap ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e1e1e1;
    padding: 16px 0px;
}

.contact-facilit-wrap ul li:last-child {
    border: 0px;
}

.contact-facilit-wrap ul li .contact-facilit_number {
    width: 48px;
    height: 48px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-form {
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* ################ Form ################# */
body .gform_wrapper .top_label .gfield_label {
    font-size: 14px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 6px;
    text-align: left;
    font-weight: 600;
}

body .gform_wrapper .gform_fields .gchoice label {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

body .gform_wrapper .gform_fields .ginput_container_checkbox {
    padding-top: 10px;
}

body .gform_wrapper .gform_fields .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-bottom: 20px;
}

body .gform_wrapper .gform_fields .gchoice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

body .gform_wrapper .ginput_complex label {
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
    font-weight: 400;
    text-align: left;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"],
body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid var(--primary);
    margin-top: 2px;
}

body .gform_wrapper .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(.ginput_total),
body .gform_wrapper .gfield select,
body .gform_wrapper .gfield textarea {
    position: relative;
    display: block;
    width: 100% !important;
    border: 1px solid #ddd;
    font-size: 14px !important;
    color: var(--black);
    padding: 8px 16px !important;
    transition: all 500ms ease;
    line-height: 28px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    outline: none !important;
    background-color: var(--white);
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 400;
}

body .gform_wrapper.gravity-theme .ginput_total {
    padding: 0 !important;
}

body .gform_wrapper.gravity-theme .ginput_container_date button {
    position: absolute;
    right: 10px;
    margin: 0;
}

body .gform_wrapper .gfield input::placeholder,
body .gform_wrapper .gfield textarea::placeholder {
    opacity: 0.5;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    border-radius: 50%;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"]::before,
body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 2px;
    position: absolute;
    left: 2px;
    color: var(--secondary) !important;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 4px !important;
    left: 4px !important;
    background-color: var(--secondary) !important;
    width: 10px;
    height: 10px;
}

.gform_wrapper .gform_fields .gchoice input[type="checkbox"]::before {
    top: 2px;
    position: absolute;
    left: 2px;
    color: var(--secondary);
    font-size: 14px;
}

.gform_wrapper form .gform_body .gform_fields fieldset legend {
    font-weight: 600;
}

body .gform_wrapper .gfield_required {
    font-size: .9em;
    color: var(--primary);
}

body .gform_wrapper .gfield textarea {
    height: 180px !important;
    min-height: unset;
    min-block-size: unset !important;
}

/* .gform_wrapper form .gform_body .gform_fields .gfield--type-phone,
.gform_wrapper form .gform_body .gform_fields .gfield--type-email {
    width: calc(50% - 12px);
} */

body .gform_wrapper .gform_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 0px;
}

.gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name span {
    padding: 0px;
}

body .gform_wrapper .gfield {
    width: 100%;
}

body .gform_wrapper .gf_progressbar .percentbar_blue {
    background-color: var(--secondary) !important;
}

.gform_wrapper .gform_confirmation_message {
    border: 1px solid var(--secondary);
    padding: 10px 20px;
}

body .gform_wrapper .gform_validation_errors {
    display: none !important;
}

html input[type="button"],
html input[type="submit"],
html button[type="submit"] {
    line-height: 1.5 !important;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    border: 1px solid var(--secondary) !important;
    color: var(--white);
    cursor: pointer;
    text-align: center;
    padding: 1em 1.5em !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    width: auto !important;
    background-color: var(--secondary) !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

html input[type="button"]:hover,
html input[type="submit"]:hover,
html button[type="submit"]:hover {
    background-color: var(--secondary-dark) !important;
}

/* ################ Form ################# */
/* ********************* Contact us ********************* */

/* ********************* Paperwork ********************* */
.work-sec {
    background: linear-gradient(#fff, #f9f9f9), 50%;
}

.work_row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 0px 0px 0px 20px;
}

.work-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.work-card .work-card_number {
    width: 44px;
    height: 44px;
    border: 2px solid var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    position: absolute;
    left: -20px;
    top: -20px;
    background: var(--white);
}

.work-card .work-card_icon svg {
    width: auto;
    height: 70px;
}

.work-card .work-card_inner {
    display: flex;
    gap: 20px;
/*     align-items: center; */
}

.work-card_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.work-card .btn-wrap {
    display: flex;
    gap: 10px;
    align-content: center;
    flex-wrap: wrap;
}

.work-card .work-card_inner .work-card_icon {
    display: flex;
	padding-top: 6px;
}

.work-card .btn-wrap .btn svg {
    width: 18px;
    height: 18px;
}

/* ********************* Paperwork ********************* */

/* ********************* Expect  ********************* */
.procedure-sec .procedure_row {
    grid-template-columns: 45% 1fr;
    gap: 40px;
    align-items: stretch;
}

.procedure-sec .procedure_img-wrap img {
    /* aspect-ratio: 792/500; */
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    height: 100%;
    min-height: 260px;
}

.procedure-sec .procedure_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.procedure_item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.procedure_item_icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.procedure_item_desc a {
    display: inline-block;
    color: var(--secondary-dark);
}

.surgery-sec {
    padding-top: 0px !important;
}

.surgery-sec .procedure_content {
    padding: 40px;
    background: var(--bg);
    border-radius: 10px;
}

.bring-sec {
    background: #f9f9f9;
}

.bring-sec .patient-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    row-gap: 40px;
}

.bring-sec .patient-wrap .patient-card:nth-child(4n+5) {
    border: 0px;
}

.faq-sec .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    align-items: flex-start;
}

.faq-sec .faq-wrapper .faq-item {
    background: var(--white);
    padding: 12px 40px 12px 18px;
    border: 1px solid #ccc;
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.faq-sec .faq-wrapper .faq-item::before {
    position: absolute;
    content: "\f067";
    right: 20px;
    top: 17px;
    font-family: "FontAwesome";
    font-size: 14px;
    line-height: 14px;
}

.faq-sec .faq-wrapper .faq-item .faq-title {
    font-size: 20px;
}

.faq-sec .faq-wrapper .faq-item .faq-desc {
    margin-top: 12px;
    display: none;
    font-weight: 400;
    font-size: 16px;
}

.faq-sec .faq-wrapper .faq-item.active .faq-desc {
    display: block;
}

.faq-sec .faq-wrapper .faq-item.active:before {
    content: "\f068";
}

/* ********************* Expect  ********************* */

/* ********************* Doctor's We Work   ********************* */


.doctor-work .patient-card .patient-card_icon {
    color: var(--secondary);
}

.docter-cta {
    padding-top: 0px;
}

.docter-cta .cta-icon-wrap {
    color: var(--secondary);
}

.docter-cta .cta-info {
    max-width: 1080px;
}

.solutions-sec {
    padding-bottom: 0;
}

.solutions-sec .solutions-row {
    grid-template-columns: 40% 1fr;
    border-radius: 10px;
    overflow: hidden;
}

.solutions-sec .solutions-row .solutions-img img {
    height: 100%;
}

.solutions-sec .solutions-row .solutions_inner {
    background-color: var(--primary);
    color: var(--white);
}

.solutions-sec .solutions-row .solutions_inner {
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    padding: 30px 60px;
    gap: 30px;
}

.solutions-sec .solutions-row .solutions_inner .solutions_inner_icon {
    display: flex;
    flex-shrink: 0;
}


.solutions-sec .solutions-row .solutions_inner .solutions_inner_icon svg {
    width: auto;
    height: 90px;
    color: var(--secondary);
}

.solutions-sec .solutions-row .solutions_inner .intro {
    gap: 26px;
}

.solutions-sec .solutions-row .solutions_inner .intro .intro-inner {
    gap: 10px;
}

.solutions-sec .solutions-row .solutions_inner .intro .intro-inner .intro-subtitle {
    color: var(--secondary);
}

.serve-sec .serve-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.serve-card {
    border: 1px solid #ccc;
    padding: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    border-radius: 8px;
    width: calc(25% - 7.5px);
}

.serve-card .serve-card_icon svg {
    color: var(--secondary);
    width: auto;
    height: 70px;
}

.serve-card .serve-card_title {
    font-size: 30px;
}

.case-study-sec {
    background: var(--primary);
    color: var(--white);
}

.case-study_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.case-study-card {
    position: relative;
    border: 1px solid var(--secondary-dark);
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
}

.case-study-card .case-study-card_img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.case-study-card .case-study-card_img::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 10%, rgba(11, 29, 42, .6) 40%, rgba(11, 29, 42, 1) 80%);
}

.case-study-card .case-study-card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-card .case-study-card_info {
    padding: 20px;
    width: 50%;
    margin-left: auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 30px;
}

.case-study-card .case-study-card_info .case-study-card_title {
    font-size: 22px;
}

.case-study-sec .btn-wrap {
    display: flex;
    justify-content: center;
}


/* ********************* Doctor's We Work   ********************* */

/* ********************* Case study single   ********************* */
.project_section .intro-inner {
    max-width: 1200px;
    margin: auto;
}

.project_section .project_main_wrap {
    display: flex;
    gap: 50px;
}

.project_section .project_main_wrap .map_video_wrap {
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.project_section .project_main_wrap .map_video_wrap .col_wrap {
    width: 100%;
    gap: 20px;
    align-items: flex-start;
}

.map_video_section .project_row .col_wrap,
.map_video_wrap .col_wrap {
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project_section .title_wrap {
    display: flex;
    justify-content: center;
}

.map_video_section .project_row .col_wrap iframe,
.map_video_wrap .col_wrap iframe {
    width: 100% !important;
    height: 400px !important;
    aspect-ratio: 1;
    border-radius: 16px;
}

.project_section .project_wrap ul {
    margin: 20px 0px;
    padding-left: 22px;
}

.project_section .project_main_wrap .project_wrap h3:not(.project_section .project_main_wrap .project_wrap h3:first-of-type) {
    margin-top: 20px !important;
}

.project_wrap h4 {
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .project_section .project_main_wrap .map_video_wrap {
        float: right;
        margin-left: 80px;
    }
}

.testimonials_sec {
    background-color: #f3f5f8;
}

.testimonials_row {
    display: flex;
    gap: 40px;
}

.testimonials_left .intro {
    gap: 30px;
}

.testimonials_row .testimonials_left,
.testimonials_row .testimonials_right {
    width: calc(50% - 20px);
}

.testimonials_row .testimonials_left .intro-title {
    position: relative;
}

.testimonials_row .testimonials_left .intro-title:before {
    content: "\f10d";
    font-family: "FontAwesome";
    position: absolute;
    left: -10px;
    top: 0;
    color: #116290;
    font-size: 120px;
    line-height: 60px;
    opacity: 0.1;
}

.client_wrap .intro {
    gap: 20px;
}

.testimonials_right .owl-dots {
    text-align: center;
    margin-top: 33px;
}

.testimonials_right .owl-dots .owl-dot.active {
    background-color: var(--secondary) !important;
}

.testimonials_right .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    background: #bebebe !important;
    margin-right: 15px;
    border-radius: 50%;
    outline: none;
}

/* ******************************** Case study Map Section ******************************** */
.map_section {
    position: relative;
    padding: 0px 0px 20px 0px !important;
    background-color: #fff;
}

.map_section .container {
    height: 100%;
    max-width: 100% !important;
    padding: 0;
}

.map_section .inner_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.map_section iframe {
    position: relative;
    inset: 0;
    height: 700px !important;
    width: 100% !important;
}

.map_section .map_wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 45px;
    background-color: var(--white);
    max-width: 1170px;
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.05);
    margin-top: -350px;
    width: calc(100% - 40px);
}

.map_section .img_wrapper {
    width: calc(40% - 22.5px);
    position: relative;
}

.map_section .info_wrapper {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    z-index: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.map_section .img_wrapper::after {
    position: absolute;
    content: "";
    background: -webkit-linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.map_section .info_wrapper p {
    text-align: center;
}

.map_section .btn_wrap {
    margin: 0;
}

.map_section .img_wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.map_section .content_wrapper {
    width: calc(60% - 22.5px);
    padding: 40px 0px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map_section .title_wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.map_section .title_wrapper h6 {
    position: relative;
    font-weight: 600;
    padding-left: 35px;
    margin: 0;
}

.map_section .title_wrapper h6::before {
    content: "";
    width: 25px;
    display: inline-block;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary);
    left: 0;
}

.map_section .title_wrapper h2 {
    margin: 0;
}

.map_section .info_wrp ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1em;
    padding: 0;
    margin-top: 20px;
}

.map_section .info_wrp ul li {
    position: relative;
    width: 33.333%;
    color: #222;
    padding-left: 27px;
    margin: 0px;
    list-style: none;
    padding-right: 10px;
}

.map_section .info_wrp ul li::after {
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    background-image: url('/wp-content/uploads/2025/03/right-arrow-svgrepo-com.svg');
    width: 1.2em;
    height: 1.5em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(45%) sepia(61%) saturate(420%) hue-rotate(1deg) brightness(94%) contrast(86%);
}

.map_section .info_wrp ul li a:hover:before {
    width: 100%;
}

.map_section .info_wrp ul li a {
    position: relative;
    font-weight: 500;
}

.consulation_sec {
    padding: 40px 0px;
    max-width: 1300px;
    margin: auto;
}

.consulation_sec_inner {
    display: flex;
    width: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;

    border: 1px solid #333;

}

.consulation_sec_left {
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 60%;
    text-align: left;
    gap: 19px;
    align-items: flex-start;
}

.consulation_sec_right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    width: 40%;
}

.consulation_sec_left .consulation_sec_content {
    font-size: 16px;
    line-height: 1.6;
}

.consulation_sec_left .btn_wrap a.site-btn {
    color: #fff !important;
    text-decoration: none !important;
}

.consulation_sec_left .btn_wrap {
    margin-top: auto;
}

.consulation_sec_left .consulation_sec_title h2 {
    margin: 0 !important;
    font-size: 30px !important;
    line-height: 40px !important;
}

.consulation_sec_left .btn_wrap a.site-btn:hover {
    color: #fff !important;
}

section.consulation_sec .container {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.consulation_sec_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ******************************** Case study Map Section ******************************** */

/* ********************* Case study single   ********************* */

/* ********************* Header ********************* */

.site_header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--sec-pad-inline);
    padding-block: 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .30), transparent);
    backdrop-filter: blur(8px);
}

.site_header.custom_sticky {
    box-shadow: rgba(255, 255, 255, 0.10) 0px 1px 4px;
}

.header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header_logo img,
.site-logo-mob {
    width: auto;
    height: 4rem;
}

.site_header .header_row .header_menu {
    margin-left: auto;
    display: flex;
    justify-content: end;
    align-items: center;
}

.site_header .header_row .header_menu .header_menu__wrap .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.header_menu nav>ul>li.menu-btn a {
    padding: 1em 1.5em !important;
}

.header_menu nav>ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    color: var(--white);
    align-items: center;
}

.header_menu nav>ul>li {
    font-size: 16px;
    line-height: 1.2;
}

.header_menu nav>ul>li:not(.menu-btn)>a {
    text-transform: uppercase;
    position: relative;
}

.header_menu nav>ul>li:not(.menu-btn)>a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -0.1em;
    background: currentColor;
    left: 0;
    transition: transform .3s;
    transform: scaleX(0);
    transform-origin: right center;
}

.header_menu nav>ul>li:not(.menu-btn)>a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site_header .header_row .header_menu .header_menu__wrap .nav-menu li.active:after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

/* ********************* Header ********************* */

/* ********************* footer ********************* */
.site-footer {
    background-color: var(--bg);
    padding-block: 80px 20px;
    font-size: 13px;
    padding-inline: 20px;

}

.site-footer .container {
    gap: 0;
}

.site-footer a {
    text-decoration: none;
    transition: var(--base-transition);
}

.site-footer ul {
    margin: 0;
    padding: 0;
}

.site-footer .site-footer_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.site-footer .site-footer_row .site-footer_items {
    width: calc(18% - 16px);
}

.site-footer_items:first-child {
    /* width: calc(28% - 16px) !important; */
    align-self: center;
}

.site-footer_items:first-child img {
    height: 100px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(9%) sepia(15%) saturate(2135%) hue-rotate(163deg) brightness(94%) contrast(97%);
}

.site-footer .site-footer_row .site-footer_items h2 {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-footer .site-footer_row .site-footer_items ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .site-footer_row .site-footer_items ul li {
    list-style: none;
    word-wrap: anywhere;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: rgb(16 38 63 / 80%);
    display: flex;
    align-items: flex-start;
}

.site-footer .site-footer_row .site-footer_items ul li a {
    color: rgb(16 38 63 / 80%);
}

.site-footer .site-footer_row .site-footer_items ul li a:hover {
    color: var(--black);
}

/* Icons in Contact */
.site-footer .site-footer_row .site-footer_items ul li img {
    width: 16px;
    margin-right: 6px;
    margin-top: 2px;
}


/* Copyright Wrapper */
.site-footer .copright_wrapper {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
    /* max-width: 1580px; */
    margin-inline: auto;
    width: 100%;
}

.site-footer .copright_wrapper p {
    margin: 0;
}

.site-footer .copright_wrapper .copyright_links a {
    font-weight: 600;
}

.site-footer .copright_wrapper .copyright_links span {
    margin: 0 8px;
    color: #b0b0b0;
}

.site-footer .copright_wrapper .copyright_links a:hover {
    color: var(--secondary);
}

.site-footer .copright_wrapper .copyright_links {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .site-footer .site-footer_row .site-footer_items {
        width: calc(50% - 15px);
        margin-bottom: 20px;
    }

    .site-footer_items:first-child {
        width: 100% !important;
        align-items: start;
        display: flex;
    }

}

@media (max-width:575px) {


    .site-footer .site-footer_row .site-footer_items .widget_first .widget_media_image img {
        height: 80px;
    }

    .site_header {
        padding-inline: 20px;
    }

    .site-footer .site-footer_row .site-footer_items {
        width: 100%;
    }

    .site-footer .copright_wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .site-footer {
        padding-block: 50px 20px;
    }

    .site-footer .site-footer_row .site-footer_items h2 {
        margin-bottom: 14px;
    }

    .site-footer .site-footer_row .site-footer_items:last-child {
        margin: 0px;
    }
}


/* ********************* footer ********************* */

/* ************************* Error ************************* */
.error-sec {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.error-sec .intro {
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: auto;
}

/* ************************* Error ************************* */

/* ************************* Make a payment ************************* */
.bring-sec .gform_heading {
    display: none;
}

.bring-sec .gform_wrapper {
    text-align: left;
    max-width: 900px;
    margin: auto;
    width: 100%;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f6f5f2;
}

.gform_wrapper h3.gsection_title {
    font-size: 28px;
}

/* ************************* Make a payment ************************* */

/* ************************* About Page 2026 ************************* */
.page-template-about-page .hero-banner__title strong {
    display: block;
}

.our_story_sec .sec_row {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 80px;
    grid-template-rows: auto;
}

.our_story_sec .sec_row .image_colm img {
    aspect-ratio: 1064/500;
    height: 100%;
}

.our_story_sec .content_colm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our_story_sec .content_colm h2 {
    margin-bottom: 20px;
}

.our_story_sec .content_colm .sec_desc {
    margin-bottom: 30px;
}

/*  */
.our_values_sec {
    padding-top: 0;
}

.by_numbers_sec {
    background: var(--primary);
    color: var(--white);
}

.by_numbers_sec .patient-card .patient-card_title {
    font-size: 44px;
    line-height: 1;
}

.page-template-about-page .patient-card .patient-card_icon svg {
    color: var(--secondary-dark);
}

/*  */
.our_team_sec .main_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our_team_sec .sec_row {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 80px;
    grid-template-rows: auto;
    align-items: flex-start;
}

.our_team_sec .main_wrapper h2 {
    text-align: center;
}

.our_team_sec .main_wrapper h2.bottom-line::after {
    right: 0;
    margin: auto;
}

.our_team_sec .sec_row .content_colm {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.our_team_sec .team_colm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.our_team_sec .team_colm .member_card {
    border: 1px solid #ccc;
    text-align: center;
}

.our_team_sec .team_colm .member_card .member_img img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
}

.our_team_sec .member_card .about_member {
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.our_team_sec .member_card .about_member h5 {
    font-size: 22px;
    line-height: 1.2;
}

.our_team_sec .member_card .about_member h6 {
    font-size: 17px;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 25px;
}

/*  */
.stateofart_sec .sec_row {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 80px;
    grid-template-rows: auto;
    align-items: stretch;
}

.stateofart_sec {
    background: #f6f5f2;
}

.stateofart_sec .icon_card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid #ccc;
    padding: 0 30px;
}

.stateofart_sec .icon_card:first-child {
    padding-left: 0;
}

.stateofart_sec .icon_card:last-child {
    border-right: 0;
}

.stateofart_sec .icon_card .icon_card_text h4 {
    font-size: 18px;
    font-family: var(--font-body);
    max-width: 190px;
    line-height: 1.4;
}

.stateofart_sec .about_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
}

.stateofart_sec .icon_card .icon_wrap svg {
    color: #a88a5a;
    width: 40px;
    height: 40px;
}

.stateofart_sec .image_colm img {
    width: 100%;
    height: 100%;
    aspect-ratio: 700/420;
}

/* ************************* About Page 2026 ************************* */

/* ************************* Mega Menu ************************* */

.header_menu nav>ul>li.menu-btn.menu-btn__v2 a {
    background: var(--primary);
}

.header_menu nav>ul>li.menu-btn.menu-btn__v2 a:hover {
    background: #0c273a;
}

@media(min-width:1201px) {
    .mega-menu {
        position: relative;
    }

    .mega-menu>ul.sub-menu {
        position: absolute;
        background: #fff;
        min-width: 992px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        max-height: calc(100svh - 105px);
        overflow: auto;
        scrollbar-width: thin;
        height: auto;
        transition: all .3s ease;
        display: grid;
        grid-template-columns: 270px 1fr;
        grid-template-rows: repeat(10, auto);
        gap: 0.75rem 1.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mega-menu:hover>ul.sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    }

    .header_menu__wrap .menu-item-has-children>a::before {
        content: '';
        width: 1.3em;
        height: 1.3em;
        background: currentColor;
        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tZG93bi1pY29uIGx1Y2lkZS1jaGV2cm9uLWRvd24iPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==);
        display: block;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        transition: all .3s ease;
    }

    .header_menu__wrap .menu-item-has-children>a {
        display: flex;
        flex-direction: row-reverse;
        gap: 0.4em;
        align-items: center;
    }

    .header_menu__wrap .menu-item-has-children:hover>a::before {
        transform: rotate(180deg);
    }

    .mega-menu__link a {
        color: var(--primary);
        padding: 1em 2.5em 1em 1em;
        width: 100%;
        position: relative;
        border-radius: 6px;
        transition: all .3s ease;
        font-weight: 500;
        border: 1px solid #e7e7e7;
        font-size: 15px;
    }

    .mega-menu__link {
        grid-column: 1;
    }

    .mega-menu__link a::after {
        content: '';
        position: absolute;
        background: currentColor;
        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb25zLXJpZ2h0LWljb24gbHVjaWRlLWNoZXZyb25zLXJpZ2h0Ij48cGF0aCBkPSJtNiAxNyA1LTUtNS01Ii8+PHBhdGggZD0ibTEzIDE3IDUtNS01LTUiLz48L3N2Zz4=);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        width: 1.2em;
        height: 1.2em;
        right: 1em;
    }

    .mega-menu__link a:hover,
    .mega-menu__link a[aria-current="page"] {
        background: #f5f5f5;
    }

    .mega-menu__icon-list {
        grid-column: 2;
        grid-row: 1 / -1;
    }

    .mega-menu__icon-list>a {
        display: none !important;
    }

    .mega-menu__icon-list>.sub-menu {
        border-left: 1px solid #d7d7d7;
        padding-left: 1.5rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        gap: 1rem;
        height: 100%;
        align-items: flex-start;
    }

    .mega-menu__icon-card img {
        height: 3.5rem;
        width: auto;
        filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(1983%) hue-rotate(358deg) brightness(92%) contrast(89%);
        transition: all .3s ease;
    }

    .mega-menu__icon-card a {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #a1b9cb1f;
        text-align: center;
        border: 1px solid #0b1d2a38;
        border-radius: 8px;
        padding: 1rem 0.5rem;
        height: 100%;
        gap: 1rem;
        color: var(--primary);
        font-weight: 500;
        font-size: 14px;
        line-height: 1.5;
        transition: all .3s ease;
        justify-content: center;
        min-height: 148px;
    }

    .mega-menu__icon-card {
        list-style: none;
    }

    .mega-menu__icon-card a:hover,
    .mega-menu__icon-card a[aria-current="page"] {
        background: var(--secondary);
        color: #fff;
    }

    .mega-menu__icon-card a:hover img,
    .mega-menu__icon-card a[aria-current="page"] img {
        filter: brightness(0) invert(1);
    }

    .mega-menu::after,
    .default-sub__menu::after {
        content: '';
        position: absolute;
        background: transparent;
        width: 100%;
        height: 20px;
    }

    .mega-menu:nth-child(2)>ul.sub-menu {
        left: 0;
    }

    .default-sub__menu>.sub-menu {
        position: absolute;
        background: #fff;
        margin-top: 1rem;
        list-style: none;
        min-width: 250px;
        transform: translateX(-50%) translateY(10px);
        left: 50%;
        width: 100%;
        border-radius: 12px;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all .3s ease;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .1);

    }

    .default-sub__menu:hover>.sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
    }

    .default-sub__menu {
        position: relative;
    }

    .default-sub__menu>.sub-menu a {
        color: var(--primary);
        position: relative;
        width: 100%;
        padding: 0.5em 2em 0.5em 0.9em;
        border-radius: 4px;
        line-height: 1.5;
        font-weight: 500;
    }

    .default-sub__menu>.sub-menu a::after {
        content: '';
        position: absolute;
        background: currentColor;
        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb25zLXJpZ2h0LWljb24gbHVjaWRlLWNoZXZyb25zLXJpZ2h0Ij48cGF0aCBkPSJtNiAxNyA1LTUtNS01Ii8+PHBhdGggZD0ibTEzIDE3IDUtNS01LTUiLz48L3N2Zz4=);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        width: 1.1em;
        height: 1.1em;
        right: 0.5em;
        top: 50%;
        transform: translateY(-50%);
    }

    .default-sub__menu>.sub-menu a:hover {
        background: #f7f7f7;
        color: var(--secondary);
    }
}

/* ************************* Mega Menu ************************* */

/* ************************* Single Blog ************************* */

.single-post .content-area {
    padding-block: var(--sec-pad-block);
    margin-top: var(--header-height);
}

.single-post #main article {
    max-width: 1140px;
    margin: auto;
    padding-inline: 20px;
    width: 65%;
}

.single-post header.entry-header h1 {
    font-size: clamp(2rem, 1.939vw + 1.303rem, 3rem);
    line-height: 1.4;
    text-align: center;
}

.single-post .entry-categories-inner {
    color: var(--secondary-dark);
    font-size: clamp(1.063rem, 0.606vw + 0.845rem, 1.375rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-title);
    pointer-events: none;
}

.single-post .post-meta-wrapper {
    display: none;
}

.single-post .featured-media {
    margin-block: 3rem;
}

.single-post .entry-content :is(h2, h3, h4, h5, h6) {
    margin-top: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.single-post .entry-content h2 {
    font-size: clamp(1.75rem, 0.485vw + 1.576rem, 2rem);
}

.single-post .entry-content h3 {
    font-size: clamp(1.5rem, 0.485vw + 1.326rem, 1.75rem);
}

.single-post .entry-content h4 {
    font-size: clamp(1.25rem, 0.485vw + 1.076rem, 1.5rem);
}

.single-post .entry-content h5 {
    font-size: 20px;
}

.single-post .entry-content h6 {
    font-size: 20px;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1rem;
}

.single-post .entry-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.single-post .featured-media img {
    max-height: 500px;
    object-fit: contain;
    border-radius: 5px;
}

.pagination-single {
    margin-top: 40px;
    border-block: 1px solid var(--primary);
    padding-block: 20px;
    margin-bottom: 3rem;
}

.pagination-single hr {
    display: none;
}

.pagination-single-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.pagination-single-inner a {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.pagination-single-inner a.next-post {
    flex-direction: row-reverse;
    text-align: right;
}

.pagination-single-inner a span.title-inner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-decoration: underline;
    text-underline-offset: 0.1em;
    text-decoration-color: transparent;
    transition: all .3s ease;
    max-width: 340px;
}

.pagination-single-inner a:hover span.title-inner {
    text-decoration-color: currentColor;
}

/* ************************* Single Blog ************************* */

/* ********************** comments ************************ */

html:has(.single-post) {
    scroll-behavior: auto;
}

.comment-subscription-form {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.single-post .comment-respond {
    max-width: 600px;
    width: 100%;
    margin: auto;
    margin-top: 3rem;
}

.single-post .comment-respond input:not([type="checkbox"]):not([type="submit"]),
.single-post .comment-respond textarea {
    width: 100%;
    border: 1px solid #dbdbdb;
    padding: 12px 15px;
    outline: none;
    font-family: var(--body-font);
}

.single-post .comment-respond label {
    display: block;
}

.comment-respond input[type="submit"] {
    justify-content: center;
    background: var(--action);
    color: var(--white);
    border: 1px solid var(--action);
    padding: 0.9em 1.75em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-weight: 500;
    transition: var(--transition);
    font-size: var(--base-font);
    line-height: var(--base-font-lh);
    font-family: var(--body-font);
    cursor: pointer;
}

.comment-respond input[type="submit"]:hover {
    border-color: var(--action-hover);
    background: var(--action-hover);
    color: var(--white);
}

.single-post .comment-respond .logged-in-as {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    text-align: center;
}

.single-post .comment-respond .logged-in-as a {
    color: var(--action);
}

.comment-body .comment-author img {
    border: 1px solid #ccc;
    border-radius: 100%;
    max-width: 60px;
    position: absolute;
    top: 0;
    left: 0;
}

.comment-body .comment-footer-meta .comment-reply a {
    color: var(--action);
    text-decoration: underline;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e66bc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 14 4 9l5-5'/%3E%3Cpath d='M4 9h10a6 6 0 0 1 6 6v1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 16px;
    padding-right: 20px;
}

.comment-body .comment-meta {
    position: relative;
    padding-left: 75px;
    min-height: 70px;
}

.comment-body .comment-footer-meta .by-post-author {
    display: none;
}

.comments-wrapper .comments-header .comment-reply-title {
    font-size: clamp(1.375rem, 0.96vw + 1.03rem, 1.75rem);
    line-height: 1.6;
    margin-bottom: 12px !important;
}

.comments-inner .comment>.comment-body {
    padding: 24px 0 !important;
    border-bottom: 1px solid #ccc;
}

.comment-body .comment-author .fn {
    font-weight: 700;
    color: var(--action);
}

.comment-body .comment-footer-meta {
    margin-top: 15px;
}

.comments-wrapper hr.styled-separator {
    display: none;
}

.single-post .comment-respond h2 {
    font-size: clamp(1.5rem, 1.6vw + 0.925rem, 2.125rem);
    margin-bottom: 10px !important;
}

.single-post .comment-respond h2 small a {
    color: var(--action);
}

.single-post .comment.odd.parent {
    padding-left: 40px;
}

.comments-wrapper .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

#cancel-comment-reply-link {
    color: red;
    display: block;
    margin-block: 1rem;
    font-size: 16px;
}

.comments-wrapper .comments {
    margin-bottom: 3rem;
}

nav.navigation.post-navigation {
    display: none;
}

.table_content_wrapper {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 30px 30px 0;
    padding: 20px 12px 24px 16px;
    width: 250px;
    position: fixed;
    top: calc(var(--header-height) + 40px);
    box-sizing: border-box;
    max-height: calc(100svh - var(--header-height) - 80px);
    overflow: auto;
    scrollbar-width: thin;
}

.table_content_wrapper h3 {
    font-size: 24px;
    line-height: 1.41666667em;
}

.table_content_wrapper .progress_wrapper {
    background: #e0e0e0;
    height: 5px;
    border-radius: 12px;
    margin-bottom: 12px;
    margin-top: 12px;
    flex-shrink: 0;
}

.table_content_wrapper .progress_wrapper .progress_bar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 12px;
}

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

.table_content_wrapper .sync_wrapper .sync_item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color .2s ease-in-out;
    font-size: 14px;
    line-height: 22px;
}

.table_content_wrapper .sync_wrapper .sync_item:hover,
.table_content_wrapper .sync_wrapper .sync_item.active {
    background-color: var(--bg);
}

.single-post .wp-caption-text {
    text-align: center;
    margin-top: 1rem;
    text-transform: capitalize;
}

.consulation_sec .btn-primary {
    color: #fff !important;
    text-decoration: none !important;
}

/* ********************** comments ************************ */

/* ********************** Blog ************************ */

.blog_post_wrapper #gallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-item {
    width: calc(33.3% - 20px);
    background: #fff;
    box-shadow: rgba(0, 0, 0, .1) 0 15px 40px;
    border-radius: 17px;
    overflow: hidden;
}

.blog-item-box {
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_image_wrap {
    position: relative;
    overflow: hidden;
}

.blog-item .blog_image_wrap>a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-item .blog_image_wrap img {
    vertical-align: top;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    transition: all 0.3s ease-in-out;
    object-fit: cover;
    aspect-ratio: 380/280;
    object-position: top;
    min-height: 230px;
    max-height: 250px;
}

.blog_post_wrapper span.blog_icon_class {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    background: var(--secondary);
}

.blog-item-box:hover img {
    transform: scale(1.1);
}

.blog_post_wrapper .blog-item-box:hover span.blog_icon_class {
    opacity: 1;
}

.blog-item .blog_detail {
    padding: 20px;
}

.blog-item .blog_detail h4 {
    margin-bottom: 12px;
    font-size: 24px;
}

.blog-item .blog_detail h4>a {
    display: block;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

/* ********************** Blog ************************ */
section.blog_post_sec .container{
    margin-top: var(--header-height);
}
section.blog_post_sec .search-form {
	width: max-content;
	margin: auto auto 30px;
	padding: 0;
	align-items: stretch;
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
}
.search-form label {
	align-items: stretch;
	display: flex;
	font-size: inherit;
	margin: 0;
	width: 100%;
}

section.blog_post_sec .search-form .search-field {
	padding: 12px 20px;
	font-size: 16px;
	line-height: 20px !important;
	height: 48px;
	border: 1px solid #ccc;
	width: 100%;
	outline: none !important;
	transition: all 0.3s ease-in-out;
	border-radius: 6px;
	font-family: var(--font-body);
}

section.blog_post_sec .search-form input[type="button"],
section.blog_post_sec .search-form input[type="submit"],
section.blog_post_sec .search-form  button[type="submit"]{
		padding: 0.2em 1.5em !important;
}
.content-sidebar-wrap .main_title {
	text-align: center;
	margin-bottom: 30px;
}
.blog_post_wrapper > ul {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
.blog_post_wrapper > ul li {
	margin: 6px;
	list-style: none;
}
.blog_post_wrapper > ul li.active a, .blog_post_wrapper > ul li a:hover {
	color: #f3f5f8;
	background-color: var(--secondary);
}
.blog_post_wrapper > ul li a {
	text-align: center;
	background-color: #f3f5f8;
	color: var(--secondary);
	font-size: 16px;
	line-height: 26px;
	padding: 6px 20px;
	border-radius: 20px;
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.blog_post_wrapper .pagination {
	clear: both;
	margin: 30px 0 0;
	text-align: center;
	display: block;
    width: 100%;
}
.blog_post_wrapper .pagination .page-numbers {
	font-size: 18px;
	border: 1px solid var(--primary);
	color: var(--primary);
	line-height: 39px;
	margin: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	font-weight: 600;
	display: inline-block;
    border-radius: 4px;
}
.blog_post_wrapper .pagination .page-numbers:hover, .blog_post_wrapper .pagination .page-numbers.current {
	background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
/* ********************* Responsive ********************* */


@media (max-width: 1400px) {
    .table_content_wrapper {
        display: none;
    }

    .single-post #main article {
        width: 100%;
    }
}

@media(min-width:1201px) and (max-width:1405px) {
    .header_menu nav>ul>li {
        font-size: 14px;
    }

    .header_menu nav>ul {
        gap: 1.6rem;
    }
}

@media(max-width:1600px) {
    .benefits-card__row {
        flex-wrap: wrap;
    }
}

@media(max-width:1200px) {
    .our_team_sec .sec_row {
        gap: 40px;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site_header .header_row .header_logo {
        width: auto;
        z-index: 99;
    }

    .site_header .header_row .header_menu {
        width: fit-content;
    }

    .site_header .header_row .site-logo-mob img {
        max-width: 210px;
    }

    .site_header .header_row .header_menu__wrap {
        display: none;
    }

    .site_header .header_row .header_mobile_menu__wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: start;
    }

    .site_header .header_row .header_mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        max-width: 360px;
        background-color: var(--primary);
        z-index: 1;
        transition: all 0.3s ease-in-out;
        transform: translateX(100%);
        padding: 120px 22px 22px;
        overflow: auto;
    }

    .site_header.menu-active .header_row .header_mobile-menu {
        transform: translateX(0) !important;
    }

    .site_header .header_row .header_mobile-menu .menu-header-menu-container {
        margin-top: 24px;
    }

    .site_header .header_row .header_mobile-menu .nav-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .site_header .header_row .header_mobile-menu .nav-menu a {
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: .18em;
    }

    .site_header .header_row .mobile_toggle_icon {
        width: 30px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .site_header .header_row .mobile_toggle_icon.active {
        z-index: 1;
        transform: translate(5px, 0px);
    }

    .site_header .header_row .mobile_toggle_icon span {
        display: block;
        width: 100%;
        height: 1px;
        background-color: white;
        transition: all 0.3s ease-in-out;
    }

    .site_header .header_row .mobile_toggle_icon.active span:nth-child(1) {
        transform: translateY(-2px) rotateZ(45deg);
        transform-origin: top left;
    }

    .site_header .header_row .mobile_toggle_icon span:nth-child(2) {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .site_header .header_row .mobile_toggle_icon.active span:nth-child(2) {
        opacity: 0;
    }

    .site_header .header_row .mobile_toggle_icon.active span:nth-child(3) {
        transform: rotateZ(-45deg);
        transform-origin: bottom left;
    }

    .case-study_row {
        grid-template-columns: 1fr 1fr;
    }



    .bring-sec .patient-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .bring-sec .patient-wrap .patient-card:nth-child(3n+1) {
        border: 0px;
    }

    .logo-card {
        width: calc(33.33% - 20px);
    }

    .stateofart_sec .sec_row {
        gap: 40px;
    }

    .stateofart_sec .icon_card {
        padding: 0 16px;
    }
}

@media(max-width:1024px) {

    .h--2,
    h2 {
        font-size: 42px;
    }

    .stateofart_sec .sec_row {
        gap: 30px;
    }

    .stateofart_sec .icon_card .icon_card_text h4 {
        font-size: 16px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-sec .feature-wrap .feature-card {
        width: calc(50% - 10px);
    }

    .contact-form-sec .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-facility-sec .contact-facility-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-study-card .case-study-card_info {
        width: 70%;
    }

    .patient-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px 0px;
    }

    .patient-card:nth-child(2n+1) {
        border: 0px;
    }

    .procedure-sec .procedure_row {
        grid-template-columns: 1fr;
    }

    .work-sec .work_row {
        grid-template-columns: 1fr;
    }

    .faq-sec .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .serve-card {
        width: calc(33.33% - 6.66px);
    }

    .solutions-sec .solutions-row .solutions_inner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .project_section .project_main_wrap .map_video_wrap {
        width: 100%;
    }

    .consulation_sec {
        padding: 0px;
    }

    .testimonials_row .testimonials_left,
    .testimonials_row .testimonials_right {
        width: 100%;
    }

    .testimonials_row {
        flex-wrap: wrap;
    }

    .logo-card {
        width: calc(50% - 15px);
    }

    .banner-sec .hero-banner__row .hero-banner__title {
        font-size: 52px;
    }

    .our_story_sec .sec_row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .our_team_sec .sec_row {
        gap: 30px;
        grid-template-columns: 30% 1fr;
    }

    .our_team_sec .team_colm {
        gap: 20px;
    }

    .our_team_sec .member_card .about_member h6 {
        font-size: 15px;
        line-height: 22px;
    }

    .our_team_sec .member_card .about_member h5 {
        font-size: 18px;
    }

    .blog-item {
        width: calc(50% - 15px);
    }
}

@media(max-width:767px) {

    .h--2,
    h2 {
        font-size: 36px;
    }

    section {
        padding-block: 50px;
    }

    .benefit-card {
        width: calc(50% - 12px);
    }

    .benefit-card__divider {
        display: none;
    }

    .benefits-sec {
        padding-block: 50px
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        grid-template-columns: 1fr;
    }

    .hero-banner__cta {
        flex-wrap: wrap;
    }

    .hero-banner__title {
        font-size: 60px;
    }

    .feature-sec .feature-wrap .feature-card {
        width: 100%;
    }

    .contact-form-sec .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-facility-sec .contact-facility-grid {
        grid-template-columns: 1fr;
    }

    .case-study_row {
        grid-template-columns: 1fr;
    }

    .bring-sec .patient-wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .bring-sec .patient-wrap .patient-card:nth-child(2n+1) {
        border: 0px;
    }

    .serve-card {
        width: calc(50% - 5px);
    }

    .solutions-sec .solutions-row {
        grid-template-columns: 1fr;

    }

    .solutions-sec .solutions-row .solutions-img img {
        height: 300px;
    }

    .solutions-sec .solutions-row .solutions_inner .solutions_inner_icon svg {
        height: 60px;
    }

    .consulation_sec_inner {
        flex-wrap: wrap;
    }

    .consulation_sec_left,
    .consulation_sec_right {
        width: 100%;
        min-height: unset;
    }

    .map_section .content_wrapper {
        width: 100%;
    }

    .map_section .map_wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .map_section .img_wrapper {
        width: 100%;
        position: relative;
    }

    .map_section .img_wrapper>img {
        position: relative;
        min-height: 240px;
    }

    .map_section .content_wrapper {
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .banner-sec .hero-banner__row .hero-banner__desc {
        font-size: 16px;
    }

    .bring-sec .gform_wrapper {
        padding: 20px;
    }

    .stateofart_sec .sec_row {
        grid-template-columns: 1fr;
    }

    .our_team_sec .main_wrapper {
        gap: 0px;
    }

    .our_team_sec .main_wrapper h2 {
        text-align: left;
    }

    .our_team_sec .main_wrapper h2.bottom-line::after {
        margin: 0;
    }

    .our_team_sec .sec_row {
        grid-template-columns: 1fr;
    }

    .our_story_sec .sec_row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width: 575px) {
	.work_row {
		padding: 0px 0px 0px 12px;
	}
    .single-post .content-area {
        padding-top: 3rem;
    }

    .blog-item {
        width: 100%;
    }

    .site_header .header_row .header_mobile-menu {
        max-width: 100%;
    }

    .blog-item .blog_detail h4 {
        font-size: 18px;
    }

    .h--1,
    h1 {
        font-size: 46px;
    }

    .h--2,
    h2 {
        font-size: 32px;
    }

    .h--3,
    h3 {
        font-size: 32px;
    }

    .h--4,
    h4 {
        font-size: 28px;
    }

    .h--5,
    h5 {
        font-size: 24px;
    }

    .h--6,
    h6 {
        font-size: 20px;
    }

    .hero-banner .container {
        margin-top: 104px;
    }

    .header_logo img,
    .site-logo-mob {
        height: 3.5rem;
    }


    .gap-m {
        gap: 3rem;
    }

    .benefit-card {
        width: 100%;
    }

    .benefit-card svg {
        height: 2.8rem;
    }

    .partner-card__content {
        padding: 1.5rem;
    }

    .partner-card__title,
    .partner-cta-card__title {
        font-size: 1.6rem;
    }

    .bottom-line {
        margin-bottom: var(--bl-gap, 1rem);
        padding-bottom: var(--bl-gap, 1rem);
    }

    .partner-card__desc {
        margin-bottom: 1.8rem;
    }

    .partner-cta-card {
        padding: 3rem 1.5rem;
    }

    .btn,
    .menu-btn a {
        padding: 1em 1.2em;
        font-size: 14px;
    }

    .partner-card__img img {
        aspect-ratio: 4/3;
    }

    .patient-card {
        border: 0px;
    }

    .cta-row {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .cta_inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-icon-wrap svg {
        height: 60px;
    }

    .patient-wrap {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-banner__title {
        font-size: 40px;
    }

    .banner-sec .hero-banner__row .hero-banner__title {
        font-size: 36px;
    }

    .contact-form-sec .contact-form_get,
    .contact-form {
        padding: 30px 24px;
    }

    .contact-detals-card_icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .contact-facilit-wrap ul li {
        gap: 14px;
    }

    .contact-facility-sec .contact-maps iframe {
        height: 300px !important;

    }

    .patient-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .case-study-card .case-study-card_info {
        width: 80%;
    }

    .work-card .work-card_inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .work-card {
        padding: 30px 20px;
    }

    .work-card .work-card_icon svg {
        height: 50px;
    }

    .work-card_content .work-card_title {
        font-size: 22px;
    }

    .work-card .work-card_number {
        width: 34px;
        height: 34px;
        font-size: 14px;
        left: -14px;
        top: -14px;
    }

    .hero-banner::after {
        content: '';
        width: 100%;
    }

    .procedure_item {
        align-items: flex-start;
        flex-direction: column;
    }

    .surgery-sec .procedure_content {
        padding: 30px 20px;
    }

    .bring-sec .patient-wrap {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    body .patient-card {
        padding: 30px 20px;
        border-bottom: 1px solid #ddd !important;
        border-left: 0px !important;
    }

    body .patient-card:last-child {
        border-bottom: 0px !important;
    }

    .faq-sec .faq-wrapper .faq-item .faq-title {
        font-size: 18px;
    }

    .serve-card {
        width: 100%;
        padding: 30px 20px;
    }

    .serve-card .serve-card_title {
        font-size: 24px;
    }

    .serve-card .serve-card_icon svg {
        height: 50px;
    }

    .solutions-sec .solutions-row .solutions_inner {
        padding: 30px 20px;
    }

    .solutions-sec .solutions-row .solutions-img img {
        height: 260px;
    }

    .map_video_section .project_row .col_wrap iframe,
    .map_video_wrap .col_wrap iframe {
        height: 300px !important;
    }

    .consulation_sec_right img {
        height: 260px;
    }

    .consulation_sec_left {
        padding: 30px 20px;
    }

    .map_section .info_wrp ul li {
        width: 50%;
    }

    .map_section iframe {
        height: 400px !important;
    }

    .map_section .map_wrapper {
        margin-top: -240px;
    }

    .logo-card {
        width: 100%;
    }

    .gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .our_story_sec .sec_row .image_colm img {
        aspect-ratio: 1000/770;
    }

    .by_numbers_sec .block,
    .our_values_sec .block {
        gap: 0;
    }

    .our_team_sec .team_colm {
        grid-template-columns: repeat(2, 1fr);
    }

    .our_team_sec .member_card .about_member {
        padding: 15px 10px;
    }

    .stateofart_sec .icon_card .icon_wrap svg {
        width: 36px;
        height: 36px;
    }

    .stateofart_sec .icon_card {
        padding: 0 12px;
    }

    .stateofart_sec .icon_card .icon_card_text h4 {
        font-size: 15px;
    }
    section.blog_post_sec .search-form {
	flex-wrap: wrap;
    width: 100%;

}
section.blog_post_sec .search-form input[type="button"], section.blog_post_sec .search-form input[type="submit"], section.blog_post_sec .search-form button[type="submit"] {
	padding:.6em 1.5em !important;
    width: 100% !important;
}
.search-form label{
    display: flex;
    flex-direction: column;
}
}

/* ********************* Responsive ********************* */

/* ********************* Menu Responsive ********************* */

@media(max-width:1600px) {
    .mega-menu.mega-menu__pos-1>ul.sub-menu {
        left: 100%;
    }

    .work-card_inner .btn {
        font-size: 14px;
    }
}

@media(max-width:1470px) {
    .work_row {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:1350px) {
    .mega-menu.mega-menu__pos-1>ul.sub-menu {
        left: 170%;
    }

    .mega-menu.mega-menu__pos-2>ul.sub-menu {
        left: 65%;
    }
}

@media(max-width:1200px) {
    /* html:has(body header.custom_sticky) {
        overflow: hidden;
    } */

    .header_mobile-menu a::after {
        display: none;
    }

    .header_mobile-menu .sub-menu {
        display: none;
    }

    .header_mobile-menu nav>ul>li.menu-item-has-children>a.active::before {
        transform: rotate(180deg);
    }

    .header_mobile-menu nav>ul>li.menu-btn.menu-btn__v2 a {
        background: var(--white);
        color: var(--primary);
        margin-top: 1rem;
    }

    .header_mobile-menu nav>ul>li.menu-item-has-children>a::before {
        content: '';
        width: 1.3em;
        height: 1.3em;
        background: currentColor;
        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tZG93bi1pY29uIGx1Y2lkZS1jaGV2cm9uLWRvd24iPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==);
        display: block;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        transition: all .3s ease;
    }

    .header_mobile-menu nav>ul>li.menu-item-has-children>a {
        display: flex;
        flex-direction: row-reverse;
        gap: 0.4em;
        align-items: center;
        justify-content: space-between;
    }

    .header_mobile-menu .nav-menu,
    .header_mobile-menu nav,
    .header_mobile-menu nav>ul>li {
        width: 100%;
    }

    .header_mobile-menu .sub-menu {
        list-style: none;
        margin-top: 1.25rem;
        padding: 1.5rem;
        background: #fff;
        border-radius: 8px;
    }

    .header_mobile-menu .sub-menu>li:not(:last-child) {
        margin-bottom: 1rem;
    }

    .header_mobile-menu .sub-menu a {
        color: var(--primary);
        letter-spacing: 0 !important;
        text-transform: none !important;
        font-weight: 500;
    }

    .header_mobile-menu .mega-menu__icon-list>a {
        display: none;
    }

    .header_mobile-menu .mega-menu__icon-list .sub-menu {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0;
        margin-top: 1.5rem;
    }

    .header_mobile-menu .mega-menu__icon-card a {
        border: 1px solid #0b1d2a38;
        border-radius: 8px;
        padding: 0.7rem 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header_mobile-menu .mega-menu__icon-card img {
        height: 2rem;
        width: auto;
    }

    .work-card_inner .btn {
        font-size: 12px;
    }
}

/* ********************* Menu Responsive ********************* */