@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
/******commom css******/
:root {
    --white: #ffffff;
    --black: #111115;
    --graybg: #fcfcfc;
    --lightbg: #fffbfc;
    --orange: #f77c2f;
    --blue: #0b85c6;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    -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: 700;
    font-size: 46px;
    color: var(--black);
}

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: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    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(--orange);
        border-color: var(--orange);
        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(--orange);
    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/theme42/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: var(--blue);
        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: var(--white);
    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: static;
}

    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(--orange);
        font-size: 24px;
        align-items: center;
        gap: 20px;
        margin: 0;
        line-height: 24px;
    }


        header .logo img {
            max-width: 180px;
            margin: 0;
            display: block;
            max-height:70px;
        }

        header .logo span {
            display: block;
        }


.NavBar, .NavBar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 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:nth-child(2) {
        padding-left: 0;
    }
    header .mainNav li:last-child {
        display:none;
    }


        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: 15px;
            background: transparent;
        }





            header .mainNav li a:hover {
                color: var(--orange);
            }

        header .mainNav li.active a {
            color: var(--orange);
        }


        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(--orange);
                        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;
}
.main-header {
    border-bottom: 1px solid #f5f5f5;
}
.main-header .top-right {
    display: flex;
    grid-gap: 50px;
}
header .NavBar {
    border-bottom: 3px solid var(--orange);
    background: #fff;
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
    z-index: 9;
    width: 100%;
    padding:0;
    box-sizing: border-box;
}
header .main-header .NavBar {
    border: none;
    box-shadow: none;
    position: static;
    padding: 10px 0;
    transform:inherit;
}
header .social-icon {
    display:flex;
    grid-gap:10px;
}
    header .social-icon a {
        background: var(--blue);
        color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
header .NavBar .call-icon a {
    display: flex;
    align-items: center;
    grid-gap: 5px;
}

.call-icon a > div span {
    display: block;
}

header .NavBar .call-icon a img {
    max-width: 55px;
}

header .NavBar .call-icon span {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    display:none;
}

header .NavBar .call-icon div {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}


/******header end********/



/**********footer start**************/
.Footer {
    background: var(--white);
    color: var(--black);
    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: 16px;
    font-weight: 500;
    color: var(--black);
}

.footer-sec .address p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.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(--orange);
        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: 100px;
    }

.footer-sec .social-icon {
    display: flex;
    grid-gap: 10px;
    margin-top:20px;
}

    .footer-sec .social-icon a {
        background: var(--orange);
        color: var(--white);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

.copyright {
    background: var(--orange);
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding:8px 0;
    justify-content: space-between;
    margin-top: 25px;
}

    .copyright-inner p {
        font-size: 14px;
        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(--orange);
            }

/************ footer end****************/



/***************** fixed icons ****************/

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color:#034ea2;
    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;
    top:40%;
    right: 20px;
    z-index: 8;
}

    .mobile-icon-btn img {
        aspect-ratio: 1/1;
    }

.sticky-need-help {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -225px;
    z-index: 100;
    transition: all .5s
}

    .sticky-need-help.open {
        right: 0
    }

    .sticky-need-help .sticky-btn {
        background: var(--orange);
        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(--orange);
                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(--orange);
    display: flex;
    max-width: 462px;
}

.sticky-side-sec {
    padding: 25px 31px 25px 20px;
    background: #fff;
    border: 2px solid var(--orange);
    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(--orange);
            }

            .sticky-side-sec .text-content ul li a span {
                margin-right: 12px;
                color: var(--orange);
            }

        .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;
        }

/********************fixed icons*************************/




/********************** content css start****************************/

.main-banner {
    background: url(/images/theme42/banner.jpg) no-repeat;
    background-size: contain;
    position: relative;
    padding: 170px 0 150px;
    background-position: right;
}



    .main-banner h1 {
        color: var(--black);
        margin: 0 0 20px;
        font-size: 53px;
        text-align: left;
        max-width: 97%;
    }


.main-banner h1 span {
    color: var(--black);
    display: block;
}


    .main-banner p {
        color: var(--black);
        margin: 30px 0 40px;
        font-size: 15px;
        font-weight: 500;
        line-height: 24px;
        max-width: 500px;
    }



.ContentSection {
    padding: 80px 0;
    overflow: hidden;
}

.about-sec {
    background: url(/images/theme42/welcome-image.jpg) no-repeat;
}
.about-block {
    max-width: 500px;
}
    .about-sec .h-rating {
        display: flex;
        align-items: center;
        grid-gap: 20px;
        margin-bottom: 30px;
    }

        .about-sec .h-rating > div {
            background: #eeecfa;
            color: var(--orange);
            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;
    }

    .about-sec p {
        font-weight: 400;
        margin-bottom: 30px;
    }

    .about-sec ul {
        margin-bottom: 40px;
    }

        .about-sec ul li {
            width: 100%;
            font-weight: 700;
            position: relative;
            padding-left: 40px;
            margin-bottom: 20px;
            font-size: 16px;
        }

            .about-sec ul li:before {
                background: url(/images/theme42/sprite-image.png) no-repeat;
                content: "";
                width: 35px;
                height: 24px;
                position: absolute;
                left: 0;
                background-position: -257px -12px;
            }

.practice-days {
    background: url(/images/theme42/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(--darkorange);
                width: 65px;
                height: 2px;
                position: absolute;
                bottom: -10px;
            }

.owl-carousel .owl-nav {
    margin: 20px 0 0;
    text-align:center;
}


.owl-carousel .owl-nav button.owl-prev {
    background: url(/images/theme42/left-arrow.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
    margin: 0 10px;
}

.owl-carousel .owl-nav button.owl-next {
    background: url(/images/theme42/right-arrow.png) no-repeat;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-size: 100% 100%;
}




.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%;
}

.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(--orange);
    color: var(--orange);
    max-width: 170px;
}

.article-block .articleDesc p {
    margin: 15px 0 20px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    max-height: 75px;
}

.article-block .articleDesc div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .article-block .articleDesc div > a {
        color: var(--blue);
        font-weight: 600;
        margin: 0;
    }
    .article-block .articleDesc div > a:hover {
        color: var(--orange);
        text-decoration:underline;
    }

.article-block .articleDesc .date {
    position: relative;
    padding-left: 40px;
    font-weight: 600;
}

    .article-block .articleDesc .date:before {
        background: url(/images/theme42/sprite-image.png) no-repeat;
        content: "";
        height: 24px;
        width: 30px;
        position: absolute;
        left: 0;
        background-position: -210px -14px;
    }


.recent-articles a.btn.btn-primary {
    min-width: 200px;
    margin: 35px 0 0;
}

.contact-info {
    background: var(--orange);
    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(--orange);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            height: 30px;
            width: 30px;
        }

.testimonial {
    background: var(--lightbg);
}

    .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: var(--orange);
}

.exp-sec {
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .exp-sec .expBlock {
        display: flex;
        align-items: flex-start;
        grid-gap: 20px;
        padding: 0;
    }

        .exp-sec .expBlock img {
            max-width: 60px;
        }

        .exp-sec .expBlock h3 {
            font-weight: 700;
            color: var(--white);
            font-size: 40px;
            margin: 0;
        }

        .exp-sec .expBlock h6 {
            margin: 0 0 10px;
            font-weight: 700;
            font-size: 18px;
        }

        .exp-sec .expBlock p {
            margin: 0;
        }
.fourBlock .col-lg-3 {
    border-right: 1px solid #f5f5f5;
}
.fourBlock .col-lg-3:last-child {
    border-right:none;
}
.fourBlock .block {
    text-align:center;
    padding:20px;
}

    .fourBlock .block img {
        max-width: 100px;
        margin: 0 auto 20px;
        display: block;
    }
    .fourBlock .block h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.services {
    background: var(--graybg);
}
.services h2 {
    margin-bottom:20px;
}
   
    .services .service-block {
        background: var(--white);
        box-shadow: 0 0 8px rgba(0,0,0,0.1);
        margin: 15px;
        position:relative;
    }

.service-block img {
    height:390px;
    object-fit: cover;
    width: 100%;
}
.service-block .serviceDesc {
    padding: 30px;
    position: absolute;
    bottom: 20px;
    background: #fff;
    width: calc(100% - 20px);
    text-align: left;
}
    .service-block .serviceDesc h4 {
        font-weight: 700;
        font-size: 20px;
        margin: 0 0 15px;
    }
    .service-block .serviceDesc a {
        text-transform: uppercase;
        font-weight: 700;
        color: var(--blue);
    }

.upcoming-program {
    background:var(--lightbg);
}
.upcoming-program h2 {
    margin-bottom:50px;
}
.upcoming-program-block {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}
    .upcoming-program-block img {
        height: 200px;
        object-fit: cover;
        width: 50%;
    }
    .upcoming-program-block h5 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }
    .upcoming-program-block p {
        font-size: 16px;
        margin: 0;
    }

.book-session {
    background: url(/images/theme42/contact-bg.jpg) no-repeat;
    background-size:cover;
    color:var(--white);
}
.book-session h2 {
    margin-bottom:40px;
    color:var(--white);
}
    .book-session .form {
        max-width: 450px;
        margin: 0 auto;
    }
.book-session .form-control {
    border-radius: 0;
    text-transform: uppercase;
    padding: 10px 15px;
    background:none;
    border: 1px solid var(--white);
    color: var(--white);
    font-weight: 400;
}

    .book-session .btn {
        min-width: 170px;
        background: var(--blue);
        border-color: var(--blue);
    }
    .book-session input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: var(--white);
        opacity: 0.9;
    }

    .book-session input::-moz-placeholder { /* Firefox 19+ */
        color: var(--white);
        opacity: 0.9;
    }

    .book-session input:-ms-input-placeholder { /* IE 10+ */
        color: var(--white);
        opacity: 0.9;
    }

    .book-session input:-moz-placeholder { /* Firefox 18- */
        color: var(--white);
        opacity:0.9;
    }

.mobile-icon-btn .icon-btn {
    margin-top: 8px;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background:var(--orange);
    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.b-call::before {
        background-position: -80px 0px;
        left: 7px;
    }

.mobile-icon-btn a {
    display: block;
    position: relative;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}
.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(--orange);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 6px;
    position: absolute;
    z-index: 1;
    top: 2px;
    right: 110%;
    box-shadow: none;
    border: 1px solid var(--orange);
    white-space: nowrap;
    font-size: 16px;
}

.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(--orange);
}

.mobile-icon-btn a:hover .tooltiptext {
    visibility: visible;
}
.mobile-icon-btn a:last-child {
    display: none;
}
.ul-list li {
    list-style: disc inside;
}
.innerPage p, .innerPage ul li, .innerPage ol li {
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 10px;
    line-height:1.4;
}
.innerPage ul, .innerPage ol {margin-bottom:15px;}
.innerPage ul li {
    list-style: disc inside;
}
.innerPage ol li {
    list-style: number inside;
}
.innerPage ol {
    margin: 0;
    padding: 0;
}
.innerPage ol ul li {
    list-style: disc inside;
}
.innerPage ol ul {
    list-style: disc inside;
}
.inner-page-body .Footer {
    background: #fdeef2;
    color: var(--black);
    padding: 60px 0 0;
}
.contact-page p {
    font-size: 17px;
}
.articles-details .ArticleBlock > img {
    min-height: inherit;
    max-height: 250px;
    object-fit: cover;
    max-width: 60%;
    margin: 0 auto;
    display: block;
}

/**************************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;
    }
    .main-banner h1 {
        font-size: 48px;
    }
}

@media (max-width:991px) {
.NavBar-inner {
      padding: 0;
     }
    header {
        padding: 0;
    }

        header .NavBar {
            padding:0;
            position: static;
            border: none;
            max-width: 100%;
            transform: inherit;
        }
        header .main-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(--orange);
            }

        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            background: #fff;
        }

        header .mainNav .mobile-top a.logo {
            color: var(--orange);
        }

            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 ul.mainNav li.mobile-top .m-top-inner a.close {
                float: none;
                width: auto;
                opacity: 1;
                text-shadow: none;
                color: var(--orange);
            }

                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:8px 20px;
            }
            header .mainNav li:nth-child(2) {
               padding-left: 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: 8px;
            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;
        }
        .inner-page-body header .mainNav li a:hover {
           color: var(--orange);
        }

    .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: 30px;
        background: rgba(255, 255, 255, 0.8);
    }

        .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: cover;
    }

        .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;
    }
    header .mainNav li:last-child {
        display:block;
    }
    header .mainNav .social-icon {
        display: flex;
        margin-top: 20px;
    }
    header .mainNav .social-icon a {
        background: var(--blue);
        color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }


    .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 .main-header .NavBar .call-icon {
        display: none;
    }
    header .NavBar .call-icon {
        display: block;
    }
    header ul .social-icon {
        display: flex;
    }
    .fourBlock .col-lg-3 {
        border-right: none;
    }
    .fourBlock .block {
        border: 1px solid #f5f5f5;
        margin: 15px 0;
    }
    .upcoming-program-block {
        margin: 15px 0;
    }
}


@media (max-width:767px) {
    .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;
    }

    .copyright {
        margin-top: 0;
    }

        .copyright:before {
            display: none;
        }
        .copyright-inner p {
   text-align: center;
}
.copyright-inner p {
    text-align: center !important;
}

    .main-banner .banner-inner {
        display: block;
    }

        .main-banner .banner-inner > div {
            width: 100%;
        }

    .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: 40px 0 40px;
        background-size: cover;
    }

    .what-we-provide-inner .box {
        min-width: 100%;
    }

    .our-timing-inner {
        flex-wrap: wrap;
    }

        .our-timing-inner > div {
            width: 100%;
        }

    

    .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;
    }

        .expSection > div {
            width: 100%;
        }
    .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;
        }
    .threeBlock .block {
        margin: 10px 0;
    }
    .inspiration-sec .inspiration-block {
        margin: 10px 0;
    }
    .upcoming-program-block {
        display: block;
    }
        .upcoming-program-block img {
            width: auto;
            margin-bottom: 15px;
        }
    body.theme-42 .main-banner {
        padding: 40px 0 40px !important;
        background-size: cover;
    }
}

/********end*********/


