
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background: #f3e5be;
}

a {
  color: #A13254;
  text-decoration: none;
}

a:hover {
  color: #65BA2C;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
p{
  line-height: 30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #A13254;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #A13254;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #65BA2C;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Packages Below Min
--------------------------------------------------------------*/
.packages-below-min {
  padding:10px 15px;
  border-radius: 5px;
  transition: all 0.4s;
  margin:0px 6px;
  background: #65BA2C;
  border-color:#65BA2C;
  color: #fff;
}
.packages-below-min:hover {
  background: #fff;
  color: #65BA2C;
  border-color:#65BA2C;
}
.packages-below-container-min{
  background: rgb(0 0 0 / 80%);
  padding: 12px;
  border-radius: 25px;
}
/*--------------------------------------------------------------
# Book now Float button
--------------------------------------------------------------*/
.book-now-float {
  position: fixed;
  /*visibility: hidden;*/
  opacity: 1;
  right: 0px;
  bottom: 17%;
  z-index: 996;
  width: 40px;
  height: 100px;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  border-radius: 4px;
  transition: all 0.4s;
}
.book-now-float:hover {
  background: #65BA2C;
  color: #fff;
  border-color:#65BA2C;
}
/*.book-now-float.active {*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*}*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  #topbar .contact-info i{
      font-size:14px !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #65BA2C;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  /*height: 86px;*/
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/*#header.fixed-top {
  height: 70px;
}*/
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #A13254;
}
#header .logo img {
  width:150px !important;
  max-width: 150px !important;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 18px;
  /*padding: 10px 0 10px 10px;*/
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 0 3px;*/
  padding: 0 1px;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #A13254;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #A13254;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  width:max-content;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #A13254;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #A13254;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #A13254;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #65BA2C;
}
#hero h2 {
  color: #fff;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #65BA2C;
}
#hero .btn-get-started:hover {
  background: #A13254;
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: #A13254;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: #A13254;
}
#hero .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    background: url("../img/hero-bg.jpg") center bottom;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
/*@media (max-height: 500px) {*/
/*  #hero {*/
/*    height: 120vh;*/
/*  }*/
/*}*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  padding: 40px 0;
  /*background-color: rgb(101, 186, 44, 0.4);*/
  /*background-color: rgba(204, 249, 174, 0.6);*/
  background-color: #f3e5be;
  position:relative;
}
.section-bg::before {
  content: "";
  /*background: rgb(101, 186, 44, 0.4);*/
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  /*transform: skewY(-3deg);*/
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-sub-title {
  text-align: center;
  padding: 30px 0px;
}
.section-sub-title h3{
    text-transform:uppercase;
    color:#65BA2C;
}
.section-title h2 {
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: #A13254;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #A13254;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  /*padding: 20px 0;*/
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/breadcrumb-banner.jpg")center center;
  background-size:cover;
  /*background: rgba(101, 186, 44, 0.4);*/
  min-height: 40px;
}
.breadcrumbs h1, .breadcrumbs i {
  font-size: 24px;
  font-weight: 600;
  color:#fff;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h1 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  /*background: #fff;*/
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.22);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width:100%;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  /*background: #65BA2C;*/
  background: #44ad50;
  top: 0;
  border-radius: 0px;
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon img{
  width:100%;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #A13254;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align:center;
}
.featured-services .title a {
  color: #A13254;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}
.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about .content ul li:first-child {
  margin-top: 35px;
}
.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #A13254;
  border-radius: 50px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p{
  text-align:justify;
}

/*--------------------------------------------------------------
# specialize
--------------------------------------------------------------*/
.specializes{
  background: #65BA2C;
  padding:0px;
}
.specializes .special-content{
  padding: 20px 30px;
  color: #fff;
}
.specializes .special-content h4{
  font-size:20px;
  padding-bottom:20px;
}
.specializes .special-content h2{
  font-size:27px;
  padding-bottom:20px;
}
/*.specializes .special-img{
  height: 80vh;
  background: url("../img/home/luxury-abt.jpg") top left;
  background-size: cover;
  position: relative;
}*/

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/*.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #A13254;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
*/
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.clients img:hover {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
    /*background: url("../img/hero-bg.jpg") center center;*/
    background:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/facility-banner.png")center center;
}
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width:100%;
}
.services .icon-box img{
  float:left;
  width: 100px;
height: 100px;
padding-right: 10px;
}
.services .icon-box i {
  float: left;
  color: #A13254;
  font-size: 40px;
  line-height: 0;
}
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 a {
  color: #A13254;
  transition: 0.3s;
}
.services .icon-box h4 a:hover {
  color: #65BA2C;
}
.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Treatments
--------------------------------------------------------------*/
.treatment-page .icon-box {
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width:100%;
}
.treatment-page{
  padding: 1px 0px !important;
}
.treatment-page .icon-box h4{
    text-align:center;
    color:#A13254;
}

/*--------------------------------------------------------------
# Herbal Products Page
--------------------------------------------------------------*/
.herbal-products-page .icon-box {
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width:100%;
  cursor:pointer;
}
.herbal-products-page .icon-box h4{
    text-align:center;
    color:#A13254;
}
.herbal-products-page .icon-box button{
    background:#A13254;
    color:#fff;
    border:none;
    margin: auto;
    display: grid;
    padding: 7px 5px;
}
.herbal-products-page .product:hover img{
   transform: scale(.9);
}

.products-preview{
   position: fixed;
   top:0; 
   left:0;
   min-height: 100vh;
   width: 100%;
   background: rgba(0,0,0,.8);
   display: none;
   align-items: center;
   justify-content: center;
}
@media (max-width: 991px) {
    .products-preview{
        position:absolute;
    }
}
.herbal-products-page .preview .icon-box{
    box-shadow:none;
}

.products-preview .preview{
   display: none;
   padding:2rem;
   background: #fff;
   position: relative;
   margin:2rem;
}

.products-preview .preview.active{
   display: inline-block;
}

.products-preview .preview i{
   cursor: pointer;
   color:#A13254;
   font-size: 3rem;
   float:right;
}

.products-preview .preview i:hover{
   transform: rotate(90deg);
}



/*--------------------------------------------------------------
# Tourism
--------------------------------------------------------------*/
.tour-list li{
  list-style: none;
}
.tour-list i{
    padding-right: 10px;
    color: #A13254;
    font-size: 20px;
    line-height: 1;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  /*box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);*/
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px 0 30px 0;
  background:#fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #A13254;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info-box p a{
    color:#777777;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background:#fff;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus, .contact .php-email-form select:focus {
  border-color: #A13254;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form select {
  padding: 10px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #A13254;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}
/******************** Enquiry Form *************************/
.enquiry .enquiry_form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background: #fff;
}
.enquiry .enquiry_form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.enquiry .enquiry_form .error-message br + br {
  margin-top: 25px;
}
.enquiry .enquiry_form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.enquiry .enquiry_form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.enquiry .enquiry_form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.enquiry .enquiry_form .form-group {
  margin-bottom: 20px;
}
.enquiry .enquiry_form input, .enquiry .enquiry_form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.enquiry .enquiry_form input:focus, .enquiry .enquiry_form textarea:focus {
  border-color: #A13254;
}
.enquiry .enquiry_form input {
  padding: 10px 15px;
}
.enquiry .enquiry_form textarea {
  padding: 12px 15px;
}
.enquiry .enquiry_form button[type=submit] {
  background: #A13254;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.enquiry .enquiry_form button[type=submit]:hover {
  background: #3b8af2;
}
.error{
    color:red;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0px;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #A13254;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 30px 0 0 0;
  background: #000;
  color:#fff;
}
/*#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #A13254;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: justify;
}*/
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links p i{
  padding-right:10px;
}
#footer .footer-top .footer-links p a{
  color:#fff;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #A13254;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #A13254;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #A13254;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #65BA2C;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  padding:20px;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
/****** Mukesh Enquiry form ********/
.additionalDetailsSpan{
    font-size:12px;
}
.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("../img/refresh.gif") center no-repeat;
}
/**** treatment packages page ********/
.treatment-packages .icon-box{
    margin-bottom: 20px;
    padding: 30px 20px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    width:100%;
}
.treatment-packages .icon-box h4{
    text-align:left;
    color:#A13254;
}
.connect h4{
    text-decoration:underline;
    color:#A13254;
}
.connect .social-links{
    font-size:28px;
}
/**** ayurveda-stres packages page ********/

.ayurveda-stress-page .text-justify{
    text-align:justify;
}
.ayurveda-stress-page ul{
    list-style-type:none;
}
.ayurveda-stress-page h3{
    text-decoration:underline;
    color:#A13254;
}
.ayurveda-stress-page .treatments-programs i{
    color:#203914;
}
.Contraindications i{
    color:#ff0000;
}

.gallery img{
    height:100%;
    object-fit:cover
}

.icon.social1, .icon.contact1 {
    margin: 0 5px 0 0;
    cursor: pointer;
    background-color: #46C254;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 99999;
    border-radius: 35px;
    padding:5px;
}
.icon.social1.whtapp i, .icon.contact1 i {
    color: #fff;
    font-size: 35px;
    padding:10px;
}
.icon.contact1{
  left:15px !important;
  right:unset !important;
  top: unset;
  bottom: 15px !important;
}

/*---------------*/
/*Vignesh css*/
/*---------------*/
.icon-main-1{
  background: url('../img/home/rejuvenation-dhanvandhiri.jpg');
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}
.icon-main-2{
  background: url('../img/home/treatment-for-ailments.jpg');
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}
span a.packages-read-more{
  color: #fff !important;
  background: #65BA2C !important;
  padding: 0px 5px;
  display: inline-block !important;
  border-radius: 20px;
}
span a.packages-read-more:hover{
  color: #65BA2C;
  background: #fff;
  border-color: #65BA2C;
}
.online-consultation-services-h2{
  text-align: left !important;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px 8px 0px;
  margin: 0;
  color: #A13254;
  display: inline-block;
  border-radius: 50px;
}
.online-consultation-services-ul{
  list-style: none;
  text-align: left;
}
.online-consultation-services-li{
  line-height: 40px;
}
.online-consultation-services-li i{
  color: #A13254;
}
.online-consultation-left{
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  background: #fff;
  padding: 20px;
}
.online-consultation-services-para{
  margin:10px 1px 10px;
}
.contact-form-submit-btn{
    background: #A13254;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    width: 100%;
  }
  .contact-form-submit-btn:hover{
    color: #A13254;
    background:#fff;
    border:1px solid #A13254;
  }
.social-links .booknow-anchor{
  /*background: #f4e7c1;*/
  background: #f3e5be;
  padding: 4px 10px;
  font-size: 18px;
  /*color: #65BA2C !important;*/
  color: #A13254 !important;
  box-shadow: 0px 5px 10px 0px #00000059;
}
.online-consultation-left p span a{
  color: #fff !important;
  background: #A13254 !important;
  padding: 0px 10px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #A13254 !important;
}
.online-consultation-left p span:hover a{
  color: #A13254 !important;
  background: #fff !important;
  border-color: #A13254 !important;
}

/*--------------*/
/*Accordion*/
/*--------------*/
.accordion-flush{
  width: 100%;
  height: auto;
}
.accordion-flush .accordion-item {
  margin:15px 0px !important;
}
.accordion-button:not(.collapsed){
  color: #65BA2C !important;
  background-color:rgb(101, 186, 44, 0.1) !important;
}
accordion-body:not(.collapsed){
  background: #fff !important;
}
.accordion-button:focus{
  box-shadow: 0 0 0 0.25rem rgb(101, 186, 44, 0.6) !important;
}
.accordion-button:not(.collapsed)::after{
  display: none !important;
}

/*--------------*/
/*Youtube video section*/
/*--------------*/
.youtube-videos-section h3, .testimonial-section-inner h3, .quick-links-above-footer h3{
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #A13254;
  display: block;
  text-transform: uppercase;
}
.testi-carousel-inner{
  width: 83%;
  margin:0px auto;
}
#testimonialSection{
  height: 300px;
  background: #fff;
}
/*----------------------------*/
/*Quick links above footer section*/
/*-----------------------------*/
.quick-links-above-footer{
  width: 80%;
}
.quick-links-above-footer-ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 13px 0px 13px 15px;
}
/*.quick-links-above-footer-ul li{
  float: left;
}*/
.quick-links-above-footer-div{
  /*padding: 28px 10px 140px;*/
  background: rgb(161 50 84 / 3%);
  display: block;
  position: relative;
}
.quick-links-above-footer-ul li a{
  display: inline-block;
  background: #fff;
  color: #65BA2C;
  padding: 5px 10px;
  border-radius: 20px;
  border:1px solid rgb(101 186 44 / 70%) !important;
  margin:5px;
  font-size: 14px;
}
.quick-links-above-footer-ul li:hover a{
  background: #65BA2C;
  color: #fff;
  transition-property: color, background;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
  border:1px solid rgb(101 186 44 / 70%) !important;
}
/*----------------------------*/
/*Upcoming Programmes section*/
/*-----------------------------*/
.upcoming-programmes-main{
   width: 75%;
}
.connect-upcoming-events-all .upcoming-programmes-main{
  width: 100%;
}
.upcoming-programmes-main .upcoming-programmes-heading {
  display: block;
  color: #fff;
  padding: 15px 0px 15px 10px;
  font-weight: 600;
  font-size: 20px;
  background: #A13254;
  margin-bottom: 0px;
}
.upcoming-programmes-ul{
  scrollbar-width: thin !important;
  scrollbar-color: rgb(161 50 84 / 30%) rgb(161 50 84 / 10%);
}
.upcoming-programmes-ul::-webkit-scrollbar {
  width: 7px;
}
.upcoming-programmes-ul::-webkit-scrollbar-track{
  background-color: rgb(161 50 84 / 10%);
}
.upcoming-programmes-ul::-webkit-scrollbar-thumb{
  background-color: rgb(161 50 84 / 30%);
}
.upcoming-programmes-ul{
  list-style: none;
  overflow-y: scroll;
  padding-left: 0px;
  background: #fff;
  height: 400px;
}
.upcoming-programmes-list-item{
  display: block;
  padding: 4px 0px 0px 15px;
  border-bottom:1px solid #A13254;
}
.upcoming-programmes-list-item:last-child{
  border-bottom: none;
}
.upcoming-programmes-heading-each a{
  color: #A13254;
  font-size: 18px;
  display: inline-block;
  text-decoration: underline;
}
.upcoming-programmes-dates-each{
   margin-bottom: 3px;
   font-size: 15px;
}
.packages-home-each{
  background: #fff;
}
.doctors-row-each{
  padding: 25px;
  box-shadow: 0 0 29px 0 rgb(68 88 144 / 22%);
  overflow: hidden;
  background: #fff;
}
.consult-now-button{
  color: #fff !important;
  background: #65BA2C !important;
  border-color: #fff !important;
}
.doctors-row-each .btn-warning:focus{
  box-shadow: none !important;
}
.consult-now-button:hover{
  color: #65BA2C !important;
  background: #fff !important;
  border-color: #65BA2C !important;
}

@media (max-width: 1275px){
  .navbar > ul > li{
    padding: 10px 0px 10px 6px;
    }
}

@media (max-width: 1199px){
  .video-section-home-page{
    width:420px;
    height:300px;
  }
  .treat-your-ailments-iframe iframe{
    width: 400px;
  }
  .navbar > ul > li{
    padding: 10px 0px 10px 10px;
    }
  .navbar a{
      font-size: 12px;
  }
  /*.quick-links-above-footer-div{
    padding: 28px 10px 180px;
  }*/
  .footer-links iframe{
    width:100% !important;
  }
}

@media only screen and (min-width: 1420px){
  .testi-carousel-inner{
    width: 86%;
  }
}

@media only screen and (max-width: 1025px){
  .upcoming-programmes-heading-each a{
    font-size: 16px;
  }
  .testi-carousel-inner{
    width: 90%;
  }
}
@media (max-width: 991px){
  .video-section-home-page{
    width:330px;
    height:220px;
  }
  .upcoming-programmes-main{
    width: 95% !important;
  }
  .quick-links-above-footer {
    width: 100% !important;
  }
  .treat-your-ailments-iframe iframe{
    width: 200px;
  }
  #testimonialSection{
    height: 220px;
  }
  .testi-carousel-inner{
    width: 90%;
  }
  /*.quick-links-above-footer-div{
    padding: 28px 10px 230px;
  }*/
}
@media (max-width: 769px){
/*.quick-links-above-footer-div{
    padding: 28px 10px 399px;
  }*/
  .upcoming-programmes-main{
    width: 93%;
  }
  .quick-links-above-footer-ul{
    padding: 13px 0px 13px 5px;
  }
  .quick-links-above-footer-ul li a{
    padding: 5px;
  }
  .section-sub-title{
    padding: 15px;
  }
}
@media (max-width: 600px){
    #hero{
        background: url(../img/dhanvanthri-m-banner.jpg) right center;
        background-repeat:no-repeat;
        height:400px !important;
    }
  .video-section-home-page{
    width:320px;
    height:200px;
  }
  .quick-links-above-footer-ul{
    padding: 20px 10px;
  }
  .section-title h2{
    font-size: 22px;
    padding: 8px;
  }
  .featured-services .title{
    font-size: 20px;
  }
  span a.packages-read-more{
    padding: 0px 8px 2px !important;
    border-radius: 20px;
  }
  /*.quick-links-above-footer-div{
    padding: 28px 10px 439px;
  }*/
  .quick-links-above-footer-ul li a{
    padding: 5px 10px;
  }
  .upcoming-programmes-main{
    width: 93%;
  }
  .section-title-doctors-page{
    padding-bottom: 10px;
    text-align: left;
  }
  .section-title-doctors-page h2{
    text-align: left;
    font-size: 18px;
    padding:0px;
  }
 .doctors-page-content p{
    margin:7px 0px 0px 0px;
    text-align: justify;
  }
  .about-doctors{
    padding-bottom: 0px;
  }
  .treat-your-ailments-iframe iframe{
    width: 300px;
  }
  .icon.social1.whtapp i {
    font-size: 29px;
    padding:7px;
  }
  .icon.contact1 i {
    font-size: 25px;
    padding:7px;
  }
}
@media (max-width: 330px){
  .video-section-home-page{
    width:290px;
    height:180px;
  }
  .treat-your-ailments-iframe iframe{
    width: 280px;
  }
  .doctors-row-each{
    padding: 5px;
  }
  /*.quick-links-above-footer-div{
    padding: 28px 10px 499px;
  }*/
}

@media (max-width: 768px) {
  .packages-below-container-min {
    display: block !important;
    text-align: center;
  }
  section{
    padding: 20px 0px !important; 
  }
  .packages-below-container-min a{
    margin:10px 5px !important;
  }
  span a.packages-read-more{
    padding:2px 8px;
    border-radius: 20px 25px;
  }
  .online-consultation-services-h2{
    font-size: 21px;
  }
  .online-consultation-left{
    margin: 15px 0px 30px;
  }
  #topbar .contact-info .booknow-i-mobile{
    padding: 4px 10px;
    font-size: 16px !important;
    color: #A13254 !important;
    background: #f4e7c1 !important;
    box-shadow: 0px 5px 10px 0px #00000059;
  }
  /*#topbar .contact-info .booknow-i-mobile a{
    color: #65BA2C !important;
  }*/
  
}