/* font & reset css */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

@import url("https://fonts.googleapis.com/css2?family=maitree");

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

/* Global Styles */

html,
body {
  font-family:'Marcellus', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}
.error{
	font-size:12px;
	color:#c01b0a;
}

.section {
  padding-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #f35525;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}

/* Pre-loader Style */
.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #f35525;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #f35525;
  border-radius: 50%;
}

/* Header Style */

.sub-header {
  background-color: #fff;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
}

.sub-header ul.social-links li {
  margin-left: 8px;
}

.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #cdcdcd;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header ul.social-links li a:hover {
  background-color: #f35525;
}

.sub-header ul.info li {
  font-size: 14px;
  color: #7a7a7a;
  border-right: 1px solid #eee;
  margin-right: 25px;
  padding-right: 25px;
}

.sub-header ul.info li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.sub-header ul.info li i {
  font-size: 20px;
  color: #f35525;
  margin-right: 8px;
}

.background-header {
  background-color: #fff;
  height: 80px;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: relative;
  background-color: #fcf5ef;
  height: 90px;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  padding-top:27px;
}

.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
  line-height: 80px;
}

.header-area .main-nav ul.nav {
  flex-basis: 83%;
  /*flex-basis: 59%;*/
  margin-top: 24px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 10px;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  /* height: 100px; */
  line-height: 100px;
}

.header-area .main-nav .nav li a {
  font-family: 'Inter', serif;
  color:#5E5852;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  text-transform:none;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}
.header-area .main-nav .nav li:last-child a {
  background:none;
  color:#5E5852;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  border-radius:0px;
  border-bottom:0px solid #ccc !important;
}
.header-area .main-nav .nav li:last-child a i {
  /* background-color: #f35525;*/
  display: inline-block;
  /*width: 40px;
  height: 40px; */
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
}
.header-area .main-nav .nav li:last-child:hover a {
  background: none;
}
.header-area .main-nav .nav li:last-child:hover a i {
  color: #fff;
}
.header-area .main-nav .nav li:hover a {
  color: #A6907C;
  text-decoration:none !important
}

.header-area .main-nav .nav li a.active {
  color: #c74a1a;
  font-weight:600;
}
.background-header .main-nav .nav li a.active {
  color: #A6907C;;
}
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 8px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 15px;
  display: none;
}
.background-header .main-nav .menu-trigger {
  top: 8px;
}

.background-header .main-nav ul.nav {
  margin-top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible{
  display:inline !important;
}
/* Dropdown Menu CSS Start */
.dropend .dropdown-toggle {
  color: #5E5852;
  margin-left: 1em;
}
.dropdown-item{
	color:#5E5852 !important;
	border-bottom:1px solid #ccc !important;
}
.dropdown-item:hover {
  background: none !important;
  color: #A6907C !important;
}
.dropdown .dropdown-menu {
  display: none;
  border:0px solid rgba(0,0,0,.15)
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}
@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}
/* Dropdown Menu CSS End */
/* Header Enquiry Now Button */
.enquiry-now{
	background:#c74a1a;
	color:#ffffff !important;
	font-weight:600;
	border-radius:20px;
	text-align:center;
}
.enquiry-now a{
	color:#ffffff !important;
}
.enquiry-now a:hover{
	color:#ffffff;
}
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 767px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 0px;
    top: 0px;
	text-align:left;
	width:45%;
	padding-top:12px;
  }
  .header-area .main-nav .logo{
	  padding-left:15px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 50px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 50px !important;
  }
  .header-area .main-nav ul.nav{
	flex-basis:95%;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
	padding-bottom:20px;
	border-left:1px solid #ccc;
	border-bottom:1px solid #ccc;
  }
  .background-header.header-sticky .nav {
    margin-top: 50px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* About Banner Style Start */
.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.main-banner .item-1 {
  background-image: url(../images/doctor/doctor-banner.png);
  height:350px;
}

.main-banner .item-2 {
  background-image: url(../images/about/banner-01.png);
  height:350px;
}

.main-banner .item-3 {
  background-image: url(../images/about/banner-01.png);
  height:350px;
}

.main-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.main-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.main-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
  padding-top:40px;
}

/*
.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.main-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Dining at Jivagram Banner */
.dining-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.dining-banner .item-1 {
  background-image: url(../images/dining/banner-01.jpg);
  height:350px;
}
.dining-banner .item-2 {
  background-image: url(../images/dining/banner-01.png);
  height:350px;
}
.dining-banner .item-3 {
  background-image: url(../images/dining/banner-01.png);
  height:350px;
}
.dining-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.dining-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.dining-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}
/*
.dining-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.dining-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.dining-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.dining-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.dining-banner .owl-nav .owl-prev i,
.dining-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.dining-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.dining-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.dining-banner .owl-nav .owl-prev i:hover,
.dining-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* facilities at Jivagram Banner CSS Start */
.facilites-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.facilites-banner .item-1 {
  background-image: url(../images/facilites/banner-01.jpg);
  height:350px;
}
.facilites-banner .item-2 {
  background-image: url(../images/facilites/banner-01.png);
  height:350px;
}
.facilites-banner .item-3 {
  background-image: url(../images/facilites/banner-01.png);
  height:350px;
}
.facilites-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.facilites-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.facilites-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}
/*
.facilites-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.facilites-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.facilites-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.facilites-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.facilites-banner .owl-nav .owl-prev i,
.facilites-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.facilites-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.facilites-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.facilites-banner .owl-nav .owl-prev i:hover,
.facilites-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
.panel {
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  border-radius: 50px;
  color: #fff;
  text-shadow: 0px 2px 4px #000;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
  //box-shadow: 1px 1px 1px 1px #392613;
}
.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}
.panel.active {
  background-size: 100% auto;
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity 1s ease-in 1s;
}

@media (max-width: 480px) {
  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
}

/* facilities banner CSS End */

/* patient Banner CSS Start */
.patient-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.patient-banner .item-1 {
  background-image: url(../images/patient/banner-01.jpg);
  height:350px;
}
.patient-banner .item-2 {
  background-image: url(../images/patient/banner-01.png);
  height:350px;
}
.patient-banner .item-3 {
  background-image: url(../images/facilites/banner-01.png);
  height:350px;
}
.patient-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.patient-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.patient-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}
/*
.patient-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.patient-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.patient-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.patient-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.patient-banner .owl-nav .owl-prev i,
.patient-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.patient-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.patient-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.patient-banner .owl-nav .owl-prev i:hover,
.patient-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
/* patient Banner CSS End */

/* Contact Us Banner CSS Start */
.contact-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.contact-banner .item-1 {
  background-image: url(../images/contact-banner.jpg);
  height:350px;
}
.contact-banner .item-2 {
  background-image: url(../images/contact-banner.png);
  height:350px;
}
.contact-banner .item-3 {
  background-image: url(../images/contact-banner.png);
  height:350px;
}
.contact-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.contact-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.contact-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}
/*
.contact-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.contact-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.contact-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.contact-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.contact-banner .owl-nav .owl-prev i,
.contact-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.contact-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.contact-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.contact-banner .owl-nav .owl-prev i:hover,
.contact-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
/* Contact Us Banner CSS End */

.treatment-bg{
	background:#ffffff;
	/* background-image: url(../images/master-bg.png);*/
	padding-bottom:90px;
	padding-top:90px;
}
.facility-frm{
	background:#ffffff;
	/* background-image: url(../images/master-bg.png);*/
	padding-bottom:50px;
	padding-top:90px;
}
.ayur-hospital h1{
	font-family: 'Inter', serif;
	font-size:39px;
	border-top:0px solid #d1c3b5;
	color:#A6907C;
	font-weight:400;
	padding:0px 0px 20px 0px;
	margin-left:0px;
	line-height:45px;
	text-transform:uppercase;
}
.ayur-hospital span{
	font-family: 'Inter', serif;
	font-size:39px;
	border-top:0px solid #d1c3b5;
	color:#C74A1B;
	font-weight:700;
	padding:0px 0px 20px 0px;
	margin-left:0px;
	line-height:45px;
	text-transform:uppercase;
}
.what-img{
	border-radius:15px;
}
.ayur-txt1{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:25px;
	padding:0px 50px 10px 0px;
}
.ayur-txt2{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:25px;
	padding:0px 50px 30px 0px;
}
.hospital-icon{
	width:6%;
	float:left;
	margin-top:10px;
	padding:0px 0px 0px 0px;
	border-bottom:0px solid #000;
}
.hospital-txt-frm{
	width:94%;
	float:left;
	padding:0px 0px 20px 0px;
	border-bottom:0px solid #000;
}
/*Jivagram’s Sustainable Section Start */
.sustainable-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.sustainable-banner .item-1 {
  background-image: url(../images/sustainable/banner-01.jpg);
  height:350px;
}
.sustainable-banner .item-2 {
  background-image: url(../images/sustainable/banner-01.png);
  height:350px;
}
.sustainable-banner .item-3 {
  background-image: url(../images/sustainable/banner-01.png);
  height:350px;
}
.sustainable-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.sustainable-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.sustainable-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}
/*
.sustainable-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}
.sustainable-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}
.sustainable-banner .owl-dots .active {
  background-color: #f35525;
}
*/
.sustainable-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.sustainable-banner .owl-nav .owl-prev i,
.sustainable-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.sustainable-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}
.sustainable-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}
.sustainable-banner .owl-nav .owl-prev i:hover,
.sustainable-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}
.sustain-frm {
  background: #ffffff;
  /*background-image: url(../images/jivagram-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;*/
  padding-top: 90px;
  padding-bottom: 90px;
}
 .sustain-txt1{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:25px;
	padding:0px 150px 10px 0px;
}
 .sustain-txt2{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:25px;
	padding:0px 150px 10px 0px;
}
/*Jivagram’s Sustainable Section End */

/* Head Ayurvedacharya Style */
.featured{
	background:#fcf5ef;
	/* background-image: url(../images/master-bg.png); */
	padding-bottom:80px;
	padding-top:80px;
}
.story-icon{
	padding-bottom:20px;
	margin-top:-50px;
}
.story-left-txt{
	padding:100px 0px 0px 0px;
}
.our-story{
	font-family: 'Inter', serif;
	font-size:25px;
	border-top:2px solid #d1c3b5;
	color:#C74A1B;
	font-weight:700;
	padding:10px 0px 20px 0px;
	margin-left:50px;
}
.story-txt{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:24px;
	padding:0px 0px 20px 50px;
}
.dr-partap h3{
	font-family: 'Inter', serif;
	color:#C74A1B;
	font-size:25px;
	line-height:24px;
	font-weight:700;
	padding:20px 0px 0px 70px;
	margin:0px;
}
.dr-partap-txt{
	font-family: 'Inter', serif;
	color:#5E5852;
	font-size:16px;
	line-height:22px;
	font-weight:300;
	padding:10px 0px 0px 70px;
	margin:0px;
}
.story-btn{
	padding:0px 0px 20px 50px;
}
.btn-success {
	font-family:'Inter', serif;
	font-weight: 500;
	text-transform: none;
	background:#bb3810 !important;
	border-color:#bb3810 !important;
	border-radius:25px !important;
	padding:10px 30px 10px 30px !important;
}
.btn:hover {
  color: #FCF5EF;
  background-color:#C74A1B;
  border-color: #C74A1B;
}
  
.featured .left-image {
  position: relative;
}
.featured .left-image img {
  padding-left: 55px;
}
.featured .left-image a {
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  background-color: #f35525;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -55px;
}
.featured .section-heading {
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}
.featured .section-heading h2 {
	color:#A6907C;
	font-family: 'Inter', serif;
	font-weight:500;
	font-size:25px;
	line-height:33px;
	padding:93px 0px 0px 0px;
}
.featured .accordion {
  margin-left: 10px;
  margin-right: 10px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.featured .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.featured .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.featured .accordion-button:not(.collapsed) {
  color: #f35525;
  background-color: #fafafa;
  outline: none;
}

.featured .accordion-button::after {
  display: none;
}

.featured #headingThree {
  border-bottom: none;
}

.featured .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.featured .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
}

.featured .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.featured .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.featured .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.featured .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

/* Step-By-Step CSS Start */

.key-service-frm{
	background:#fffaf4;
	padding:90px 0px 70px 0px;
}
.key-service h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 50px 0px;
	text-transform:uppercase;
	margin:0px;
}
.key-service h1 span{
	font-family:'Inter', serif;
	font-size:36px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
}
.key-service h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#C74A1B;
	font-weight:400;
	text-align:center;
	text-transform:uppercase;
}
.key-txt-frm{
	background:#A6907C;
	padding:20px 20px 30px 20px;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px;
	height:260px;
}
.key-txt-frm h3{
	font-family:'Inter', serif;
	font-size:31px;
	color:#FCF5EF;
	font-weight:700;
	padding-bottom:10px;
	height:90px;
}
.key-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#FCF5EF;
	line-height:22px;
	font-weight:300;
	padding-bottom:20px;
	height:90px;
}
.read-more {
	font-family:'Inter', serif;
	font-size:13px;
	color:#FCF5EF;
	line-height:22px;
	font-weight:500;
	text-transform:uppercase;
	padding-bottom:10px;
}
.read-more a{
	color:#FCF5EF;
	font-weight:500;
}
.read-more a:hover{
	color:#000000;
}
.padbtm{
	padding-bottom:40px;
}

/* About Us CSS Start */
.about-us-frm{
	background:#fffaf4;
	padding:70px 0px 90px 0px;
}
.about-us h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 50px 0px;
	text-transform:uppercase;
	margin:0px;
}
.about-us h1 span{
	font-family:'Inter', serif;
	font-size:36px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
}
.about-us-col{	
  background:#fff;
  padding:0px 0px 20px 0px;
}
.numbr-img{
	font-size:80px;
	color:#e6e1dd;
	font-weight:700;
	padding: 25px 30px 0px 30px;
}
.about-us h3 {
  font-family:'Inter', serif;
  font-size: 25px;
  padding: 0px 30px 10px 30px;
  text-align:left;
  color:#C74A1B;
  font-weight:600;
  margin:0px;
  height:75px;
}
.about-us-txt {
  display: inline-block;
  font-size: 15px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:left;
  padding: 0px 40px 10px 30px;
  height:110px;
}
.sustainabl-us-txt {
  display: inline-block;
  font-size: 15px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:left;
  padding: 0px 40px 10px 30px;
  height:170px;
}
.about-us-img{
	text-align:left;
}
.about-brd{
	padding: 0px 40px 30px 30px;
}
.card {
  border: none;
  border-radius: 0;
  /* box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18); */
}
.carousel-inner {
  padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #000;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 48%;
  transform: translateY(-50%);
}
.carousel-control-prev span,
.carousel-control-next span {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 577px) {
  .cards-wrapper {
    display: flex;
  }
  .card {
    margin: 0 0.5em;
    width: calc(100% / 2);
  }
  .image-wrapper {
    height: 20vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .card:not(:first-child) {
    display: none;
  }
}
.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

/* What Our Patients CSS Start */
.therapies-frm {
	background: #ffffff;
	padding:90px 0px 30px 0px;
	/* background-image: none;
	background-image: url(../images/master-bg.png); */
}
.therapie-hd h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	padding-bottom:40px;
	padding-right:0px;
	margin:0px;
	text-align:center;
	text-transform:uppercase;
}
.therapie-hd h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	padding-bottom:20px;
	padding-right:0px;
	margin:0px;
	text-transform:uppercase;
}
.youtbe-frame{
	padding:0px 0px 0px 0px;
}
.fram1{
	width:49%;
	float:left;
}
.fram2{
	width:49%;
	float:left;
	margin-left:20px;
}
.iframe-container {
  overflow: hidden;
  padding-top: 56.25%; /* 16:9*/
  position: relative;
  border-radius:15px;
}
.frame-mrg{
	margin-bottom:20px;
}
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
.video-1{
	width:48%;
	height:450px;
	float:left;
	margin-right:20px;
}
.video-2{
	width:48%;
	height:450px;
	float:left;
}
.video-3{
	width:48%;
	height:450px;
	float:left;
	margin-right:20px;
	margin-bottom:20px
}
.video-4{
	width:48%;
	height:450px;
	float:left;
	margin-bottom:20px
}
.video-5{
	width:100%;
	height:363px;
	margin-bottom:0px;
}

/* The Jiva Edge Start */
.jiva-edge{
	padding-top:80px;
	padding-bottom:50px;
}
.edge-heading h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 10px 0px;
	text-transform:uppercase;
	margin:0px;
}
.edge-heading h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
}
.edge-heading h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	font-weight:400;
	text-align:center;
	padding:0px 0px 10px 0px;
	margin:0px;
}
.edge-heading h3 span{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	font-weight:400;
	text-align:center;
	padding:0px 0px 50px 0px;
	margin:0px;
}
.hd-txt2{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	font-weight:400;
	text-align:center;
	padding:15px 0px 70px 0px !important;
}
.edge h3 {
  font-family:'Inter', serif;
  font-size: 25px;
  padding: 25px 0px 10px 0px;
  text-align:center;
  color:#C74A1B;
  font-weight:600;
}
.moder-frm{
	width:20%;
	float:left;
}
.edge {
  display: inline-block;
  font-size: 15px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:center;
  padding-bottom:30px;
}
.edge-img{
	text-align:center;
}
.edge h6 {
  font-size: 20px;
  color: #f35525;
  margin-top: 6px;
  display: inline-block;
  float: right;
  margin-top: 30px;
}
.edge .main-button {
  text-align: center;
}

/* Accommodation Start */
.accommodation-frm{
	padding-top:60px;
	padding-bottom:90px;
	overflow:hidden;
}
.acom-heading h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 30px 0px;
	text-transform:uppercase;
	margin:0px;
}
.acom-heading h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
}
.acom h3 {
  font-family: 'Inter', serif;
  font-size: 25px;
  padding: 15px 0px 10px 0px;
  text-align: center;
  color: #A6907C;
  font-weight: 600;
  margin:0px;
  text-transform:uppercase;
}
.acom-img{
	border-top-left-radius:50px;
	border-bottom-right-radius:50px;
}
.acom-txt {
  font-family: 'Inter', serif;
  color: #5E5852;
  font-size: 16px;
  line-height: 25px;
  text-align:center;
  padding:0px 50px 0px 50px;
}
.flor{
	font-family: 'Inter', serif;
	color: #C74A1B;
	font-size: 16px;
	line-height: 25px;
	text-align:left;
	font-weight:700;
	padding:0px 80px 0px 80px;
}
.flor span{
	font-family: 'Inter', serif;
	color: #5E5852;
	font-size: 16px;
	line-height: 25px;
	text-align:center;
	font-weight:400;
	padding:0px 0px 0px 0px;
}
.virtual-tour{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	margin:0px;
	padding:90px 0px 30px 0px;
}
.tour-img{
	border-top-right-radius:50px;
	border-bottom-left-radius:50px;
}
.rotating-slider {
    margin: 5em auto;
    height: 360px;
    position: relative;
    width: 480px;
}
.rotating-slider ul.direction-controls {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rotating-slider ul.direction-controls li.left-arrow {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}
.rotating-slider ul.direction-controls li.right-arrow {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}
.rotating-slider ul.direction-controls li button {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: bold;
    height: 1.5em;
    line-height: 1.5em;
    padding: 0;
    text-align: center;
    transition: background 0.25s;
    width: 1.5em;
}
.rotating-slider ul.direction-controls li button:hover {
    background: rgba(0, 0, 0, 0.6);
}
.rotating-slider ul.slides {
    border-radius: 50%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    transform-origin: center center;
    width: 100%;
}
.rotating-slider ul.slides li {
    background-color: #ecf0f1;
    background-position: center;
    background-size: cover;
    display: block;
    list-style: none;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform-origin: bottom center;
    width: 100%;
}

.rotating-slider ul.slides li {
    color: #fff;
}
.rotating-slider ul.slides li:nth-of-type(1) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/05/car-oldtimer-snow-342-825x550.jpg");
}
.rotating-slider ul.slides li:nth-of-type(2) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/05/car-oldtimer-snow-342-825x550.jpg");
}
.rotating-slider ul.slides li:nth-of-type(3) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/05/car-oldtimer-snow-342-825x550.jpg");
}
.rotating-slider ul.slides li:nth-of-type(4) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/06/analog-camera-old-olympus-om-10-1528-825x550.jpg");
}
.rotating-slider ul.slides li:nth-of-type(5) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/05/car-oldtimer-snow-342-825x550.jpg");
}
.rotating-slider ul.slides li:nth-of-type(6) {
    background: url("http://static.pexels.com/wp-content/uploads/2014/06/bridge-city-night-645-827x550.jpg");
}
.rotating-slider ul.slides li .inner {
    box-sizing: border-box;
    padding: 2em;
    height: 100%;
    width: 100%;
}

/* Additional Amenities Start */
.amenities-frm{
	padding-top:80px;
	padding-bottom:50px;
}
.amenities-heading h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 30px 0px;
	text-transform:uppercase;
	margin:0px;
}
.amenities-heading h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
}
.amenit-img{
	border-top-left-radius:15px;
	border-top-right-radius:15px;
}
.amenities{
	padding:0px 0px 0px 0px;
	background:#FCF5EF;
	border-radius:15px;
	margin-bottom:25px;
}
.amenities h3 {
  font-family: 'Inter', serif;
  font-size: 25px;
  padding: 15px 0px 10px 0px;
  text-align: center;
  color: #A6907C;
  font-weight:600;
  margin:0px;
  text-transform:none;
}
.amenities-txt {
  font-family: 'Inter', serif;
  color: #5E5852;
  font-size: 16px;
  line-height: 22px;
  text-align:center;
  padding:0px 20px 20px 20px;
}
.amenities-heading h3 {
  font-family: 'Inter', serif;
  font-size: 20px;
  color: #A6907C;
  font-weight: 400;
  text-align: center;
  padding: 0px 190px 30px 190px;
  margin: 0px;
}

/* Biophilic Design Start */
.biophilic-frm{
	padding-top:80px;
	padding-bottom:90px;
}
.biophilic-heading h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	padding:0px 0px 10px 0px;
	text-transform:uppercase;
	margin:0px;
}
.biophilic-heading h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
}
.biophilic-img{
	border-top-left-radius:15px;
	border-top-right-radius:15px;
}
.biophilic{
	padding:0px 0px 0px 0px;
	background:#FCF5EF;
	border-radius:15px;
	margin-bottom:25px;
}
.biophilic h3 {
  font-family: 'Inter', serif;
  font-size: 25px;
  padding: 15px 0px 10px 0px;
  text-align: center;
  color: #A6907C;
  font-weight:600;
  margin:0px;
  text-transform:none;
}
.biophilic-txt {
  font-family: 'Inter', serif;
  color: #5E5852;
  font-size: 16px;
  line-height: 22px;
  text-align:center;
  padding:0px 20px 20px 20px;
}
.biophilic-heading h3 {
  font-family: 'Inter', serif;
  font-size: 20px;
  color: #A6907C;
  font-weight: 400;
  text-align: center;
  padding: 0px 190px 30px 190px;
  margin: 0px;
}

/* Mindful Consumption Section Start */
.mindful-frm{
	padding-top: 80px;
	padding-bottom: 30px;
}

/* Dining at Jivagram Section Start */
.attvic-txt {
  font-family: 'Inter', serif;
  color: #5E5852;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  padding: 0px 20px 20px 20px;
  height:100px;
}
.feast-frm {
  background: #ffffff;
  padding-bottom: 90px;
  padding-top: 90px;
}
.dining-frm {
	background: #ffffff;
	padding-top:0px;
	padding-bottom:100px;
}
.dining-img{
	padding-bottom: 80px;
	text-align:center;
}
.learn-through-bg{
	background:#fffaf4;
	padding:70px 70px 70px 70px;
}
.dine-bg{
	background:#a4917b;
	padding:70px 70px 70px 70px;
}

.dine-hd h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#fff;
	font-weight:400;
	text-align:center;
	text-transform:uppercase;
	padding:0px 0px 25px 0px;
	margin:0px;	
}
.dine-hd h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#fff;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	padding:0px 0px 25px 0px;
	margin:0px;	
}
.dine-txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#fff;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
	text-align:center;
}
.dining-hd h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:400;
	text-align:left;
	text-transform:uppercase;
	padding:0px 0px 25px 0px;
	margin:0px;	
}
.dining-hd h1 span{
	font-family:'Inter', serif;
	font-size:39px;
	color:#A6907C;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	padding:0px 0px 25px 0px;
	margin:0px;	
}
.dining-txt-frm{
	padding:0px 80px 0px 0px;
}
.dining-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	line-height:28px;
	font-weight:500;
	padding-bottom:30px;
}
.ayur-cusine{
	font-family:'Inter', serif;
	font-size:30px;
	color:#5E5852;
	line-height:38px;
	font-weight:300;
	padding:15px 0px 10px 10px;
}
.ayur-cusine2{
	font-family:'Inter', serif;
	font-size:30px;
	color:#5E5852;
	line-height:38px;
	font-weight:300;
	padding:0px 0px 10px 10px;
}
.brd-right{
	border-right:2px solid #5E5852;
	margin-bottom:40px;
	padding:10px 0px 10px 0px;
}
.learn-exp{
	padding:10px 0px 10px 0px;
}

/* Jivagram Section Start */

.jivagrm {
  background-image: url(../images/jivagram-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 0px 140px 0px;
  position: relative;
}
.jivgrm-logo{
	text-align:center;
}
.jivagram-frm h1{
	color:#DC4D17;
	font-family: "Marcellus", serif;
	font-size:48px;
	font-weight:500;
	text-align:center;
	padding:20px 0px 0px 0px;
	margin:0px;
	line-height:65px;
}
.jivagram-frm h1 span{
	color:#FCF5EF;
	font-family: "Marcellus", serif;
	font-size:48px;
	font-weight:500;
	text-align:center;
	padding:10px 0px 0px 0px;
}
.jivagrm-content {
  margin-top:0px;
  padding:0px 0px 100px 0px;
}
.jivagrm-content .jivagrm-frame {
  /*position: relative;
  background-image: url(../images/embark-on.png);
   box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); 
  border-radius: 30px;
  padding:150px 100px 103px 100px;*/
  margin-top:-205px;
}
.jivagrm-txt {
  font-size: 18px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:center;
  padding:0px 0px 20px 0px;
}
.learn-about{
	font-size: 16px;
	font-family:'Inter', serif;
	color: #A6907C;
	text-align:right;
	font-weight:300;
	padding:0px 0px 50px 0px;	
}
.personalised-frm{
	background:#5e5852;
	height:359px;
	padding:50px 50px 50px 50px;
}
.personalised-frm h3{
	font-size: 25px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:200;
	padding:0px 0px 20px 0px;
	margin:0px;
	line-height:33px;
}
.generic-txt{
	font-size: 16px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:300;
	padding:0px 10px 20px 10px;
	margin:0px;
}
.generic-read{
	font-size: 14px;
	font-family:'Inter', serif;
	color: #B79E86;
	text-align:center;
	font-weight:600;
	padding:20px 10px 20px 10px;
	margin:0px;
	text-transform:uppercase;
}
.personalsed-frm{
	background:#A6907C;
	height:360px;
	padding:50px 50px 50px 50px;
}
.personalsed-frm h3{
	font-size: 25px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:200;
	padding:0px 0px 20px 0px;
	margin:0px;
	line-height:33px;
}
.genric-txt{
	font-size: 16px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:300;
	padding:0px 10px 20px 10px;
	margin:0px;
}
.genric-read{
	font-size: 14px;
	font-family:'Inter', serif;
	color: #FCF5EF;
	text-align:center;
	font-weight:600;
	padding:20px 10px 20px 10px;
	margin:0px;
	text-transform:uppercase;
}
.perfect-sumer{
	font-size: 31px;
	font-family: "Marcellus", serif;
	color: #5E5852;
	text-align:center;
	font-weight:300;
	padding:30px 0px 10px 0px;
	margin:0px;
	text-transform:none;
}
.perfect-txt{
	font-size: 20px;
	font-family: "Marcellus", serif;
	color: #5E5852;
	text-align:center;
	font-weight:300;
	padding:0px 0px 35px 0px;
	margin:0px;
	text-transform:none;
}
.book-btn{
	font-family:'Inter', serif;
	font-size:20px;
	background:#C74A1B;
	padding:18px 110px 18px 110px;
	border-radius:10px;
	text-align:center;
	color:#fff;
	font-weight:500;
	text-transform:uppercase;
	margin-bottom:-30px;
	letter-spacing:5.0px;
}
.book-btn a{
	color:#fff;
	text-decoration:none;
}
.book-btn a:hover{
	color:#fff;
	text-decoration:none;
}

.fa-arrow-right::before {	
	font-size:12px;
}
.padlft{
	padding:0px;
}
.padrght{
	padding:0px;
}
.padromve{
	padding:0px;
}

/* Meet India Leading Start */
.healng-wrld-frm{
	background:#ffffff;
	padding:90px 0px 70px 0px;
}
.doctr-img-radius{
	border-top-left-radius:15px;
	border-top-right-radius:10px;
}
.healng-wrld h1{
	font-family:'Inter', serif;
	font-size: 39px;
	color: #A6907C;
	font-weight: 700;
	text-align: center;
	padding-bottom:40px;
	text-transform: uppercase;
}
.healng-wrld h1 span{
	font-family:'Inter', serif;
	font-size: 39px;
	color:#C74A1B;
	font-weight:700;
	text-align:center;
	text-transform: uppercase;
}
.healng-wrld h2{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#5E5852;
	font-weight:500;
	text-align:center;
	padding:0px 0px 20px 0px;
	margin:0px;
}
.healng-wrld h2 span{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
}
.healng-wrld h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	font-weight:400;
	text-align:center;
	padding:0px 0px 50px 0px;
}
.healng-txt-frm{
	padding:15px 20px 15px 20px;
	background:#FCF5EF;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
}
.healng-txt-frm2{
	padding:20px 20px 20px 20px;
	background:#fff;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
}
.healng-txt-frm2 .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:22px;
	font-weight:300;
	/*height:80px;*/
	padding:0px 0px 0px 0px;
	margin-right:0px;
	border-right:0px solid #ada7a1;
}
.healng-read-more2 {
	font-family:'Inter', serif;
	font-size:14px;
	color:#C74A1B;
	line-height:22px;
	font-weight:600;
	text-transform:none;
	padding:0px 0px 0px 0px;
	margin-right:0px;
	border-right:0px solid #ada7a1;
	text-align:right;
}
.healng-read-more2 a{
	color:#C74A1B;
	font-weight:600;
}
.healng-read-more2 a:hover{
	color:#5E5852;
}
.healng-txt-frm h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#C74A1B;
	font-weight:600;
	padding:0px 0px 0px 0px;
	margin-right:0px;
	margin-bottom:0px;
	border-right:0px solid #ada7a1;
}
.healng-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:14px;
	color:#A6907C;
	line-height:22px;
	font-weight:400;
	height:55px;
	padding:5px 0px 0px 0px;
	margin-right:0px;
	border-right:0px solid #ada7a1;
}
.healng-read-more {
	font-family:'Inter', serif;
	font-size:13px;
	color:#5E5852;
	line-height:22px;
	font-weight:300;
	text-transform:none;
	padding:0px 0px 0px 0px;
	margin-right:0px;
	border-right:0px solid #ada7a1;
	text-align:right;
}
.healng-read-more a{
	color:#5E5852;
	font-weight:500;
}
.healng-read-more a:hover{
	color:#000000;
}
.healing-world{
	padding:0px 0px 0px 0px;
	margin-right:0px;
	margin-bottom:0px;
	border-right:0px solid #ada7a1;
}
.healing-world2{
	padding:0px 0px 0px 0px;
	margin-right:0px;
	margin-bottom:0px;
	border-right:0px solid #ada7a1;
}
.healng2-txt-frm{
	padding:0px 0px 0px 0px;
	/* background:#A6907C;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px; */
}
.healng2-txt-frm h3{
	font-family: "Marcellus", serif;
	font-size:25px;
	color:#C74A1B;
	font-weight:400;
	padding:20px 30px 0px 0px;
	margin-right:30px;
	margin-bottom:0px;
	border-right:0px solid #ada7a1;
}
.healng2-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#A6907C;
	line-height:22px;
	font-weight:300;
	height:155px;
	padding:20px 30px 0px 0px;
	margin-right:30px;
	border-right:0px solid #ada7a1;
}
.healng2-read-more {
	font-family:'Inter', serif;
	font-size:13px;
	color:#5E5852;
	line-height:22px;
	font-weight:300;
	text-transform:uppercase;
	padding:20px 30px 0px 0px;
	margin-right:30px;
	border-right:0px solid #ada7a1;
}
.healng2-read-more a{
	color:#5E5852;
	font-weight:500;
}
.healng2-read-more a:hover{
	color:#000000;
}
.healng-padbtm{
	padding-bottom:40px;
}

/* 100% CASHLESS Insurance CSS Start */
.insurance-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20% 60px 10%;
  margin-top: 0px;
}
.insurance-banner .item-1 {
  background-image: url(../images/insurance/banner-01.jpg);
  height:350px;
}
.insurance-banner .item span.category {
  /*background-color: #fff;*/
  color: #FCF5EF;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  padding: 10px 0px;
  display: inline-block;
  margin-bottom: 30px;
  font-family:'Inter', serif;
}
.insurance-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}
.insurance-banner .item h2 {
  font-size:50px;
  font-family:'maitree', serif;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
  padding-top:40px;
}
.insurance-frm {
	background: #ffffff;
	padding-top:90px;
	padding-bottom:90px;
}
.insurance-img{
	padding-bottom: 80px;
	text-align:center;
}
.insurance-hd h1{
	font-family:'Inter', serif;
	font-size:39px;
	color:#C74A1B;
	font-weight:700;
	text-align:left;
	text-transform:uppercase;
	padding:0px 80px 10px 0px;
	margin:0px;	
}
.insurance-brd{
	border-top:2px solid #dbcfc3;
	margin-right:130px;
}
.insurance-hd h2{
	font-family:'Inter', serif;
	font-size:25px;
	color:#C74A1B;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
}
.insurance-txt-frm{
	padding-right:150px;
}
.insurance-txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:23px;
	font-weight:400;
	padding-bottom:15px;	
}
.insurance-txt2{
	font-family:'Inter', serif;
	font-size:16px;
	color:#A6907C;
	line-height:26px;
	font-weight:400;
	padding-bottom:0px;
}

/* Embrace Healthier CSS Start */
.embrace-bg {
	background-image: url(../images/jivagram-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding:0px 0px 0px 0px;
	position: relative;
	height:867px;
}
.embrace-frm h1{
	color:#C74A1B;
	font-family:'Inter', serif;
	font-size:39px;
	font-weight:700;
	text-align:left;
	padding:30px 0px 20px 0px;
	margin:0px;
	text-transform:uppercase;
	border-bottom:0px solid #a08670;
}
.embrace-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	line-height:26px;
	font-weight:400;
	text-align:left;	
	padding:0px 50px 10px 0px;
}
.book-stay{
	padding:0px;
	/* background: #fcf5ef; */
	background-image: none;
	/*background-image: url(../images/master-bg.png);*/
}
.stay-btn{
	font-family:'Inter', serif;
	font-size:16px;
	background:#C74A1B;
	padding:15px 20px 15px 20px;
	border-radius:10px;
	text-align:center;
	color:#ffffff;
	font-weight:500;
	text-transform:uppercase;
	margin-top:175px;
	margin-top: -150px;
	margin-left: 95px;
	position:relative;
}
.stay-btn a{
	color:#C74A1B;
	text-decoration:none;
}
.stay-btn a:hover{
	color:#C74A1B;
	text-decoration:none;
}

/* Trusted Legacy CSS Start */

.trusted-frm {
	background: #fcf5ef;
	background-image: none;
	background-image: url(../images/master-bg.png);
	padding-top:100px;
	padding-bottom:50px;
}
.trusted-img{
	padding-bottom: 80px;
	text-align:center;
}
.trusted-hd h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	line-height:60px;
	font-weight:500;
	padding:0px 0px 20px 0px;
	margin:0px;	
}
.trusted-hd h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	line-height:60px;
	font-weight:700;
	padding-bottom:0px;
	padding-right:0px;
	margin:0px;
}
.trusted-hd h2{
	font-family:'Inter', serif;
	font-size:25px;
	color:#C74A1B;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
}
.trusted-txt-frm{
	padding-right:0px;
}
.trusted-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	line-height:28px;
	font-weight:600;
	padding-bottom:15px;	
}
.trusted-txt2{
	font-family: "Marcellus", serif;
	font-size:31px;
	color:#C74A1B;
	line-height:39px;
	font-weight:300;
	padding-bottom:15px;	
}
/* international patients CSS Start */
.international-frm{
	padding:80px 0px 90px 0px;
}

/* Contact CSS Start */
.contact-banner-frm{
	padding:0px;
	margin:0px;
}
.contact {
  background-image: url(../images/embark-form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 100px 0px;
  position: relative;
}
.contact .section-heading h2 {
  color: #fff;
}
.form-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#ffffff;
	line-height:28px;
	font-weight:300;
	padding-bottom:25px;
}
.contact-content h1{
	font-family: "Marcellus", serif;
	font-size: 48px;
	color: #ffffff;
	line-height: 60px;
	font-weight: 500;
	padding: 0px 100px 20px 160px;
	margin: 0px;
}
.contact-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#ffffff;
	line-height:28px;
	font-weight:300;
	padding: 0px 100px 20px 160px;
}
/*
.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}
*/
.contact-content #contact-form {
  margin-right: 70px;
  border-top-right-radius:30px;
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */
  padding: 35px 35px 80px 35px;
  background: #B79E86;
  margin-top:-150px;
}
.contact-content #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background:none;
  color:#ffffff;
  border: 1px solid #f6f6f6;
  margin-bottom: 20px;
  font-size: 14px;
  padding: 0px 15px;
}
.consultation-frm{
	background: #fffaf4;
	padding:70px 0px 90px 0px;
	margin-bottom:90px;
	width:60%;
	margin:0 auto;
}
.consultation-frm2{
	padding:30px 0px 90px 0px;
	margin-bottom:90px;
	width:60%;
	margin:0 auto;
}
.consultation-txt h1 {
  font-family: 'Inter', serif;
  font-size: 39px;
  color: #C74A1B;
  font-weight: 700;
  text-align: center;
  padding: 0px 0px 10px 0px;
  text-transform: uppercase;
  margin: 0px;
}
.consult-txt{
  font-family: 'Inter', serif;
  font-size:16px;
  color: #5E5852;
  font-weight:400;
  text-align: center;
  padding: 0px 0px 20px 0px;
  text-transform: none;
  margin: 0px;
}
.form-contact{
	padding:0px 50px 0px 50px;
}
.mrgbtm{
	margin-bottom:10px;
}
.form-control{
	font-size:14px;
	padding:.675rem .75rem;
}
.form-control2{
	height:auto;
	background:#fff !important;
	border-top:none !important;
	border-left:none !important;
	border-right:none !important;
	border-radius:0px !important;
	border-bottom:2px solid #A6907C !important;
}
.form-group {
  margin-bottom: 1rem;
}
.modal-content {
  border-radius: 20px !important;
}
.modal-title {
  font-weight: 700 !important;
  font-size: 23px !important;
}

.contact-btn {
	padding:20px 0px 0px 25px;
}
.btn-secondary{
	background:#C74A1B;
	border:#C74A1B;
	text-transform: uppercase;
    letter-spacing: 2.0px;
	padding:12px 40px 12px 40px;
}
.form-select{
	--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	display: block;
	width: 100%;
	padding: .375rem 2.25rem .375rem .75rem;
	-moz-padding-start: calc(0.75rem - 3px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color:#5E5852;
	background:none;
	background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: .375rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.contact-content button {
  font-family:'Inter', serif;
  background: #C74A1B;
  border-radius: 10px;
  padding: 10px 100px 10px 100px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 5.0px;
  font-weight: 400;
  transition: all .5s;
  margin-top: -28px;
  position: absolute;
  margin-left:0px;
}
.contact-content #contact-form button:hover {
  background-color: #f35525;
}
.contact-feel{
	line-height:30px;
}
/* Stories of Health & Healing Section Start */

.stories-frm{
	background:#fcf5ef;
	background-image: url(../images/stories-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding:80px 0px 60px 0px;
	position: relative;
}
.health-bg{
	background:#ffffff;
	padding:10px;
	margin:0px;
}
.stories-health h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
	margin:0px;
}
.stories-health h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.stories-health h2{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#5E5852;
	font-weight:500;
	text-align:center;
	padding:0px 0px 0px 0px;
	margin:0px;
}
.stories-health h2 span{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
}
.stories-health h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	font-weight:300;
	text-align:center;
	padding:0px 0px 40px 0px;
}
.stories-txt-frm{
	padding:0px 0px 0px 0px;
}
.stories-txt-frm h3{
	font-family:'Inter', serif;
	font-size:22px;
	color:#A6907C;
	font-weight:300;
	padding:20px 10px 20px 10px;
	margin-bottom:0px;
	background:#fff;
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;
}
.stories-img{	
	border-top-right-radius:20px;
	border-top-left-radius:20px;
}
.stories-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#A6907C;
	line-height:22px;
	font-weight:300;
	height:155px;
	padding:20px 0px 0px 0px;
}
.iframe-container {
  overflow: hidden;
  padding-top: 0px; /* 16:9*/
  position: relative;
}
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
/* Stories of Health & Healing Section End */

/* Awards Section Start */

.awards-frm{
	background:#ffffff;
	padding:80px 0px 50px 0px;
}
.awards{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
	margin:0px;
}
.awards h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
	padding:0px 0px 40px 0px;
	margin:0px;
}
.award-block {
  border-radius: 20px;
  font-family: "Marcellus", serif;
  background-color: #fff;
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.14);
  padding: 30px 90px;
  text-align: center;
  position: relative;
}
.award-block .award-year span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight:700;
  color:#C74A1B;
}
.award-block .award-year span:before,
.award-block .award-year span:after {
  width: 40px;
  vertical-align: middle;
  height: 25px;
  content: '';
}
.award-block .award-year span:before {
  background: url(../../assets/images/award-heading-vector-left.png) no-repeat center center;
  background-size: 100% auto;
}
.award-block .award-year span:after {
  background: url(../../assets/images/award-heading-vector-right.png) no-repeat center center;
  background-size: 100% auto;
}
.award-block .leaf {
  width: 50px;
  position: absolute;
  left: 35px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  text-align: left;
}
.award-block .leaf.leaf-right {
  right: 35px;
  left: auto;
  text-align: right;
}
.award-block .leaf img{
  display: inline-block;
}
.award-year{
	font-family:'Inter', serif;
}
.awrad-desc{
	margin:0px;
	padding:10px 0px 10px 0px;
	font-family:'Inter', serif;
}
.awrad-desc p {
	font-family:'Inter', serif;
	font-size:16px;
	font-weight:700;
}

/* FAQ Section Start */

/* FAQ Section Start */

.faq-frm{
	background:#ffffff;
	padding:50px 0px 80px 0px;
}
.faq{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:left;
	padding:0px 0px 10px 0px;
	margin:0px;
}
.faq h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:left;
	padding:0px 40px 40px 40px;
	margin:0px;
}
.accordion{
	border:0px solid #ddd5ce;
	border-radius:5px;
	font-family:'Inter', serif;
}
.accordion-item:first-of-type{
	border-radius: 20px;
	border: 3px solid #ddd5ce;
	margin-bottom: 10px;
}
.accordion-button:focus{
	border:none;
	box-shadow:none;
}
.accordion-item:first-of-type .accordion-button{
	border-radius:20px;
}
.accordion-item:not(:first-of-type){
	border-radius: 20px;
	border: 3px solid #ddd5ce;
	margin-bottom: 10px;
}
.accordion-button:not(.collapsed){
	box-shadow:none;
}
.accordion-button{	
	color:#A6907C;
	font-weight:700;
	font-size:25px;
	border-radius: 20px;
}
.accordion-button:not(.collapsed){
	background:none;
	color:#A6907C;
	font-weight:700;
	font-size:25px;
}
.accordion-body{
	font-size:16px;
	color:#5E5852;
	/*border-top:2px solid #ddd5ce;
	border-bottom:2px solid #ddd5ce; */
}
.accordion-item:last-of-type .accordion-button.collapsed{
	border-radius: 20px;
}

/* FAQ Section End */

/* FAQ Section End */

/* FAQ2 Section Start */

.faq-frm2{
	background:#ffffff;
	padding:50px 0px 80px 0px;
}
.accordion{
	border:0px solid #ddd5ce;
	border-radius:5px;
	font-family:'Inter', serif;
	padding-left:30px;
}
.accordion-item2:first-of-type{
	border-radius: 0px;
	border-top: 0px solid #ddd5ce;
	border-left: 0px solid #ddd5ce;
	border-right: 0px solid #ddd5ce;
	border-bottom: 0px solid #7D7D7D;
	margin-bottom:0px;
}
.accordion-button:focus{
	border:none;
	box-shadow:none;
}
.accordion-item2:first-of-type .accordion-button2{
	border-radius:20px;
}
.accordion-item2:not(:first-of-type){
	border-radius: 0px;
	border-top: 0px solid #ddd5ce;
	border-left: 0px solid #ddd5ce;
	border-right: 0px solid #ddd5ce;
	border-bottom: 0px solid #7D7D7D;
	margin-bottom: 10px;
}
.accordion-button:not(.collapsed){
	box-shadow:none;
}
.accordion-button{
	color:#C74A1B;
	font-weight:700;
	font-size:20px;
	border-radius:0px;
	background:none;
}
.accordion-button:not(.collapsed){
	background:none;
	color:#C74A1B;
	font-weight:700;
	font-size:20px;
}
.accordion-body{
	font-size:16px;
	color:#5E5852;
	padding-top:0px;
	padding-right:150px;
	padding-bottom:0px;
	/*border-top:2px solid #ddd5ce;
	border-bottom:2px solid #ddd5ce; */
}
.accordion-item2:last-of-type .accordion-button.collapsed{
	border-radius: 20px;
}

/* FAQ2 Section End */

/* Page Header Style */

.page-heading {
  background-image: url(../images/page-heading-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0px;
  text-align: center;
}

.page-heading span {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 30px;
}

.page-heading span a {
  color: #1e1e1e;
}

.page-heading h3 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

/* Contact Page Style */

.contact-page #map {
  margin-top: 100px;
}
.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}
.contact-page p {
  margin-bottom: 50px;
}
.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  display: inline-block;
  min-width: 360px;
}
.contact-page .phone {
  margin-bottom: 30px;
}
.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}
.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}
.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
}
.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}
.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}
.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}
.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}
.contact-page #contact-form button:hover {
  background-color: #f35525;
}

/* Footer Page Style */
.footer {
  font-family:'Inter', serif;
  color: #fff;
  background: #A6907C;
  font-size: 14px;
  padding: 80px 0 30px 0;
}
/*
.footer:before {
  content: "";
  position: absolute;
  inset: 0;
}
*/
.footer .footer-content .footer-info {
  margin-bottom: 30px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}
.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 5px;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer-txt{
	padding:50px 0px 0px 0px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left:15px;
}
.footer .footer-content .footer-links ul li {
  padding: 5px 0;list-style: disc;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
  list-style: disc;
}
.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}
.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}
.footer .footer-legal .credits a {
  color: var(--color-primary);
}
.dubai-adres{
	padding:0px 0px 50px 0px;
}
.dubai-contact{
	font-size:16px;
	border-bottom:2px solid rgba(255, 255, 255, 0.15);
	text-transform:none;
	font-weight:500;
	padding:0px 0px 10px 0px;
}
.dubai-location{
	font-size:20px;
	font-weight:500;
	padding:10px 0px 0px 0px;
}
.dubai-location{
	padding:10px 0px 0px 0px;
}
.phone-number{
	padding:10px 0px 10px 0px;	
}
.working-mon{
	padding:10px 0px 0px 0px;	
}
.working-hours{
	padding:10px 0px 0px 0px;	
}
.work-hour-sun{
	padding:10px 0px 10px 0px;
}
.adres{
	padding:0px 0px 0px 0px;	
}
.jivagrm-adres{
	font-size:14px;
	font-weight:400;
	padding:10px 0px 0px 0px;
}
.chauhan-hd{
	font-size:16px;
	font-weight:500;
	padding: 50px 0px 5px 0px;
}
.chauhan-hd2{
	font-size:16px;
	font-weight:300;
	padding: 0px 0px 15px 0px;
}
.chauhan-txt{
	font-size:20px;
	font-weight:300;
	padding: 0px 0px 15px 0px;
}

/* right Side Call Email Whatsup CSS Start */
.fixed-social{ position: fixed; right: 0px; top: 70%; width: 57px; margin-top: -105px;z-index: 3;}
.fixed-social a{ float: left; width: 100%; color: #fff; font-size: 16px; background-color: #4e9525; text-align: center;padding: 11px 0px;}
.fixed-social a:hover{ background-color: ; }
.fixed-social a span{font-size: 9px ; color: #fff; text-transform: uppercase;display: block; margin-top:4px;}
.fixed-social a:nth-child(1){background-color: #fff;color: #333}
.fixed-social a:first-child span{color: #333}
.fixed-social a:nth-child(2){background-color: #d9a92e;}
.fixed-social a:nth-child(1):hover, .fixed-social a:nth-child(2):hover,  .fixed-social a:nth-child(3):hover {background-color: #C74A1B;}
.fa-whatsapp::before {color:#fff;}
.fa-envelope::before {color:#fff;}

/* right Side Call Email Whatsup CSS End */

/* Social Icon Right Side Sticky CSS Start */
.sticky-icon{
	z-index:1;
	position:fixed;
	top:70%;
	right:0%;
	width:220px;
	display:flex;
	flex-direction:column;
}
.sticky-icon a{
	transform:translate(160px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px 0px 2px 0px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:20px;
	font-family:'Inter', serif;
	transition:all 0.8s;
	font-weight:600;
}
.sticky-icon a:hover{
	color:#FFF;
	transform:translate(0px,0px);
}
.sticky-icon a:hover i{
	transform:rotate(360deg);
}
.stickbtns-grp {
  width:40%;
  max-width:400px;
  position:fixed;
  overflow:hidden;
  top:auto;
  bottom:0;
  left:auto;
  right:10%;
  z-index:9;
  border-radius:20px 20px 0 0;
  display:flex
}
.stickbtns-grp .stickbtn {
  display:block;
  width:50%
}
.stickbtn {
  cursor:pointer;
  color:#fff;
  font-size:16px;
  font-weight:500;
  line-height:1.5;
  text-transform:capitalize;
  text-align:center;
  padding:13px 20px;
  transition:.3s ease-in-out;
  border:0;
  display:inline-block;
  margin:0;
  background-color:#c74a1b
}
.stickbtn:focus,
.stickbtn:hover {
  color:#fff;
  background-color:#bb3810
}
.stickbtn.chatwithus-btn {
  background-color:#723421
}
.stickbtn.chatwithus-btn:focus,
.stickbtn.chatwithus-btn:hover {
  background-color:#974229
}
/*.search_icon a:hover i  {
transform:rotate(360deg);}*/
.whatsup{
	background-color:#27d045;
	color:#FFF;
}
.Facebook{
	background-color:#2C80D3;
	color:#FFF;
}
.Youtube{
	background-color:#fa0910;
	color:#FFF;
}
.Twitter{
	background-color:#53c5ff;
	color:#FFF;
}
.Instagram{
	background-color:#fc00d9;
	color:#FFF;
}
.Google{
	background-color:#d34836;
	color:#FFF;
}
.sticky-icon a i {
	background-color:#FFF;
	height:35px;
	width:35px;
	color:#000;
	text-align:center;
	line-height:36px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;
}
.sticky-icon a i.fa-facebook-f{
	background-color:#FFF;
	color:#2C80D3;
}
.sticky-icon a i.fa-google-plus-g{
	background-color:#FFF;
	color:#d34836;
}
.sticky-icon a i.fa-instagram{
	background-color:#FFF;
	color:#fc00d9;
}
.sticky-icon a i.fa-youtube{
	background-color:#FFF;
	color:#fa0910;
}
.sticky-icon a i.fa-twitter{
	background-color:#FFF;
	color:#53c5ff;
}
.fas fa-shopping-cart{
	background-color:#FFF;
}
#myBtn{
	height:50px;
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	text-align:center;
	padding:10px;
	text-align:center;
	line-height:40px;
	border: none;
	outline: none;
	background-color: #1e88e5;
	color: white;
	cursor: pointer;
	border-radius: 50%;
}
.fa-arrow-circle-up{
	font-size:30px;
}
#myBtn:hover {
  background-color: #555;
}
/* Social Icon Right Side Sticky CSS End */

/* Back to top CSS Start */
.go-top {
  position:fixed;
  bottom: 25%;
  right: 98%;
  padding:20px;
  display:none;
  cursor: pointer;
}
.go-top:after {
	font-family: FontAwesome;
	content: "\f176";
	/* background-color: #E5E8F0; */
	padding: 10px 15px;
	color: #6a6e7c;
	position: absolute; 
	bottom:-10px;
	font-size: 30px;
}
.go-top-text {
	position: absolute;
	width: 140px;
	text-align: center;
	font-family:'Inter', serif;
	line-height: 1.5;
	letter-spacing: 0.8px;
	font-size: 16px;
	margin: 62px 0 0 -47px;
	font-weight: 600;
	color:#6a6e7c;
}
/*
.go-top:hover {
	transition: all .4s linear;
	transform: scale(1.1);
}*/
.rotate {

/* Safari */
-webkit-transform: rotate(-90deg);

/* Firefox */
-moz-transform: rotate(-90deg);

/* IE */
-ms-transform: rotate(-90deg);

/* Opera */
-o-transform: rotate(-90deg);

float: left;

}
/* Back to top CSS End */

/* Read More CSS Start */

.full-text {
    color:#5E5852;
	font-size:16px;
}
.readmore-btn {
    display: block;
    color:#B79E86;
    cursor: pointer;
    margin-top: 10px;
	text-align:right;
}
.full-text,
.text-wrapper p:first-child {
    display: inline;
}

.full-text2 {
    color:#5E5852;
	font-size:16px;
}
.readmore-btn2 {
    display: block;
    color:#5E5852;
    cursor: pointer;
    margin-top: 0px;
	padding:0px 0px 20px 50px;
}
.full-text2,
.text-wrapper2 p:first-child {
    display: inline;
}
/* Read More CSS End */

/* Responsive Style */

body {
  overflow-x: hidden;
}
.close{
	font-size:25px;
	border:none;
	background:none;
}
@media (max-width: 767px) {
	
	.chauhan-txt{
		font-size:16px;
		padding-bottom:0px;
	}
	.sticky-icon{
		top:60%;
		display:none;
	}
	.go-top::after{
		display:none;
	}
	.go-top-text{
		display:none;
	}
	.header-area .main-nav .logo h1 {
		line-height: 80px !important;
	}
	.header-area .main-nav .nav li:last-child {
		display: block;
	}
	.main-banner .item-1{
		height:auto;
	}
	.second-logo{
		display:none;
	}
	.moder-frm{
		width:100%;
	}
	.key-txt-frm h3{
		height:auto;
	}
	.key-txt-frm .txt{
		height:auto;
	}
	.padbtm{
		padding-bottom:20px;
	}
	.read-more{
		color:#C74A1B;
		padding:0px;
	}
	.featured{
		padding-top:50px;
	}
	.jiva-edge{
		padding-top:60px;
	}
	.edge h4{
		height:auto;
	}
	.jivagrm-content .jivagrm-frame{
		padding:50px 0px 0px 0px;
		margin-top:0px;
	}
	.personalised-frm{
		padding:20px 20px 20px 20px;
		height:auto;
	}
	.generic-read{
		padding:0px;
	}
	.personalsed-frm{
		padding:20px 20px 20px 20px;
		height:auto;
	}
	.genric-read{
		padding:0px;
	}
	.book-btn{
		padding:20px;
	}
	.healing-world{
		padding:0px;
		margin:0px;
		border-right:0px;
		text-align:center;
	}
	.healng-txt-frm h3{
		padding:0px 0px 5px 0px;
		margin:0px;
		border-right:0px;
		text-align:left;
		font-size:16px;
	}
	.healng-txt-frm .txt{
		padding:0px 0px 0px 0px;
		margin:0px;
		border-right:0px;
		text-align:left;
		height:auto;
	}
	.healng-read-more{
		padding:20px 0px 20px 0px;
		margin:0px;
		border-right:0px;
		text-align:center;
		height:auto;		
	}
	.healing-world2{
		padding:0px;
		margin:0px;
		border-right:0px;
		text-align:center;
	}
	.healng2-txt-frm h3{
		padding:10px 0px 10px 0px;
		margin:0px;
		border-right:0px;
		text-align:center;
	}
	.healng2-txt-frm .txt{
		padding:0px 20px 0px 20px;
		margin:0px;
		border-right:0px;
		text-align:center;
		height:auto;
	}
	.healng2-read-more{
		padding:20px 0px 0px 0px;
		margin:0px;
		border-right:0px;
		text-align:center;
		height:auto;
	}
	.why-hd h1{
		padding:40px 0px 20px 0px;
	}
	.why-brd{
		margin-right:0px;
	}
	.why-txt-frm{
		padding:0px;
	}
	.insurance-img{
		padding-top:40px;
		padding-bottom:50px;
	}
	.journy-frm{
		text-align:center;
	}
	.journy-img{
		text-align:center;
	}
	.journy-frm h4{
		text-align:center;
	}
	.journy-brd{
		margin-right:0px;
	}
	.journy-txt{
		height:auto;
		text-align:center;
	}
	.embrace-bg{
		background-position:inherit;
	}
	.jivagrm-content{
		padding:0px 0px 20px 0px;
	}
	.stay-btn{
		padding:20px;
		width:100%;
		margin-top:20px;
	}
	.featured .left-image img{
		padding:0px;
	}
	.main-banner .item h2{
		font-size:30px;
		line-height:40px;
		text-align:left;
		padding-top:0px;
	}
	.main-banner .item{
		padding:30px 20px 30px 20px;
	}
	.story-icon{
		margin-top:0px;
	}
	.main-banner .item span.category{
		text-align:left;
		padding:0px 0px;
		margin:0px;
	}
	.contact-content h1{
		padding:0px 10px 20px 10px;
	}
	.contact-txt{
		padding:0px 10px 20px 10px
	}
	.contact-content #contact-form{
		margin-top:0px;
		margin-right:0px;
	}
	.our-story{
		margin-left:0px;
	}
	.story-txt{
		padding-left:0px;
	}
	.story-btn{
		padding-left:0px;
	}
	.accordion-body{
		padding-right:40px;
	}
	.hospital-txt-frm{
		width:88%;
		padding:0px;
	}
	.hospital-icon{
		width:12%;
	}
	.insurance-hd h1{
		padding-right:0px;
		font-size:30px;
	}
	.insurance-txt-frm{
		padding-right:0px;
	}
	.footer-txt{
		padding:30px 0px 10px 0px;
	}
	.ayur-txt1{
		padding:0px 0px 20px 0px;
	}
	.ayur-txt2{
		padding:0px 0px 20px 0px;
	}
	.key-service-frm{
		padding:50px 0px 50px 0px;
	}
	.therapies-frm{
		padding:50px 0px 0px 0px;
	}
	.featured .section-heading h2{
		padding:0px;
	}
	.featured .left-image{
		text-align:center;
	}
	.dr-partap h3{
		padding:20px 0px 0px 0px;
	}
	.dr-partap-txt{
		padding:20px 0px 0px 0px;
	}
	.healng-wrld-frm{
		padding:50px 10px 0px 10px;
	}
	.healng-txt-frm2{
		padding:20px 20px 0px 20px;
	}
	.embrace-bg{
		height:770px;
	}
	.treatment-bg{
		padding-top:50px;
	}
	.amenities-heading h3{
		padding: 0px 10px 30px 10px;
	}
	.stickbtns-grp{
		width:100%;
		right:0px;
		max-width:none;
	}
	.about-us h1{
		font-size:30px;
		padding:0px 0px 30px 0px;
	}
	.about-us h1 span{
		font-size:30px;
	}
	.facilites-banner .item-1{
		height:auto;
		padding:20px 10px 0px 10px;
	}
	.facilites-banner .item h2{
		font-size:30px;
		line-height:25px;
	}
	.facilites-banner .item span.category{
		font-size:16px;
		font-weight:300;
	}
	.facility-frm{
		padding-top:40px;
	}
	.ayur-hospital h1{
		font-size:30px;
		line-height:35px;
	}
	.ayur-hospital span{
		font-size:30px;
		line-height:35px;
	}
	.accommodation-frm{
		padding-top:0px;
	}
	.acom-heading h1{
		font-size:30px;
		line-height:35px;
	}
	.acom-heading h1 span{
		font-size:30px;
		line-height:35px;
	}
	.acom-txt{
		padding:0px 40px 30px 40px;
	}
	.flor{
		padding:0px 0px 5px 0px;
	}
	.virtual-tour{
		font-size:30px;
		padding:30px 0px 30px 0px;
	}
	.key-service h1{
		font-size:30px;
		padding:0px 0px 30px 0px;
	}
	.key-service h1 span{
		font-size:30px;
	}
	.amenities-frm{
		padding:50px 0px 30px 0px;
	}
	.amenities-heading h1{
		font-size:30px;
	}
	.amenities-heading h1 span{
		font-size:30px;
	}
	.amenities{
		margin-bottom:10px;
	}
	.insurance-frm{
		padding:50px 0px 50px 0px;
	}
	.insurance-banner .item-1{
		height:auto;
	}
	.insurance-banner .item h2{
		font-size:30px;
		padding-top:0px;
	}
	.insurance-banner .item{
		padding:10px 20px 10px 20px;
	}
	.foter-logo{
		width:70%;
	}
	.sustainable-banner .item{
		padding:20px 20px 20px 20px;
		height:auto;
	}
	.sustainable-banner .item h2{
		font-size:30px;
		line-height:35px;
	}
	.sustainable-banner .item span.category{
		font-size:16px;
		font-weight:300;
		margin-bottom:0px;
		padding-bottom:0px;
	}
	.sustain-frm{
		padding-top:50px;
	}
	.sustain-txt1{
		padding:0px 0px 10px 0px;
	}
	.sustain-txt2{
		padding:0px 0px 20px 0px;
	}
	.dubai-adres{padding-bottom:10px;}
	.footer .footer-legal .copyright{padding-top:10px;padding-bottom:40px;}
	.dining-banner .item-1{height:auto;padding:20px 20px 20px 20px;}
	.dining-banner .item h2{font-size:30px;line-height:25px}
	.dining-banner .item span.category{font-size:16px;font-weight:300;margin-bottom:0px;padding-bottom:0px;}
	.feast-frm{padding:40px 0px 50px 0px;}
	.dining-hd h1{font-size:30px;padding:0px 0px 15px 0px;}
	.dining-hd h1 span{font-size:30px;}
	.dining-txt-frm{padding:0px 0px 0px 0px;}
	.dining-txt{font-size:16px;line-height:25px;}
	.learn-through-bg{padding:70px 30px 70px 30px;}
	.ayur-cusine{font-size:20px;line-height:25px;padding;10px 0px 10px 10px;}
	.ayur-cusine2{font-size:20px;line-height:25px;padding:10px 0px 10px 10px;}
	.brd-right{border-right:none;}
	.brd-right{margin-bottom:0px;}
	.dine-hd h1{font-size:30px;}
	.dine-hd h1 span{font-size:30px;}
	.dine-bg{padding:30px 30px 30px 30px;}
	.dropdown:hover > .dropdown-menu, .dropend:hover > .dropdown-menu{
		display: block;
		margin-top: -0.875em;
		margin-left: 0.125em;
		width:99% !important;
		text-align:center;
	}
	.enquiry-now a {color: #C74A1B !important;}
	.healng-wrld h1{font-size:22px;padding-bottom:20px;}
	.healng-wrld h1 span{font-size:22px;}
	.healng-txt-frm2 .txt{height:100%;font-size:14px;}
	.full-text{font-size:14px;}
	.healng-read-more2{
		display:none;
	}
	.fixed-social {
		width: 30px;
		margin-top: -77.5px;
		right:0px;
	}
	.fixed-social a {
		font-size: 12px;
		padding: 8px 0px;
	}
	.fixed-social a span {
		display: none;
	}

}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
	border-radius:0px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }

}

@media (max-width: 1200px) {	
  .contact-page .section-heading {
    margin-right: 100px;
  }  
}
@media (min-width: 1024px) and (max-width: 1100px) {
	.header-area .main-nav ul.nav{
		flex-basis:auto;
	}
	.header-area .main-nav .nav li a{
		font-size:10px;
	}
}
@media (min-width: 1100px) and (max-width: 1279px) {
	.header-area .main-nav ul.nav{
		flex-basis:auto;
	}
	.header-area .main-nav .nav li a{
		font-size:13px;
	}
}
@media (min-width: 1280px) and (max-width: 1366px) {
	.header-area .main-nav ul.nav{
		flex-basis:80%;
	}
	.carousel-control-prev,
	.carousel-control-next {
	background-color: #000;
	width: 3vh;
	height: 3vh;
	border-radius: 50%;
	top: 48%;
	transform: translateY(-50%);
	}
	.sustainabl-us-txt {
	  height:190px;
	}
	.healng-txt-frm2 .txt{
		height:100%;
	}
	
}
@media (min-width: 1367px) and (max-width: 1511px) {
	.header-area .main-nav ul.nav{
		flex-basis:80%;
	}
	.header-area .main-nav .nav li a{
		font-size:14px;
	}
}