
/******commom css******/
:root {
    --white: #ffffff;
    --black: #181418;
    --graybg: #f8f7fc;
    --blue: #2294f5;
    --darkblue: #023497;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 400;
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 500;
    font-size: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.4;
    margin: 0;
}

p {
    word-break: break-word;
    margin: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: Poppins, sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

.btn {
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
}

.btn-primary {
    background: var(--darkblue);
    border-color: var(--darkblue);
    color: var(--white);
    border-width: 2px;
}

    .btn-primary:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
    }

    .btn-primary:focus, .btn-primary:active {
        box-shadow: none !IMPORTANT;
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
    }




/**********common css**********/


/* header */

header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    /*background: #ffffff;*/
    transition: all 0.2s ease-in-out 0.2s;
    /*-webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);*/
    position: fixed;
}


.top-header {
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

    .top-inner > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-gap: 20px;
    }

        .top-inner > div > div {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--white);
            grid-gap: 5px;
        }

        .top-inner > div p {
            margin: 0;
            font-weight: 500;
        }

    .top-inner .call-us, .top-inner .email-us, .top-inner .timing {
        padding-left: 40px;
        position: relative;
    }

        .top-inner .call-us:before, .top-inner .email-us:before, .top-inner .timing:before {
            background: url(/images/theme54/sprite-image.png) no-repeat;
            content: "";
            position: absolute;
            left: 0;
            width: 40px;
            height: 40px;
        }

        .top-inner .call-us:before {
            background-position: -12px -5px;
        }

        .top-inner .email-us:before {
            background-position: -69px -5px;
        }

        .top-inner .timing:before {
            background-position: -126px -5px;
        }

        .top-inner .call-us a, .top-inner .email-us a {
            color: var(--white);
            font-weight: 500;
        }

        .top-inner .call-us span {
            font-weight: 500;
            margin-right: 5px;
        }

        .top-inner .timing p span {
            color: var(--white);
            padding: 0 10px;
        }

    .top-inner .social-icon a {
        background: #5948ca;
        color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

header {
    z-index: 999;
    width: 100%;
    padding: 0px 0;
    background: none;
    transition: all 0.2s ease-in-out 0.2s;
    /*-webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
    box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);*/
    position: fixed;
}

    header.fixed {
        -webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        position: fixed;
        background: var(--white);
    }

    header .logo {
        display: flex;
        text-transform: capitalize;
        font-weight: 900;
        color: var(--blue);
        font-size: 24px;
        align-items: center;
        gap: 20px;
        margin: 0;
        line-height: 24px;
    }


        header .logo img {
            max-width: 200px;
            margin: 0;
            display: block;
            max-height: 70px;
            width: 100%;
            height:45px;
        }

        header .logo span {
            display: block;
        }


.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

    header .mainNav li {
        display: block;
        list-style-type: none;
        font-size: 16px;
        padding: 0 15px;
        position: relative;
    }


        header .mainNav li a {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            width: 100%;
            align-items: center;
            text-transform: none;
            font-size: 16px;
            background: transparent;
        }





            header .mainNav li a:hover {
                color: var(--darkblue);
            }

        header .mainNav li.active a {
            color: var(--darkblue);
        }


        header .mainNav li .subMenu {
            -webkit-transition: all 0.6s;
            -moz-transition: all 0.6s;
            -ms-transition: all 0.6s;
            -o-transition: all 0.6s;
            transition: all 0.6s;
            max-height: 0;
            display: block;
            overflow: hidden;
            padding: 0;
            opacity: 0;
            position: absolute;
            background: #ffffff;
            min-width: 230px;
            border: 1px solid #eee;
            top: 100%;
            z-index: 9;
        }

            header .mainNav li .subMenu li {
                width: 100%;
                display: inline-block;
                padding: 0;
                margin: 0;
                height: inherit;
            }


                header .mainNav li .subMenu li a {
                    padding: 8px 15px;
                    border-radius: 0;
                }

                    header .mainNav li .subMenu li a:hover {
                        background: var(--darkblue);
                        color: #ffffff;
                    }

        header .mainNav li:hover .subMenu {
            max-height: 400px;
            opacity: 1;
            min-width: 230px;
            top: 100%;
            overflow-y: auto;
        }





header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header span.submenu-icon {
    display: none;
}

header .NavBar .call-icon a {
    display: flex;
    align-items: center;
}

.call-icon a > div span {
    display: block;
}

header .NavBar .call-icon a img {
    max-width: 60px;
}

header .NavBar .call-icon span {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

header .NavBar .call-icon div {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

header.fixed .NavBar .call-icon span, header.fixed .NavBar .call-icon div {
    color: var(--darkblue);
}



/******header end********/



/**********footer start**************/
.Footer {
    background: #dae7ff;
    color: var(--darkblue);
    padding: 60px 0 0;
}


.footer-sec h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    font-family: Poppins, sans-serif;
}

.footer-sec p {
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}

.footer-sec > p {
    padding-left: 0;
    margin: 8px 0 0;
}

.footer-sec ul {
    display: flex;
    flex-wrap: wrap;
}

    .footer-sec ul li {
        width: 50%;
    }

.footer-sec a {
    font-size: 14px;
    font-weight: 500;
    color: var(--darkblue);
}
.footer-sec h4 + ul li a:hover {
    text-decoration: underline;
}
.footer-sec .address p {
    font-size: 14px;
    font-weight: 400;
    color: var(--darkblue);
}

.footer-sec .address a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 18px;
    margin: 15px 0;
}

    .footer-sec .address a i {
        background: var(--blue);
        color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

.footer-sec .f-logo {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px;
    display: block;
}

    .footer-sec .f-logo img {
        max-width: 200px;
        max-height: 150px;
    }

.footer-sec .social-icon {
    display: flex;
    grid-gap: 10px;
    margin-top: 20px;
}

    .footer-sec .social-icon a {
        background: var(--blue);
        color: var(--white);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

.copyright {
    background: #4465a2;
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding: 10px 0;
    justify-content: space-between;
    margin-top: 25px;
}

    .copyright-inner p {
        font-size: 12px;
        color: var(--white);
        font-weight: 400;
    }

        .copyright-inner p a {
            color: var(--white);
        }

    .copyright-inner ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .copyright-inner ul li a {
            color: var(--white);
            font-weight: 400;
        }

        .copyright-inner ul li a {
            color: var(--white);
            font-weight: 500;
            border: 2px solid var(--white);
            width: 40px;
            height: 40px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

            .copyright-inner ul li a:hover {
                color: var(--blue);
            }

/************ footer end****************/




/***************** fixed icons ****************/

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color: var(--blue);
    padding: 6px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

#stop.scrollTop img {
    margin-bottom: 7px;
    max-width: 20px;
}

.mobile-icon-btn {
    position: fixed;
    bottom: auto;
    right: 20px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    transform: translate(0 , -50%);
    top: 50%;
}

    .mobile-icon-btn img {
        aspect-ratio: 1/1;
    }

.sticky-need-help {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -282px;
    z-index: 100;
    transition: all .5s
}

    .sticky-need-help.open {
        right: 0
    }

    .sticky-need-help .sticky-btn {
        background: var(--blue);
        color: #fff;
        padding: 0;
        border-radius: 0;
        max-width: 73px;
        cursor: pointer;
        position: relative;
        box-shadow: 0 0 7px rgba(0,0,0,0.5)
    }

        .sticky-need-help .sticky-btn .img {
            max-width: 73px;
            margin-top: -32px;
            background: #0157e0;
            border-radius: 100%;
            position: relative;
            z-index: 1;
            padding: 4px;
            box-shadow: 0 -3px 3px rgba(0,0,0,0.5)
        }

            .sticky-need-help .sticky-btn .img img {
                width: 65px;
                border-radius: 50%;
                height: 65px
            }

        .sticky-need-help .sticky-btn .text {
            transform: rotate(-90deg);
            margin-top: 25px;
            transform-origin: 100% 100%
        }

            .sticky-need-help .sticky-btn .text span {
                line-height: 1;
                background-color: var(--blue);
                border: 0;
                font-weight: 600;
                white-space: nowrap;
                outline: none;
                font-size: 24px;
                padding: 24px 9px;
                display: inline-block;
                letter-spacing: .2px
            }

.sticky-side-area {
    background: var(--blue);
    display: flex;
    max-width: 462px;
}

.sticky-side-sec {
    padding: 25px 31px 25px 20px;
    background: #fff;
    border: 2px solid var(--blue);
    position: relative;
    border-left: none;
    color: #032237;
}

    .sticky-side-sec .close-btn {
        text-align: right;
        position: absolute;
        right: 5px;
        top: -32px;
        display: block;
    }

        .sticky-side-sec .close-btn button {
            background-color: #032237;
            color: #fff;
            border: 0;
            border-radius: 100%;
            outline: none;
            font-size: 10px;
            width: 25px;
            height: 25px;
            padding: 0;
            -webkit-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

            .sticky-side-sec .close-btn button span {
                font-size: 14px;
                font-weight: normal;
            }

    .sticky-side-sec .text-content {
        min-height: 130px;
    }

        .sticky-side-sec .text-content h5 {
            margin: 0 0 15px !important;
            font-size: 20px !important;
            font-weight: 600;
        }

        .sticky-side-sec .text-content ul li a {
            color: #032237;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

            .sticky-side-sec .text-content ul li a:hover {
                color: var(--blue);
            }

            .sticky-side-sec .text-content ul li a span {
                margin-right: 12px;
                color: var(--blue);
            }

        .sticky-side-sec .text-content ul li {
            margin-bottom: 12px;
        }

            .sticky-side-sec .text-content ul li:last-child {
                margin-bottom: 0;
            }

        .sticky-side-sec .text-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }


.mobile-icon-btn .icon-btn {
    margin-top: 8px;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background:var(--darkblue);
    position: relative;
    box-shadow: -5px 1px 15px 1px rgb(227 227 227 / 29%);
    -webkit-box-shadow: -5px 1px 15px 1px rgb(227 227 227 / 29%);
    -moz-box-shadow: -5px 1px 15px 1px rgba(227, 227, 227, 0.29);
}

    .mobile-icon-btn .icon-btn::before {
        content: "";
        background: url(/images/theme54/fixed-icons-1.png) no-repeat;
        height: 32px;
        width: 32px;
        position: absolute;
        top: 4px;
        right: 5px;
        cursor: pointer;
    }

    .mobile-icon-btn .icon-btn.w-review::before {
        background-position: -38px 0px;
        left: 1px;
    }

    .mobile-icon-btn .icon-btn.b-call::before {
        background-position: -80px 0px;
        left: 7px;
    }

    .mobile-icon-btn .icon-btn.v-map::before {
        background-position: -115px 0px;
        left: 8px;
    }

.mobile-icon-btn a {
    display: block;
    position: relative;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

   /* .mobile-icon-btn a:hover .icon-btn {
        background: #06bbc2;
    }*/

.mobile-icon-btn button.icon-btn {
    border: none;
}

    .mobile-icon-btn button.icon-btn:focus {
        outline: none;
    }

.mobile-icon-btn .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: var(--darkblue);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 6px;
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 110%;
    box-shadow: none;
    border: 1px solid var(--darkblue);
    white-space: nowrap;
    font-size: 13px;
}

.mobile-icon-btn span.tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--darkblue);
}

.mobile-icon-btn a:hover .tooltiptext {
    visibility: visible;
}

.language-header select {
    border: 1px solid #333;
    padding: 5px;
    font-size: 12px;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/********************fixed icons*************************/



/********************** content css start****************************/

.main-banner {
    background: url(/images/theme54/banner-bg.jpg) no-repeat;
    background-size: cover;
    position: relative;
    padding: 180px 0 150px;
}

    .main-banner:after {
        background: url(/images/theme54/physician-image.png) no-repeat;
        content: "";
        background-size: 100%;
        width: 500px;
        height: 620px;
        position: absolute;
        right: 200px;
        bottom: 0;
    }


    .main-banner h1 {
        color: var(--black);
        margin: 0 0 20px;
        font-size: 60px;
        text-align: left;
        font-weight: 500;
    }

        .main-banner h1 span {
            color: var(--darkblue);
            display: inline-block;
            font-weight: 600;
        }


    .main-banner p {
        color: var(--black);
        margin: 30px 0 40px;
        font-size: 15px;
        font-weight: 500;
        line-height: 24px;
        max-width: 500px;
    }

    .main-banner .banner-content {
        position: relative;
        z-index: 1;
    }


.ContentSection {
    padding: 80px 0;
    overflow: hidden;
}

.about-sec {
}

    .about-sec .h-rating {
        display: flex;
        align-items: center;
        grid-gap: 20px;
        margin-bottom: 30px;
    }

        .about-sec .h-rating > div {
            background: #eeecfa;
            color: var(--blue);
            font-weight: 700;
            font-size: 24px;
            padding: 12px 12px;
            border-radius: 0 20px 0 20px;
        }

        .about-sec .h-rating p {
            font-weight: 600;
            font-size: 16px;
            margin: 0;
        }

            .about-sec .h-rating p span {
                font-weight: 500;
                font-size: 14px;
                margin: 0;
                display: block;
            }

    .about-sec h2 {
        margin-bottom: 30px;
        line-height: 1.2;
        font-weight: 500;
        color: var(--black);
    }

    .about-sec .about-content > span {
        font-weight: 600;
        color: var(--blue);
        display: block;
        margin-bottom: 20px;
    }

    .about-sec p {
        font-weight: 400;
        margin-bottom: 30px;
    }

    .about-sec ul {
        margin-bottom: 40px;
    }

        .about-sec ul li {
            width: 100%;
            font-weight: 500;
            position: relative;
            padding-left: 40px;
            margin-bottom: 20px;
        }

            .about-sec ul li:before {
                background: url(/images/theme54/tick.png) no-repeat;
                content: "";
                width: 24px;
                height: 24px;
                position: absolute;
                left: 0;
                top: -3px;
            }

.practice-days {
    background: url(/images/theme54/change-your-life-bg.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 120px;
}

    .practice-days h2 {
        margin-bottom: 40px;
    }

    .practice-days .practice-block {
        display: flex;
        align-items: center;
        grid-gap: 25px;
    }

        .practice-days .practice-block img {
            max-width: 160px;
        }

        .practice-days .practice-block h5 {
            font-weight: 600;
            font-size: 20px;
            position: relative;
            margin: 0 0 30px;
        }

            .practice-days .practice-block h5:before {
                content: "";
                background: var(--darkblue);
                width: 65px;
                height: 2px;
                position: absolute;
                bottom: -10px;
            }

.owl-carousel .owl-nav {
    margin: 20px 0 0;
    text-align: center;
}



.recent-articles {
    background: var(--graybg);
}


    .recent-articles h2 {
        margin-bottom: 40px;
    }


    .recent-articles .article-block {
        padding: 0;
        color: var(--black);
        box-shadow: 0 0 6px rgba(0,0,0,0.2);
        margin: 10px;
        display: flex;
    }

        .recent-articles .article-block img {
            max-height: 230px;
            object-fit: cover;
            max-width: 45%;
        }

.article-block .articleDesc {
    padding: 25px;
    background: var(--white);
    max-width: 55%;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.articleDesc h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
}


.recent-articles .article-block .btn {
    border-color: var(--blue);
    color: var(--blue);
    max-width: 170px;
}

.article-block .articleDesc p {
    margin: 15px 0 20px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    display: -webkit-box;
    max-height: 65px;
    overflow: hidden;
}

.article-block .articleDesc div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .article-block .articleDesc div > a {
        color: var(--blue);
        text-transform: uppercase;
        font-weight: 600;
        margin: 0;
    }

        .article-block .articleDesc div > a:hover {
            color: var(--darkblue);
            text-decoration: underline;
        }

.article-block .articleDesc .date {
    position: relative;
    padding-left: 40px;
    font-weight: 600;
}

    .article-block .articleDesc .date:before {
        background: url(/images/theme54/calendar.png) no-repeat;
        content: "";
        height: 24px;
        width: 26px;
        position: absolute;
        left: 0;
        top: -3px;
    }

.owl-carousel .owl-nav button {
    border: 1px solid var(--blue) !important;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    margin: 0 5px;
}

    .owl-carousel .owl-nav button:hover {
        background: var(--blue);
    }

    .owl-carousel .owl-nav button.owl-prev span {
        background: url(/images/theme54/left-arrow.png) no-repeat;
        width: 21px;
        height: 21px;
        text-indent: -9999px;
        background-size: 100% 100%;
        display: block;
    }

    .owl-carousel .owl-nav button.owl-next span {
        background: url(/images/theme54/right-arrow.png) no-repeat;
        width: 21px;
        height: 21px;
        text-indent: -9999px;
        background-size: 100% 100%;
        display: block;
    }

    .owl-carousel .owl-nav button.owl-prev:hover span {
        background: url(/images/theme54/left-arrow-white.png) no-repeat;
        width: 21px;
        height: 21px;
        text-indent: -9999px;
        background-size: 100% 100%;
        display: block;
    }

    .owl-carousel .owl-nav button.owl-next:hover span {
        background: url(/images/theme54/right-arrow-white.png) no-repeat;
        width: 21px;
        height: 21px;
        text-indent: -9999px;
        background-size: 100% 100%;
        display: block;
    }

.recent-articles a.btn.btn-primary {
    min-width: 200px;
    margin: 35px 0 0;
}

.contact-info {
    background: var(--blue);
    padding: 60px 0;
}

.contact-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

    .contact-info-inner > div {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 500;
        border-right: 1px solid var(--black);
        padding: 0 30px;
    }

        .contact-info-inner > div:last-child {
            border-right: none;
        }

        .contact-info-inner > div a {
            color: var(--white);
        }

        .contact-info-inner > div span {
            color: var(--white);
            background: var(--blue);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            height: 30px;
            width: 30px;
        }

.testimonial {
    background: var(--graybg);
}

    .testimonial h2 {
        margin-bottom: 40px;
    }



.testimonialBlock {
    background: var(--white);
    padding: 35px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin: 10px;
}

    .testimonialBlock img {
        max-width: 45px;
    }

    .testimonialBlock h4 {
        font-weight: 600;
        margin: 15px 0;
        font-size: 20px;
    }

    .testimonialBlock p {
        line-height: 24px;
        margin: 0 0 15px;
    }

    .testimonialBlock span {
    }


.expSection {
    background: url(/images/theme54/blue-bg.png) no-repeat;
    background-position: top right;
    position: relative;
    margin-right: calc(100% - 1140px);
    margin-top: -70px;
    z-index: 1;
}

    .expSection:before {
        content: "";
        background: var(--blue);
        position: absolute;
        width: 85%;
        height: 100%;
        z-index: -1;
    }

.exp-sec {
    color: var(--white);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .exp-sec .expBlock {
        display: block;
        padding: 0;
        text-align: center;
        width: 30%;
    }

        .exp-sec .expBlock img {
            max-width: 60px;
            margin-bottom: 15px;
            max-height:60px;
        }

        .exp-sec .expBlock h3 {
            font-weight: 600;
            color: var(--white);
            font-size: 28px;
            margin: 0;
        }

        .exp-sec .expBlock h6 {
            margin: 0 0 10px;
            font-weight: 500;
            font-size: 18px;
        }

        .exp-sec .expBlock p {
            margin: 0;
        }

.our-service {
    background: var(--graybg);
}

    .our-service h2 {
        margin-bottom: 30px;
    }

    .our-service .col-lg-8 p {
        margin-bottom: 40px;
    }

    .our-service .service-block {
        background: var(--darkblue);
        text-align: center;
        color: var(--white);
        border-radius: 8px;
        margin: 15px 0;
        padding: 20px;
    }

        .our-service .service-block img {
            max-width: 60px;
            max-height: 60px;
            object-fit: contain;
            margin:0 auto;
        }

        .our-service .service-block h4 {
            margin: 10px 0;
            font-size: 18px;
            font-weight: 400;
       }
        .our-service .service-block p {
            font-size: 13px;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            display: -webkit-box;
            min-height: 42px;
        }
        .our-service .service-block a {
            color: #fff;
            text-decoration: underline;
            margin-top: 5px;
            display: inline-block;
            font-size:14px;
        }

            .our-service .service-block a.btn {
                background: var(--blue);
                font-size: 14px;
                padding: 6px 20px;
                margin: 20px 0;
                border-color: var(--blue);
                border-radius: 5px;
            }

.team-1 {
}

    .team-1 .container > span {
        margin-bottom: 10px;
        color: var(--brown);
        font-weight: 600;
        display: block;
        text-align: center;
        font-size: 18px;
    }

    .team-1 h2 {
        color: var(--black);
        margin-bottom: 30px;
    }

    .team-1 p {
        color: var(--black);
        font-size: 16px;
    }

    .team-1 .owl-carousel {
        margin-top: 10px;
    }

.teamBlock {
    border: 1px solid #f5f5f5;
    position: relative;
    margin: 2px;
    padding: 25px 15px 35px;
    text-align: center;
    border-radius: 8px;
}

    .teamBlock img {
        height: 300px;
        width: 100%;
        position: relative;
        object-fit: cover;
    }

    .teamBlock .DoctorDesc {
        color: var(--black);
        text-align: center;
    }

        .teamBlock .DoctorDesc h4 {
            font-size: 18px;
            font-weight: 500;
        }

        .teamBlock .DoctorDesc p {
            font-size: 14px;
            font-weight: 400;
        }

        .teamBlock .DoctorDesc span {
            color: var(--darkblue);
            font-size: 14px;
            display: block;
            margin: 5px 0 15px;
            font-weight: 500;
        }

        .teamBlock .DoctorDesc a {
            color: var(--white);
            border: 2px solid var(--darkblue);
            display: inline-flex;
            padding: 5px 20px;
            font-size: 14px;
            border-radius: 5px;
            font-weight: 400;
            background: var(--darkblue);
            align-items: center;
            justify-content: center;
            margin: 20px 0 0;
        }

            .teamBlock:hover a, .teamBlock .DoctorDesc a:hover {
                color: var(--white);
                border: 2px solid var(--blue);
                background: var(--blue);
            }

.our-service .for-mobile {
    display: none;
}

/**************************content css end***********************************/







/*********************************Responsive Css*************************************/
@media (max-width:1199px) {
    header .mainNav li {
        padding: 0 10px;
    }

        header .mainNav li a {
            font-size: 15px;
        }

    header .logo {
        font-size: 16px;
    }

    .about-content h3 {
        font-size: 36px;
    }

    .contact-info-inner > div {
        padding: 0 15px;
    }

    .team-1 .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .testimonial .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .advantage-block h6 {
        padding: 0 10px;
    }

    .advantage-block img.icon-img {
        max-width: 90px;
        bottom: 70px;
    }

    .top-inner {
        justify-content: center;
        grid-gap: 10px;
        flex-wrap: wrap;
    }

    .we-offer .offerBlock h4 {
        font-size: 19px;
        padding: 10px 20px;
        margin: 25px 0;
    }

    .we-offer .offerBlock .offerDesc {
        padding: 0 20px;
    }

    .expSection {
        margin-right: 0;
        background: none;
    }

        .expSection:before {
            width: 100%;
        }

    .main-banner:after {
        width: 400px;
        height: 550px;
        right: 100px;
    }
}

@media (max-width:1024px) {
    .main-banner:after {
        width: 350px;
        height: 500px;
        right: 100px;
    }
}

@media (max-width:991px) {

    header {
        padding: 0;
    }

        header .NavBar {
            padding: 10px 0;
        }

        header.fixed {
            position: fixed;
        }

        header .header-top-left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header .header-top-left .menu-toggle {
                display: block;
                background: none;
                width: auto;
                height: 26px;
                margin: 0;
                color: var(--white);
            }

        header.fixed .header-top-left .menu-toggle {
            color: var(--blue);
        }
    .navbar .language-header {
        display: none;
    }
        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 99;
            background: #bed5ff;
        }

        header .mainNav .mobile-top a.logo {
            color: var(--blue);
        }

            header .mainNav .mobile-top a.logo:hover {
                background: none;
            }

        header ul.mainNav li.mobile-top .m-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        header .logo img, header .mainNav li.mobile-top a > img {
            max-width: 150px;
        }

        header ul.mainNav li.mobile-top .m-top-inner a.close {
            float: none;
            width: auto;
            opacity: 1;
            text-shadow: none;
            color: var(--blue);
        }

            header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
                background: none;
            }

        header ul.mainNav {
            float: none;
            width: 100%;
            display: block;
            position: fixed;
            top: 0;
            background: #fff;
            z-index: 99;
            max-height: 100vh;
            overflow: auto;
            min-height: 100vh;
            left: -100%;
            -moz-transition-property: all;
            -o-transition-property: all;
            -webkit-transition-property: all;
            transition-property: all;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        }

            header ul.mainNav + ul {
                display: none;
            }

            header ul.mainNav.active {
                left: 0;
            }

            header ul.mainNav li {
                font-size: 16px;
                display: block;
                padding: 15px 20px;
            }

        header .mainNav li {
            padding: 15px 20px;
            margin: 0;
            height: auto;
        }

            header .mainNav li a {
                color: #000;
            }

        header .mainNav > li > a i.material-icons {
            display: none;
        }

        header span.submenu-icon {
            display: block;
            height: 24px;
            position: absolute;
            right: 15px;
            top: 15px;
            cursor: pointer;
            z-index: 1;
        }

        header ul.mainNav ul.subMenu {
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-duration: 0.4s;
            transition-duration: 0.2s;
            display: none;
            overflow: visible;
            opacity: 1;
            max-height: inherit;
            border: none;
            margin-top: 10px;
        }

        header ul.mainNav + ul.mainNav {
            display: none;
        }

        header .mainNav li:before {
            display: none;
        }

    .main-banner h1 {
        font-size: 38px;
    }

    .about-inner-content {
        margin-top: 30px;
    }

    .about-img img {
        margin: 0 auto;
        display: block;
    }

    .copyright .copyright-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .main-banner .banner-content {
        padding: 0;
        z-index: 1;
        position: relative;
    }

        .main-banner .banner-content h1 {
            font-size: 40px;
        }

    .what-we-provide-inner .box span {
        padding: 25px 10px;
        min-width: 130px;
    }

    .what-we-provide-inner .box img {
        max-height: 70px;
    }

    .main-banner .banner-inner .banner-content .shape-img {
        display: none;
    }

    .recent-articles .article-block {
        margin-bottom: 20px;
    }

    .contact-info-inner {
        flex-wrap: wrap;
        grid-gap: 10px;
    }

        .contact-info-inner > div:first-child {
            border-right: none;
        }

    .team-1 .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .footer-sec .address a {
        grid-gap: 5px;
        font-size: 14px;
    }

        .footer-sec .address a i {
            justify-content: center;
            font-size: 12px;
            min-width: 25px;
        }

    .our-timing-inner {
        align-items: inherit;
    }

    .timing-content {
        padding: 25px;
    }

    .our-timing-img img {
        height: 100%;
        object-fit: cover;
    }

    .what-we-provide-inner .box {
        flex-wrap: wrap;
        min-width: 180px;
        margin: 0 5px;
    }

    .main-banner {
        padding: 130px 0 100px;
    }

        .main-banner .banner-inner .banner-content {
            position: relative;
            z-index: 1;
        }

    .about-sec {
        background-size: 50% 50%;
    }

        .about-sec ul li {
            width: 100%;
            margin-bottom: 20px;
        }

    .advantage-block {
        border: 1px solid #f5f5f5;
        margin: 15px 0;
    }

        .advantage-block img {
            width: 100%;
        }

            .advantage-block img.icon-img {
                bottom: 120px;
            }

    .exp-sec {
        padding: 25px;
        grid-gap: 20px;
        flex-wrap: wrap;
    }

    .top-inner > div {
        justify-content: center;
        grid-gap: 10px;
        flex-wrap: wrap;
    }

    header .social-icon {
        display: none;
    }

    .services .owl-carousel {
        margin-top: 30px;
    }

    .practice-days {
        padding-bottom: 80px;
    }

        .practice-days .practice-block {
            margin: 10px 0;
        }

    .exp-sec {
        padding: 25px 0;
        grid-gap: 10px;
    }

        .exp-sec .expBlock {
            grid-gap: 10px;
        }

            .exp-sec .expBlock h6 {
                font-size: 16px;
            }

    header .NavBar .call-icon {
        display: none;
    }

    .main-banner:after {
        right: 0;
    }
}


@media (max-width:767px) {
    .our-service .for-mobile {
    display: none;
}
.our-service .container {
    padding-left: 10px;
    padding-right: 10px;
}
.our-service .for-desktop {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 10px;
    margin-left:-10px;
    margin-right:-10px;
}
.our-service .for-desktop .col-lg-4.col-md-6 {
    min-width: 300px;
    padding-left:10px;
    padding-right:10px;
}

    .about-img {
        margin-bottom: 30px;
    }

    .what-we-provide-inner {
        flex-wrap: wrap;
        grid-gap: 20px;
        justify-content: center;
    }

    .main-banner .banner-img img {
        height: 100%;
        object-fit: cover;
    }

    .contact-info-inner > div {
        border-right: none;
    }

    .footer-sec {
        margin-bottom: 20px;
    }
    .Footer {
    padding: 30px 0 0;
}
.copyright .copyright-inner {
    justify-content: center;
    margin-top:0;
}
    .copyright {
        margin-top: 0;
    }
    .copyright-inner p {
        text-align: center !important;
    }
        .copyright:before {
            display: none;
        }

    .main-banner .banner-inner {
        display: block;
    }

        .main-banner .banner-inner > div {
            width: 100%;
        }

    .main-banner:after {
        display: none;
    }

    .our-timing:before {
        display: none;
    }

    .our-timing {
        margin-top: 0;
    }

    .contact-info-inner > div {
        font-size: 14px;
    }

    .recent-articles .article-block {
        display: block;
    }

        .recent-articles .article-block img {
            max-width: 100%;
        }

    .top-inner {
        justify-content: center;
    }

    .small-images {
        display: none;
    }

    .main-banner {
        padding: 100px 0 60px;
        background: var(--graybg);
    }

    .what-we-provide-inner .box {
        min-width: 100%;
    }

    .our-timing-inner {
        flex-wrap: wrap;
    }

        .our-timing-inner > div {
            width: 100%;
        }

    .services .owl-carousel .owl-nav, .recent-articles .owl-carousel .owl-nav {
        width: calc(100% - 20px);
        left: 10px;
    }

    .our-advantage {
        background-size: inherit;
        padding: 40px 0;
    }

    .testimonialBlock .bottom-desc {
        display: block;
    }

    h2 {
        font-size: 30px;
    }

    .ContentSection {
        padding: 40px 0;
    }

    .contactform-info .form {
        margin-top: 30px;
    }

    .expSection {
        display: block;
        margin: 0;
    }

        .expSection > div {
            width: 100%;
            padding:0;
        }

    .article-block .articleDesc {
        max-width: 100%;
    }

    .about-content {
        margin: 20px 0;
    }

    .practice-days .practice-block {
        display: block;
        background: rgba(255,255,255,0.5);
        padding: 20px;
    }

        .practice-days .practice-block img {
            margin-bottom: 20px;
        }

    /*header .header-top-left .menu-toggle {
        color: var(--blue);
    }*/
    .footer-sec {
       text-align: center;
    }
    .footer-sec .f-logo img {
        max-width: 130px;
        max-height: 130px;
    }
    .footer-sec ul li {
        width: auto;
    }
    .footer-sec ul {
       justify-content: center;
    }
    .footer-sec .social-icon {
       justify-content: center;
    }
    .footer-sec ul li a {
        border-right: 1px solid var(--darkblue);
        line-height: 15px;
        display: inline-block;
        padding: 0 6px;
    }   
    .footer-sec ul li:last-child a {
       border-right: none;
    }
}

/********end*********/