@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --playfair: "Playfair Display", serif;
    --nato: "Noto Sans", sans-serif;
    --theme-green: #5D8B2A;
    --theme-red: #9F1843;
    --theme-green-dark: #2c4411;
    --theme-blue: #092B58;   
    --theme-light: #F8FBFD; 
    --border: #ced4da;        
    --white: #ffffff;
    --light: #f1f1f1;
    --light2: #f7f7f7;
    --text-secondary: rgba(49, 55, 86, 0.7);
    --dark: #363131;
    --dark-light: #6C757D;
    --brown: #BA8C63;
}

html{
    height: 100%;
}
body{
    padding: 0;
    margin: 0;
    font-size: 17px;
    color: var(--text-secondary);
    font-family: var(--nato);
    font-weight: 300;
    height: 100%;
}

/* Common Style */
.bg_light{
    background-color: var(--theme-light);
}
a {
    text-decoration: unset;
}
.accordion-button:focus {
    z-index: 0 !important;
    border-color: transparent !important;
    box-shadow: unset !important;
}
.extra_link{
    color: var(--orange);
    text-decoration: unset;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow:none;
}
.text_link:hover, .text_link:focus{
    color: var(--theme-red);
}
.text_link {
    color: var(--dark);
}
.bg_orange{
    background-color: var(--orange) !important;
}
.text_blue{
    color: var(--blue);
}
.text_dark{
    color: var(--color010101);
}
.text_secondary{
    color: var(--text-secondary);
}
.h-lg-100{
    height: 100%;
}
.z-index{
    z-index: 2;
}
.theme_btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 12px 12px 20px;
    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.form_btn{
    padding: 10px 30px;
}
.nav_callbtn{
    width: 44px;
    height: 44px;
    padding: 8px;
}
.white_btn {
    border-color: var(--white);
    color: var(--theme-blue);
    background-color: var(--white);
}
.white_btn:focus, .white_btn:hover {
    color: var(--white);
    background-color: var(--theme-blue);
    border-style: solid;
    border-width: 1px;
    background-image: none;
}

.blue_red {
    border-color: var(--theme-red);
    color: var(--white);
    background-color: var(--theme-red);
}
.blue_red:focus, .blue_red:hover {
    color: var(--theme-red);
    background-color: var(--white);
    border-style: solid;
    border-width: 1px;
    background-image: none;
}

.sm_btn{
    padding: 8px 24px;
}
.lg_btn{
    font-size: 20px;
    padding: 14px 32px;
}
.text-justify{
    text-align: justify;
}
.bg_span{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);    
    z-index: 1;
}
.bg_span_light{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.2);    
    z-index: 1;
}
.border_right{
    border-right: 1px solid var(--border);
}

/* Animation */
.animation_x{
    -webkit-animation: movers 1s infinite alternate;
    animation: movers 1s infinite alternate;
}
.animation_y{
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

/* Header */
.main_header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.main_header.fixed-top{
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
	0% {
	  opacity: 0;
	  transform: translate3d(0, -100%, 0);
	}
	to {
	  opacity: 1;
	  transform: translateZ(0);
	}
}

.navbar-brand img{
    height: 75px;    
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main_header.fixed-top .navbar-brand img{
    height: 62px;  
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-size: 17px;
    font-weight: 400;
    padding: 4px 12px !important;
    border-radius: 5px;
}
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: var(--theme-blue) !important;
}
.navbar-nav .nav-link:hover {
    color: var(--theme-red);
}
.nav-link span{
    position: relative;
}

/* Bootstrap Offcanvas */
@media (max-width: 991.98px) {
    .offcanvas-collapse {
      position: fixed;
      top: 0; 
      bottom: 0;
      left: 100%;
      width: 50%;
      padding: 60px 30px 16px;
      overflow-y: auto;
      visibility: hidden;
      background-color: var(--white);
      transition: transform .3s ease-in-out, visibility .3s ease-in-out;
      z-index: 1100;
    }
    .offcanvas-collapse.open {
      visibility: visible;
      transform: translateX(-100%);
    }

    .btn-close {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 15px;
        padding: 10px;
        border-radius: 50%;
        display: block !important;
        background-color: var(--white);
        z-index: 1100;
    }
  }
  
  .nav-scroller .nav {
    color: rgba(255, 255, 255, .75);
  }
  
  .nav-scroller .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: #6c757d;
  }
  
  .nav-scroller .active {
    font-weight: 500;
    color: #343a40;
  }
  
  .bg-purple {
    background-color: #6f42c1;
  }

  /* Navbar */
  .btn-close{
    display: none;
  }
  @media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 24px;
    }
  }


  /* Banner */
  .home_banner{
    background-image: url('../images/bannerbg.jpg');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 165px 0 0;
  }

.home_banner_text {
    position: relative;
}
.home_banner_text h1 {
font-size: 50px;
    font-weight: 400;
    font-family: var(--playfair);
    line-height: 70px;
    display: block;
    color: var(--theme-green);
    padding-top: 6px;
    margin-bottom: 16px;
}
.home_banner_text h1 span{
    color: var(--dark);
    font-size: 40px;
    line-height: 72px;
    font-weight: 100;
    display: block;
}
.home_banner_text h1 b{
    display: inline-block;
    background: rgba(255, 255, 255, .9);
    padding: 0 5px 5px;
    font-weight: 400;
}


/* Sections */
.section_padding{
    padding: 100px 0;
}
.section_heading {
    margin-bottom: 100px;
}
.section_heading h2{
    color: var(--dark);
    font-family: var(--playfair);
    font-size: 50px;
    font-weight: 100;
    /* margin-top: 50px; */
    margin-bottom: 0;
}
.section_heading h4{
    color: var(--dark);
}
.heading_line span{
    display: block;
    width: 360px;
    height: 2px;
    margin: 10px auto 0;
    background-color: var(--theme-green);
}

/* FORM */
.form_out {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 36px 36px;
    z-index: 3;
    margin-top: 36px;
    margin-bottom: -40px;
}
.form_out h4{
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--dark);
}
.form-control-lg, .form-select-lg{
    font-size: 17px;
    font-weight: 300;
    padding: 12px 12px;
}
.form-control:focus, .form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--blue);
    outline: 0;
    box-shadow: none;
}

.form_out input {
    margin-bottom: 24px;
}
.form_out textarea {
    margin-bottom: 30px;
}

/* Owl Carausal */
.owl-carousel .owl-dots{
    text-align: center;
    margin-top: 16px;
}
.owl-carousel button.owl-dot {
    display: inline-block;
}
.owl-carousel button.owl-dot span {
    background: var(--theme-green) !important;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}
.owl-carousel button.owl-dot.active span {
    background: var(--theme-green-dark) !important;
}


/* Panchakarma */
.panchakarma_section .panchakarma_section_top{
    background-image: url(../images/treatment-therapies/we-offer.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.panchakarma_top_content, .panchakarma_bottom_content{
    color: var(--dark);
}
.panchakarma_top_content p, .panchakarma_bottom_content p, .whychooseus_content p, .why_panchakarma_content p, .about_content p, .our_clients_content p{
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
}
.we_offer_top img{
    margin-bottom: 16px;
}
.panchakarma_section_bottom{
    padding-top: 50px;
    z-index: 1;
}
.panchakarma_section_bottom .owl-carousel .owl-item img{
    width: 160px;
    margin: 0 auto 16px;
}
.offer_abs{
    position: absolute;
    top: 6%;
    left: -8%;
}

/* Why Choose Us? */
.whychooseus_section{
    background-image: url(../images/why-choose-us/why-us-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.whychooseus_content img{
    height: 80px;
}
.whychooseus_box{
    margin-bottom: 80px;
}
.whychooseus_abs{
    position: absolute;
    top: 8%;
    right: -4%;
}

/* Team */
.team_content .col:first-child, .team_content .col:last-child{
    margin-top: -10%;
}
.team_content_card{
    position: relative;
    width: 75%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}
.team_content_card .team_content_text{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.6);
    color: var(--white);
    padding: 16px;
}
.team_content_card .team_content_text h3{
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 6px;
}
.team_content_card .team_content_text p{
    font-size: 14px;
    margin-bottom: 0;
}

/* Talk to our Experts */
.talktoexperts{
    background-image: url(../images/talkto.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Ayurvedic Therapies for Rejuvenation & Holistic Well-Being */
.ayurvedic_therapies_section{
    background-image: url(../images/ayurvedic-therapies/ayurvedic-therapies-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.ayurvedic_therapies_abs{
    position: absolute;
    top: 8%;
    right: -4%;
}

/* Why Panchakarma Therapies? */
.why_panchakarma_therapies_section{
    background-image: url(../images/panchkarma-therapies/why-panchakarmabg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -200px;
    padding-top: 260px;
}
.why_panchakarma_content .section_heading h2{
    overflow: hidden;
}
.why_panchakarma_content .section_heading h2:after {
    content: "";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 2px solid var(--theme-green);
  }
.panchakarma_abs{
    position: absolute;
    top: -28%;
    left: -4%;
}

/* About Us */
.about_section{
    background-image: url(../images/about/aboutbg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.about_content .about_content_right .section_heading{
    margin-bottom: 30px;
}
.heading_line span {
    width: 200px;
}
.about_content .about_content_right p:first-child{
    overflow: hidden;    
    margin: 0;
}
.about_content .about_content_right p:first-child b:after {
    content: "";
    display: inline-block;
    height: 0.7em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 2px solid var(--theme-green);
  }

  .about_imgback{
    width: 80%;
    margin-left: auto;
  }
  .about_imgfront{
    width: 60%;
    margin-top: -90px;
  }

  /* The voice of our clients */
.our_clients_owl .owl-nav{
    position: absolute;
    bottom: 60%;
    left: -50px;
    right: -50px;
}
.our_clients_owl .owl-nav .owl-next{
    float: right;
}
.our_clients_owl .owl-nav .owl-next, .our_clients_owl .owl-nav .owl-prev{
    font-size: 32px !important;
}

/* Request a callback */
.cta{
    background-image: url(../images/callback.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* FOOTER */
.footer_main{
    position: relative;
    background-color: var(--white);
}
.footer_main .footer_top {
    position: relative;
}
.footer_main .footer_top .footer_logo{
    position: relative;
}
.footer_main .footer_top .footer_logo, .footer_main .footer_top .footer_links{
    padding-top: 80px;
    padding-bottom: 30px;
}
.footer_main .footer_top .footer_logo img{
    position: relative;
    width: 160px;
    margin-bottom: 24px;
}
.footer_main .footer_top .footer_logo p{
    position: relative;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: var(--dark);
}

.footer_main .footer_top .footer_links{
    position: relative;
}
.footer_main .footer_top .footer_links h5{
    position: relative;
    font-family: var(--playfair);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}
.footer_main .footer_top .footer_links h5 span{
    text-decoration: underline;
    text-decoration-color: var(--theme-green);
    text-decoration-thickness: 2px;
}

.footer_main .footer_top .footer_links ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p{
    font-weight: 400;
    font-size: 15px;
    padding-bottom: 6px;
    margin-bottom: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--dark);
}
.footer_main .footer_top .footer_links ul li a, .footer_main .footer_top .footer_links p a{
    display: inline-block;
    color: var(--dark);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 8px;
}
.footer_main .footer_top .footer_contact.footer_links p a{
    border-left: none;
}
.footer_main .footer_top .footer_links p i{
    line-height: 24px;
    font-size: 16px;
    color: var(--theme-green);
}
.footer_main .footer_top .footer_links ul li a:hover, .footer_main .footer_top .footer_links p a:hover {
    color: var(--theme-green);
    border-color: var(--theme-green);
}
.footer_main .footer_top .footer_links p a:hover {
    padding-left: 8px;
}


.footer_main .footer_copyright {
    position: relative;
    text-align: center;
    padding: 80px 0 40px;
    background-image: url(../images/copyrightbg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--dark);
}
.footer_main .footer_copyright p{
    position: relative;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}
.footer_main .footer_copyright p a{
    color: var(--dark);
    text-decoration: none;
}
.footer_main .footer_copyright p a:hover{
    color: var(--theme-red);
}

/* PRIVACY POLICY */
.privacy_content {
    text-align: justify;
    color: var(--dark);
}

/* Thank You */
.thank_you{
    height: 100vh;
    overflow: hidden;
    background-color: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    width: 100%;
    background-image: url(../images/thanksbg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.thank_you_content i{
    font-size: 120px;
    margin-bottom: 30px;
    color: var(--theme-green);
}
.thank_you_content h1{
    color: var(--theme-green);
    font-family: var(--playfair);
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 16px;
}
.thank_you_content h4{
    font-family: var(--playfair);
    font-size: 24px;
    font-weight: 400;
}


/* ----------------------------------------- */
/* Responsive */
/* ----------------------------------------- */
@media (min-width: 1500px){




}

@media (max-width: 1500px){
    body{
        font-size: 16px;
    }
    .section_padding {
        padding: 80px 0;
    }
    .section_heading {
        margin-bottom: 80px;
    }
    .section_heading h2 {
        font-size: 46px;
    }

    .lg_btn {
        font-size: 18px;
    }

    .home_banner {
        padding: 85px 0 0;
    }
    .form_out {
        margin-top: 0px;
    }
    .ayurvedic_therapies_abs {
        right: -8%;
    }
    .offer_abs img, .ayurvedic_therapies_abs img, .panchakarma_abs img{
        width: 68%;
    }
    .panchakarma_section_bottom .owl-carousel .owl-item img {
        width: 120px;
        margin: 0 auto 12px;
    }
    .team_content .col:first-child, .team_content .col:last-child {
        margin-top: -8%;
    }
    .why_panchakarma_therapies_section {
        padding-top: 260px !important;
    }
    .panchakarma_top_content p, .panchakarma_bottom_content p, .whychooseus_content p, .why_panchakarma_content p, .about_content p, .our_clients_content p {
        font-size: 19px;
    }

    /* Form */
    .form-control-lg, .form-select-lg {
        font-size: 16px;
    }

    /* Footer */
    .footer_main .footer_top .footer_logo, .footer_main .footer_top .footer_links {
        padding-top: 46px;
        padding-bottom: 46px 0;
    }
    .footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p {
        font-weight: 400;
    }
}

@media (min-width: 1400px) and (max-width: 1500px){
.home_banner_text h1 {
    font-size: 52px;
    line-height: 66px;
    padding-top: 0;
}
}

@media (max-width: 1366px){
    body, .footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p, .footer_main .footer_top .footer_logo p, .footer_main .footer_copyright p {
        font-size: 15px;
    }
    .navbar-nav .nav-link{
        font-size: 16px;
    }
    .section_heading {
        margin-bottom: 50px;
    }
    .home_banner_text h1 {
font-size: 42px;
    line-height: 60px;
    padding-top: 8px;
    }
    .home_banner_text h1 span {
    font-size: 34px;
    line-height: 68px;
    }
    .form_out {
        padding: 36px 30px 30px;
        margin-top: 30px;
        margin-bottom: -40px;
    }
    .form_out input {
        margin-bottom: 18px;
    }
    .footer_main .footer_copyright {
        padding: 60px 0 40px;
    }
}

@media (max-width: 1024px){
    .navbar-nav .nav-link {
        font-size: 14px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 6px;
    }
    .nav_callbtn {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    .navbar-brand img {
        height: 62px;
    }
    .main_header.fixed-top .navbar-brand img {
        height: 52px;
    }

    h4{
        font-size: 18px;
    }
    .section_padding {
        padding: 60px 0;
    }
    .section_heading h2 {
        font-size: 36px;
    }
    .offer_abs img, .ayurvedic_therapies_abs img, .panchakarma_abs img {
        width: 52%;
    }
    .panchakarma_top_content p, .panchakarma_bottom_content p, .whychooseus_content p, .why_panchakarma_content p, .about_content p, .our_clients_content p {
        font-size: 15px;
    }
    .ayurvedic_therapies_abs {
        right: -14%;
    }
    .section_heading h2 {
        font-size: 32px;
    }
    .heading_line span {
        width: 170px;
    }

    .home_banner_text h1 {
    font-size: 32px;
    line-height: 50px;
    }
    .why_panchakarma_therapies_section {
        padding-top: 200px !important;
    }
    .home_banner_text h1 span {
font-size: 26px;
    line-height: 54px;
    }
    .form_out {
        padding: 26px 20px 20px;
        margin-top: 0;
        margin-bottom: -40px;
    }
    .form-control-lg, .form-select-lg {
        font-size: 15px;
        padding: 10px;
    }
    .form_out h4 {
        font-size: 16px;
        margin-bottom: 26px;
    }






}

@media (max-width: 991px){
    .section_padding {
        padding: 40px 0;
    }
    .navbarSideCollapse {
        margin-left: auto;
    }
    .navbar-nav .nav-link {
        padding: 14px 12px !important;
    }
.home_banner {
    padding: 50px 0 0;
}
    .home_banner_text {
        text-align: center;
    }
.home_banner_text h1{
        font-size: 42px;
    line-height: 60px;
        margin-bottom: 30px;
    }
.home_banner_text h1 span {
    display: table;
    margin: 0 auto;
    font-size: 36px;
}
    .panchakarma_section .panchakarma_section_top{
        padding-top: 90px;
    }
    .offer_abs img, .ayurvedic_therapies_abs img, .panchakarma_abs img, .whychooseus_abs img {
        width: 46%;
    }
    .ayurvedic_therapies_abs {
        right: -20%;
        top: 18%;
    }
    .whychooseus_abs {
        position: absolute;
        top: 8%;
        right: -19%;
    }
    .team_content .col:first-child, .team_content .col:last-child{
        margin-top: 0;
    }
    .team_content_card {
        width: 100%;
        margin-bottom: 15px;
    }
    .team_content_card .team_content_text h3 {
        font-size: 20px;
    }
    .team_content_card .team_content_text p {
        font-size: 13px;
    }
    .team_content_card .team_content_text {
        padding: 10px;
    }
   
    .footer_logo{
        text-align: center;
    }
    .footer_logo .position-relative a:first-child{
        margin-left: auto !important;
    }
    .footer_logo .position-relative a:last-child{
        margin-right: auto;
    }
    .thank_you_content {
        margin-top: -106px;
    }
}

@media (max-width: 991px) and (min-width:768px){
    .about_imgfront {
        width: 100%;
        margin-top: 15px;
    }
    .about_imgback {
        width: 100%;
        margin-left: auto;
    }
}

@media (max-width: 768px){
    .section_padding {
        padding: 50px 0;
    }
   
}

@media (max-width: 600px){
    body {
        font-size: 14px;
    }
    body, .footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p, .footer_main .footer_top .footer_logo p, .footer_main .footer_copyright p {
        font-size: 14px;
    }
    .home_banner {
            background-image: url(../images/bannerbg_mob.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
        padding: 30px 0 0;
    }
    .offcanvas-collapse {
        width: 80%;
    }
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    .nav_submenu_heading {
        font-size: 14px;
        padding: 8px 10px;
        margin-bottom: 8px;
    }
    .nav-item.dropdown .dropdown-menu .nav_submenu .dropdown-item-li a{
        font-size: 14px;
    }

    .nav-item.dropdown .dropdown-menu{
        margin-top: 0;
    }
    p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .navbar-brand img {
        height: 50px;
    }
    .main_header.fixed-top .navbar-brand img {
        height: 40px;
    }

.offcanvas-collapse {
    padding: 60px 20px 16px;
}

.offer_abs{
    display: none;
}
.form_out {
    margin-top: 390px;
    margin-bottom: 50px;
}
.panchakarma_section .panchakarma_section_top {
    padding-top: 50px;
}
.home_banner_text h1 {
    font-size: 30px;
    line-height: 44px;
}
.home_banner_text h1 span {
    font-size: 24px;
    line-height: 50px;
}
.offer_abs img, .ayurvedic_therapies_abs img, .panchakarma_abs img, .whychooseus_abs img {
    width: 30%;
}
.owl-carousel button.owl-dot span {
    height: 8px;
    margin: 5px 3px;
    width: 8px;
}
.whychooseus_abs {
    top: 0;
    right: -46%;
}

.whychooseus_box {
    margin-bottom: 40px;
    text-align: left;
}
.whychooseus_content img {
    height: 60px;
    margin-bottom: 10px;
}
.lg_btn {
    font-size: 15px;
    padding: 12px 10px;
}
.ayurvedic_therapies_abs {
    right: -46%;
    top: 18%;
}
.section_heading h2 {
    font-size: 26px;
    text-align: center;
}
.heading_line span {
    width: 120px;
    margin-left: auto !important;
}
.panchakarma_top_content p, .panchakarma_bottom_content p, .why_panchakarma_content p, .about_content p, .our_clients_content p{
    text-align: center;
}
.whychooseus_content p{
    text-align: left;
    line-height: 22px;
}
.why_panchakarma_content img{
    margin-bottom: 16px;
}
.why_panchakarma_therapies_section, .about_section{
    padding-bottom: 0 !important;
}
.about_imgfront {
    margin-top: -30px;
    margin-bottom: 16px;
}
.panchakarma_top_content, .panchakarma_bottom_content{
    text-align: center;
}

.team_content_card .team_content_text {
    position: relative;
    padding: 8px;
    height: 100%;
}
.team_content_card .team_content_text h3 {
    font-size: 16px;
}
.team_content_card .team_content_text p {
    font-size: 12px;
    line-height: 16px;
}
.team_content_card {
    margin-bottom: 0;
    height: 100%;
}
.talktoexperts {
    background-position: 40% center;
}


.footer_main .footer_top .footer_logo, .footer_main .footer_top .footer_links {
    padding-top: 24px;
    padding-bottom: 0;
    text-align: left;
}
.navbar-nav .nav-link, .footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p, .nav_submenu ul li a {
    font-size: 14px;
}
.footer_main .footer_top .footer_logo img {
    width: 110px;
    margin-bottom: 20px;
}
.footer_main .footer_top .footer_links ul li, .footer_main .footer_top .footer_links p {
    margin-bottom: 0px;
}
.footer_main .footer_top .footer_links h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}


.thank_you_content i {
    font-size: 70px;
    margin-bottom: 20px;
}
.thank_you_content h1 {
    font-size: 32px;
    margin-bottom: 8px;
}
.thank_you_content h4 {
    font-size: 15px;
}

.footer_main .footer_top .footer_links ul {
    display: flex;
    flex-wrap: wrap;
}
.footer_main .footer_top .footer_links ul li {
    flex: 0 0 auto;
    width: 50%;
}



}





/*********************************************/

.contactus .loading{
    font-size:0;
    width:30px;
    height:30px;
    margin-top:10px;
    border-radius:15px;
    padding:0;
    border:3px solid var(--primary-color);
    border-bottom:3px solid rgba(255,255,255,0.0);
    border-left:3px solid rgba(255,255,255,0.0);
    background-color:transparent !important;
    animation-name: rotateAnimation;
    -webkit-animation-name: wk-rotateAnimation;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  
  @keyframes rotateAnimation {
      0%   {transform: rotate(0deg);}
      100% {transform: rotate(360deg);}
  }
  @-webkit-keyframes wk-rotateAnimation {
      0%   {-webkit-transform: rotate(0deg);}
      100% {-webkit-transform: rotate(360deg);}
  }
  
  .contactus .fa{
    color: var(--primary-color);
    font-size:18px !important;
    position:absolute;
    left:50%;
    margin-top: 25px;
    margin-left:-9px;
    -webkit-transform:scaleX(0) !important;
    transform:scaleX(0) !important;
  }
  
  .contactus .finish{
    -webkit-transform:scaleX(1) !important;
    transform:scaleX(1) !important;
  }
  .contactus .hide-loading{
    opacity:0;
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transform:scale(0) !important;
    transform:scale(0) !important;
  }

.jyotiimg{ border-radius:20px;}
.drsection .section_heading p{ color:#000; font-size:19px;}
.drsection .jyotitxt h3{ padding-top:20px;}
.drsection .jyotitxt p{ font-size:19px;}
.drsection .team_content_card{ width:100%}
.drsection .team_content_card .team_content_text h3{ font-weight:600; font-size:16px; margin-bottom:3px;}
.drsection .team_content_card .team_content_text{ padding:12px;}

@media (max-width:479px) {.drsection .jyotitxt h3{ padding-top:0px;} .drsection .col-2{ width:49.666667%; margin-bottom:15px;}}