/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family:"Open Sans",sans-serif;
	color:#000;
}
a {
	color:#9b00dc;
	text-decoration:none;
}
a:hover {
	color:#3291e6;
	text-decoration:none;
}
h1,h2,h3,h4,h5,h6 {
	font-family:"Raleway",sans-serif;
}
/*--------------------------------------------------------------
# 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 #9b00dc;
	border-top-color:#f5ddff;
	border-radius:50%;
	width:60px;
	height:60px;
	animation:animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
	0% {
	transform:rotate(0deg);
}
100% {
	transform:rotate(360deg);
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position:fixed;
	visibility:hidden;
	opacity:0;
	right:15px;
	bottom:15px;
	z-index:996;
	background:#9b00dc;
	width:40px;
	height:40px;
	border-radius:4px;
	transition:all 0.4s;
}
.back-to-top i {
	font-size:28px;
	color:#fff;
	line-height:0;
}
.back-to-top:hover {
	background:#cf4eff;
	color:#fff;
}
.back-to-top.active {
	visibility:visible;
	opacity:1;
}
.datepicker-dropdown {
	padding:20px !important;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background:#fff;
	height:40px;
	font-size:14px;
	transition:all 0.5s;
	z-index:996;
}
#topbar.topbar-scrolled {
	top:-40px;
}
#topbar .contact-info a {
	line-height:1;
	color:#444444;
	transition:0.3s;
}
#topbar .contact-info a:hover {
	color:#9b00dc;
}
#topbar .contact-info i {
	color:#9b00dc;
	padding-right:4px;
	margin-left:15px;
	line-height:0;
}
#topbar .contact-info i:first-child {
	margin-left:0;
}
#topbar .social-links a {
	color:#7a7a7a;
	padding-left:15px;
	display:inline-block;
	line-height:1px;
	transition:0.3s;
}
#topbar .social-links a:hover {
	color:#9b00dc;
}
#topbar .social-links a:first-child {
	border-left:0;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition:all 0.5s;
	z-index:997;
	padding:20px 0;
}
.header.header-scrolled {
	background:#fff;
	padding:15px 0;
	box-shadow:0px 2px 20px rgba(1,41,112,0.1);
}
.header .logo {
	line-height:0;
}
.header .logo img {
	max-height:50px;
	margin-right:6px;
}
.header .logo span {
	font-size:30px;
	font-weight:700;
	letter-spacing:1px;
	color:#959595;
	font-family:"Nunito",sans-serif;
	margin-top:3px;
}
/**
* Appointment Button *
*/
.appointment-btn {
	margin-left:25px !important;
	background:#9b00dc !important;
	color:#fff !important;
	border-radius:50px !important;
	padding:8px 15px !important;
	white-space:nowrap !important;
	transition:0.3s !important;
	font-size:14px !important;
	display:inline-block !important;
}
.appointment-btn:hover {
	background:#e5f319 !important;
	color:#666 !important;
}

@media (max-width:990px) {
	.appointment-btn {
		margin:0 15px 0 0 !important;
		padding:5px 10px !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:8px 0 8px 20px;
}
.navbar a,.navbar a:focus {
	display:flex;
	align-items:center;
	justify-content:space-between;
	font-size:14px;
	color:#2c4964;
	white-space:nowrap;
	transition:0.3s;
	padding:5px 2px;
}
.navbar a i,.navbar a:focus i {
	font-size:12px;
	line-height:0;
	margin-left:5px;
}
.navbar a:hover,.navbar .active,.navbar .active:focus,.navbar li:hover > a {
	color:#9b00dc;
	border-color:#9b00dc;
	}
.navbar .dropdown ul {
	display:block;
	position:absolute;
	left:20px;
	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;
}
.navbar .dropdown ul li {
	min-width:200px;
}
.navbar .dropdown ul a {
	padding:10px 20px;
	font-size:14px;
	font-weight:500;
	text-transform:none;
	color:#082744;
	border:none;
}
.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:#9b00dc;
}
.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:#2c4964;
	font-size:28px;
	cursor:pointer;
	display:none;
	line-height:0;
	transition:0.5s;
}

.mobile-nav-toggle.bi-x {
	color:#fff;
}

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

@media (max-width:430px) {
	
	.navbar .mob_corr {
		display:none !important;
	}
	
	.navbar ul .mob_corr2{
		display:block !important;
	}
}


.navbar-mobile {
	position:fixed;
	overflow:hidden;
	top:0;
	right:0;
	left:0;
	bottom:0;
	background:rgba(28,47,65,0.9);
	transition:0.3s;
	z-index:999;
}
.navbar-mobile .mobile-nav-toggle {
	position:absolute;
	top:15px;
	right:15px;
}
.navbar-mobile ul {
	display:block;
	position:absolute;
	top:55px;
	right:15px;
	bottom:15px;
	left:15px;
	padding:10px 0;
	background-color:#fff;
	overflow-y:auto;
	transition:0.3s;
}
.navbar-mobile > ul > li {
	padding:0;
}
.navbar-mobile a,.navbar-mobile a:focus {
	padding:10px 20px;
	font-size:15px;
	color:#2c4964;
	border:none;
}
.navbar-mobile a:hover,.navbar-mobile .active,.navbar-mobile li:hover > a {
	color:#9b00dc;
}
.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:#9b00dc;
}
.navbar-mobile .dropdown > .dropdown-active {
	display:block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width:100%;
	height:100vh;
	background:url(../img/hero-bg.png) top left no-repeat;
	background-size:cover;
}

.hero h1 {
	margin:0;
	font-size:48px;
	font-weight:700;
	color:#012970;
}
.hero h2 {
	color:#444444;
	margin:15px 0 0 0;
	font-size:20px;
}
.hero .btn-get-started {
	margin-top:30px;
	line-height:0;
	padding:15px 40px;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
}
.hero .btn-get-started:hover {
	background:#e5f319;
	color:#666;
}
.hero .btn-get-started span {
	font-weight:600;
	font-size:16px;
	letter-spacing:1px;
}
.hero .btn-get-started i {
	margin-left:5px;
	font-size:18px;
	transition:0.3s;
}
.hero .btn-get-started:hover i {
	transform:translateX(5px);
}
.hero .hero-img {
	text-align:right;
}



@media (min-width:1024px) {
	.hero {
	background-attachment:fixed;
	}
}

@media (max-width:991px) {
	.hero {
	height:auto;
	padding:120px 0 60px 0;
	}
	.hero .hero-img {
		text-align:center;
		margin-top:60px;
	}
	.hero .hero-img img {
		width:80%;
	}
}

@media (max-width:768px) {
	.hero {
	text-align:center;
	}
	.hero h1 {
		font-size:32px;
	}
	.hero h2 {
		font-size:24px;
	}
	.hero .hero-img img {
		width:100%;
	}
}

/*--------------------------------------------------------------
# Hero Migraine Section
--------------------------------------------------------------*/
.hero_migraine {
  width: 100%;
  min-height: 40vh;
  padding: 40px 0;
  display: flex;
  align-items: center;
  background: url("../img/migraine/migraine_bg.png") bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  background-color:#f5ddff;
  margin-top:120px;
}

.hero_migraine:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero_migraine .container {
  position: relative;
}

.hero_migraine h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  color: #012970;
}

.hero_migraine h1 span {
  color: var(--accent-color);
}

.hero_migraine p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 20px 0 20px 0;
  font-size: 17px;
  font-weight: 400;
}

.hero_migraine .btn-get-started {
  color: #fff;
  background: #9b00dc;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero_migraine .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero_migraine .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero_migraine .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero_migraine .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero_migraine .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero_migraine .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 768px) {
  .hero_migraine h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .hero_migraine p {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 30px;
  }

}

@media (max-width: 640px) {
  .hero_migraine h1 {
    font-size: 24px;
    line-height: 24px;
  }

  .hero_migraine p {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 30px;
  }

  .hero_migraine .btn-get-started,
  .hero_migraine .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 524px) {
  .hero_migraine h1 {
    font-size: 26px;
    line-height: 26px;
  }

  .hero_migraine p {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 30px;
  }

}



@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
	}
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding:20px 0;
	overflow:hidden;
}
.section-bg {
	background-color:#FFFFFF;
}
.section-bg-filled {
	background-color:#f4deff !important;
}
.section-title {
	text-align:center;
	padding-bottom:10px;
}
.section-title2 {
	text-align:left;
	padding-bottom:10px;
}
.section-title h1 {
	font-size:26px;
	font-weight:bold;
	margin-bottom:20px;
	padding-bottom:20px;
	position:relative;
	color:#012970 !important;
}
.section-title h1::before {
	content:"";
	position:absolute;
	display:block;
	width:120px;
	height:1px;
	background:#ddd;
	bottom:1px;
	left:calc(50% - 60px);
}
.section-title h1::after {
	content:"";
	position:absolute;
	display:block;
	width:40px;
	height:3px;
	background:#9b00dc;
	bottom:0;
	left:calc(50% - 20px);
}
.section-title h1 {
	font-size:26px;
	font-weight:bold;
	margin-bottom:20px;
	padding-bottom:20px;
	position:relative;
	color:#012970 !important;
}
.section-title h1::before {
	content:"";
	position:absolute;
	display:block;
	width:120px;
	height:1px;
	background:#ddd;
	bottom:1px;
	left:calc(50% - 60px);
}
.section-title h1::after {
	content:"";
	position:absolute;
	display:block;
	width:40px;
	height:3px;
	background:#9b00dc;
	bottom:0;
	left:calc(50% - 20px);
}
.section-title h2 {
	font-size:26px;
	font-weight:bold;
	margin-bottom:20px;
	padding-bottom:20px;
	position:relative;
	color:#012970 !important;
}
.section-title h2::before {
	content:"";
	position:absolute;
	display:block;
	width:120px;
	height:1px;
	background:#ddd;
	bottom:1px;
	left:calc(50% - 60px);
}
.section-title h2::after {
	content:"";
	position:absolute;
	display:block;
	width:40px;
	height:3px;
	background:#9b00dc;
	bottom:0;
	left:calc(50% - 20px);
}
.section-title p {
	margin-bottom:0;
}
.section-sub-title {
	background-color:#f6f91d;
	padding:5px 0 2px 10px !important;
	margin-top:30px;
}
.section-sub-title2 {
	margin-top:50px;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding:20px 0;
	background-color:#f5ddff;
	min-height:40px;
	margin-top:120px;
}
@media (max-width:992px) {
	.breadcrumbs {
	margin-top:100px;
}
}.breadcrumbs h2 {
	font-size:24px;
	font-weight:300;
	margin:0;
}
@media (max-width:992px) {
	.breadcrumbs h2 {
	margin:0 0 10px 0;
}
}.breadcrumbs ol {
	display:flex;
	flex-wrap:wrap;
	list-style:none;
	padding:0;
	margin:0;
	font-size:14px;
}
.breadcrumbs ol li + li {
	padding-left:10px;
}
.breadcrumbs ol li + li::before {
	display:inline-block;
	padding-right:10px;
	color:#6c757d;
	content:"/";
}
@media (max-width:768px) {
	.breadcrumbs .d-flex {
	display:block !important;
}
.breadcrumbs ol {
	display:block;
}
.breadcrumbs ol li {
	display:inline-block;
}
}


/* corrector */

@media (max-width:430px) {
	
	.breadcrumbs_mobile_hide {
		display: none;
	}
	
	.breadcrumbs_mobile_correct{
	
		margin-top:30px;
	}
}

/*--------------------------------------------------------------
# Get Matched
--------------------------------------------------------------*/
.get-matched {
	padding:30px 0;
}
.get-matched .content h3 {
	font-weight:700;
	font-size:34px;
	margin-bottom:30px;
}
.get-matched .content p {
	margin-bottom:30px;
}
.get-matched .content .more-btn {
	display:inline-block;
	background:rgba(255,255,255,0.2);
	padding:6px 30px 8px 30px;
	color:#fff;
	border-radius:50px;
	transition:all ease-in-out 0.4s;
}
.get-matched .content .more-btn i {
	font-size:14px;
}
.get-matched .content .more-btn:hover {
	color:#9b00dc;
	background:#fff;
}
.get-matched .icon-boxes .icon-box {
	text-align:center;
	border-radius:10px;
	background:#fff;
	/*
	box-shadow:0px 2px 15px rgba(0,0,0,0.1);
	*/
	padding:25px 25px;
	width:100%;
}
.get-matched .icon-boxes .icon-box i {
	font-size:40px;
	color:#9b00dc;
	margin-bottom:30px;
}
.get-matched .icon-boxes .icon-box h4 {
	font-size:20px;
	font-weight:700;
	margin:0 0 30px 0;
}
.get-matched .icon-boxes .icon-box p {
	font-size:15px;
	color:#222222;
}
.get-matched .probel {
	margin-bottom:40px;
}


.get-matched .image-wrapper {
  position: relative;
}

.get-matched .image-wrapper img {
  width: 100%;
  height: auto;
}

.get-matched .image-wrapper figcaption {
  width: 43%;
  position: absolute;
  top: 50%;
  right:7%;
  transform: translateY(-50%);
  text-align: left;
  font-size: 0.8em;
  color: #000;
  border:0px solid black;
}

.get-matched .image-wrapper .lst a {
	width:100%;
	font-weight:500;
	font-size:12px;
	display:inline-block;
	padding:7px 7px;
	margin:10px 0;
	border-radius:50px;
	transition:0.5s;
	color:#fff !important;
	background:#9b00dc;
	text-align:center;
	white-space:nowrap;
}

.get-matched .image-wrapper .lst a:hover {
	background:#e5f319;
	color:#666 !important;
}

.get-matched .pbtn{
	text-align:center;
	margin-bottom:50px;
}	
.get-matched .pbtn a {
	font-weight:500;
	display:inline-block;
	padding:12px 35px;
	margin:20px 0;
	border-radius:50px;
	transition:0.5s;
	color:#fff !important;
	background:#9b00dc;
}
.get-matched .pbtn a:hover {
	background:#e5f319;
	color:#666 !important;
}



@media (max-width:767px) {

	.get-matched .icon-boxes .icon-box {
		padding:15px 15px !important;
	}
}

@media (max-width:460px) {
	
	.get-matched .image-wrapper figcaption {
	  font-size: 0.6em;
	}
	.get-matched .image-wrapper .lst a {
		font-size: 1em !important;
	}

}

@media (max-width:375px) {
	
	.get-matched .image-wrapper figcaption {
	  font-size: 0.5em;
	}
	.get-matched .image-wrapper .lst a:hover {
		font-size: 1em !important;
	}

}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
	font-size:18px;
	color:#4b7dab;
	margin-bottom:15px;
}
.about .icon-boxes h3 {
	font-size:28px;
	font-weight:700;
	color:#2c4964;
	margin-bottom:15px;
}
.about .icon-box {
	margin-top:40px;
}
.about .icon-box .icon {
	float:left;
	display:flex;
	align-items:center;
	justify-content:center;
	width:64px;
	height:64px;
	border:2px solid #8dc2f1;
	border-radius:50px;
	transition:0.5s;
}
.about .icon-box .icon i {
	color:#9b00dc;
	font-size:32px;
}
.about .icon-box:hover .icon {
	background:#9b00dc;
	border-color:#9b00dc;
}
.about .icon-box:hover .icon i {
	color:#fff;
}
.about .icon-box .title {
	margin-left:85px;
	font-weight:700;
	margin-bottom:10px;
	font-size:18px;
}
.about .icon-box .title a {
	color:#343a40;
	transition:0.3s;
}
.about .icon-box .title a:hover {
	color:#9b00dc;
}
.about .icon-box .description {
	margin-left:85px;
	line-height:24px;
	font-size:14px;
}
.about .video-box {
	background:url("../img/therapist.jpg") center center no-repeat;
	background-size:cover;
	min-height: 500px;
}
.about .play-btn {
	width:94px;
	height:94px;
	background:radial-gradient(#9b00dc 50%,rgba(25,119,204,0.4) 52%);
	border-radius:50%;
	display:block;
	position:absolute;
	left:calc(50% - 47px);
	top:calc(50% - 47px);
	overflow:hidden;
}
.about .play-btn::after {
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	transform:translateX(-40%) translateY(-50%);
	width:0;
	height:0;
	border-top:10px solid transparent;
	border-bottom:10px solid transparent;
	border-left:15px solid #fff;
	z-index:100;
	transition:all 400ms cubic-bezier(0.55,0.055,0.675,0.19);
}
.about .play-btn::before {
	content:"";
	position:absolute;
	width:120px;
	height:120px;
	animation-delay:0s;
	animation:pulsate-btn 2s;
	animation-direction:forwards;
	animation-iteration-count:infinite;
	animation-timing-function:steps;
	opacity:1;
	border-radius:50%;
	border:5px solid rgba(25,119,204,0.7);
	top:-15%;
	left:-15%;
	background:rgba(198,16,0,0);
}
.about .play-btn:hover::after {
	border-left:15px solid #9b00dc;
	transform:scale(20);
}
.about .play-btn:hover::before {
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	transform:translateX(-40%) translateY(-50%);
	width:0;
	height:0;
	border:none;
	border-top:10px solid transparent;
	border-bottom:10px solid transparent;
	border-left:15px solid #fff;
	z-index:200;
	animation:none;
	border-radius:0;
}
@keyframes pulsate-btn {
	0% {
	transform:scale(0.6,0.6);
	opacity:1;
}
100% {
	transform:scale(1,1);
	opacity:0;
}
}
.about .pbtn a {
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:12px 35px;
	margin:20px 0;
	border-radius:50px;
	transition:0.5s;
	color:#fff !important;
	background:#9b00dc;
}
.about .pbtn a:hover {
	background:#e5f319;
	color:#666 !important;
}
.about .prof {
	margin-top:10px;
}
.abdoc .title {
	margin:25px 0 10px 0;
}

.about .probel {
	margin-bottom:40px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	width:100%;
	text-align:center;
	border:1px solid #f5ddff;
	background:#f5ddff;
	padding:20px 10px;
	transition:all ease-in-out 0.3s;
}

.services-correct .icon-box {
	padding:10px 10px !important;
}

.services .departs .icon-box {
	border:1px solid #FFF;
	background:#FFF;

}
.services .icon-box .icon {
	margin:0 auto;
	width:64px;
	height:64px;
	background:#9b00dc;
	border-radius:5px;
	transition:all 0.3s ease-out 0s;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	transform-style:preserve-3d;
}

.services .icon-box .icon2 {
	margin:0 auto;
	width:100px;
	height:100px;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	transform-style:preserve-3d;
}

.services .tmBox .icon {

	margin-top:25px !important;
}


.services .icon-box .icon i {
	color:#fff;
	font-size:28px;
}
.services .icon-box .icon::before {
	position:absolute;
	content:"";
	left:-8px;
	top:-8px;
	height:100%;
	width:100%;
	background:#F6F91D;
	border-radius:5px;
	transition:all 0.3s ease-out 0s;
	transform:translateZ(-1px);
}

.services .icon-box h3 {
	font-weight:700;
	margin-bottom:0px;
	font-size:22px;
	padding:0 29px !important;
}
.services .icon-box h4 {
	font-weight:700;
	margin-bottom:0px;
	font-size:22px;
	padding:0 29px !important;
}

@media (max-width:1400px) {
	
	.services .icon-box h3 {
	padding:0 6px !important;
	}
	.services .icon-box h4 {
	padding:0 6px !important;
	}
}

@media (max-width:1199px) {
	
	.services .icon-box h3 {
	
		font-size:18px !important;
		padding:0 5px!important;
	}
	.services .icon-box h4 {
	
		font-size:18px !important;
		padding:0 5px!important;
	}
}

@media (max-width:767px) {
	
	.services .icon-box h3 {
	
		font-size:20px !important;
		padding:0 9px!important;
	}
	.services .icon-box h4 {
	
		font-size:20px !important;
		padding:0 9px!important;
	}
}

.crd-title {
	color:#324864;
}

.services .icon-box h4 a {
	color:#2c4964;
}
.services .icon-box ul li {
	line-height:24px;
	font-size:13px;
	margin-bottom:0;
}

.services .tmBox ul li {
	line-height:24px;
	font-size:17px !important;
	margin-bottom:0;
	padding:0 10px;
}







.services .blokw {
	border:1px solid black;
	align-self:flex-end;
}
.services .icon-box:hover {
	/*
  background:#9b00dc;
	border-color:#9b00dc;
	*/
}
.services .icon-box:hover .icon {
	/*
  background:#fff;
	*/
}
.services .icon-box:hover .icon i {
	/*
  color:#9b00dc;
	*/
}
.services .icon-box:hover .icon::before {
	background:#F6F91D;
}
.services .icon-box:hover h4 a,.services .icon-box:hover p {
	/*
  color:#fff;
	*/
}
.services .btn-learn-more {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:6px 15px;
	margin: 0 auto;
	margin-top: auto;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	max-width: 110px;
}

.services .srv_txt {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	margin: 0 auto;
	margin-top: auto;
	padding-bottom:15px;
}

.services .btn-learn-more:hover {
	background:#e5f319;
	color:#666;
}
.services .probel {
	margin-bottom:40px;
}


.services .gmBtn{
	text-align:center;
	margin:50px 0;
}	
.services .gmBtn a {
	font-weight:500;
	display:inline-block;
	padding:12px 35px;
	margin:20px 0;
	border-radius:50px;
	transition:0.5s;
	color:#fff !important;
	background:#9b00dc;
}
.services .gmBtn a:hover {
	background:#e5f319;
	color:#666 !important;
}

/*--------------------------------------------------------------
# migraine 1
--------------------------------------------------------------*/
#migraine_1 {
	
	margin-top:30px !important;
	margin-bottom:30px !important;
}

#migraine_1 .icon-box {
	width:100%;
	text-align:center;
	border:0px solid #f5ddff !important;
	background:#fff !important;
	padding:20px 10px;
	transition:all ease-in-out 0.3s;
	border-radius:25px;
}

#migraine_1 .icon-box .icon {
	margin:0 auto;
	margin-top:-70px;
	width:100px;
	height:100px;
	border-radius:25px;
	transition:all 0.3s ease-out 0s;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	transform-style:preserve-3d;
}

#migraine_1 .spacer {
	margin-bottom:75px;
}

#migraine_1 .y-accent{
	
	background:#FFF780;
	border-radius:25px;
	margin:20px 0;
	padding:20px;
}


/*--------------------------------------------------------------
# migraine 2 + 3
--------------------------------------------------------------*/


#migraine_2, #migraine_3 {
	
	margin-top:30px !important;
	margin-bottom:30px !important;
}

#migraine_2 .icon-box, #migraine_3 .icon-box {
	width:100%;
	text-align:center;
	border:1px solid #E5BAFF;
	background:#E5BAFF;
	padding:20px 10px;
	transition:all ease-in-out 0.3s;
	border-radius:25px;
}

#migraine_2 .icon-box .icon {
	margin:0 auto;
	margin-top:-70px;
	width:100px;
	height:100px;
	border-radius:25px;
	transition:all 0.3s ease-out 0s;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	transform-style:preserve-3d;
}

#migraine_2 .spacer {
	margin-bottom:75px;
}

#migraine_2 .mbcorr {
	margin-bottom:60px !important;
}

#migraine_3 .icon-box .icon {
	margin:0 auto;
	width:100px;
	height:100px;
	border-radius:25px;
	transition:all 0.3s ease-out 0s;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:20px;
	transform-style:preserve-3d;
}


#migraine_3 .pricebg{
	background: #E5BAFF;
	padding:2rem;
}

#migraine_3 .wshop_price{
	text-align:center;
}

#migraine_3 .wshop_price p{
	font-size:2em;
	margin:15px 0 !important;
}


#migraine_3 .wshop-btn {
	background:#9b00dc !important;
	color:#fff !important;
	border-radius:50px !important;
    padding: 10px 35px;
	white-space:nowrap !important;
	font-size:14px !important;
}
#migraine_3 .wshop-btn:hover {
	background:#e5f319 !important;
	color:#666 !important;
}

#migraine_3 .sdSel select{
	height:34px;
	color:#000;
	background-color:#FFF780;
	border-radius:0;
	box-shadow:none;
	font-size:14px;
	padding-left:10px;
	padding-right:33px !important;
	border:0;
	
}
#migraine_3 .sdSel select:focus {
	border-color:#9b00dc;
}

#migraine_3 .sdSel select{
  background-image:
    linear-gradient(45deg, transparent 50%, #9b00dc 60%),
    linear-gradient(135deg, #9b00dc 40%, transparent 50%) !important;
  background-position:
    calc(100% - 15px) 13px,
    calc(100% - 5px) 13px,
    100% 0;
  background-size:
    10px 10px,
    10px 10px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#migraine_3 .wshop_img {
	background:url("../img/migraine/workshop.jpg") left bottom no-repeat;
	background-size:contain;
}


#appointment5{
	background: #FFF780;
}


/*--------------------------------------------------------------
# #appointment6 php-email-form
--------------------------------------------------------------*/

#appointment6 .php-email-form h3 {
	font-size:26px;
	font-weight:600;
	margin: 0 0 10px 0 ;
}

#appointment6 .php-email-form .form-check-input {
	width:20px !important;
	height:20px !important;
	margin-right:8px;
}

#appointment6 .php-email-form .form-check-label {
	color:#666 !important;
	font-size:14px !important;
}


#appointment6 .php-email-form .form-check-input:checked {
	background-color:#9b00dc !important;
	border-color:#9b00dc !important;
}

#appointment6 .php-email-form input,.appointment .php-email-form textarea,.appointment .php-email-form select {
	border-radius:0;
	box-shadow:none;
	font-size:14px;
	padding:10px !important;
	
}
#appointment6 .php-email-form input:focus,.appointment .php-email-form textarea:focus,.appointment .php-email-form select:focus {
	border-color:#9b00dc;
}
#appointment6 .php-email-form input,.appointment .php-email-form select {
	height:44px;
	color:#666;
}











#appointment6 .php-email-form .error-message {
	display:none;
	color:#ed3c0d;
	background:#fff;
	text-align:left;
	padding:15px;
	font-weight:600;
}
#appointment6 .php-email-form .error-message br + br {
	margin-top:25px;
}
#appointment6 .php-email-form .sent-message {
	display:none;
	color:#18d26e;
	background:#fff;
	text-align:center;
	padding:15px;
	font-weight:600;
}
#appointment6 .php-email-form .loading {
	display:none;
	background:#fff;
	text-align:center;
	padding:15px;
}
#appointment6 .php-email-form .loading:before {
	content:"";
	display:inline-block;
	border-radius:50%;
	width:24px;
	height:24px;
	margin:0 10px -6px 0;
	border:3px solid #18d26e;
	border-top-color:#eee;
	animation:animate-loading 1s linear infinite;
}

#appointment6 button {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	display:inline-block;
	padding:10px 35px;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	border:0;
}
#appointment6 button:hover {
	background:#e5f319;
	color:#666;
}













/*--------------------------------------------------------------
# blog-wrapper
--------------------------------------------------------------*/

#blogtop{
	padding-bottom:0px !important;
	margin-bottom:-15px;
}

#blogtop .blgTxt{
	margin:0 auto;
	width:65%;
}

@media (max-width:800px) {
	
	#blogtop .blgTxt{
	
		width:100%;
	}
}


.blog-wrapper {
  width: 100%;
  position: relative;
}

.blog-wrapper img {
	width: 100%;
	height: auto;
}

.blog-wrapper figcaption {
  width: 50%;
  position: absolute;
  top: 15%;
  right:15px;
  transform: translateY(-50%);
  text-align: left;
  font-size: 1.3em;
  color: #000;
}


@media (max-width:1199px) {
	
	.blog-wrapper figcaption {
	
		font-size: 1.0em;
	}
}

@media (max-width:990px) {
	
	.blog-wrapper figcaption {
	
		font-size: 0.9em;
	}
}

@media (max-width:767px) {
	
	.blog-wrapper figcaption {
	
		font-size: 0.8em;
		right:5px;
	}
}

@media (max-width:430px) {
	
	.blog-wrapper figcaption {
	
		font-size: 0.7em;
		right:5px;
	}
}

@media (max-width:356px) {
	
	.blog-wrapper figcaption {
	
		font-size: 0.6em;
		right:5px;
	}
}

@media (max-width:356px) {
	
	.blog-wrapper figcaption {
	
		top: 30%;
	}
}


/*--------------------------------------------------------------
# blog_page
--------------------------------------------------------------*/

#blog_page{
	padding-top:0 !important;
}

.blog_page .icon-box {
	width:100%;
	text-align:left;
	border:1px solid #f5ddff;
	padding:20px;
	transition:all ease-in-out 0.3s;
}

.blog_page .icon-box:hover{
	-webkit-filter: brightness(90%);
}

.blog_page .card {
	border:0 !important;
	cursor: pointer;
}

.blog_page-correct .icon-box {
	padding:10px 10px !important;
}

.blog_page .departs .icon-box {
	border:1px solid #FFF;
	background:#FFF;

}

.blog_page .icon-box h3 {
	font-weight:700;
	margin-bottom:0px;
	font-size:16px;
}

.blog_page .icon-box h4 {
	font-weight:700;
	margin-bottom:0px;
	font-size:16px;
}

.blog_page .icon-box ul {
	margin-bottom:0px;
}

@media (max-width:1400px) {
	
	.blog_page .icon-box h3 {
	
		font-size:16px !important;
		padding:0 0px!important;
	}
	.blog_page .icon-box h4 {
	
		font-size:16px !important;
		padding:0 0px!important;
	}
}

@media (max-width:1199px) {
	
	.blog_page .icon-box h3 {
	
		font-size:17px !important;
		padding:0 0px!important;
	}
	.blog_page .icon-box h4 {
	
		font-size:17px !important;
		padding:0 0px!important;
	}
}

@media (max-width:767px) {
	
	.blog_page .icon-box h3 {
	
		font-size:15px !important;
		padding:0 0px!important;
	}
	.blog_page .icon-box h4 {
	
		font-size:15px !important;
		padding:0 0px!important;
	}
	
	.blog_page .icon-box ul {
	
	}
}

.crd-title {
	color:#324864;
}

.blog_page .icon-box h3 a {
	color:#2c4964;
}
.blog_page .icon-box h4 a {
	color:#2c4964;
}
.blog_page .icon-box ul li {
	font-size:13px;
	margin-bottom:0;
}
.blog_page .blokw {
	border:1px solid black;
	align-self:flex-end;
}

#blog_page .btn-learn-more {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:6px 15px;
	margin: 0 auto;
	margin-top: auto;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	max-width: 110px;
}

#blog_page .srv_txt {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	margin: 0 auto;
	margin-top: auto;
	padding-bottom:15px;
}

#blog_page .btn-learn-more:hover {
	background:#e5f319;
	color:#666;
}

.blog_page .probel {
	margin-bottom:40px;
}





/* темно филолетовый */
.blog_page .blog_bg_1 {
	background:#d99cf9;
}

.blog_page .blog_bg_1 h3 a{
	color:#162534 !important;
}

/* светло филолетовый */
.blog_page .blog_bg_2 {
	background:#efcfff;
}

/* желтый */
.blog_page .blog_bg_3 {
	background:#f5f986;
}

/* серый */
.blog_page .blog_bg_4 {
	background:#e9e9e9;
}



/*--------------------------------------------------------------
# Appointments !!!!!!!!!!!!!!!!! ONLY FOR psychotherapy Free 20-Minute Consultation FORM
--------------------------------------------------------------*/
.appointment .php-email-form-reg {
	width:100%;
	padding:30px;
}
.appointment .php-email-form-reg .form-group {
	padding-bottom:15px;
}
.appointment .php-email-form-reg .validate {
	display:none;
	color:red;
	margin:0 0 15px 0;
	font-weight:400;
	font-size:13px;
}
.appointment .php-email-form-reg .error-message {
	display:none;
	color:#ed3c0d;
	background:#fff;
	text-align:left;
	padding:15px;
	font-weight:600;
}
.appointment .php-email-form-reg .error-message br + br {
	margin-top:25px;
}
.appointment .php-email-form-reg .sent-message {
	display:none;
	color:#18d26e;
	background:#fff;
	text-align:center;
	padding:15px;
	font-weight:600;
}
.appointment .php-email-form-reg .loading {
	display:none;
	background:#fff;
	text-align:center;
	padding:15px;
}
.appointment .php-email-form-reg .loading:before {
	content:"";
	display:inline-block;
	border-radius:50%;
	width:24px;
	height:24px;
	margin:0 10px -6px 0;
	border:3px solid #18d26e;
	border-top-color:#eee;
	animation:animate-loading 1s linear infinite;
}
.appointment .php-email-form-reg input,.appointment .php-email-form-reg textarea,.appointment .php-email-form-reg select {
	border-radius:0;
	box-shadow:none;
	font-size:14px;
	padding:10px !important;
	
}
.appointment .php-email-form-reg input:focus,.appointment .php-email-form-reg textarea:focus,.appointment .php-email-form-reg select:focus {
	border-color:#9b00dc;
}
.appointment .php-email-form-reg input,.appointment .php-email-form-reg select {
	height:44px;
	color:#666;
}

.appointment .php-email-form-reg select {
  background-image:
    linear-gradient(45deg, transparent 50%, #999 60%),
    linear-gradient(135deg, #999 40%, transparent 50%) !important;
  background-position:
    calc(100% - 30px) 18px,
    calc(100% - 20px) 18px,
    100% 0;
  background-size:
    10px 10px,
    10px 10px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.appointment .php-email-form-reg .form-check-input {
	width:20px !important;
	height:20px !important;
}

.appointment .php-email-form-reg .form-check-label {
	color:#666 !important;
	font-size:14px !important;
}

.appointment .php-email-form-reg h3 {
	background:#444;
	background-color:#f6f91d;
	padding: 5px 6px;
	font-size:16px;
	margin: 20px 0 15px 0 ;
}

.appointment .php-email-form-reg h5 {
	background:#444;
	background-color:#f6f91d;
	padding: 5px 6px;
	font-size:16px;
	margin: 20px 0 15px 0 ;
}

.appointment .php-email-form-reg .form-check-input:checked {
	background-color:#9b00dc !important;
	border-color:#9b00dc !important;
}

.appointment .php-email-form-reg textarea {
	padding:10px 12px;
}
/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
	width:100%;
	padding:30px;
}
.appointment .php-email-form .form-group {
	padding-bottom:15px;
}
.appointment .php-email-form .validate {
	display:none;
	color:red;
	margin:0 0 15px 0;
	font-weight:400;
	font-size:13px;
}
.appointment .php-email-form .error-message {
	display:none;
	color:#ed3c0d;
	background:#fff;
	text-align:left;
	padding:15px;
	font-weight:600;
}
.appointment .php-email-form .error-message br + br {
	margin-top:25px;
}
.appointment .php-email-form .sent-message {
	display:none;
	color:#18d26e;
	background:#fff;
	text-align:center;
	padding:15px;
	font-weight:600;
}
.appointment .php-email-form .loading {
	display:none;
	background:#fff;
	text-align:center;
	padding:15px;
}
.appointment .php-email-form .loading:before {
	content:"";
	display:inline-block;
	border-radius:50%;
	width:24px;
	height:24px;
	margin:0 10px -6px 0;
	border:3px solid #18d26e;
	border-top-color:#eee;
	animation:animate-loading 1s linear infinite;
}
.appointment .php-email-form input,.appointment .php-email-form textarea,.appointment .php-email-form select {
	border-radius:0;
	box-shadow:none;
	font-size:14px;
	padding:10px !important;
	
}
.appointment .php-email-form input:focus,.appointment .php-email-form textarea:focus,.appointment .php-email-form select:focus {
	border-color:#9b00dc;
}
.appointment .php-email-form input,.appointment .php-email-form select {
	height:44px;
	color:#666;
}

.appointment .php-email-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #999 60%),
    linear-gradient(135deg, #999 40%, transparent 50%) !important;
  background-position:
    calc(100% - 30px) 18px,
    calc(100% - 20px) 18px,
    100% 0;
  background-size:
    10px 10px,
    10px 10px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.appointment .php-email-form .form-check-input {
	width:20px !important;
	height:20px !important;
}

.appointment .php-email-form .form-check-label {
	color:#666 !important;
	font-size:14px !important;
}

.appointment .php-email-form h3 {
	background:#444;
	background-color:#f6f91d;
	padding: 5px 6px;
	font-size:16px;
	margin: 20px 0 15px 0 ;
}

.appointment .php-email-form h5 {
	background:#444;
	background-color:#f6f91d;
	padding: 5px 6px;
	font-size:16px;
	margin: 20px 0 15px 0 ;
}

.appointment .php-email-form .form-check-input:checked {
	background-color:#9b00dc !important;
	border-color:#9b00dc !important;
}

.appointment .php-email-form textarea {
	padding:10px 12px;
}
.appointment .btn-get-started {
	margin-top:30px;
	background:#9b00dc;
	border:0;
	padding:10px 35px;
	color:#fff;
	transition:0.4s;
	border-radius:50px;
}
.appointment .btn-get-started:hover {
	background:#e5f319;
	color:#666;
}

.appointment .probel {
	margin-bottom:30px;
}


.appointment button {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:8px 15px;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	border:0;
}
.appointment button:hover {
	background:#e5f319;
	color:#666;
}




.appointment  .mfbh {
	display:none;
}

.appointment .deptsst {
	padding:30px 30px 0 30px;
}

.appointment .deptsst .deptsstbg {
	
	/*
	height:100%;
	min-height:200px;
	background:url("../img/depart-book/nutrition/top.jpg") top center no-repeat;
	background-size:contain;
	*/
}


.appointment .deptsst h1{
	font-size: 2rem;
	font-weight:700;
	color:#012970;
}

.appointment .deptsst h2{
	font-weight:700;
	color:#012970;
}

.appointment .fbg {
	background-color:#f3f3f3;
}

.appointment .hideLB label{
	display:none;
}

.appointment .yShad {
	box-shadow:rgba(246, 249, 29, 1) 20px -20px 0px -5px;
	margin:25px 15px 15px 5px;
}



/* блок с тремя терапевтами в форме */
.appointment .seldoc div{
	text-align:center;
}

.appointment .seldoc h3{
	font-size: 15px;
}

.appointment .seldoc h4{
	font-size: 12px;
	min-height: 2lh;
}


.appointment .seldoc img {
	width:100%;
	max-width:100px;
}


.appointment .seldoc button {
	width:100%;
	max-width: 100px;
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding: 5px 0px;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	border:0;
}
.appointment .seldoc button:hover {
	background:#e5f319;
	color:#666;
}

.appointment .agree {
	text-align:center;
	font-size:0.8em;
	padding-bottom:0 !important;
}

@media (max-width:992px) and (min-width: 768px){
	
	.appointment .seldoc button {
		font-size:10px;
		white-space: nowrap;
	}
	
	.appointment .seldoc h3{
		font-size: 11px;
	}

	.appointment .seldoc h4{
		font-size: 8px;
	}
	
}

@media (max-width:370px){
	
	.appointment .seldoc button {
		font-size:10px;
		white-space: nowrap;
	}
	
	.appointment .seldoc h3{
		font-size: 11px;
	}

	.appointment .seldoc h4{
		font-size: 8px;
	}
	
}
/* matching_ul */



.appointment .matching_ul ol {
	list-style-type: none; 
	counter-reset: num;
	margin: 0 0 0 45px;
	padding: 15px 0 5px 0;
	font-size: 16px;
}
.appointment .matching_ul ol li {
	position: relative;	
	margin: 0 0 0 0;
	padding: 0 0 20px 0;
	line-height: 1.4;
}
.appointment .matching_ul ol li:before {
	content: counter(num); 
	counter-increment: num;
	display: inline-block;
	position: absolute;
	top: 0;
	left: -38px;
	width: 28px;
	height: 28px;
	background: #F6F91D;
	color: #000;
	text-align: center;
	line-height: 28px;
	font-size: 18px;
}










.appointment .match-btn {
	background:#9b00dc !important;
	color:#fff !important;
	border-radius:50px !important;
	padding:8px 15px !important;
	white-space:nowrap !important;
	transition:0.3s !important;
	font-size:14px !important;
	display:inline-block !important;
}
.appointment .match-btn:hover {
	background:#e5f319 !important;
	color:#666 !important;
}

/*--------------------------------------------------------------
# appointment migraine 
--------------------------------------------------------------*/
.appointment .migraine h3 {
	font-size:16px;
	font-weight:700;
	color:#012970;
}

.appointment .migraine p {
	font-size:16px;
	margin-bottom:20px;
}

@media (max-width: 992px) {
	.appointment .mgr {
		margin-bottom:40px;
	}
}

#appointment2 .y-accent{
	
	background:#FFF780;
	border-radius:25px;
	margin:20px 0;
	padding:20px;
}

#appointment3{
	background:#FFF780;
}

#appointment3 img{
	border: 10px solid #E5BAFF;
}


@media (min-width:1000px) {
	#appointment2 .arms_img img{
		
		max-width:850px;
	}
}

/*--------------------------------------------------------------
# Booking
--------------------------------------------------------------*/

#booking .booking_form .form-group {
	padding-bottom:5px;
}
#booking .booking_form .validate {
	display:none;
	color:red;
	margin:0 0 15px 0;
	font-weight:400;
	font-size:13px;
}
#booking .booking_form .error-message {
	display:none;
	color:#fff;
	background:#ed3c0d;
	text-align:left;
	padding:15px;
	font-weight:600;
}
#booking .booking_form .error-message br + br {
	margin-top:25px;
}
#booking .booking_form .sent-message {
	display:none;
	color:#000;
	background:#f6f91d;
	text-align:center;
	padding:15px;
	font-weight:600;
}
#booking .booking_form .loading {
	display:none;
	background:#fff;
	text-align:center;
	padding:15px;
}
#booking .booking_form .loading:before {
	content:"";
	display:inline-block;
	border-radius:50%;
	width:24px;
	height:24px;
	margin:0 10px -6px 0;
	border:3px solid #18d26e;
	border-top-color:#eee;
	animation:animate-loading 1s linear infinite;
}
#booking .booking_form input,.appointment .booking_form textarea,.appointment .booking_form select {
	border-radius:0;
	box-shadow:none;
	font-size:14px;
	padding:10px !important;
}
#booking .booking_form input:focus,.appointment .booking_form textarea:focus,.appointment .booking_form select:focus {
	border-color:#9b00dc;
}
#booking .booking_form input,.appointment .booking_form select {
	height:44px;
}
#booking .booking_form textarea {
	padding:10px 12px;
}
#booking .btn-get-started {
	margin-top:30px;
	background:#9b00dc;
	border:0;
	padding:10px 35px;
	color:#fff;
	transition:0.4s;
	border-radius:50px;
}
#booking .btn-get-started:hover {
	background:#e5f319;
	color:#666;
}

#booking .probel {
	margin-bottom:30px;
}

.bbut button {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:8px 15px;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	border:0;
}
.bbut button:hover {
	background:#e5f319;
	color:#666;
}


/*--------------------------------------------------------------
# Portfolio Details Page
--------------------------------------------------------------*/
.noPm{
	padding-bottom:0 !important;
	margin-bottom:0 !important;
	
}

.noPm div{
	padding-bottom:0 !important;
	margin-bottom:0 !important;
	
}


.portfolio-details .probel {
	margin-bottom:50px;
}
.portfolio-details .probel2 {
	margin-bottom:30px;
}
.portfolio-details .portfolio-description ul {
	padding:0;
}
.portfolio-details .portfolio-description ul li {
	list-style-type:none;
	margin-bottom:5px !important;
}
.portfolio-details .portfolio-description ul li i {
	color:#f6f91d;
	margin-right:15px;
}
.twoli .portfolio-description ul li i {
	color:#9b00dc !important;
	margin-right:15px;
}
.portfolio-details .portfolio-description h1 {
	color:#012970 !important;
	font-size:26px;
	font-weight:700;
	margin-bottom:20px;
}
.portfolio-details .portfolio-description h2 {
	color:#012970 !important;
	font-size:26px;
	font-weight:700;
	margin-bottom:20px;
}
.portfolio-details .portfolio-description .eline {
	border-bottom:3px solid #f6f91d;
	color:#012970 !important;
}
.portfolio-details .portfolio-description ulx{
	padding-bottom:0 !important;
	margin-bottom:0 !important;
}

.portfolio-details .portfolio-description {
	margin-top:0px;
}

.portfolio-details .pbtn a {
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:12px 35px;
	margin:20px 0;
	border-radius:50px;
	transition:0.5s;
	color:#fff !important;
	background:#9b00dc;
}
.portfolio-details .pbtn a:hover {
	background:#e5f319;
	color:#666 !important;
}

.twoli{
	background:#f6dcff !important;;
	
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
	padding:0 100px;
}
.faq .depf {
	padding:0 0px !important;
}
.faq .faq-list ul {
	padding:0;
	list-style:none;
}
.faq .faq-list li + li {
	margin-top:0px;
}
.faq .faq-list li {
	padding:20px 0;
	background:#fff;
	position:relative;
	border-bottom:1px solid black;
}
.faq .faq-list a {
	display:block;
	position:relative;
	font-family:"Poppins",sans-serif;
	font-size:16px;
	line-height:24px;
	font-weight:500;
	padding:0px;
	padding-right:25px;
	outline:none;
	cursor:pointer;
}

.faq .faq-list .innerlnk {
	padding:0px !important;
}

.faq .faq-list a:hover {
	color:#9b00dc;
}
.faq .faq-list li p a {
	display:inline;
}
.faq .faq-list .icon-help {
	font-size:24px;
	position:absolute;
	right:0;
	left:20px;
	color:#76b5ee;
}
.faq .faq-list .icon-show,.faq .faq-list .icon-close {
	font-size:24px;
	position:absolute;
	right:0;
	top:0;
}
.faq .faq-list p {
	margin-bottom:0;
	padding:10px 0 0 0;
}

.faq .faq-list .pcorr {
	padding:0 0 20px 0 !important;
}


.faq .faq-list .icon-show {
	display:none;
}
.faq .faq-list a.collapsed {
	color:#343a40;
}
.faq .faq-list a.collapsed:hover {
	color:#9b00dc;
}
.faq .faq-list a.collapsed .icon-show {
	display:inline-block;
}
.faq .faq-list a.collapsed .icon-close {
	display:none;
}
.faq .deptsst {
	background:url("../img/depart-book/nutrition/faq.jpg") center center no-repeat;
	background-size:contain;
}
.faq .deptsst2 {
	background:url("../img/depart-book/psychotherapy/faq.jpg") center center no-repeat;
	background-size:contain;
}
.faq .morespc2 {
	margin:33px 0;
}
.faq .pst {
	margin-bottom:30px !important;
}

.faq .probel {
	margin-bottom:40px;
}


@media (max-width:1200px) {
	.faq .faq-list {
	padding:0;
}
}

/*--------------------------------------------------------------
# migraine
--------------------------------------------------------------*/

.faq .migraine li{
	background:#E5BAFF;
	margin-bottom:10px;
	border:0;
	padding: 20px;
	border-radius:25px;
	
	
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left:50px;
}
.testimonials .testimonials-carousel,.testimonials .testimonials-slider {
	overflow:hidden;
}
.testimonials .testimonial-item {
	box-sizing:content-box;
	padding:30px 30px 30px 60px;
	margin:30px 15px;
	min-height:180px;
	box-shadow:0px 2px 12px rgba(44,73,100,0.08);
	position:relative;
	background:#fff;
}
.testimonials .testimonial-item .testimonial-img {
	width:100px;
	border-radius:50px;
	border:6px solid #fff;
	position:absolute;
	box-shadow:0px 2px 12px rgba(44,73,100,0.08);
	background:#fff;
	left:-50px;
}
.testimonials .testimonial-item h3 {
	font-size:18px;
	font-weight:bold;
	margin:10px 0 5px 0;
	color:#111;
}

.testimonials .testimonial-item .quote-icon-left,.testimonials .testimonial-item .quote-icon-right {
	color:#a100dd;
	font-size:26px;
}
.testimonials .testimonial-item .quote-icon-left {
	display:inline-block;
	left:-5px;
	position:relative;
}
.testimonials .testimonial-item .quote-icon-right {
	display:inline-block;
	right:-5px;
	position:relative;
	top:10px;
}
.testimonials .testimonial-item p {
	font-style:italic;
	margin:15px auto 15px auto;
}
.testimonials .testimonial-item h4 {
	font-style:italic;
	font-size: 1rem;
	line-height: 1.5;
	margin:15px auto 15px auto;
}
.testimonials .swiper-pagination {
	margin-top:20px;
	position:relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width:12px;
	height:12px;
	background-color:#fff;
	opacity:1;
	border:1px solid #9b00dc;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color:#9b00dc;
}
.testimonials .probel {
	margin-bottom:40px;
}


@media (max-width:767px) {
	.testimonials .testimonial-wrap {
	padding-left:0;
}
.testimonials .testimonials-carousel,.testimonials .testimonials-slider {
	overflow:hidden;
}
.testimonials .testimonial-item {
	padding:30px;
	margin:15px;
}
.testimonials .testimonial-item .testimonial-img {
	position:static;
	left:auto;
}
}

/*--------------------------------------------------------------
# tstms
--------------------------------------------------------------*/
.tstms .tstms-carousel,.tstms .tstms-slider {
	overflow:hidden;
}
.tstms .tstms-item {
	box-sizing:content-box;
	padding:10px;
	height:100px;
	box-shadow:0px -2px 12px rgba(0,0,0,0.08);
	position:relative;
	background:#fff;
}
.tstms .tstms-item:hover {
	cursor: pointer;
}

.tstms .rslt .booknow{
	box-shadow:0px 2px 12px rgba(0,0,0,0.08);
	
}

.tstms .tstms-item .tstms-img {
	width:100px;
	border-radius:10px;
	border:6px solid #fff;
	float:left;
	margin:0 10px 10px 0;
}
.tstms .section-sub-title h3 {
	font-size: 1.25rem;
	margin:4px 0 5px 0;
}
.tstms .tstms-item h3 {
	font-size:19px;
	line-height:0.99;
	font-weight:bold;
	margin:7px 0 5px 0;
	color:#394047;
}
.tstms .tstms-item h4 {
	font-size:17px;
	line-height:0.99;
	font-weight:bold;
	margin:7px 0 5px 0;
	color:#394047;
}
.tstms .tstms-item h5 {
	font-size:12px;
	line-height:1.2;
	color:#666;
	margin:0;
}
.tstms .tstms-item .quote-icon-left,.tstms .tstms-item .quote-icon-right {
	color:#b9d4ec;
	font-size:26px;
}
.tstms .tstms-item .quote-icon-left {
	display:inline-block;
	left:-5px;
	position:relative;
}
.tstms .tstms-item .quote-icon-right {
	display:inline-block;
	right:-5px;
	position:relative;
	top:10px;
}
.tstms .tstms-item p {
	font-style:italic;
	font-size:12px;
	margin:10px 0 0 0;
	padding:0;
}
.tstms .morespc {
	margin-bottom:33px;
}

#tstms .booknow{
	
	margin-top:0px;
	padding:15px 0;
	background-color:#fff;
}

#tstms .booknow .btn-learn-more {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:6px 15px;
	margin: 0 auto;
	margin-top: auto;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	max-width: 110px;
}


#tstms .booknow .btn-learn-more:hover {
	background:#e5f319;
	color:#666;
}


#tstms .animBtn {
	font-family:"Raleway",sans-serif;
	font-weight:500;
	font-size:14px;
	display:inline-block;
	padding:6px 15px;
	margin: 0 auto;
	margin-top: auto;
	border-radius:50px;
	transition:0.5s;
	color:#fff;
	background:#9b00dc;
	max-width: 110px;
	animation: barberpole 1s linear infinite !important;
	background-size: 30px 30px !important;
	background-color: #d164ff !important;
	background-image: linear-gradient( 135deg, rgba(255,255,255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255, 0.1) 50%, rgba(255,255,255, 0.1) 75%, transparent 75%, transparent) !important;
}

@keyframes barberpole {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 60px 30px;
	}
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	width:100%;
	background:#fff;
}
.contact .info i {
	font-size:20px;
	color:#9b00dc;
	float:left;
	width:44px;
	height:44px;
	background:#d6e9fa;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:50px;
	transition:all 0.3s ease-in-out;
}
.contact .info h4 {
	padding:0 0 0 60px;
	font-size:22px;
	font-weight:600;
	margin-bottom:5px;
	color:#2c4964;
}
.contact .info p {
	padding:0 0 0 60px;
	margin-bottom:0;
	font-size:14px;
	color:#4b7dab;
}
.contact .info .email,.contact .info .phone {
	margin-top:40px;
}
.contact .info .email:hover i,.contact .info .address:hover i,.contact .info .phone:hover i {
	background:#9b00dc;
	color:#fff;
}
.contact .php-email-form {
	width:100%;
	background:#fff;
}
.contact .php-email-form .form-group {
	padding-bottom:8px;
}
.contact .php-email-form .error-message {
	display:none;
	color:#fff;
	background:#ed3c0d;
	text-align:left;
	padding:15px;
	font-weight:600;
}
.contact .php-email-form .error-message br + br {
	margin-top:25px;
}
.contact .php-email-form .sent-message {
	display:none;
	color:#fff;
	background:#18d26e;
	text-align:center;
	padding:15px;
	font-weight:600;
}
.contact .php-email-form .loading {
	display:none;
	background:#fff;
	text-align:center;
	padding:15px;
}
.contact .php-email-form .loading:before {
	content:"";
	display:inline-block;
	border-radius:50%;
	width:24px;
	height:24px;
	margin:0 10px -6px 0;
	border:3px solid #18d26e;
	border-top-color:#eee;
	animation:animate-loading 1s linear infinite;
}
.contact .php-email-form input,.contact .php-email-form textarea {
	border-radius:0;
	box-shadow:none;
	font-size:14px;
}
.contact .php-email-form input {
	height:44px;
}
.contact .php-email-form textarea {
	padding:10px 12px;
}
.contact .php-email-form button[type="submit"] {
	background:#9b00dc;
	border:0;
	padding:10px 35px;
	color:#fff;
	transition:0.4s;
	border-radius:50px;
}
.contact .php-email-form button[type="submit"]:hover {
	background:#1c84e3;
}
@keyframes animate-loading {
	0% {
	transform:rotate(0deg);
}
100% {
	transform:rotate(360deg);
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	color:#444444;
	font-size:14px;
	background:#f6f91d;
}
#footer .footer-top {
	padding:60px 0 30px 0;
	background:#fff;
	box-shadow:0px 2px 15px rgba(25,119,204,0.1);
}
#footer .footer-top .footer-contact {
	margin-bottom:30px;
}

#footer .footer-top .footer-contact h4 {
	font-size:19px;
	margin:0 0 5px 0;
	padding:2px 0 2px 0;
	line-height:1;
	font-weight:700;
}
.scarborough {
	margin-top:30px !important;
}
#footer .footer-top .footer-contact h3 {
	margin:0 0 20px 0 !important;
}
#footer .footer-top .footer-contact p {
	font-size:13px;
	line-height:24px;
	margin-bottom:0;
	font-family:"Raleway",sans-serif;
	color:#000000;
	margin-bottom:10px;
}
#footer .footer-top .footer-contact p i {
	color:#a100dd;
	margin-right:10px;
}
#footer .footer-top .footer-wtime {
	margin-bottom:30px;
}
#footer .footer-top .footer-wtime h3 {
	font-size:15px;
	margin:0 0 30px 0;
	padding:2px 0 2px 0;
	line-height:1;
	font-weight:700;
}
#footer .footer-top .footer-wtime p {
	font-size:14px;
	line-height:24px;
	margin-bottom:0;
	font-family:"Raleway",sans-serif;
	color:#777777;
}
#footer .footer-top h4 {
	font-size:16px;
	font-weight:bold;
	color:#444444;
	position:relative;
	padding-bottom:12px;
}
#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:#1c84e3;
	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:#777777;
	transition:0.3s;
	display:inline-block;
	line-height:1;
}
#footer .footer-top .footer-links ul a:hover {
	text-decoration:none;
	color:#9b00dc;
}
#footer .footer-newsletter {
	font-size:15px;
}
#footer .footer-newsletter h4 {
	font-size:16px;
	font-weight:bold;
	color:#444444;
	position:relative;
	padding-bottom:12px;
}
#footer .footer-newsletter form {
	margin-top:30px;
	background:#fff;
	padding:6px 10px;
	position:relative;
	border-radius:50px;
	text-align:left;
	border:1px solid #bfdcf7;
}
#footer .footer-newsletter form input[type="email"] {
	border:0;
	padding:4px 8px;
	width:calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	border:0;
	background:none;
	font-size:16px;
	padding:0 20px;
	background:#9b00dc;
	color:#fff;
	transition:0.3s;
	border-radius:50px;
}
#footer .footer-newsletter form input[type="submit"]:hover {
	background:#1c84e3;
}
#footer .credits {
	padding-top:5px;
	font-size:13px;
	color:#444444;
}
#footer .social-links a {
	font-size:18px;
	display:inline-block;
	background:#9b00dc;
	color:#fff;
	line-height:1;
	padding:8px 0;
	margin-right:4px;
	border-radius:50%;
	text-align:center;
	width:36px;
	height:36px;
	transition:0.3s;
}
#footer .social-links a:hover {
	background:#cf4eff;
	color:#fff;
	text-decoration:none;
}


#footer .copyright a{
	text-decoration:underline;
	color:#2c4964;
}

#footer .copyright a:hover{
	color:#9b00dc !important;
}


/*--------------------------------------------------------------
# thank-you
--------------------------------------------------------------*/


.thank-you .cntrrGrey{
	text-align:center;
	background-color: #F2F1F3;
	padding: 40px 60px;
}


.thank-you .cntrrGrey img{
	height: 128px;
	width: 165px;
	margin-bottom:20px;
}



/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
.modal-body .hideLB label{
	display:none;
}
