@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #012152;
    --highlight-color: #bb1320;
    --sub-highlight-color: #eda72e;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: "Mulish", sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: "Jost", serif;
    font-family: "Bricolage Grotesque", sans-serif;
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 15px;
    text-align: justify;
}


#social_icons {
    position: fixed;
    top: 32%;
    right: 0px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.si_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 40px;
    border-radius: 50px 0px 0px 50px;
    gap: 10px;
    margin-bottom: 6px;
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 5px 0px rgb(1, 92, 136, 0.3);
}

#social_img {
    margin-left: 10px;
    width: 30px;
    margin-right: 0;
    transition: margin-right .3s ease-in-out;
}

.si_box:hover {
    transform: translateX(-5px);
    transition: all 0.5s ease-in-out;
}


.call {
    background: #075b8b;
}

.facebook {
    background: rgb(39, 83, 150);
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: #d23d9b;
}
.ambulance {
    background: var(--highlight-color);
}
.youtube {
    background: #e62117;
}

#top_bar {
    width: 100%;
    height: auto;
    padding: 2.5px 0;
}

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

.top_logo {
    height: 55px;
}

.top_call_img {
    height: 75px;
}

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

.top_ambulance img {
    width: 55px;
    height: 55px;
    background: var(--sub-highlight-color);
    border-radius: 60px;
    padding: 15px 5px;
}

.ta_num {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.top_images {
    display: flex;
    gap: 15px;
}

/* .top_images img {
    height: 62px;
} */

.top_btn {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-color);
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.15px;
    padding: 3px 20px;
    color: var(--secondary-color);
    line-height: 22px;
    font-size: 12px;
}

.top_btn span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.t_btn_02 {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 13px 15px;
}



/* header */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    background: var(--primary-color);
    padding: 10px 0;
}

.v-center {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}

.header .item-left {
    flex: 0 0 15%;
}

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

.logo a img {
    height: 90px;
}

.header .item-center {
    flex: 0 0 100%;
    text-align: left;
}

.header .item-right {
    flex: 0 0 15%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.menu-main {
    padding: 0;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 50px;
    margin: 0 5px;
}

.header .menu>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 0 5px;
    letter-spacing: 0.15px;
    color: var(--secondary-color) !important;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 5px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.main_mega_menu {
    max-width: 50% !important;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 2.5px;
    border-radius: 10px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0 10px;
    text-align: left;
}

.main_mega_menu .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    padding: 0;
}

.grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
    padding: 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    padding: 20px 0 !important;
    text-align: center;
}

.list-item ul li a {
    line-height: 22px;
    padding: 5px 15px !important;
    margin: 2px 0;
    transition: all 0.3s ease-in;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover {
    background: transparent;
    color: var(--highlight-color) !important;
    transition: all 0.3s ease-in;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .logo {
        justify-content: space-between;
        padding-left: 25px;
    }

    .header .item-left,
    .header .item-right {
        flex: auto;
    }

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

    .header .mobile-menu-trigger {
        display: flex;
        height: 45px;
        width: 45px;
        margin-right: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 4px;
        background-color: #ffffff;
        width: 35px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
    }

    .header .mobile-menu-trigger span:before {
        top: -10px;
    }

    .header .mobile-menu-trigger span:after {
        top: 10px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
        text-align: left;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        color: var(--text-color) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-left: 0 !important;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .main_mega_menu .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        display: grid;
    }

    .main_mega_menu {
        max-width: 100% !important;
    }

    .inner_logo {
        height: 60px;
        padding: 10px 0;
    }


}

/* header  */


.banner {
    line-height: 0;
}

.banner_bottom {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: var(--secondary-color);
}

.bb_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.bb_btn i {
    font-size: 30px;
}

.bb_p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
    padding-top: 5px !important;
    letter-spacing: 0.3px;
}

.bb_h {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.15px;
}

.btn_ba {
    background: var(--highlight-color);
}

.btn_do {
    background: var(--sub-highlight-color);
}

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

.btn_ph {
    background: lightseagreen;
}

/* about  */

.about {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--s_backgound-color);
}

.abt_img {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.abt_img img {
    max-width: 85%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.15);
}

.abt_img::before {
    content: url(../../images/hi_r.png);
    position: absolute;
    top: -5px;
    left: 0;
    transform: scale(0.35);
    width: 0;
    height: 0;
    z-index: -1;
    animation: mv_img 5s linear infinite;
    opacity: 0.45;
}

@keyframes mv_img {
    0% {
        top: 80px;
    }

    50% {
        top: 20px;
    }

    55% {
        top: 20px;
    }

    100% {
        top: 80px;
    }
}

.main_heading {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    letter-spacing: 0.65px;
    line-height: inherit;
}

.c_b {
    color: var(--primary-color);
}

.abt_sh {
    font-family: "Bricolage Grotesque", sans-serif;
    position: relative;
    padding-left: 45px !important;
    font-size: 18px;
    font-weight: 600;
    color: var(--highlight-color);
    line-height: inherit;
    padding-bottom: 10px !important;
}

.abt_sh::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40%;
    width: 32px;
    height: 2px;
    background: var(--highlight-color);
}

.abt_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 48px;
    color: var(--primary-color);
}

.paragraph {
    font-family: "Mulish", sans-serif;
    letter-spacing: 0.35px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    padding-top: 12px !important;
    font-size: 16px;
}

.abt_btn {
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 6px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.35px;
    border: none;
}

/* about  */


/* heart rate pulse animation  */


.heading_animation {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.heart-rate {
    height: 40px;
    width: 180px;
    position: relative;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
    pointer-events: none;
    background: transparent;
}

.path-pulse {
    position: relative;
    stroke-dasharray: 8000;
    stroke-dashoffset: 2000;
    animation: ekg 3.5s linear infinite;
}

@keyframes ekg {
    0% {
        stroke-dashoffset: 8000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -8000;
    }
}


/* heart rate pulse animation  */



.specialities {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--secondary-color);
}

.specialities_box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 15px;
    grid-column-gap: 15px;
    grid-row-gap: 20px;
}

.sb_inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(1, 33, 82, 0.15);
}

.sb_inner img {
    width: 80px;
    margin: auto;
}

.sbi_h {
    font-family: "Mulish", sans-serif;
    min-height: 55px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0.3px;
    padding-top: 10px !important;
}

.human_body {
    width: 100%;
    height: auto;
    padding: 60px 0;
    padding-bottom: 120px;
    background: var(--s_backgound-color);
}


.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.tab_box {
    width: 30%;
    background: var(--primary-color);
    text-align: center;
    padding: 20px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tab_box:hover {
    background-color: var(--highlight-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab_box.active {
    background-color: var(--highlight-color);
    color: white;
    transition: all 0.3s ease;
}

.tb_h {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.tab-content {
    padding: 20px 10px;
}

.tc_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--heaing-color);
    padding-top: 20px !important;
}

.tc_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    padding-top: 10px !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    margin-top: 15px;
    animation: fade 1.5s;
    -webkit-animation: fade 1.5s;
}

.body_highlights {
    width: 70%;
    margin: auto;
    margin-top: 60px;
    position: relative;
}

.bh_img {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: auto;
    aspect-ratio: 1 / 1;
    height: auto;
}

.bh_img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    /* animation: bg_rotate 2.5s linear infinite; */
    border: 2px dashed var(--highlight-color);
}

@keyframes bg_rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bh_img img {
    max-height: 400px;
    margin: auto;
}

.bh_inner_boxes {
    position: absolute;
    top: 0;
    left: 0;
}

.bib_box {
    max-width: auto;
    min-width: auto;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
}

.bhib {
    position: relative;
    margin: auto;
}

.bhib_img {
    position: relative;
    padding: 6px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
}

.bhih {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--heaing-color);
    padding-top: 20px !important;
    display: inline-block;
    background: var(--secondary-color);
    padding: 10px 20px !important;
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.35);
    margin-top: 12px !important;
    font-size: 16px;
    letter-spacing: 0.35px;
    position: relative;
    overflow: hidden;
    max-width: 150px;
}

.bhih::after {
    content: "";
    position: absolute;
    width: 00%;
    height: 2.5px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}

.bhih:hover::after {
    width: 100%;
    transition: all 0.3s ease;
}

.bhib_img:hover+.bhih::after {
    width: 100%;
    transition: all 0.3s ease;
}

.bhip_popup {
    position: absolute;
    display: none;
    word-break: keep-all;
    white-space: normal;
    text-align: center;
    min-width: 185px;
    z-index: 99999 !important;
    transform: translateX(-50%) translateY(-10px);
}

.bib_box:hover .bhip_popup {
    display: block;
}

.popup_bottom {
    top: 108%;
    left: 50%;
    right: 0;
}

.popup_left {
    top: 10%;
    /* left: -80%; */
    right: calc(85% + 15px);
    transform: translateY(-40%) translateX(10px);
}

.popup_right {
    top: 10%;
    /* right: -80%; */
    left: calc(190% + 15px);
}

.popup_top {
    bottom: 105%;
    left: 50%;
    right: 0;
}

.bhip_ph {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--heaing-color);
    padding-top: 20px !important;
    display: inline-block;
    background: var(--secondary-color);
    padding: 12.5px 20px !important;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.35);
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
}

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

.bg_h {
    background: var(--highlight-color);
}

.bg_sh {
    background: var(--sub-highlight-color);
}

.ub_one {
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
}

.ub_two {
    left: 70%;
    top: 12%;
    transform: translate(-50%, -50%);
}

.ub_three {
    left: 85%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.ub_four {
    left: 87%;
    top: 65%;
    transform: translate(-50%, -50%);
}

.ub_five {
    left: 72%;
    top: 95%;
    transform: translate(-50%, -50%);
}

.ub_six {
    left: 50%;
    top: 103%;
    transform: translate(-50%, -50%);
}

.ub_seven {
    left: 25%;
    top: 90%;
    transform: translate(-50%, -50%);
}

.ub_eight {
    left: 13%;
    top: 65%;
    transform: translate(-50%, -50%);
}

.ub_nine {
    left: 15%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.ub_ten {
    left: 30%;
    top: 12%;
    transform: translate(-50%, -50%);
}


.doctors {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--secondary-color);
}

.doctor_box {
    width: 100%;
    height: auto;
    padding: 25px 15px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.15);
    border-radius: 10px;
    margin-top: 40px;
}

.db_details {
    display: flex;
    gap: 10px;
}

.db_details img {
    width: 85px;
    height: 85px;
    border-radius: 100%;
}

.dbd_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.dbd_p {
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-color);
    display: flex;
    gap: 5px;
    align-items: center;
}

.db_btn {
    margin-top: 15px;
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
}

.btn_p {
    background: var(--primary-color);
    color: var(--secondary-color);
}



/* why us */

#why_us {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.wu_box {
    margin-top: 25px;
    border: 2px solid var(--primary-color);
    padding: 25px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wub_icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.wubt_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--primary-color);
}

.wubt_p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    font-weight: 400;
    padding-top: 5px !important;
    color: var(--text-color);
}

.wia_box {
    position: relative;
}

#why_image_animation_1 {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 105%;
    top: 30%;
    opacity: 1;
    animation: shapeMover 2s linear infinite;
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

/* why us */



.center_excellence {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.cx_img {
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.35);
    margin-top: 40px;
    max-width: 90%;
    margin: auto;
}

.cx_box {
    width: 100%;
    height: auto;
    margin-top: 40px;
}

.cxb_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 26px;
    letter-spacing: 0.35px;
}

.cx_box_inner {
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
}

.cx_box_inner::-webkit-scrollbar {
    width: 6.5px;
    height: 10px;
}

.cx_box_inner::-webkit-scrollbar-thumb {
    background: var(--sub-highlight-color);
}

.cx_box_inner::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.4);
}

.cxbi_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--text-color);
    line-height: inherit;
    font-size: 24px;
    letter-spacing: 0.35px;
    border-bottom: 1px solid var(--p-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px !important;
    margin-top: 25px !important;
}

.cxbi_h i {
    color: var(--sub-highlight-color);
    font-size: 28px;
}

.video {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}


/* reviews  */

#reviews {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.rating_box {
    margin-top: 40px;
}

#r_logo {
    width: 150px;
}

.rb_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: inherit;
    color: var(--primary-color);
    padding-top: 10px !important;
}

#r_rating {
    width: 100px;
}

.rb_p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
    padding-top: 5px !important;
}

.testimonials_box {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 40px;
    padding: 20px 15px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.tb_name {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tbn_h {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.tbn_p {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    color: var(--highlight-color);
    font-size: 15px;
}

.tbc_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--p-color);
    letter-spacing: 0px;
    padding-top: 10px !important;
    text-align: left;
}

.tb_btn {
    margin-top: 15px;
    display: block;
    color: var(--highlight-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px
}

.tb_btn i {
    font-size: 14px;
    position: relative;
    top: 1.5px;
}

#tb_img {
    padding-top: 10px;
}

/* reviews  */


/* blog  */

.blog {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--secondary-color);
}

.blog_box {
    margin-top: 40px;
}

.blog_h {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 21px;
    padding-top: 10px !important;
    letter-spacing: 0.35px;
    line-height: 26px;
}

.blog_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--p-color);
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}
.blog_box a{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--highlight-color) !important;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
    display: block;
}

/* blog  */


.footer_top {
    width: 100%;
    height: auto;
    background: url(../../images/bg-footer-top.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}


.footer {
    background-color: var(--primary-color);
    margin: 20px 0 0 0;
    position: relative;
    padding-bottom: 100px;
}

.wave {
    background-image: url(../../images/wave.png);
    animation: marquee 15s infinite linear;
    background-repeat: repeat-x;
    background-position: center top;
    min-height: 44px;
    background-size: 3600px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 51;
}

@keyframes marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}


#main_footer {
    width: 100%;
    height: auto;
    position: relative;
    background: var(--primary-color);
}

.footer_main_box {
    width: 100%;
    height: auto;
    padding: 40px 40px;
    border-radius: 20px;
}

.footer_qr {
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-top: 20px;
}

.qr_p {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    padding-top: 12px !important;
    text-align: center;
}

.footer_btn {
    background: var(--highlight-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.15px;
}

.footer_contact_d {
    display: flex;
    padding-top: 15px;
    gap: 15px;
}

.footer_contact_d i {
    color: var(--secondary-color);
    font-size: 20px;
    position: relative;
    top: 5px;
}

.fcd_p {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 16px;
}

.footer_contact_social {
    padding: 0;
    margin: 0;
}

.footer_contact_social li {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    padding-top: 5px;
    margin-top: 15px;
    margin-right: 10px;
}

.line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 20px 0;
}

.footer_links {
    padding: 0;
    margin: 0;
}

.footer_links li {
    list-style: none;
    font-family: 'Poppins', sans-serif;
    line-height: 28px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    padding-top: 5px;
    letter-spacing: 0.15px;
}

.flooter_li_h {
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--secondary-color);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.65px;
    padding-bottom: 12px !important;
}

.flex_links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    padding: 0;
}

.copyrights {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background: var(--s_backgound-color);
    position: relative;
    font-family: 'Poppins', sans-serif;
    z-index: -1;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}
.footer_copy_p{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}
.footer_copy_p a{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}


.bredcum{
    width: 100%;
    height: auto;
    padding: 120px 0;
    background: url(../../images/bredcum.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.bredcum_h{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    letter-spacing: 0.65px;
    font-size: 55px;
    line-height: inherit;
    color: var(--secondary-color);   
}
.ser_ph {
    font-family: "Mulish", sans-serif;
    letter-spacing: 0px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    padding-top: 12px !important;
    font-size: 18px;
}

.ser_h{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    letter-spacing: 0.65px;
    padding-top: 20px !important;
    line-height: inherit;
    color: var(--text-color);   
}
.ser_ul{
    padding: 0;
    margin: 0;
    padding-top: 10px;
}
.ser_ul li{
    font-family: "Mulish", sans-serif;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.15px;
    margin-left: 20px;
}
.ser_ul li strong{
    font-family: "Mulish", sans-serif;
    line-height: 30px;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.15px;
}
.ser_p{
    font-family: "Mulish", sans-serif;
    letter-spacing: 0.15px;
    line-height: 30px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    padding-top: 10px !important;
}
.ser_p strong{
    font-family: "Mulish", sans-serif;
    letter-spacing: 0.15px;
    line-height: 30px;
    color: #000000;
}

.team_box{
    width: 100%;
    height: auto;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding-bottom: 40px;
    box-shadow: 0px 0px 10px 0px rgba(1, 33, 82, 0.35);
}
.border{
    border: 1px solid rgba(1, 33, 82, 0.35);
}
.services_doctor img{
    border-radius: 10px;
    margin: auto;
}
.services_doctor .dbd_p{
    justify-content: center;
    padding-top: 5px !important;
}
.services_doctor .dbd_h{
    padding-top: 15px !important;
}


.service_contact {
    display: flex;
    padding-top: 15px;
    gap: 15px;
}

.service_contact i {
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    top: 5px;
}

.scd_p {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 16px;
}


.flex {
    display: flex;
    overflow-x: hidden;
    justify-content: flex-end;
}

.contact_box {
    width: 100%;
    height: auto;
    padding: 80px 0px;
    background: rgba(1, 33, 82, 0.35);
    background-image: url(../../images/shape_02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    justify-content: flex-end;
    position: relative;
    right: -100px;
}

.column_reverse {
    flex-direction: row;
    display: flex;
    align-items: center;
}

.contact_h {
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
}

.contact_h {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    line-height: initial;
    font-weight: 400;
    font-size: 46px;
    letter-spacing: 0.65px;
}

.contact_p {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px !important;
}

.contact_form {
    width: 100%;
    height: auto;
    background: var(--primary-color);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    right: 70px;
}

.cf_label {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 16px;
}

.cf_input {
    padding: 15px;
    height: auto;
    border-radius: 0;
    border: none;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
}

.cf_input::placeholder {
    color: var(--p-color);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

.cf_btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--highlight-color);
    color: var(--secondary-color);
}

.contact_sp {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding-top: 10px !important;
}

.contact_sh {
    padding-top: 15px !important;
    font-family: 'Rubik', sans-serif;
    color: var(--highlight-color);
    font-weight: 400;
    font-size: 21px;
}

.contact_ap {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 8px !important;
}

.c_shape {
    position: relative;
    background-image: url(../../images/shape-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.contact_details_box {
    width: 100%;
    height: auto;
    padding: 20px;
    background: rgba(0, 0, 204, 0.1);
    margin-top: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact_details_box i {
    min-width: 35px;
    min-height: 40px;
    background: rgba(0, 0, 204, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-color);
}

.cdbi_h {
    font-family: "Nunito", sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    line-height: inherit;
}

.cdbi_p {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0px;
}

.contact_map_box {
    position: relative;
}

.contact_map {
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.contact_school_image img {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 204, 0.25);
    border-radius: 15px;
    max-width: 400px;
    position: absolute;
    bottom: -25px;
    left: 45%;
}

.mvp_img_01 {
    max-width: 90%;
    border-radius: 100rem 100rem 10rem 10rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mvp_img_02 {
    max-width: 90%;
    border-radius: 100rem 100rem 100rem 100rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    border: 5px solid var(--secondary-color);
    /* position: absolute;
    right: 5%;
    bottom: 100px; */
}

.contact_ph{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    letter-spacing: 0.65px;
    line-height: inherit;
    color: var(--primary-color);
}

.book_btn{
    font-family: "Bricolage Grotesque", sans-serif;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    margin: auto;
    margin-top: 20px;
    display: block;
}


.ld_box{
    margin-top: 40px;
    padding: 20px 15px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ldb_h{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    letter-spacing: 0.65px;
    line-height: inherit;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: -0.15px;
    padding-top: 10px !important;
}

.ld_box img{
    width: 65px;
    margin: auto;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
    line-height: initial !important;
    -webkit-appearance: none;
	display: block;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-meridiem-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field  {
	padding: 0 !important;
}

