/* 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=Marcellus");

@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: 100px;
}

.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;
  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: 80px;
  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:17px; */
  padding-top:21px;
}

.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: 100%;
  /*flex-basis: 59%;*/
  margin-top: 20px;
  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: 20px;
  padding-right: 20px;
  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: #C74A1B;
  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: 20px;
}

.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 */

@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;
     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:4px;
  }
  .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;
  }
  
}

/* Banner Style  */

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 20% 180px 20%;
  margin-top: 0px;
}

.main-banner .item-1 {
  background-image: url(../images/holistic-wellness.png);
  height:587px;
}

.main-banner .item-2 {
  background-image: url(../images/jiva-unveiling.png);
  height:587px;
}

.main-banner .item-3 {
  background-image: url(../images/beauty-banner.jpg);
  height:587px;
}
.main-banner .item-4 {
  background-image: url(../images/address-health.jpg);
  height:587px;
}

.main-banner .item span.category {
  /*background-color: #fff;*/
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  padding: 6px 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: 60px;
  font-weight: 400;
  text-transform: none;
  color: #fff;
  line-height: 72px;
  width: 100%;
  margin-bottom: 0px;
}

/*
.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: #000;
  background: #fff;
  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);
}

/* healing the World slider Start CSS*/

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 49px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  /*background:#fff;*/
  background-color: rgba(94, 88, 82, 0.6);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.owl-nav .owl-prev i {
  position: absolute;
  left: -55px;
}
.owl-nav .owl-next i {
  position: absolute;
  right: -30px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: #fff;
}
/* healing the World Slider CSS End */

/* Stories of Health & Healing Slider Start */

.splide {
	max-width: 100%;
	margin: 0 auto;
}
.splide__slide {
	img {
		max-width: 100%;
	}
}
.splide__slide img{
	border-radius:15px;
}
.splide__arrow{
	width:50px !important;
	height:50px !important;
	background:#A6907C !important;
	/* background-color:rgba(19, 19, 19, 0.9) !important;
	 background-color:#723322 !important; */
}
.splide__arrow svg{
	fill:#fff !important;
}
.splide__arrow--prev {
	margin-left: -50px;
	left:-0px !important;
}
.splide__arrow--next {
	margin-right: -50px;
	right:-0px !important;
}
.splide__pagination {
	display:none !important;
}
.splide__pagination__page.is-active {
	background: green;
}
/* Stories of Health & Healing Slider ENd */

/* Our Story Style */
.featured{
	background:#fcf5ef;
	background-image: url(../images/master-bg.png);
	padding-bottom:180px;
	padding-top:180px;
}
.story-icon{
	padding-bottom:20px;
	margin-top:-50px;
}
.story-left-txt{
	color:#A6907C;
	font-family: 'Inter', serif;
	font-weight:600;
	font-size:25px;
	line-height:33px;
}
.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:25px;
	padding:0px 0px 20px 50px;
}
.desktop-story{
	display:block;
}
.mob-story{
	display:none;
}
.story-btn{
	padding:0px 0px 20px 50px;
}
.btn-success {
	font-family:'Inter', serif;
	font-size:13px;
	line-height: 22px;
	font-weight: 500;
	text-transform: none;
  --bs-btn-color: #fff;
  --bs-btn-bg: #B79E86;
  --bs-btn-border-color: #B79E86;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #B79E86;
  --bs-btn-hover-border-color: #B79E86;
}
.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: 10px;
  margin-right: 50px;
  margin-bottom: 30px;
}
.featured .section-heading h2 {
  width: 70%;
}
.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;
}

.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;
}
/* patient-saw CSS Start */
.patient-saw{
	display:block;
	padding:0px 0px 0px 0px;
	margin-top:-150px;
}
.patient-saw2{
	display:none;
}
.patient-wel{
	font-size: 15px;
    line-height: 20px;
    text-align: center;
	color: #A6907C;
	font-family: 'Inter', serif;
	font-weight: 600;
	padding:20px 25px 0px 25px;
  }
}
/* Key Services CSS Start */

.key-service-frm{
	padding-bottom:100px !important;
}
.diseases-frm{
	padding:30px 0px 10px 0px;
}
.key-service h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
}
.key-service h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.key-service h2{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#5E5852;
	font-weight:500;
	text-align:center;
	padding:0px 0px 20px 0px;
	margin:0px;
}
.key-service h2 span{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
}
.key-service h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	font-weight:400;
	text-align:center;
	padding:0px 0px 20px 0px;
}
.we-mobile{
	display:none;
}
.key-txt-frm{
	background:#fcf5ef;
	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:25px;
	color:#A6907C;
	font-weight:700;
	padding-bottom:0px;
	/*height:90px;*/
}
.key-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:22px;
	font-weight:300;
	padding-bottom:20px;
}
.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;
}
.view-more-link {
	font-family:'Inter', serif;
	font-size:20px;
	color:#C74A1B;
	line-height:22px;
	font-weight:600;
	text-transform:uppercase;
	padding-bottom:10px;
	text-align:center;
}
.view-more-link a{
	color:#C74A1B;
	font-weight:600;
}
.view-more-link a:hover{
	color:#5E5852;
}
.url-link {
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	font-weight:600;
	text-transform:none;
}
.url-link a{
	color:#5E5852;
	font-weight:600;
	text-transform:none;
}
.url-link a:hover{
	color:#C74A1B;
	text-transform:none;
}

/* Therapies CSS Start */

.therapies-frm {
	background: #fcf5ef;
	background-image: none;
	background-image: url(../images/master-bg.png);
	/*padding-top: 260px;
	margin-top:-100px;*/
	margin-top:70px;
	padding:100px 0px 100px 0px;
}
.therapies-img{
	padding-bottom: 0px;
}
.therapie-hd{
	padding:30px 0px 0px 50px;
}
.therapie-hd h1{
	font-family:"Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	line-height:22px;
	font-weight:500;
	padding-bottom:20px;
	padding-right:0px;
	margin:0px;
}
.therapie-hd h1 span {
  font-family: "Marcellus", serif;
  font-size: 48px;
  color: #C74A1B;
  font-weight: 500;
  text-align: center;
}
.therapie-hd h2{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	line-height:28px;
	font-weight:500;
	padding-bottom:20px;
}
.therapie-txt-frm{
	padding-right:0px;
}
.therapie-txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:32px;
	font-weight:300;
	padding-bottom:15px;	
}
.therapie-txt2{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:26px;
	font-weight:400;
	padding-bottom:0px;
}
.therapie-txt22{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:23px;
	font-weight:400;
	padding-bottom:10px;
}
.vaman-txt{
	margin-bottom:5px;
	padding-left:20px;
}
.therapie-txt2{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:26px;
	font-weight:400;
	padding-bottom:0px;
}
.therapie-txt3{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:24px;
	font-weight:400;
	padding-bottom:10px;
}
/* Therapies Mobile CSS */
.therapies-hd h1{
	font-size:15px;
	text-align:left;
	font-weight:700;
	font-family:'Inter', serif;
	padding-top:10px;
	padding-bottom:5px;
	color:#C74A1B;
	margin:0px;
}
.therapies-txt{
	font-family:'Inter', serif;
	text-align:left;
	line-height:18px;
	font-size:12px;
	font-weight:500;
	padding:0px;
	color:#5E5852;
}
.therapies-imgs{
	padding-bottom:0px;
	position: relative;
	height:595px;
}
.therapies-imgs p {
	position: relative;
	top: 0;
	left: 50%;
	width:90%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	padding:15px 15px 15px 15px;
	background:#B79E86;
	border-radius:15px;
	line-height:18px;
  }
  .panchakarma-hd{
	color: #fff;
	font-weight: 700;
	font-size:18px;
	font-family:'Inter', serif;
	margin-bottom:0px;
	line-height:30px;
}
.panchakarma-txt{
	color: #fff;
	font-weight: 400;
	font-size:14px;
	font-family:'Inter', serif;
	padding:7px 0px 5px 0px;
}
.reads{
	color: #fff !important;
	font-weight: 300;
	font-size:12px;
	text-align:right;
	text-transform:uppercase !important;
}
.reads a{
	color: #fff;
	font-weight: 300;
}
.reads a:hover{
	color: #fff;
}

/* Our Doctor CSS Start */

.doctor-frm {
	background: #fcf5ef;
	background-image: none;
	background-image: url(../images/master-bg.png);
	/*padding-top: 260px;
	margin-top:-100px;*/
	margin-top:70px;
	padding:100px 0px 100px 0px;
}
.doctor-img{
	padding-bottom: 0px;
}
.doctor-hd{
	padding:0px 0px 0px 50px;
}
.doctor-hd h1{
	font-family:"Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	line-height:50px;
	font-weight:500;
	padding-bottom:20px;
	padding-right:0px;
	margin:0px;
}
.doctor-hd h1 span {
  font-family: "Marcellus", serif;
  font-size: 48px;
  color: #C74A1B;
  font-weight: 500;
	line-height:29px;
  text-align: center;
}
.doctor-hd h2{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	line-height:28px;
	font-weight:500;
	padding-bottom:20px;
}
.doctor-txt-frm{
	padding-right:0px;
}
.doctor-txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:28px;
	font-weight:300;
	padding-bottom:15px;	
}
.doctor-txt2{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:28px;
	font-weight:600;
	padding-bottom:5px;	
}
.doctor-duration{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	line-height:28px;
	font-weight:300;
	padding-bottom:15px;
}
.doctor-how{
	font-family:'Inter', serif;
	font-size:22px;
	color:#A6907C;
	line-height:26px;
	font-weight:700;
	padding:0px 0px 10px 0px;
}
.doctor-what{
	font-family:'Inter', serif;
	font-size:22px;
	color:#A6907C;
	line-height:26px;
	font-weight:700;
	padding:40px 0px 10px 10px;
}
.doctor-journey{
	padding-right:0px;
}
.fa-circle-check::before {
	color:#A6907C;
}
.how-arrow{
	font-family:'Inter', serif;
	font-size:16px;
	color:#5E5852;
	padding-top:20px;
	font-weight:500;
	padding-bottom:0px;
}

/* The Jiva Edge Start */
.jiva-edge{
	padding-top:50px;
	padding-bottom:100px;
}
.edge-heading h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
}
.edge-heading h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.edge-heading h2 {
  font-family: "Marcellus", serif;
  font-size: 36px;
  color: #5E5852;
  font-weight: 500;
  text-align: center;
  padding: 0px 0px 0px 0px;
  margin: 0px;
}
.edge-heading h2 span {
  font-family: "Marcellus", serif;
  font-size: 36px;
  color: #A6907C;
  font-weight: 500;
  text-align: center;
}
.edge-heading h3{
	font-family:'Inter', serif;
	font-size:20px;
	color:#5E5852;
	font-weight:400;
	text-align:center;
	padding:0px 0px 0px 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 h4 {
  font-family:'Inter', serif;
  font-size: 20px;
  padding: 20px 0px 10px 0px;
  text-align:center;
  color:#A6907C;
  font-weight:700;
  height:85px;
}
.moder-frm{
	width:33%;
	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;
}

/* Jiva-Edge Mobile CSS Start */
.jiva-edge2{
	display:none;
}
.jiva-edge2{
	padding-top:50px;
	padding-bottom:30px;
	padding-left:10px;
	padding-right:10px;
}
.edge-heading2 h1{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
}
.edge-heading2 h1 span{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.edge-heading2 h3{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	font-weight:600;
	text-align:center;
	padding:0px 0px 0px 0px;
	margin:0px;
}
.hd-text2{
	font-family:'Inter', serif;
	font-size:15px;
	color:#5E5852;
	font-weight:500;
	text-align:center;
	padding:15px 0px 15px 0px !important;
}
.edge-frm{
	background:#B79E86;
	padding:20px 10px 20px 10px;
	border-radius:15px;
	margin-bottom:12px;
}
.edge-frm2{
	background:#B79E86;
	padding:42px 10px 42px 10px;
	border-radius:15px;
	margin-bottom:11px;
}
.edge-frm3{
	background:#B79E86;
	padding:48px 10px 48px 10px;
	border-radius:15px;
}
.edge-frm-hd{
	font-family:'Inter', serif;
	font-size:15px;
	color:#FCF5EF;
	font-weight:600;
	text-align:center;
	line-height:18px;
	padding:20px 0px 10px 0px;
}
.edge-frm-hd2{
	font-family:'Inter', serif;
	font-size:15px;
	color:#FCF5EF;
	font-weight:600;
	text-align:center;
	line-height:18px;
	padding:10px 0px 10px 0px;
}
.edge-frm-txt{
	font-family:'Inter', serif;
	font-size:12px;
	color:#ffffff;
	font-weight:300;
	text-align:center;
	line-height:15px;
}
.edge-mob-frm{
	padding:15px 20px 20px 20px;
	background:#fcf5ef;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
}
.edge-mob-frm h3{
	font-family: "Marcellus", serif;
	font-size:18px;
	color:#C74A1B;
	font-weight:700;
	padding:0px 0px 0px 0px;
	margin:0px;
	text-align:center;
	border-right:0px solid #ada7a1;
}
.edge-mob-frm .txt{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	line-height:22px;
	font-weight:400;
	padding:5px 0px 0px 0px;
	margin-right:0px;
	text-align:center;
	border-right:0px solid #ada7a1;
}
.img-ridus{
	border-top-left-radius:15px;
	border-top-right-radius:15px
}

/* Jiva-Edge Mobile CSS End */

.padlft-rmve{
	padding-left:7px;
}
.padrght-rmve{
	padding-right:7px;
}
.mrgbtm{
	margin-bottom:0px;
}
.mrgbtm2{
	margin-bottom:13px;
}
.travel-frm{
	position:relative;
	/* top:-56px; */
}
.travel-frm2{
	position:relative;
	/* top:-198px; */
}

/* 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: -90px;
  background:#fcf5ef;
  padding:0px 0px 50px 0px;
}
.jivagrm-content .jivagrm-frame {
  position: relative;
  background:#fdfdfd;
  background-image: url(../images/master-bg2.png);
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */
  border-radius: 30px;
  padding:50px 100px 0px 100px;
}
.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: #DC4D17;
	text-align:right;
	font-weight:700;
	padding:0px 0px 50px 0px;	
}
.learn-about a{
	color: #DC4D17;
}
.learn-about a:hover{
	color: #A6907C;
}
.know-more{
	font-size: 16px;
	font-family:'Inter', serif;
	color:#974229;
	text-align:left;
	font-weight:600;
	padding:0px 0px 20px 0px;
	text-decoration:none;
}
.know-more a{
	color:#974229;
}
.know-more a:hover{
	color:#C74A1B;
}
.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;
}

/* Jivagram Mobile Section Start */
.jivagram-mobile{
	display:none;
}
.jivagrm-mob {
  background-image: url(../images/jivagram-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px 0px 20px 0px;
  position: relative;
}
.jivgrm-mob-logo{
	text-align:center;
}
.jivagram-mob-frm h1{
	color:#DC4D17;
	font-family: "Marcellus", serif;
	font-size:28px;
	font-weight:500;
	text-align:center;
	padding:10px 0px 0px 0px;
	margin:0px;
	line-height:25px;
	text-transform:uppercase;
	letter-spacing:1.0px;
}
.jivagram-mob-our{
	color:#FCF5EF;
	font-family: "Marcellus", serif;
	font-size:23px;
	font-weight:400;
	text-align:center;
	padding:5px 20px 0px 20px;
	line-height:31px;
}
.jivagrm-mob-content {
  /* margin-top: -120px; */
  background:#ffffff;
  padding:0px 0px 70px 0px;
}
.jivagrm-mob-content .jivagrm-mob-frame {
  position: relative;
  background:#fcf5ef;
  background-image: url(../images/master-bg.png);
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */
  border-radius:0px;
  padding:50px 20px 0px 20px;
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
}
.jivagrm-mob-txt {
  font-size: 15px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:center;
  font-weight:500;
  padding:0px 0px 20px 0px;
}
.learn-mob-about{
	font-size: 16px;
	font-family:'Inter', serif;
	color: #C74A1B;
	text-align:center;
	font-weight:700;
	padding:0px 0px 40px 0px;
}
.learn-mob-about a{
	color: #C74A1B;
	text-decoration:none;
}
.learn-mob-about a:hover{
	color: #DC4D17;
	text-decoration:none;
}
.jiva-left-pad{
	padding-left:0px;
}
.jiva-right-pad{
	padding-right:0px;
}
.personalised-mob-frm{
	background:#B79E86;
	padding:30px 20px 30px 20px;
}
.pered-bg{
	background:#5e5852 !important;
	padding:30px 20px 30px 20px;
}
.personalised-mob-frm h3{
	font-size: 18px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:600;
	padding:0px 0px 10px 0px;
	margin:0px;
	line-height:18px;
	/* height:45px; */
}
.generic-mob-txt{
	font-size: 15px;
	font-family:'Inter', serif;
	color: #FCF5EF;
	text-align:center;
	font-weight:400;
	padding:0px 0px 0px 0px;
	margin:0px;
	line-height:22px;
}
.personalsed-mob-frm{
	background:#A6907C;
	height:360px;
	padding:50px 50px 50px 50px;
}
.personalsed-mob-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-mob-txt{
	font-size: 16px;
	font-family:'Inter', serif;
	color: #ffffff;
	text-align:center;
	font-weight:300;
	padding:0px 10px 20px 10px;
	margin:0px;
}
.genric-mob-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-mob-sumer{
	font-size: 28px;
	font-family: "Marcellus", serif;
	color: #B79E86;
	text-align:center;
	font-weight:500;
	padding:30px 0px 10px 0px;
	margin:0px;
	line-height:33px;
	text-transform:none;
}
.perfect-mob-txt{
	font-size: 18px;
	font-family: "Marcellus", serif;
	color: #C74A1B;
	text-align:center;
	font-weight:300;
	padding:0px 20px 30px 20px;
	margin:0px;
	text-transform:none;
}
.book-mob-btn{
	font-family:'Inter', serif;
	font-size:16px;
	background:#C74A1B;
	padding:15px 50px 15px 50px;
	border-radius:10px;
	text-align:center;
	color:#fff;
	font-weight:500;
	text-transform:uppercase;
	margin-bottom:-25px;
	letter-spacing:4.0px;
}
.book-mob-btn a{
	color:#fff;
	text-decoration:none;
}
.book-mob-btn a:hover{
	color:#fff;
	text-decoration:none;
}

/* Healing the World Start */

.healng-wrld-frm{
	background:#fcf5ef;
	padding:40px 0px 50px 0px;
}
.healng-wrld h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
}
.healng-wrld h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.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:0px 0px 0px 0px;
	/* background:#A6907C;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px; */
}
.healng-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:2px solid #ada7a1;
}
.healng-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:2px solid #ada7a1;
}
.healng-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:2px solid #ada7a1;
	cursor:pointer;
}
.healng-read-more a{
	color:#5E5852;
	font-weight:500;
}
.healng-read-more a:hover{
	color:#000000;
}
.healing-world{
	padding:0px 30px 0px 0px;
	margin-right:30px;
	margin-bottom:0px;
	border-right:2px solid #ada7a1;
}
.healing-world2{
	padding:0px 30px 0px 0px;
	margin-right:30px;
	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:165px;
	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;
	cursor:pointer;
}
.healng2-read-more a{
	color:#5E5852;
	font-weight:500;
}
.healng2-read-more a:hover{
	color:#000000;
}
.healng-padbtm{
	padding-bottom:40px;
}

/* Healing the World Mobile Start */

.healng-mobfrm{
	/* background:#fcf5ef;*/
	padding:0px 10px 50px 10px;
	display:none;
}
.healng-mob h1{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
	line-height:35px;
}
.healng-mob h2{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#5E5852;
	font-weight:500;
	text-align:center;
	padding:0px 0px 20px 0px;
	margin:0px;
}
.healng-mob h2 span{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
}
.healng-mob h3{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:10px 10px 20px 10px;
	line-height:22px;
}
.healng-mob-frm{
	padding:0px 10px 20px 10px;
	background:#fcf5ef;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px;
}
.healng-mob-frm h3{
	font-family: "Marcellus", serif;
	font-size:18px;
	color:#C74A1B;
	font-weight:700;
	padding:20px 0px 0px 0px;
	margin:0px;
	text-align:center;
	border-right:0px solid #ada7a1;
}
.healng-mob-frm .txt{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	line-height:22px;
	font-weight:400;
	padding:10px 0px 0px 0px;
	margin-right:0px;
	text-align:center;
	border-right:0px solid #ada7a1;
}
.healng-mob-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;
}
.healng-mob-more a{
	color:#5E5852;
	font-weight:500;
}
.healng-mob-more a:hover{
	color:#000000;
}
.healing-mobworld{
	padding:0px 30px 0px 0px;
	margin-right:30px;
	margin-bottom:0px;
	border-right:2px solid #ada7a1;
}
.healing-mobworld2{
	padding:0px 30px 0px 0px;
	margin-right:30px;
	margin-bottom:0px;
	border-right:0px solid #ada7a1;
}
.healng2-mobtxt-frm{
	padding:0px 0px 0px 0px;
	/* background:#A6907C;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px; */
}
.healng2-mobtxt-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-mobtxt-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-mobread-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-mobread-more a{
	color:#5E5852;
	font-weight:500;
}
.healng2-mobread-more a:hover{
	color:#000000;
}
.healng-mobpadbtm{
	padding-bottom:40px;
}

/* Why Choose Jiva CSS Start */
.why-frm {
	background: #ffffff;
	padding-bottom:50px;
}
.why-img{
	padding-bottom: 80px;
	text-align:center;
}
.why-hd h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	line-height:60px;
	font-weight:500;
	padding:40px 80px 20px 0px;
	margin:0px;	
}
.why-brd{
	border-top:2px solid #dbcfc3;
	margin-right:130px;
}
.why-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;
}
.why-hd h2{
	font-family:'Inter', serif;
	font-size:25px;
	color:#C74A1B;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
}
.why-txt-frm{
	padding-right:150px;
}
.why-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#A6907C;
	line-height:28px;
	font-weight:600;
	padding-bottom:15px;	
}
.why-txt2{
	font-family:'Inter', serif;
	font-size:16px;
	color:#A6907C;
	line-height:26px;
	font-weight:400;
	padding-bottom:0px;
}
.journy-frm {
  padding-bottom:30px;
}
.journy-txt {
  font-size: 15px;
  font-family:'Inter', serif;
  color: #A6907C;
  text-align:left;
  height:140px;
}
.journy-frm h4 {
  font-family:'Inter', serif;
  font-size: 22px;
  padding: 20px 0px 10px 0px;
  text-align:left;
  color:#A6907C;
  font-weight:700;
  margin:0px;
}
.journy-img{
	text-align:left;
}
.journy-brd{
	border-top:2px solid #d3c8be;
	margin-right:130px;
}
.journy-btn{
	padding:15px 0px 0px 0px;
}

/* Why Choose Jiva Mobile CSS Start */
.why-mob-frm {
	display:none;
	background: #fcf5ef;
    background-image: url(../images/stories-bg.png);
	padding:50px 10px 50px 10px;
}
.why-mob-img{
	padding-top: 15px;
	padding-bottom: 30px;
	text-align:center;
}
.why-mob-hd h1{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#A6907C;
	line-height:35px;
	font-weight:500;
	text-align:left;
	padding:10px 0px 20px 0px;
	margin:0px;	
}
.why-mob-brd{
	border-top:2px solid #dbcfc3;
	margin-right:0px;
}
.why-mob-hd h1 span{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#C74A1B;
	line-height:35px;
	font-weight:500;
	text-align:center;	
	padding:0px 0px 20px 0px;
	margin:0px;
}
.why-mob-hd h2{
	font-family:'Inter', serif;
	font-size:25px;
	color:#C74A1B;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
}
.why-mob-txt-frm{
	
}
.why-mob-txt{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	line-height:20px;
	font-weight:400;
	padding-bottom:10px;
	text-align:center;
}
.why-mob-txt2{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	line-height:20px;
	font-weight:400;
	padding-bottom:20px;
	text-align:center;
}
.why-mob-txt3{
	font-family:'Inter', serif;
	font-size:15px;
	color:#A6907C;
	line-height:22px;
	font-weight:600;		
	padding:0px 10px 40px 10px;
	text-align:center;
}
.accordion-body3{
	font-size:15px;
	padding-top:0px;
	color:#A6907C;
	font-weight:400;
}
.accordion3{
	border:0px solid #ddd5ce;
	font-family:'Inter', serif;
	padding:0px 10px 0px 10px;
}
.accordion-item3{
	border:0px;
}
.accordion-item3:first-of-type{	
	border-top-left-radius:15px;
	border-top-right-radius:15px;
	border-bottom: 0px solid #ddd5ce;
	margin-bottom:0px;
}
.accordion-button3:focus{
	border:none;
	box-shadow:none;
	background:none;
}
.accordion-item3:first-of-type .accordion-button3{
	padding:20px 20px 20px 20px;
	background:none;
}
.accordion-item3:not(:first-of-type){
	border-bottom: 2px solid #ddd5ce;
	margin-bottom:0px;
}
.accordion-button3:not(.collapsed){
	box-shadow:none;
}
.accordion-item3:last-of-type .accordion-collapse3{
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
}
.acor3-btm {
    color: #A6907C !important;
    font-weight: 600;
    font-size: 18px !important;
}

/* Embrace Healthier CSS Start */
.embrace-bg {
	background-image: url(../images/embrace-healthier.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding:60px 0px 60px 0px;
	position: relative;
}
.embrace-frm h1{
	color:#A6907C;
	font-family: "Marcellus", serif;
	font-size:48px;
	font-weight:500;
	text-align:left;
	padding:0px 0px 20px 0px;
	margin:0px;
	border-bottom:2px solid #a08670;
}
.embrace-txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#FCF5EF;
	line-height:26px;
	font-weight:400;
	text-align:left;	
	padding:20px 0px 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:20px;
	background:#C74A1B;
	padding:18px 100px 18px 100px;
	border-radius:10px;
	text-align:center;
	color:#fff;
	font-weight:500;
	text-transform:uppercase;
	margin-top:-37px;
	letter-spacing:5.0px;
	position:relative;
}
.stay-btn a{
	color:#fff;
	text-decoration:none;
}
.stay-btn a:hover{
	color:#fff;
	text-decoration:none;
}

/* Embrace Healthier Mobile CSS Start */
.embrace-mob-bg {
	display:none;
	background-image: url(../images/embrace-mob.png);
	background-repeat: no-repeat;
	/* background-size: cover;
	background-position: center center; */
	padding:20px 10px 20px 10px;
	position: relative;
}
.embrace-mob-frm h1{
	color:#A6907C;
	font-family: "Marcellus", serif;
	font-size:18px;
	font-weight:500;
	text-align:left;
	padding:0px 0px 10px 0px;
	margin:0px;
	border-bottom:2px solid #a08670;
}
.embrace-mob-txt{
	font-family:'Inter', serif;
	font-size:15px;
	color:#FCF5EF;
	line-height:20px;
	font-weight:300;
	text-align:left;	
	padding:20px 0px 30px 0px;
}
.book-mob-stay{
	display:none;
	padding:0px 10px 0px 10px;
	background: #fcf5ef;
	background-image: none;
	background-image: url(../images/master-bg.png);
}
.stay-mob-btn{
	font-family:'Inter', serif;
	font-size:16px;
	background:#C74A1B;
	padding:15px 30px 15px 30px;
	border-radius:10px;
	text-align:center;
	color:#fff;
	font-weight:500;
	text-transform:uppercase;
	margin-top:-25px;
	letter-spacing:4.0px;
	position:relative;
}
.stay-mob-btn a{
	color:#fff;
	text-decoration:none;
}
.stay-mob-btn a:hover{
	color:#fff;
	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;	
}

/* Trusted Legacy Mobile CSS Start */
.trusted-mob-frm {
	display:none;
	background: #fcf5ef;
	background-image: none;
	background-image: url(../images/master-bg.png);
	padding:70px 10px 70px 10px;
}
.trusted-mob-img{
	padding-bottom: 0px;
	text-align:center;
}
.trusted-mob-hd h1{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#A6907C;
	line-height:35px;
	font-weight:500;
	padding:0px 0px 20px 0px;
	margin:0px;
	text-align:center;
}
.trusted-mob-hd h1 span{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#C74A1B;
	line-height:35px;
	font-weight:500;
	padding-bottom:0px;
	padding-right:0px;
	margin:0px;
	text-align:center;
}
.trusted-mob-hd h2{
	font-family:'Inter', serif;
	font-size:25px;
	color:#C74A1B;
	line-height:28px;
	font-weight:400;
	padding-bottom:20px;
}
.trusted-mob-txt-frm{
	padding-right:0px;
}
.trusted-mob-txt{
	font-family:'Inter', serif;
	font-size:15px;
	color:#5E5852;
	line-height:22px;
	font-weight:500;
	text-align:center;
	padding-bottom:15px;	
}
.trusted-mob-txt2{
	font-family: "Marcellus", serif;
	font-size:15px;
	color:#C74A1B;
	line-height:22px;
	font-weight:400;
	padding-bottom:15px;
	text-align:center;	
}

/* Contact CSS Start */
.contact {
	background-image: url(../images/embrace-healthier.png);
  /*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 225px 20px 0px;
	margin: 0px;
}
.contact-txt{
	font-family:'Inter', serif;
	font-size:20px;
	color:#ffffff;
	line-height:28px;
	font-weight:300;
	padding: 0px 300px 20px 0px;
}
/*
.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 60px 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;
}
.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:#ddd1c6;
	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: 1px solid #f6f6f6;
	border-radius: .375rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height:44px;
	margin-bottom:20px;
}
.mob-select{
	color:#5E5852;
	font-family:'Inter', serif;
	background:#fff;
	border: var(--bs-border-width) solid var(--bs-border-color);	
	margin-bottom:0px;
}
.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;
}
::-webkit-input-placeholder { color:#fff; }
::-moz-placeholder { color:#fff; } /* firefox 19+ */
:-ms-input-placeholder { color:#fff; } /* ie */
input:-moz-placeholder { color:#fff; }

.intr-txt{
	color:#5E5852;
}
/* Contact Mobile CSS Start */
.contact-mob {
  display:none;
  background:#fcf5ef;
  background-image: url(../images/embark-form-bg.png);
  background-repeat: no-repeat;
  padding: 60px 10px 40px 10px;
  position: relative;
}
.contact .section-mob-heading h2 {
  color: #fff;
}
.form-mob-txt{
	font-family:'Inter', serif;
	font-size:14px;
	color:#ffffff;
	line-height:23px;
	font-weight:300;
	padding-bottom:25px;
}
.contact-mob-content h1{
	font-family: "Marcellus", serif;
	font-size: 28px;
	color: #ffffff;
	line-height: 35px;
	font-weight: 500;
	padding: 0px 0px 20px 0px;
	margin: 0px;
}
.contact-mob-txt{
	font-family:'Inter', serif;
	font-size:14px;
	color:#ffffff;
	line-height:23px;
	font-weight:300;
	padding: 0px 0px 30px 0px;
}
/*
.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}
*/
.contact-mob-content #contact-mob-form {
  margin-right:0px;
  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:0px;
}
.contact-mob-content #contact-mob-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;
}
.form-mob-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-mob-content button {
  font-family:'Inter', serif;
  background: #C74A1B;
  border-radius: 10px;
  padding: 15px 70px 15px 70px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 4.0px;
  font-weight: 500;
  transition: all .5s;
  margin-top: -28px;
  position: absolute;
  margin-left:0px;
}
.contact-mob-content #contact-mob-form button:hover {
  background-color: #f35525;
}

/* Healing the World Section Start */
.healng-wrld-frm{
	background:#fcf5ef;
	padding:40px 0px 50px 0px;
}
.healng-wrld h1{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
}
.healng-wrld h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.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:0px 0px 0px 0px;
	/* background:#A6907C;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px; */
}
.healng-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:2px solid #ada7a1;
}
.healng-txt-frm .txt{
	font-family:'Inter', serif;
	font-size:16px;
	color:#A6907C;
	line-height:22px;
	font-weight:300;
	height:160px;
	padding:10px 30px 0px 0px;
	margin-right:30px;
	border-right:2px solid #ada7a1;
}
/* Healing the World Section End */

/* 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:20px 0px 80px 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: 56.25%; */
  position: relative;
}
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
/* Stories of Health & Healing Section End */

/* Stories of Health & Healing Mobile Section Start */
.stories-mob-frm{
	display:none;
	background:#fcf5ef;
	background-image: url(../images/stories-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding:40px 10px 50px 10px;
	position: relative;
}
.health-mob-bg{
	background:#ffffff;
	padding:10px;
	margin:0px;
	border-radius:15px;
}
.stories-mob-health h1{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 10px 0px;
	margin:0px;
}
.stories-mob-health h1 span{
	font-family: "Marcellus", serif;
	font-size:28px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
}
.stories-mob-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-mob-health h2 span{
	font-family: "Marcellus", serif;
	font-size:36px;
	color:#A6907C;
	font-weight:500;
	text-align:center;
}
.stories-mob-health h3{
	font-family:'Inter', serif;
	font-size:14px;
	color:#5E5852;
	font-weight:300;
	text-align:center;
	padding:0px 0px 30px 10px;
	margin:0px;
}
.stories-mob-txt-frm{
	padding:0px 0px 0px 0px;
}
.stories-mob-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-mob-img{	
	border-top-right-radius:20px;
	border-top-left-radius:20px;
}
.stories-mob-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-mob-container {
  overflow: hidden;
  padding-top: 56.25%; /* 16:9*/
  position: relative;
  border-radius:15px;
}
.iframe-mob-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
.name-story{
	font-size:20px;
	font-family:'Inter', serif;
	color:#5E5852;
	font-weight:600;
	padding:10px 0px 0px 0px;
	text-align:center;
}
/* Stories of Health & Healing Mobile 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:#A6907C;
	font-weight:500;
	text-align:center;
	padding:0px 0px 40px 0px;
	margin:0px;
}
.awards h1 span{
	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;
	color:#5E5852;
}

/* Awards Mobile Section Start */

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

/* FAQ Section Start */

.faq-frm{
	background:#ffffff;
	padding:0px 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:center;
	padding:0px 0px 40px 0px;
	margin:0px;
}
.faq h1 span{
	font-family: "Marcellus", serif;
	font-size:48px;
	color:#C74A1B;
	font-weight:500;
	text-align:center;
	padding:0px 0px 40px 0px;
	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;
}
/*Key Service Mobile Start*/
.accordion2{
	border:0px solid #ddd5ce;
	border-radius:5px;
	font-family:'Inter', serif;
}
.accordion-item2{
	border:0px;
}
.accordion-item2:first-of-type{
	border-radius: 0px;
	border-bottom: 0px solid #ddd5ce;
	margin-bottom:0px;
}
.accordion-button2:focus{
	border:none;
	box-shadow:none;
}
.accordion-item2:first-of-type .accordion-button2{
	border-radius:0px;
	padding-left:0px;
	padding-right:0px;
}
.accordion-item2:not(:first-of-type){
	border-radius: 0px;
	border: 0px solid #ddd5ce;
	margin-bottom:0px;
}
.accordion-button2:not(.collapsed){
	box-shadow:none;
}
.acor-btm{
	color:#C74A1B !important;
	font-weight:700;
	font-size:18px !important;
}
.accordion-button2{
	color:#C74A1B;
	font-weight:700;
	font-size:18px;
	border-radius: 0px;
	padding-left:0px;
	padding-right:0px;
	border-bottom: 2px solid #ddd5ce;
}
.accordion-button2:not(.collapsed){
	background:none;
	color:#A6907C;
	font-weight:700;
	font-size:25px;
}
.accordion-body2{
	font-size:15px;
	color:#5E5852;
	padding:10px 20px 10px 43px;
	border-bottom: 0px solid #ddd5ce;
	/*border-top:2px solid #ddd5ce;
	border-bottom:2px solid #ddd5ce; */
}
.accordion-item2:last-of-type .accordion-button2.collapsed{
	border-radius:0px;
}
/* FAQ 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:20px 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:uppercase;
	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;	
}
.adres{
	padding:0px 0px 0px 0px;	
}

/* Top Button Appointment CSS Start */

.header-area .main-nav .nav li.contact-bg a {
    background: #C74A1B;
    color: #fff;
	border-radius:30px;
    padding: 0px 15px 0px 15px;
}
.header-area .main-nav .nav li.contact-bg a:hover{
    background: #521a09;
    color: #fff;
}
.modal-header{
	padding:10px 15px 10px 15px;
}
.modal-title{
	font-family:'Inter', serif;
	font-size:20px;
	color:#C74A1B;
	font-weight:500;
}
.modal-dialog{
	margin:50px auto;
	width:350px;
}
.modal-content{
	background:url(../images/master-bg.png);
	background:#fcf5ef;
}
label{
	padding-bottom:5px;
	font-weight:600;
	color:#5E5852;
	font-size:16px;
	font-family:'Inter', serif;
}
.form-control{
	font-family:'Inter', serif;
	font-size:14px;
	height:44px;
}
.form-group{
	margin-bottom:15px;
}
.cross{
	background:none;
	border:0px;
	font-weight:bold;
	font-size:20px;
}
.btn-sucess {
	font-family:'Inter', serif;
	font-size:16px;
	line-height: 22px;
	font-weight: 500;
	letter-spacing:0.5px;
	padding:8px 20px 8px 20px;
	text-transform: none;
  --bs-btn-color: #fff;
  --bs-btn-bg: #C74A1B;
  --bs-btn-border-color: #C74A1B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #C74A1B;
  --bs-btn-hover-border-color: #C74A1B;
}
.btn:hover {
  color: #fff;
  background-color:#B79E86;
  border-color: #B79E86;
}

/* Top Button Appointment CSS End */


/* Footer Map CSS Start */

.map-frm{
	padding:50px 0px 80px 0px;
}
.padrove{
	padding:0px !important;
}
.about-clinics {
  padding-bottom: 50px 
}
.about-clinics .about-cl-row p {
  font-size: 16px;
  line-height: 1.375rem;
  margin-bottom: 30px 
}
.about-clinics .about-cl-row ul {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0;
  list-style-position: outside;
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 25px 
}
.about-clinics .about-cl-row ol {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0;
  list-style-position: outside;
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 25px 
}
.about-clinics .about-cl-row ol li {
  margin-bottom: 20px;
  line-height: 1.1875rem 
}
.about-clinics .about-cl-row ol li strong {
  display: block;
  margin-bottom: 5px 
}
.about-clinics .about-cl-row ol li strong {
  display: block;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 18px;
  line-height: 1.6rem 
}
.clinic-address-map-container {
  position: relative 
}
.clinic-address-map-container .clinic-container {
  position: absolute;
  top: 73px;
  right: 17%;
  width: 419px;
  padding: 50px 39px 50px 50px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 10px 0 rgba(0, 23, 79, .05) 
}
.clinic-address-map-container .clinic-container .clinic-title-label {
  font-family:'Inter', serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.33;
  margin: 0 0 30px 2px;
  letter-spacing: normal;
  color:#5E5852;
}
.clinic-address-map-container .clinic-container .clinic-address-label,
.clinic-address-map-container .clinic-container .clinic-contact-number-label,
.clinic-address-map-container .clinic-container .clinic-email-label,
.clinic-address-map-container .clinic-container .clinic-working-hours-label {
  margin-bottom: 30px 
}
.clinic-address-map-container .clinic-container .clinic-address-label .field__label,
.clinic-address-map-container .clinic-container .clinic-contact-number-label .field__label,
.clinic-address-map-container .clinic-container .clinic-email-label .field__label,
.clinic-address-map-container .clinic-container .clinic-working-hours-label .field__label {
  font-family:'Inter', serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.58;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color:#5E5852; 
}
.clinic-address-map-container .clinic-container .clinic-address-label .field__item,
.clinic-address-map-container .clinic-container .clinic-contact-number-label .field__item,
.clinic-address-map-container .clinic-container .clinic-email-label .field__item,
.clinic-address-map-container .clinic-container .clinic-working-hours-label .field__item {
  font-family:'Inter', serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #4b576d 
}
.clinic-address-map-container .clinic-container .clinic-address-label .field__item a,
.clinic-address-map-container .clinic-container .clinic-contact-number-label .field__item a,
.clinic-address-map-container .clinic-container .clinic-email-label .field__item a,
.clinic-address-map-container .clinic-container .clinic-working-hours-label .field__item a {
  font-family:'Inter', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  margin: 10px 0 0;
  letter-spacing: normal;
  color:#5E5852;
}
.clinic-address-map-container .clinic-container .clinic-address-label p {
  font-family:'Inter', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  margin: 0;
  letter-spacing: normal;
  color:#5E5852; 
}
.clinic-address-map-container .clinic-container .clinic-working-hours-label p {
  font-family:'Inter', serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  margin: 0;
  letter-spacing: normal;
  color: #4b576d 
}
.wrap-timeings {
  display: flex;
  justify-content: space-between 
}
.clinic-google-map-label {
  display: flex;
  align-items: center;
  gap: 50px 
}
.clinic-address-map-container .clinic-container .clinic-google-map-label .direction-link a {
  font-family:'Inter', serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.58;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 11px 15px 11px 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  border-radius:5px;
  background: #bb3810 url(../images/icons/icon-location-white.svg) center left 15px no-repeat 
}
/* Footer Map CSS End */

/* right Side Call Email Whatsup CSS Start */
.fixed-social{ position: fixed; right: 0px; top: 80%; 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;}

/* right Side Call Email Whatsup CSS End */

/* Social Icon Right Side Sticky CSS Start */
.sticky-icon{
	z-index:1;
	position:fixed;
	top:80%;
	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;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:20px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;
}
.sticky-icon a:hover{
	color:#FFF;
	transform:translate(0px,0px);
}
.sticky-icon a:hover i{
	transform:rotate(360deg);
}
.stickbtns-grp {
  width:100%;
  max-width:300px;
  /*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:100%;
   /*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;
  letter-spacing:0.9px;
}
.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);}*/
.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: 28%;
  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:#FCF5EF;
	font-size:16px;
}
.readmore-btn {
    display: block;
    color:#FCF5EF;
    cursor: pointer;
    margin-top: 0px;
}
.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;
}
.readmore-btns {
    display: block;
    color:#C74A1B;
    cursor: pointer;
    margin-top: 0px;
	font-size:12px;
	text-transform:none;
}
.full-text4 {
    color:#5E5852;
	font-size:12px;
}
.full-text4,
.text-wrapper4 p:first-child {
    display: inline;
}

.readmor-btns {
    display: block;
    color:#C74A1B;
    cursor: pointer;
    margin-top: 0px;
	font-size:12px;
	text-transform:none;
}
.full-text5 {
    color:#ffffff;
	font-size:12px;
}
.full-text5,
.text-wrapper5 p:first-child {
    display: inline;
}
/* Read More CSS End */

/* Responsive Style */

body {
  overflow-x: hidden;
}
.key-service-frm2{
	display:none;
}
.therapies-frm2{
	display:none;
}

@media (max-width: 767px) {	
	.owl-nav{
		top:50%;
	}
	.owl-nav .owl-prev i, .owl-nav .owl-next i{
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 15px;
	}
	.owl-nav .owl-prev i {
	  position: absolute;
	  left: -15px;
	  background:#fff;
	  color:#000;
	}
	.owl-nav .owl-next i {
	  position: absolute;
	  right: 10px;
	  background:#fff;
	  color:#000;
	}
	.header-area .main-nav .logo h1 {
		line-height: 80px !important;
	}
	.header-area .main-nav .logo {
		padding-left:15px;
	}
	.header-area .main-nav .nav li:last-child {
		display: block;
	}
	.header-area .main-nav .nav li:last-child a{
		color:#1e1e1e;
		font-weight:500 !important;
	}
	.moder-frm{
		width:100%;
	}
	.key-txt-frm h3{
		height:auto;
		font-size:20px;
	}
	.key-txt-frm .txt{
		height:auto;
	}
	.padbtm{
		padding-bottom:20px;
	}
	.read-more{
		padding:0px;
	}
	.featured{
		padding-top:30px;
		padding-bottom:20px;
		padding-left:0px;
        padding-right:0px;
	}
	.patient-saw{
		display:none;
		margin-top:0px;
	}
	.patient-saw2{
		display:block;
		padding:20px 0px 0px 0px;
	}
	.padfrm{
		padding:0px 22px 0px 22px;
	}
	.key-service-frm{
		padding-top:50px;
	}
	.key-service-frm2{
		display:block;
		padding:40px 10px 50px 10px;
	}
	.therapie-txt-frm {
		padding-right:0px;
	}
	.jiva-edge{
		padding-top:50px;
	}
	.edge h4{
		height:auto;
	}
	.jivagrm-content .jivagrm-frame{
		padding:50px 20px 0px 20px;
	}
	.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:10px 0px 10px 0px;
		margin:0px;
		border-right:0px;
		text-align:center;
	}
	.healng-txt-frm .txt{
		padding:0px 20px 0px 20px;
		margin:0px;
		border-right:0px;
		text-align:center;
		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-brd{
		margin-right:0px;
	}
	.why-txt-frm{
		padding:0px;
	}
	.why-img{
		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;
	}
	.stay-btn{
		padding:20px;
		width:100%;
	}
	.featured .left-image img{
		padding:0px;
	}
	.main-banner .item h2{
		font-size:21px;
		line-height:25px;
		text-align:left;
	}
	.main-banner .item{
		padding:30px 50px 30px 50px;
		height:165px;
	}
	.story-icon{
		margin-top:15px;
		width:30%;
		float:right;
	}
	.story-left-txt{
		width: 100%;
		font-size:15px;
		line-height:22px;
		text-align:center;
	}
	.featured .section-heading{
		margin-top:0px !important;
		padding-bottom:20px;
		border-bottom:2px solid #d1c3b5;
	}
	.main-banner .item span.category{
		text-align:left;
		padding:5px 0px;
		font-size:14px;
		font-weight:600;
	}
	.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;
	}
	.desktop-story{
		display:none;
	}
	.mob-story{
		display:block;
	}
	.our-story{
		font-size:18px;
		margin-left:0px;
		margin-top:0px;
		padding:0px 0px 0px 0px;
		font-weight:700;
		border-top:0px;
	}
	.story-txt{
		padding-left:0px;
		font-weight:500;
		line-height:20px;
		font-size:15px;
	}
	.story-btn{
		padding-left:0px;
	}
	.main-banner .owl-nav .owl-prev i, .main-banner .owl-nav .owl-next i{
		width:25px;
		height:25px;
		font-size:13px;
		line-height:27px;
	}
	.main-banner .owl-nav .owl-prev i{
		left:10px;
	}
	.main-banner .owl-nav .owl-next i{
		right:10px;
	}
	.go-top {
		bottom:33%;
	}
	.sticky-icon{
		top:55%;
	}
	.main-banner .owl-nav{
		top:60%;
	}
	.text-wrapper2{
		display:none;
	}
	.readmore-btn2 {
		display:none;
	}
	.text-wrapper3{
		display:block;
	}
	.full-text3 {
		color:#5E5852;
		font-size:16px;
	}
	.readmore-btn3 {
		display: block;
		color:#5E5852;
		cursor: pointer;
		margin-top: 0px;
		padding:0px 0px 20px 0px;
	}
	.full-text3,
	.text-wrapper3 p:first-child {
		display: inline;
	}
	.key-service h1{
		font-size:28px;
		text-align:center;
		font-weight:500;
		margin:0px;
	}
	.key-service h1 span{
		font-size:28px;
		font-weight:500;
	}
	.key-service h2{
		font-size:18px;
		text-align:left;
		font-weight:500;
	}
	.key-service h2 span{
		font-size:18px;
		text-align:left;
		font-weight:500;
	}
	.key-service h3{
		font-size:15px;
		text-align:center;
		font-weight:500;
		line-height:22px;
	}
	.therapies-frm{
		display:none;
	}
	.therapies-frm2{
		display:block;
		padding-top:30px;
		padding-left:10px;
		padding-right:10px;
		padding-bottom:50px;
		margin-top:0px;
		background: #fcf5ef;
		background-image: none;
		background-image: none;
		/* background-image: url(../images/master-bg.png); */
	}
	.therapie-hd h1{
		font-size:27px;
		text-align:center;
		font-weight:700;
		font-family:'Inter', serif;
		padding-bottom:10px;
		color:#C74A1B;
	}
	.therapie-hd h2{
		font-size:18px;
		color:#C74A1B;
		text-align:center;
		padding-bottom:0px;
		line-height:22px;
	}
	.therapie-txt{
		text-align:center;
		line-height:23px;
		font-size:15px;
		font-weight:500;
		padding-bottom:30px;
	}
	.faq-frm{
		padding:0px 10px 50px 10px;
	}
	.faq h1{
		font-size:28px;
		padding:0px 0px 15px 0px;
		text-align:center;
		font-weight:600;
	}
	.faq h1 span{
		font-size:28px;
	}
	.awards-frm{
		display:none;
	}
	.awards2-frm{
		padding:50px 10px 20px 10px;
		display:block;
	}
	.jiva-edge{
		display:none;
	}
	.jivagram-desktop{
		display:none;
	}
	.jiva-edge2{
		display:block;
		padding-bottom:50px;
	}
	.jivagram-mobile{
		display:block;
		/* top:-120px; */
	}
	.healng-wrld-frm{
		display:none;
	}
	.healng-mobfrm{
		display:block;
	}
	.why-frm{
		display:none;
	}
	.why-mob-frm{
		display:block;
		padding-top:0px;
	}
	.embrace-bg{
		display:none;
	}
	.embrace-mob-bg{
		display:block;
	}
	.book-stay{
		display:none;
	}
	.book-mob-stay{
		display:block;
	}
	.trusted-frm {
		display:none;
	}
	.jivagrm-mob-content .jivagrm-mob-frame{
		padding:20px 20px 0px 20px;
	}
	.trusted-mob-frm {
		display:block;
		padding:10px 10px 0px 10px;
	}
	.contact{
		display:none;
	}	
	.contact-mob{
		display:block;
	}
	.stories-frm{
		background:#fff;
		padding:0px 10px 70px 10px;
	}
	.stories-health h3{
		padding-bottom:10px;
		font-size:18px;
	}
	.stories-health h1{
		font-size:28px;
	}
	.stories-health h1 span{
		font-size:28px;
	}
	.stories-mob-frm{
		display:block;
	}
	.name-story{
		font-size:18px;
	}
	.accordion-button{
		font-weight:700;
		font-size:18px;
	}	
	.accordion-button:not(.collapsed){
		font-weight:700;
		font-size:18px;
	}
	.accordion-body{
		font-size:14px;
	}
	.go-top::after {
		display:none;
	}
	.go-top-text{
		display:none;
	}
	.go-top{
		display:none;
	}
	.sticky-icon{
		display:none;
	}
	.story-icon{
		display:none;
	}
	.therapies-imgs p{
		top:80px;
	}
	.embrace-mob-frm h1{
		color:#FCF5EF;
	}
	.dropdown:hover > .dropdown-menu, .dropend:hover > .dropdown-menu{
		display: block;
		margin-top: -0.875em;
		margin-left: 0.125em;
		width:99% !important;
		text-align:center;
	}
	.fixed-social {
		width: 30px;
		margin-top: -77.5px;
		right:12px;
		display:none;
	}
	.fixed-social a {
		font-size: 12px;
		padding: 8px 0px;
	}
	.fixed-social a span {
		display: none;
	}
	.map-frm{
		padding:60px 0px 0px 0px;
	}
	.doctor-frm{
		padding:30px 0px 50px 0px;
		margin:0px 0px 0px 0px;
	}
	.doctor-hd h1{
		font-size:28px;
		text-align:left;
		line-height:33px;
		padding-bottom:10px;
	}
	.doctor-hd h1 span{
		font-size:28px;
		text-align:center;
	}
	.doctor-hd{
		padding:30px 10px 0px 10px;
	}
	.doctor-hd h2{
		font-size:15px;
		text-align:center;
		padding-bottom:0px;
		line-height:23px;
	}
	.how-arrow{
		padding-left:10px;
		padding-right:10px;
	}
	.doctor-what{
		padding-left:25px;
		padding-right:25px;
	}
	.doctor-txt2{
		padding-left:25px;
		padding-right:25px;
	}
	.doctor-duration{
		padding-left:25px;
		padding-right:25px;
	}
	
	.clinic-address-map-container .clinic-container {
		position: relative;
		top: 0;
		right: 20px;
		left: 20px;
		width: calc(100% - 40px);
		margin-top: -200px;
		margin-bottom: 50px;
		padding: 30px 30px 60px 30px;
	}
	.mob-map{
		height:450px;
	}
	.splide__arrow{
		width:25px !important;
		height:25px !important;
		background:#fff !important;
		opacity:inherit !important;
	}
	.splide__arrow svg{
		fill:#000 !important;
		font-size:10px;
	}
	.splide__arrow--prev {
		margin-left: -5px;
		left:-0px !important;
	}
	.splide__arrow--next {
		margin-right: -5px;
		
		right:-0px !important;
	}
	.we-desktop{
		display:none;
	}
	.we-mobile{
		display:block;
	}
	
}

@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;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 3px;
  }
  .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:88%;
	}
	.personalised-frm{
		height:302px;
		padding:20px 20px 20px 20px;
	}
	.personalsed-frm{
		height:302px;
		padding:20px 20px 20px 20px;
	}
}
@media (min-width: 1367px) and (max-width: 1511px) {
	.header-area .main-nav ul.nav{
		flex-basis:88%;
	}
	.header-area .main-nav .nav li a{
		font-size:14px;
	}
}