@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/*=========================================================
                     css common style 
===========================================================*/

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

p {
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
}

ul li {
    font-size: 18px;
    padding-bottom: 10px;
}

.inner_sub_ul {
    list-style: initial;
}

ol li {
    font-size: 18px;
    padding-bottom: 10px;
}

section {
    overflow: hidden;
}

/*=========================================================
                    nav bar 
===========================================================*/

/* .main_logo a .dr_name h4 span {
    font-size: 16px;
    font-weight: 400;
    color: rgb(249, 116, 37);
} */

.main_logo a {
    display: flex;
    padding: 5px 0 0;
}

.main_logo a .logo_img {
    width: 58%;
}

.dr_name {
    margin-top: -6px;
}

.main_logo a .logo_img img {
    width: 100%;
    margin-top: -3%;
}

h4.neuro_serh4 {
    margin: 0;
    line-height: 1;
}

/* .main_logo a .dr_name {
    width: 88%;
    text-align: left;
    padding-left: 5px;
    margin-top: 5px;
}

.main_logo a .dr_name h4 {
    font-size: 30px;
    color: #10519b;
    font-family: math;
    font-weight: 600;
    letter-spacing: .5px;
}

.main_logo a .dr_name h5 {
    color: #525252;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.main_logo a .dr_name p {
    color: #002a89;
} */

/* = */

.row.v-center {
    display: flex;
}

header.header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}

.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 5px 0;
}

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

.header .item-center {
    flex: 0 0 75%;
}

.header .item-right {
    flex: 0 0 0%;
    justify-content: flex-end;
    text-align: center;
}

.header .menu>ul>li {
    display: inline-block;
    padding-bottom: 0px;
}

.header .menu>ul>li>a:hover {
    color: #f97425;
}

.header .menu>ul>li>a {
    font-weight: 500;
    color: #002268;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
    padding: 20px 3px;
    margin: 0 15px;
}

.header .menu>ul>li>.cnt{
margin-right: 0;
}

.header .menu>ul>li>a::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 5px;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    background: #f97425;
    transform-origin: 0 50%;
}

.header .menu>ul>li>a:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 50%;
}

ul.menu-main {
    text-align: right;
    padding: 40px 0;
    margin: 0;
}

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

@media(max-width: 991px) {
    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

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

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

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

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

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #f27e00;
        width: 24px;
        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: #f27e00;
    }

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

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

    .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;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        font-size: 14px;
        text-align: left;
        font-weight: 600;
    }

    .header .menu>ul>li>a i {
        position: absolute;
        top: 15px;
        right: 9px;
        text-align: center;
        font-size: 20px;
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
        flex-direction: row-reverse;
    }

    .header .menu .mobile-menu-head .go-back {

        display: none;
    }



    .header .menu .mobile-menu-head .current-menu-title {

        display: none;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #f27e00;
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .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;
    }


}

/* =navbar dropdown styles= */

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 5px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    min-width: 150px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 15px;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.5;
    color: #002268;
    width: 100%;
    font-weight: 500;
    border-bottom: 1px dotted #f27e00;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover {
    background-color: #ea7027;
    color: white !important;
}

.sub-menu.mega-menu>.list-item>ul>li {
    padding-bottom: 0;
}


.header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    margin-top: 30px;
}


.header .menu>ul>li.menu-item-has-children .list-item ul {
    padding: 0;
}

.header .menu>ul>li.menu-item-has-children .list-item {
    text-align: left;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li:hover a {
    color: white !important;
}


/* ========================================================
                         Bg banner
=========================================================== */

.bg_banner {
    background: url(../images/main_bg5.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg_banner .banner_tint {
    padding: 95px 0;
    /* background: linear-gradient(to right, #0046c0, #ffff0000); */
    /* background-color: #00346c; */
}

.doctor_info_img img {
    border-radius: 50%;
    width: 40%;
}

.doctor_info_img>.img1 {
    margin-right: 12%;
}

.doctor_info {
    color: #fff;
    padding: 30px 0;
}

/* 
.bg_abstruct {
  width: 90%;
} */

.doctor_info h2 {
    font-size: 48px;
    margin-top: 0;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 400;
}

.doctor_info h4 {
    font-size: 28px;
    margin: 20px 0 30px;
    color: #f97425;
    font-weight: 400;
}

.doctor_info_img {
    text-align: right;
}

.read_more {
    background: none;
    font-size: 18px;
    border-radius: 10px;
    color: #fff;
    padding: 8px 25px;
    transition: 1s ease;
    border: 2px solid rgb(249, 116, 37);
}

.read_more:hover {
    background-color: rgb(249, 116, 37);
    transition: 1s ease;
    color: #fff;
}

/* = */

.bg_abstruct {
    float: right;
}

.banner_abbg img {
    position: absolute;
    width: 12%;
}

.banner_abbg img:first-child {
    left: 0;
    bottom: 0;
    animation: moveBounce 15s linear infinite;
}

@keyframes moveBounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner_abbg img:last-child {
    top: 0;
    right: 0;
    animation: moveBounce1 15s linear infinite;
}

@keyframes moveBounce1 {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-30px);
    }
}

/*=========================================================
                    animation styles
===========================================================*/

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-20%, 0, 0);
    }

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

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

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

.fadeInUp {
    animation-name: fadeInUp;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

.img-responsive {
    width: 100% !important;
    height: 200px !important;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

/*=========================================================
                  about doctor section
===========================================================*/

.abt_dr {
    padding: 100px 0;
    background: url(../images/about_bg.jpg);
    position: relative;
}

.abt_doctor_content h2 span {
    color: #f47328;
    font-size: 18px;
    font-weight: 400;
}

.abt_dr p {
    text-align: justify;
}

.doctor_abt_img {
    position: relative;
    z-index: 1;
    width: 90%;
}

.doctor_abt_img::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    background: #D8EBF1;
    z-index: -1;
    border-radius: 50%;
    animation: a-one 5s infinite linear;
}

@keyframes a-one {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.doctor_abt_img::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #F6E4DA;
    z-index: -1;
    border-radius: 50%;
    animation: a-two 5s infinite linear;
}

@keyframes a-two {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.abt_bg_img img {
    position: absolute;
    right: 5%;
    top: 12%;
    width: 300px;
    animation: a-three 5s infinite linear;
}

@keyframes a-three {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 35px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.abt_doctor_content h2 {
    color: #053385;
}

section.abt_dr .read_more {
    color: rgb(249, 116, 37);
}

section.abt_dr .read_more:hover {
    color: #fff;
}

.abt_doctor_content {
    padding: 40px 0;
}

/*=========================================================
                     parallax secton
===========================================================*/

.parallax_tint {
    padding: 150px 0;
    background: linear-gradient(to right, #0f57a6, rgba(0, 0, 0, 0.0));
    /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0, 0, 0, 0.0)); */
    /* background: #00346ce3; */
}

.parallax {
    background: url(../images/parallx.png);
    background-size: 100%;
    background-attachment: fixed;
    background-position: bottom;
}

.doctors_app {
    width: 60%;
    background: #fff;
    opacity: 1;
    padding: 45px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.parallax .read_more {
    color: rgb(249, 116, 37);
}

.parallax .read_more:hover {
    color: #fff;
}

.doctors_app h2 {
    margin-bottom: 20px;
    line-height: 1.5;
    color: #053385;
}

/*=========================================================
                     my_specialties
===========================================================*/

.my_specialties {
    background: url(../images/special_bg.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}

.my_special_bg_color {
    background: #fdfeff;
    padding: 80px 0;
}

.my_specialties_box:hover h5 {
    color: #ee884e;
}

.myspe_content {
    background: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
    margin: 15px 0 0 15px;
    min-height: 260px;
    overflow: hidden;
    border-radius: 0px 20px;
}

.my_specialties_box {
    width: 85%;
    float: right;
    transition: 1s ease;
    position: relative;
    z-index: 4;
    transition: 0.5s all ease;
}

.my_specialties_box h5 {
    margin: 20px 0 10px;
    color: #032040;
    font-size: 18px;
    line-height: 1.5;
    transition: 0.5s all ease;
}

.service_shape_img img:first-child {
    position: absolute;
    top: 0;
    right: 0;
}

.service_shape_img img:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20%;
    animation: a-three 5s infinite linear;
}

section.my_specialties img {
    transition: 0.5s all ease;
    border-radius: 0px 20px;
    overflow: hidden;
}

.my_specialties_box:hover img {
    transform: scale(1.1);
    transition: 0.5s all ease;
}

.my_specialties_box:hover:before {
    background-image: url(../images/cardhover.jpg);
    transition: 0.5s all ease;
}

.my_specialties_box:before {
    content: "";
    position: absolute;
    background-image: url(../images/cardbg.jpg);
    transition: 0.5s all ease;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 0px 20px;
    z-index: -1;
}

/*=========================================================
                 footer 
===========================================================*/

footer {
    background-color: rgb(0 52 108);
    color: #fff;
    padding: 18px 0;
    font-weight: 300;
    min-height: 60px;
}

footer p {
    font-weight: 300;
    margin: 0;
    color: #fff;
}

.footer_left {
    float: left;
}

.footer_right {
    float: right;
}

/*=========================================================
                  inner banner 
===========================================================*/

.inner_banner {
    padding: 40px 0;
    background: url(../images/inner_banner.png);
    color: #fff;
    text-align: center;
    background-position: center;
    background-size: 100%;
}

section.inner_banner h2 {
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/*=========================================================
                     inner section 
===========================================================*/

.inner_section {
    padding: 50px 0;
}

.sidebar__widget {
    border: 1px solid #003fad;
    padding: 26px 30px 30px;
    border-radius: 10px;
    background: #10519a;
}

.sidebar__widget-title {
    font-size: 22px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
    color: #fff;
}

.sidebar__widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: #f27e00;
}

.sidebar__widget ul {
    padding: 0;
}

ul.list-wrap li {
    padding-bottom: 0;
}

.sidebar__cat-list .list-wrap li a {
    color: #fff;
    transition: 1s ease;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 17px;
    margin-bottom: 17px;
    font-size: 18px;
    display: block;
}

.sidebar__cat-list .list-wrap li a:hover {
    color: rgb(249, 116, 37);
    transition: 1s ease;
}

.main_inner_content {
    padding-left: 30px;
}

/*=========================================================
                    gallery page
===========================================================*/

section.gallery {
    padding: 60px 0 40px;
    background: #fdfaf9;
}

.gallery_img {
    height: 268px;
    overflow: hidden;
    border: 10px solid #ffffff;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.gallery_img img {
    box-shadow: #999 0px 0px 8px;
    transition: 1s ease;
    background: #fff;
}

.bar {
    height: 4px;
    width: 100px;
    background: #f47328;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px auto 35px;
}

.bar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #ffffff;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(85px);
    }
}

.modal-dialog {
    max-width: 40%;
}

/*=========================================================
                    Contact Section
===========================================================*/

.contact.section {
    padding: 80px 0;
    background: #f7f7f7;
}


.contact .info-item {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    min-height: 250px;
    background: #fff;
}

.contact .info-item i {
    font-size: 20px;
    color: #f27e00;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted #f27e00;
}

.contact .info-item:hover i {
    background: #f27e00;
    color: #fff;
}

.contact .info-item h3 {
    color: #00346c;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
}

/*=========================================================
                    Media page
===========================================================*/

.photo_wall .media_content {
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 10px solid #fff;
}

.photo_wall h4 {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    color: #0f57a6;
}

.photo_wall {
    /* padding: 80px 0 50px; */
    /* background: #f2f2f2; */
}

/* ==========testimonial============ */

.testimonial {
    background-image: url(../images/main_bg1.png);
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .bar {
    margin-bottom: 40px;
}

.test_tint {
    padding: 80px 0;
    background: #000000d6;
}

.testimonial .card {
    border: none;
}

.testimonial .card_content {
    font-size: 18px;
    padding: 10px;
    color: #000;
}

.testimonial .carousel-control-next,
.carousel-control-prev {
    width: 2%;
}

section.patient.testimonial .testimonial .carousel-control-prev {
    left: 0;
}

section.patient.testimonial .testimonial .carousel-control-next {
    right: 0;
}

.testimonial .carousel-control-prev {
    left: -5%;
    opacity: 1;
}

.testimonial .carousel-control-next {
    right: -5%;
    opacity: 1;
}

.testimonial .carousel-item {
    transition: transform .1s linear;
}

@media (max-width: 767px) {
    .testimonial .carousel-inner .carousel-item>div {
        display: none;
    }

    .testimonial .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.testimonial .carousel-inner .carousel-item.active,
.testimonial .carousel-inner .carousel-item-next,
.testimonial .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) {

    .testimonial .carousel-inner .carousel-item-end.active,
    .testimonial .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .testimonial .carousel-inner .carousel-item-start.active,
    .testimonial .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.testimonial .carousel-inner .carousel-item-end,
.testimonial .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

/* =new styles= */

.pdf_ul {
    list-style: none;
}

.pdf_ul li {
    text-indent: -12px;
}


/*=========================================================
                    Patient testimonial section
===========================================================*/

section.patient.testimonial .card:hover .card-img{
transform: scale(1.05);
transition: .4s ease;
}

section.patient.testimonial{
    position:relative; background: #fdfeff;
}

section.patient.testimonial .card .card-img{
    transition: .4s ease;
}

section.patient.testimonial .card{
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; margin-bottom:10px;
    min-height: 335px;

    margin-bottom: 0;


}

/* section.patient.testimonial .card .card-img img{
    border-radius: 0 0 0 50px;
} */

section.patient.testimonial .card_content{
    color: #032040;
    transition: .4s ease;
}

section.patient.testimonial .card:hover  .card_content{
    color: #f47328;
    transition: .4s ease;
}

section.patient.testimonial .container-fluid{
width: 85%;
}


section.patient.testimonial .card .card-img video {
    max-height: 290px;
  }
