/**
* Bootstrap: - v4.7.1
*/

/* General */

body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family:"Roboto", sans-serif;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  /* right: 0px; */
  bottom: 0px;
  z-index: 996;
  background:red;
  width: 25.6%;
  color:#fff;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2194f7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

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

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* Top Bar */
#topbar {
  height: 60px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  z-index: 996;
}
#topbar.topbar-scrolled {
  top: -60px;
}
#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  text-decoration: underline;
}
#topbar .contact-info i {
  color: #c74a1b;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .cta {
  background: transparent;
}
#topbar .cta a {
  color: #fff;
  background: #c74a1b;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}
#topbar .cta a:hover {
  background: #f1a40a;
}

/* Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  /* background:#e5e5e5; */
 /* background: rgba(0, 0, 0, 0.1);
  top: 60px; */
}
#header.header-scrolled {
  background: white;
  top: 0;
  height: 50px;
}
#header.header-scrolled .logo img {
  display: none;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 60px;
  margin-top:10px;
}

/* logo2 use start*/

.logo2 {
  display: none;
}
#header.header-scrolled .logo2 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  width: 100%;
}
#header.header-scrolled .logo2 a {
  color: #fff;
}
#header.header-scrolled .logo2 img {
  max-height: 33px;
  margin-top: 0px;
}
#header.header-scrolled .mobile-nav-toggle {
  color: #ffffff;
  font-size: 32px;
  height: 30px;
}
#header.header-scrolled .bi-list::before {
  color: #ffffff;
}

/* logo2 use end */

.bi-list::before{
	color:red;
}
.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

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

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

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

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

/* Hero Section */
#hero {
  width: 100%;
  height: 97vh;
  overflow: hidden;
  position: relative;
  /* background: url("../img/banner.png") top center no-repeat; */
  /* background-size: cover;
  position: relative;*/
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}
#hero:before {
  content: "";
  /* background: #c7c7c7; */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .btn-get-started {
  font-family:"Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #c74a1b;
}
#hero .btn-get-started:hover {
  background: #c74a1b;
  color: #fff;
  text-decoration: none;
}
.carousel-control-prev{
	left:-12px;
}
.carousel-control-next{
	right:-12px;
}
.carousel-control-next, .carousel-control-prev{
	top:-300px;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% 100%;
	background-color:#000;
}

@media (min-width:360px) {
  #hero {
    height:629px;
  }
  .icon-boxes {
    padding-top: 86px !important;
  }
  .exper-colm2{
	  width:48% !important;
  }
  .exper-colm4{
	  width:48% !important;
  }
  .exper-colm6{
	  width:48% !important;
  }
  .icon-boxes .title{
	  font-size:20px !important;
  }
.carousel-control-next, .carousel-control-prev{
	top:-425px !important;
  }
  
}

@media (min-width: 375px) {
  #hero {
    height:655px;
  }
  .icon-boxes {
    padding-top: 85px !important;
  }
.carousel-control-next, .carousel-control-prev{
	top:-396px !important;
  }
}
@media (min-width: 384px) {
  #hero{
	 height: 670px;
  }
  .icon-boxes {
    padding-top: 85px !important;
  }
  .carousel-control-next, .carousel-control-prev{
	top:-380px !important;
  }
}
@media (min-width: 390px) {
  #hero{
	 height: 677px;
    padding: 0px 0; 
  }
  .icon-boxes {
    padding-top: 85px !important;
  }
  .carousel-control-next, .carousel-control-prev{
	top:-368px !important;
  }
}
@media (min-width: 412px) {
  #hero{
	height: 720px;
  }
  .icon-boxes {
    padding-top: 86px !important;
  }
  .buton-box2 {
		padding: 20px 50px 50px 50px !important;
	}
  .case-buton-box {
		padding: 30px 50px 10px 50px !important;
	}
  .carousel-control-next, .carousel-control-prev{
	top:-324px !important;
  }
}

@media (min-width: 414px) {
  #hero {
   height: 723px;
  }
  .icon-boxes {
    padding-top: 85px !important;
  }
  .buton-box2 {
		padding: 20px 50px 50px 50px !important;
	}
  .case-buton-box {
		padding: 30px 50px 10px 50px !important;
	}
  .carousel-control-next, .carousel-control-prev{
	top:-320px !important;
  }
}
@media (min-width: 428px) {
  #hero {
    height: 724px;
  }
  .icon-boxes {
    padding-top: 30px !important;
    /* padding-top: 86px !important; */
  }
  .buton-box2 {
		padding: 10px 50px 50px 50px !important;
	}
  .case-buton-box {
		padding: 30px 50px 10px 50px !important;
	}
  .carousel-control-next, .carousel-control-prev{
	top:-300px !important;
  }
  
}


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #ffffff;
  padding:0px 0px 30px 0px;
}

/* Ayurvedic Infertility */
.frmhigt{
	height:30px;
}
.section-title1 {
  text-align: center;
  padding-bottom: 30px;
  padding:10px 20px 0px 20px;
}
.section-title1 h1 {
  font-size: 26px;
  font-family:'Patua One', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: red;
  line-height:30px;
}
.title-head{
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  padding:0px 0px 0px 0px;
  text-align:center;
  line-height:24px;
}
.hindi-frm{
	background:#FF7D00;
	margin:30px 0px 0px 0px;
	border-radius:20px;
}
.hindi-txt{
	padding:10px;
	color:#fff;
	font-size:16px;
	line-height:27px;
}
.four-factors{
	color:#585858;
	font-size:14px;
	line-height:20px;
	text-align:justify;
	padding:20px 10px 20px 10px;
}
.four-factors2{
	color:#585858;
	font-size:14px;
	line-height:20px;
	text-align:left;
	padding:20px 10px 20px 10px;
}
.fact-frm{
	padding:0px;
}
.section-title {
  margin-bottom: 0;
  padding:0px 0px 30px 0px;
  font-weight:600;
  font-size:18px;
}
.why-enroll{
	font-size:18px !important;
	font-weight:500  !important;
	color:red  !important;
	text-align:left;
	padding-bottom:0px;
	line-height:25px;
}
.why-enrol-txt{
	padding-bottom:10px;
}
.section-title {
  text-align: center;
  padding-bottom: 0px;
  padding:0px 20px 30px 20px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  font-family:'Patua One', sans-serif;
  text-transform: none;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: red;
}
.section-title p {
  margin-bottom: 0;
  padding:0px 20px 30px 20px;
  font-weight:600;
  font-size:18px;
}
.padrmove{
	padding-left:0px;
	padding-right:0px;
}

.about {
  padding: 140px 0;
  /* background: url("../img/about-bg.png") top center no-repeat; */
  position: relative;
}
.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .container {
  position: relative;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0880e8;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family:"Roboto", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #0880e8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0880e8;
}
.about .content .btn-learn-more:hover {
  background: #0880e8;
  color: #fff;
  text-decoration: none;
}
.about {
	padding: 0px 0px 0px 0px;
}

/* top button css */

.doctor-today{
	padding:0px 40px 0px 40px;
}
.talk-frm{
	padding:0px 0px 10px 0px;
}
.icon-boxes {
  padding-top: 65px;
  position: relative;
  z-index: 100;
  padding-bottom:0px;
}
.icon-boxes .icon-box {
  padding: 12px 10px 7px 10px;
  position: relative;
  overflow: hidden;
  background: red;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  color:#fff !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-45%);
}
.icon-boxes .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}
.icon-boxes .icon i {
  font-size: 36px;
  line-height: 1;
  color: #c74a1b;
}
.icon-boxes .title {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 22px;
  color:#fff;
  text-align:center;
}
.icon-boxes .title a {
  color: #fff;
}
.icon-boxes .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #777777;
}

/* Almost Miraculous */

.why-us {
  background: #fff;
  padding: 50px 0px 0px 0px;
}
.why-us .content {
  padding:0px 20px 0px 20px;
}
.why-us .content h1 {
  font-weight: 500;
  font-size: 28px;
  font-family:'Patua One', sans-serif;
  text-align:center;
  color:red;
  margin-bottom:0px;
  line-height:35px;
  text-transform:uppercase;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
	color: #444444;
	padding: 0px 0px 0px 0px;
	font-weight: 500;
	font-size: 18px;
	text-align:center;
	line-height:24px;
	margin-bottom:5px;
}
.border-line{
	text-align:center;
}
.miraculous-text{
	font-size: 14px;
    color: red;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
	text-align:center;
}
.columbg{
	padding:0px 30px 50px 30px;	
	background:#ffffff;
	margin-top:50px;
}
.colum-frm{
	margin:-40px 0px 0px 0px;	
}
.colum1{
	width:31%;
	float:left;
	height:100px;
	font-size:16px;
	background:red;
	border-radius:10px;
	padding:10px;
	color:#ffffff;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:16px;
	font-weight:bold;
}
.colum2{
	width:31%;
	float:left;
	height:100px;
	font-size:16px;
	background:#FF7D00;
	border-radius:10px;
	margin-left:10px;
	margin-right:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:16px;
	font-weight:bold;
}
.colum3{
	width:31%;
	float:left;
	height:100px;
	font-size:16px;
	background:#FF7D00;
	border-radius:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:16px;
	font-weight:bold;
}
.colum4{
	width:31%;
	float:left;
	height:100px;
	font-size:16px;
	background:red;
	border-radius:10px;
	margin-left:10px;
	margin-right:10px;
	padding:10px;
	color:#ffffff;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:16px;
	font-weight:bold;
}
.month{
	font-size:18px;
	color:red;
	line-height:22px;
	text-align:center;
	padding:0px 20px 0px 20px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Doctor Chauhan and Experience colum Section */

.experience-bg {
  background: #fff;
  padding: 40px 0px 0px 0px;
}
.exper-columbg{
	padding:0px 30px 56px 30px;	
	background:#e0e0e0;
	margin-top:50px;
}
.exper-colfrm{
	margin:-85px 0px 0px 0px;	
}
.exp-txt1{
	margin-top:23px;
	color:#fff;
}
.exp-txt2{
	margin-top:23px;
	color:#fff;
}
.exp-txt3{
	margin-top:23px;
	color:#fff;
}
.exp-txt4{
	margin-top:23px;
	color:#fff;
}
.exp-txt5{
	margin-top:23px;
	color:#fff;
}
.exp-txt6{
	margin-top:23px;
	color:#fff;
}

.exper-colm1{
	width:48%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	padding:10px;
	color:#ffffff;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.exper-colm2{
	width:49%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	margin-left:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.exper-colm3{
	width:48%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.exper-colm4{
	width:49%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	margin-left:10px;
	padding:10px;
	color:#ffffff;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.exper-colm5{
	width:48%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.exper-colm6{
	width:49%;
	float:left;
	height:170px;
	font-size:16px;
	background:red;
	border-radius:10px;
	margin-left:10px;
	padding:10px;
	color:red;
	text-transform:uppercase;
	margin-bottom:10px;
	line-height:19px;
	font-weight:500;
}
.chauhan-frm{
    padding: 0px;
}


/* Are You Good Fit Program*/

.fit-program {
	padding: 5px 0px 0px 0px;
	background:red;
}
.padfrm-program {
	padding: 20px 30px 0px 30px;
}
.program-hd{
	font-weight: 500;
	font-size: 28px;
	font-family:'Patua One', sans-serif;
	text-align: center;
	color: #ffffff;
	margin-bottom: 0px;
	line-height: 35px;
	text-transform: uppercase;
}
.month-progrm{
	color:#ffffff;
	font-size:22px;
	text-align:center;
	line-height:30px;
	font-weight:bold;
}
.progrm-txt{
	color:#ffffff;
	font-size:14px;
	text-align:center;
	line-height:20px;
	font-weight:normal;
	padding: 10px 10px 10px 10px;
}
.health-img{
	padding:10px 0px 0px 0px;
}
.buton-box {
    padding: 10px 50px 10px 50px;
}
.case-buton-box {
    padding: 30px 40px 10px 40px;
}
.box-txt {
    background: red;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    color: #fff;
	font-size:20px;
	text-align:center;
}
.box-txt a{
    color: #fff;
	text-align:center;
}
.box-txt a:hover{
    color: #fff;
	text-align:center;
}
.program-slide{
	padding: 10px 0px 0px 0px;
	color:#fff;
}

/* Owl Carousel */

.owl-prev {
  background: url('../../../../res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png') left center no-repeat;
  height: 140px;
  position: absolute;
  top: 16%;
  width: 35px;
  z-index: 1000;
  left: -11%;
  cursor: pointer;
  color: transparent;
  margin-top:-27px;
  border-bottom-right-radius:10px;
  border-top-right-radius:10px;
}

.owl-next {
  background: url('../../../../res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png') right center no-repeat;
  height: 140px;
  position: absolute;
  top: 16%;
  width: 35px;
  z-index: 1000;
  right: -11%;
  cursor: pointer;
  color: transparent;
  margin-top: -27px;
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}

.owl-prev:hover,
.owl-next:hover {
  opacity: 0.5;
}

.img-pad{
	padding:30px 20px 0px 20px !important;
}

/* Owl Carousel */


/* Testimonial Section start */

.testimonial-program {
	padding: 60px 0px 0px 0px;
	background:#fff;
}
.test-frm-program {
	padding: 20px 0px 0px 0px;
}
.testimonial-program {
	padding: 20px 30px 0px 30px;
}
.testimonial-hd{
	font-weight: 500;
	font-size: 28px;
	font-family:'Patua One', sans-serif;
	text-align: center;
	color: red;
	margin-bottom: 0px;
	line-height: 35px;
	text-transform: uppercase;
}
.test-program-slide{
	padding: 20px 0px 0px 0px;
	color:#fff;
}
.patient-hd{
	font-size:20px;
	color:red;
	line-height:25px;
	font-weight:600;
	text-align:left;
	padding:10px 0px 10px 0px;
}
.patient-cont{
	font-size:16px;
	color:#444444;
	line-height:24px;
	font-weight:500;
	text-align:left;
}
.patient-name{
	font-size:18px;
	color:#4c4b4b;
	line-height:23px;
	text-align:left;
	font-weight:600;
	padding:10px 0px 10px 0px;
}

/* Testimonial Section End */

.buton-box2 {
    padding: 20px 40px 50px 40px;
}
.box-txt2 {
    background: red;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    color: #fff;
	font-size:20px;
	text-align:center;
}
.box-txt2 a{
    color: #fff;
	text-align:center;
}
.box-txt2 a:hover{
    color: #fff;
	text-align:center;
}

.case-btn {
    background: #7d3219;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    color: #fff;
	font-size:20px;
	text-align:center;
}
.case-btn a{
    color: #fff;
	text-align:center;
}
.case-btn a:hover{
    color: #fff;
	text-align:center;
}
.case-btn2 {
    color: #7d3219;
	font-size:20px;
	text-align:center;
	font-weight:bold;
	text-transform:uppercase;
}
.case-btn2 a{
    color: #7d3219;
	text-align:center;
	border-bottom:4px solid #918f8f;
}
.case-btn2 a:hover{
    color: #000;
	text-align:center;
}


/* Frequently Asked Questions */
/*
.faq .faq-list {
  padding: 0 100px;
}
*/
.faq .faq-list ul {
  padding: 0px 20px 0px 20px;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 0px 0px 10px 0px;
  background: #fff;
  position: relative;
  border-bottom:2px solid darkgrey;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  padding:0px;
  outline: none;
  cursor: pointer;
  color:red;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #B5654C;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  color:#000;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size:14px;
  line-height:20px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: red;
}
.faq .faq-list a.collapsed:hover {
  color: red;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/* Footer */

.map-icon{
	float:left;
}
.address-txt{
	padding-left:50px;
	padding-bottom:10px;
}
#footer {
  color: #fff;
  font-size: 16px;
}
#footer .footer-top {
  background: red;
  padding: 20px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 0px;
  padding:0px 30px 40px 80px;
}
#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family:"Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: red;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #c74a1b;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 5px;
  border-bottom:1px solid #fff;
  margin-bottom:15px;
  text-align:center;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5db1f9;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 0px;
  padding:0px 32px 0px 32px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

.foter-logo{
	padding:0px 0px 40px 0px;
	text-align:center;
}
/* meet team */

.team{
	padding: 50px 0px 0px 0px;
	margin-top:0px;
}
.team-head h2{
	font-weight: 500;
    font-size: 28px;
	font-family:'Patua One', sans-serif;
    text-align: left;
    color: red;
    padding-bottom: 0px;
    margin-bottom: 0px;
	line-height:35px;
	padding: 0px 20px 200px 20px;
	text-transform:uppercase;
}
.carousel-bg{
	background:#ececec;
	padding: 20px 30px 60px 30px;
}
.photo-frm{
	margin-top:-180px;
}
.carousel-item{
	padding:17px 17px 25px 17px;
	border-radius:10px;
	background:#fff;
	border:0px solid #c4c4c4l;
	box-shadow: 3px 3px 18px 3px #888888;
	height:auto;
}
.doctor-head{
	font-size:22px;
	color:#91513d;
	font-weight:600;
	line-height:25px;
	padding:20px 0px 0px 0px;
}
.doctor-name{
	font-size:24px;
	color:red;
	font-weight:600;
	line-height:25px;
	padding:30px 0px 0px 0px;	
}
.doctor-exp{
	font-size:18px;
	color:#246b76;
	font-weight:600;
	line-height:25px;
	padding:10px 0px 0px 0px;
}
.doctor-txt{
	font-size:14px;
	color:#8d8a8a;
	font-weight:500;
	line-height:22px;
	padding:10px 0px 0px 0px;	
}


/* Comparison */

.comparison{
	padding: 60px 20px 0px 20px;
	margin-top:0px;
}
.comparison-head h2{
	font-weight: 500;
    font-size: 28px;
	font-family:'Patua One', sans-serif;
    text-align: center;
    color: red;
    padding-bottom: 0px;
    margin-bottom: 0px;
	line-height:35px;
	text-transform:uppercase;
}
.treat{
	color: #B5654C;
	padding: 20px 20px 5px 20px;
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	line-height: 20px;
	margin-bottom: 5px;
}
.jivagram-txt{
	font-size: 17px;
    color: #444444;
    line-height: 24px;
    text-align: justify;
	/* padding: 10px 0px 100px 0px; */
	padding: 10px 0px 0px 0px;
}
/*
.effect-slider-bg{
	background:red;
	padding:30px 30px 0px 30px;
	margin-top:30px;
	height:500px;
	position:relative;
}
*/
/*
.slide-frm{
	background:#ffffff;
	border:1px solid #eaeaea;
	padding:15px;
	border-radius:10px;
	margin-top:-135px;
	min-height:450px;
	
}
*/
.effect-slider-bg{
	padding:30px 30px 0px 30px;
}
.slide-frm1{
	background:#ffffff;
	padding:30px 15px 30px 15px;
	border-radius:10px;
	margin-bottom:30px;
	
}
.slide-frm2{
	background:#FF7D00;
	padding:30px 15px 30px 15px;
	border-radius:10px;
	margin-bottom:30px;
	
}
.home-card-img1{
	width:60px;
	height:40px;
	padding-right:10px;
}
.home-card-img2{
	width:65px;
	height:40px;
	padding-right:10px;
}
.home-card-img3{
	width:59px;
	height:45px;
	padding-right:10px;
}
.home-card-img4{
	width:64px;
	height:40px;
	padding-right:10px;
}
.home-card-img5{
	width:54px;
	height:40px;
	padding-right:10px;
}
.home-card-img6{
	width:49px;
	height:38px;
	padding-right:10px;
}
.home-card-img7{
	width:64px;
	height:40px;
	padding-right:10px;
}
.cardtxt6{
	width:250px;
}
.case-hd{
	text-transform:none;
}
p{
	margin-bottom:0.5rem;
}
.case-img{
	width:12%;
	height:25px;
	float:left;
}
.case-img2{
	width:28%;
	float:left;
}
.case-heading{
	font-size:20px;
	color:red;
	font-weight:600;
	border-bottom:1px solid #000;
	line-height:30px;
	margin-bottom:13px;
}
.case-head2{	
	font-size:14px;
	color:#B5654C;
	font-weight:600;
	text-transform:uppercase;
}
.solution-txt{
	padding-left:20px;
	font-weight:600;
	line-height:25px;
	padding-bottom:0px;
	margin-bottom:0px;
}
.joyful{
	padding-bottom:15px;
	font-weight:500;
	line-height:20px;
}
.case-txt{
	font-size:14px !important;
	padding:25px 0px 0px 0px !important;
	line-height:20px;
}
.case-txt2{
	font-size:14px !important;
	padding:11px 0px 0px 0px !important;
	line-height:20px;
}
.case-txt-frm{
	/*height:1400px; */
	/*height:1750px;*/
}
.result{
	font-size: 22px;
    color: #000;
    font-weight: bold;
    border-bottom: 1px solid #000;
    /* width: 65%; */
    margin-left: 85px;
    padding-bottom: 3px;
	margin-bottom:3px;
}
.result-frm{
	background:#d4e7e7;
	padding:20px 10px 20px 10px;
	border-radius:5px;
}
.treat-began{
	font-size:16px;
	color:#B5654C;
	font-weight:600;
}
.result-txt{
	padding:0px 10px 0px 10px;
}

.reslt-box-frm{
	background: #d4e7e7;
    padding: 15px 20px 15px 20px;
    border-radius: 5px;
	margin-top:10px;
}
.reslt-box-txt{
	font-size:15px !important;
	padding:0px 0px 0px 0px !important;
	line-height:20px;
	color:#000;
}
.reslt-box-icon{
	width:15%;
	float:left;
	height:60px;
}
.formula-btm{
	font-size:16px !important;
	padding:16px 10px 0px 10px !important;
}
.home-card-frm {
    display: flex;
    height: 72px;
    width: 100%;
    flex-shrink: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    border-radius: 0.75rem;
    --tw-bg-opacity: 1;
    background-color: rgba(237,233,254,var(--tw-bg-opacity));
    padding: 2rem 0.9rem;
    --tw-text-opacity: 1;
    color: rgba(76,29,149,var(--tw-text-opacity));
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
	font-size:18px;
	line-height:24px;
	margin-bottom:10px;
}
.backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
}
.backdrop-filter {
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.slide-hd{
	color: red;
    padding:20px 0px 0px 0px;
    font-weight: 600;
    font-size: 22px;
    text-align: left;
    line-height: 25px;
}
.slide-txt{
	color: red;
    padding:20px 0px 50px 0px;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
    line-height: 20px;
	height:360px;
}
.home-demo .item {
    background: #fff;
}
.home-demo h2 {
    color: #FFF;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

/* Start popup modal form */
.accordion-button:not(.collapsed){
	color:#424240;
	font-weight:600;
	background:#ffffff;
	letter-spacing:0px;
}
.accordion-button:focus{
	border-color:#df7f39;
	box-shadow:0 0 0 .25rem rgba(223,127,57,.25);
}
.modal{
	top:60px;
}

.modal-content{
	border-radius:10px;
}
.modal-title{
	font-size:22px !important;
	color:#ffffff;
	font-weight:700;
	text-align:left;
	line-height:25px;
}
.modal-footer{
	text-align:center;
	display:block;
}
.modal-header{
	background:red;	
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	text-align:center;
	height:60px;
}

.form-control{
	border-radius:20px;
	margin-bottom:10px;
	font-size:15px;
	border:1px solid #6d6b6b;
}
label{
	font-size: 13px;
    padding-bottom: 10px;
    padding-left: 12px;
}
.btn-success{
	background:red;
	color:#ffffff;
	border-radius:10px;
	width:50%;
	border:1px solid #fff;
}
.btn-success:hover {
    color: #fff;
    background-color: red;
    border-color: red;
}
.btn-check:focus+.btn-success, .btn-success:focus{
	color: #fff;
    background-color: red !important;
    border-color: red !important;
    box-shadow: 0 0 0 0.25rem;
}

.modal-header .btn-close{
	margin:-4.7rem -0.9rem -.5rem -1.5rem;
}

.btn-close{
	opacity:2.5;
}
.btn-close:hover{
	opacity:2.5;
}
.close{
	width:30px;
	height:30px;
	margin-top: -30px;
	margin-right: -17px;
	border-radius: 20px;
	border:1px solid #fff;
}
.close2{
	width:30px;
	height:30px;
	margin-top: -30px;
	margin-right: -17px;
	border-radius: 20px;
	border:1px solid #fff;
}
.popup-text{
	text-align:center;
}

/* End popup modal form */

@media (min-width: 428px) and (max-width: 1920px){
	.icon-boxes {
		padding-top: 20px !important;
	}
}
@media (min-width: 320px) and (max-width: 480px){
	.back-to-top {
		width:100%;
		right:0px;
	}
}

 @media (min-width: 1024px) and (max-width: 1920px){
	#hero {
		height: 780px;
		text-align:center;
	}
	.desktop1{
		width:428px;
		margin:auto;
	}
	.desktopscrol{
		width:428px;
		margin:auto;
	}
	.desktopnav{
		display:none;
	}
	.desktop2{
		width:428px;
		margin:auto;
	}
	.mrgrmove{
		margin-top:0px;
	}
	.desktop3{
		width:428px;
		margin:auto;
	}
	.desktop4{
		width:428px;
		margin:auto;
	}
	.desktop5{
		width:428px;
		margin:auto;
	}
	.desktop6{
		width:428px;
		margin:auto;
	}
	.desktop7{
		width:428px;
		margin:auto;
		margin-top:0px;
	}
	.desktop8{
		width:428px;
		margin:auto;
	}
	.desktop9{
		width:428px;
		margin:auto;
		padding:0px 0px 10px 0px !important;
	}
	.section-title{
		padding-top:60px;
	}
	.deskpad{		
		width:428px;
		margin:auto;
		padding-left:0px !important;
	}
	.desktop10{
		width:428px;
		margin:auto;
	}
	.desktop11{
		width:428px;
		margin:auto;
	}
	.desktop12{
		width:428px;
		margin:auto;
	}
	.desktop13{
		width:428px;
		margin:auto;
	}
	.doctor-today {
		padding: 0px 20px 0px 20px;
	}
	.buton-box2{
		padding:20px 50px 0px 50px !important;
	}
	.modal.show .modal-dialog{
		width:420px;
		margin:auto;
	}
	.close{
		margin-top:-30px;
	}
	.slide-txt{
		height:325px;
	}
	
}.call {
  width: 100%;
  height: auto;
  padding: 30px 0px;
  background: #a75f4a;
  text-align: center;
}

.callnow h3 a {
  color: #fff;
  font-size: 40px;
  text-decoration: underline;
}
.mobile-call {
  width: 100%;
  height: auto;
  background: red;
  background: red;
  float: left;
  position: fixed;
  bottom: 0%;
  z-index: 1199;
  text-align: center;
  display: none;
}
.whatsapp-mobile i {
  font-size: 18px;
  color: white;
}
.call-mobile {
  color: #ffffff;
}
.whatsapp-mobile {
  width: 33.3%;
  padding: 8px 10px;
  text-align: center;
  background: #2bb741;
  float: left;
  display: block;
}
.call-mobile {
  width: 33.3%;
  padding: 8px 10px;
  text-align: center;
  background: red;
  float: left;
  display: block;
}
.call-mobile i {
  font-size: 18px;
}

.mobile-call p {
  color: #fff;
  font-size: 12px;
  margin-bottom: 0px;
}
.whatsapp-mobile i {
  font-size: 18px;
}
.book-mobile i {
  font-size: 18px;
}
.book-mobile {
  width: 33.3%;
  padding: 8px 10px;
  text-align: center;
  background: red;
  float: left;
  display: block;
}
.mobile-call p {
  color: #fff;
  font-size: 12px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 600px) {
  .mobile-call {
    display: block;
  }
}




