body {
	min-width: 320px;
	font-family: 'GothamPro', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

.wrap {
	max-width: 1552px;
	margin: 0 auto;
}

.wrap-2 {
	max-width: 1300px;
	margin: 0 auto;
}

/* ----------------------------------------------- */

header {
	padding-top: 15px;
	padding-bottom: 30px;
}

header .wrap {
	display: flex;
	flex-wrap: wrap;
}

.header__col-1 span {
	font-size: 18px;
	margin-left: 16px;
	display: block;
}

.header__col-1 {
	width: 23%;
}

.header__col-2 {
	width: 30%;
}

.header__col-3 {
	width: 28%;
}

.header__col-4 {
	width: 19%;
	display: flex;
	justify-content: right;
}

.header__button a {
	border: 2px solid #0265A9;
	font-size: 18px;
	color: #000000;
	display: inline-block;
	text-decoration: none;
	padding: 5px 38px 6px 38px;
	font-weight: 300;
	border-radius: 33px;
}

.header__tel a {
	background: #42BBCC;
	font-size: 20px;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	padding: 5px 37px 6px 37px;
	cursor: pointer;
	text-align: center;
	font-weight: 300;
	border-radius: 33px;
}

.header__col-2 nav ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	font-weight: 300;
	margin-top: 7px;
}

.header__col-2 nav li {
	margin-right: 32px;
}

.header__col-2 nav li:last-child {
	margin-right: 0;
}

.header__col-2 nav li a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.burger_menu_button {
	display: none;
	cursor: pointer;
	margin-top: 5px;
}

.burger_menu_background {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.2);
	position: fixed;
	display: none; /* display: block;*/
}

.burger_menu_content {
	width: 170px;
	position: fixed;
	top: 0;
	left: 0px;
	height: 100%;
	z-index: 2;
	background: #42bbcc;
	overflow-y: auto;
	color: #fff;
	transform: translateX(-100%);
}

.burger_menu_content ul {
	margin-top: 40px;
	margin-left: 20px;
}

.burger_menu_content ul li {
	margin-bottom: 15px;
}

.burger_menu_content ul li a {
	text-decoration: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	letter-spacing: 0.1em;
}

.burger_menu_content ul li a:hover {
	text-decoration: underline;
}

.burger_menu_close {
	cursor: pointer;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
}

.burger_menu_in_left {
	animation-name: burger_menu_in_left;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}

.burger_menu_out_left {
	animation-name: burger_menu_out_left;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}

@keyframes burger_menu_out_left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@keyframes burger_menu_in_left {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

@media all and (max-width: 1400px) {

	.header__col-1 span {
		font-size: 16px;
	}

	.header__col-2 nav ul {
		font-size: 16px;
	}

	.header__col-2 nav li {
		margin-right: 20px;
	}

	.header__button a {
		font-size: 16px;
		padding: 5px 18px 6px 18px;
	}

	.header__tel a {
		font-size: 16px;
		padding: 5px 17px 6px 17px;
	}

}

@media all and (max-width: 1200px) {

	.header__col-1 {
		width: 50%;
		margin-bottom: 20px;
	}

	.header__col-2 {
		width: 50%;
		margin-bottom: 20px;
	}
	
	.header__col-3 {
		width: 50%;
	}

	.header__col-4 {
		width: 50%;
		justify-content: left;
	}

}

@media all and (max-width: 700px) {

	.header__col-3 {
		display: none;
	}

	.header__col-4 {
		width: 100%;
		justify-content: center;
	}

	.header__col-2 > nav {
		display: none;
	}

	.burger_menu_button {
		display: block;
	}

	.header__col-1 {
		width: 90%;
	}

	.header__col-2 {
		width: 10%;
	}

}

/* -------------------------------------------------- */

.banner {
	margin-top: 10px;
	margin-bottom: 10px;
}

.banner .wrap {
	background: #42BBCC;
	display: flex;
	flex-wrap: wrap;
	border-top-left-radius: 45px;
	border-bottom-left-radius: 45px;
	border-top-right-radius: 45px;
	border-bottom-right-radius: 355px;
}

.banner__col-1 {
	width: 50%;
	padding: 30px 0px 13px 100px;
}

.banner__title {
	color: #fff;
	font-size: 75px;
	line-height: 64px;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.banner__title span {
	font-weight: bold;
	letter-spacing: 0.1rem;
	font-style: italic;
}

.banner__price {
	color: #0265A9;
	font-size: 75px;
	line-height: 64px;
	letter-spacing: 0.1rem;
	font-weight: bold;
	margin-top: 17px;
}

.banner__price span {
	font-weight: 400;
}

.banner__col-1 ul {
	font-size: 23px;
	line-height: 32px;
	list-style-type: disc;
	margin-left: 25px;
	margin-top: 15px;
	margin-bottom: 5px;
}

.banner__col-1 li {
  color: #fff;
}

.banner__text1 {
	color: #fff;
	font-size: 23px;
	line-height: 45px;
	font-style: italic;
}

.banner__text2 {
	color: #fff;
	font-size: 25px;
	line-height: 32px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.banner__text3 {
	color: #0265A9;
	font-size: 35px;
	line-height: 32px;
	font-weight: 500;
	margin-bottom: 7px;
	font-style: italic;
	font-weight: bold;
}

.banner__text4 {
	color: #fff;
	font-size: 25px;
	line-height: 32px;
}

.banner__button {
	margin-top: 20px;
	margin-bottom: 4px;
}

.banner__button a {
	font-size: 23px;
	background: #fff;
	color: #353535;
	display: inline-block;
	text-decoration: none;
	padding: 21px 58px 22px 58px;
	cursor: pointer;
	text-align: center;
	border-radius: 55px;
}

.banner__text5 {
	color: #FFFFFFCC;
	font-size: 17px;
	line-height: 32px;
}

.banner__col-2 {
	width: 50%;
	text-align: right;
}

.banner__col-2 img {
	border-top-right-radius: 45px;
	border-bottom-right-radius: 355px;
	border-top-left-radius: 45px;
	border-bottom-left-radius: 355px;
}

@media all and (max-width: 1300px) {

	.banner__col-1 {
		padding: 30px 0px 13px 40px;
	}
}

@media all and (max-width: 1200px) {

	.banner__title {
		font-size: 50px;
		line-height: 48px;
	}

	.banner__price {
		font-size: 69px;
		line-height: 58px;
	}

	.banner__col-1 {
		width: 40%;
	}

	.banner__col-2 {
		width: 60%;
	}
}

@media all and (max-width: 1000px) {

	.banner__col-1 {
		width: 100%;
	}

	.banner__col-2 {
		width: 100%;
	}

	.banner__col-2 {
		text-align: center;
		margin-left: 0px;
	}

	.banner .wrap {
		border-bottom-right-radius: 45px;
	}
}

@media all and (max-width: 500px) {

	.banner__col-1 {
		padding: 30px 0px 10px 5px;
	}

	.banner__title {
		font-size: 38px;
		line-height: 40px;
	}

	.banner__price {
		font-size: 43px;
		line-height: 42px;
	}

	.banner__col-1 ul {
		font-size: 18px;
		line-height: 26px;
	}

	.banner__text1 {
		font-size: 18px;
		line-height: 24px;
	}
	.banner__text2 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 10px;
	}

	.banner__text3 {
		font-size: 26px;
		line-height: 28px;
	}

	.banner__text4 {
		font-size: 20px;
		line-height: 26px;
	}

	.banner__button a {
		font-size: 18px;
		padding: 21px 35px 22px 35px;
	}

	.banner__text5 {
		font-size: 14px;
		line-height: 28px;
	}
}

/* ----------------------------------------------- */

.advantages {
	padding-top: 80px;
}

.advantages__title {
	color: #42BBCC;
	font-size: 40px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.advantages__items {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	margin-bottom: 60px;
}

.advantages__item {
	width: 14%;
	margin-left: 1%;
	margin-right: 1%;
}

.advantages__img {
	text-align: center;
	margin-bottom: 30px;
}

.advantages__text {
	font-size: 17px;
	line-height: 20px;
	color: #000000;
	text-align: center;
}

@media all and (max-width: 1000px) {

	.advantages__title {
		font-size: 35px;
		line-height: 22px;
	}

	.advantages__item {
		width: 31%;
		margin-left: 1%;
		margin-right: 1%;
		margin-bottom: 35px;
	}

	.advantages__text {
		font-size: 16px;
		line-height: 19px;
	}
}

@media all and (max-width: 600px) {

	.advantages__item {
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
		margin-bottom: 35px;
	}
}

@media all and (max-width: 400px) {

	.advantages__title {
		font-size: 30px;
		line-height: 16px;
	}

	.advantages__text {
		font-size: 15px;
		line-height: 18px;
	}

	.advantages__items {
		margin-top: 30px;
		margin-bottom: 20px;
	}
}

/* ----------------------------------------------- */

.work {
	max-width: 1550px;
	margin: 0 auto;
	background: #42BBCC;
	padding-top: 40px;
	padding-bottom: 50px;
	border-radius: 80px;
}

.work__title {
	color: #fff;
	font-size: 40px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.work__items {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.work__item {
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
}

.work__img {
	text-align: center;
	margin-bottom: 30px;
}

.work__text {
	font-size: 20px;
	line-height: 22px;
	color: #fff;
	text-align: center;
}

@media all and (max-width: 1000px) {

	.work__title {
		font-size: 35px;
		line-height: 22px;
	}

	.work__text {
 		font-size: 16px;
  	line-height: 22px;
	}
}

@media all and (max-width: 700px) {

	.work__item {
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
		margin-bottom: 35px;
	}
}

@media all and (max-width: 500px) {

	.work {
		padding-bottom: 10px;
		border-radius: 45px;
	}

	.work__title {
		font-size: 30px;
		line-height: 36px;
	}

	.work__items {
		margin-top: 30px;
	}
}

/* ----------------------------------------------- */

.reviews {
	padding-top: 80px;
	padding-bottom: 80px;
}

.reviews > .wrap {
	position: relative;
}

.reviews__items {
	margin-top: 60px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	overflow: hidden;
}

.reviews__item {
	background: #F1F1F1;
	width: 80%;
	height: 100%;
	margin-left: 10%;
	margin-right: 10%;
	box-shadow: 0px 10px 8.3px 0px #00000040;
	border-radius: 39px;
}

.reviews__img {
	text-align: center;
}

.reviews__name {
	background: #42BBCC;
	font-size: 30px;
	line-height: 32px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1rem;
	padding: 8px;
}

.reviews__text {
	font-size: 16px;
	line-height: 24px;
	color: #585858;
	padding: 10px 20px 70px 25px;
}

.reviews .slider-reviews .owl-stage {
	display: flex;
}

.reviews .owl-prev {
	position: absolute;
	background: url(../img/experts/experts-img-left.svg) no-repeat;
	left: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

.reviews .owl-next {
	position: absolute;
	background: url(../img/experts/experts-img-right.svg) no-repeat;
	right: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

.reviews__img_bg1 {
	background: url(../img/experts/reviews__img_bg1.png) no-repeat;
	border-radius: 39px 39px 0 0;
}

.reviews__img_bg2 {
	background: url(../img/experts/reviews__img_bg2.png) no-repeat;
	border-radius: 39px 39px 0 0;
}

.reviews__img_bg3 {
	background: url(../img/experts/reviews__img_bg3.png) no-repeat;
	border-radius: 39px 39px 0 0;
}

@media all and (max-width: 1000px) {

	.reviews__name {
		font-size: 24px;
		line-height: 26px;
	}
}

@media all and (max-width: 700px) {

	.reviews {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.reviews__text {
		font-size: 15px;
		line-height: 22px;
		padding: 5px 10px 30px 10px;
	}

	.reviews__items {
		margin-bottom: 0px;
	}
}

@media all and (max-width: 400px) {

	.reviews__items {
		margin-bottom: 0px;
	}
}

/* -------------------------------------------------- */

.experts {
	background: #FBFBFB;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
}

.experts__title {
	color: #42BBCC;
	font-size: 51px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	padding-top: 30px;
	padding-bottom: 50px;
}

.experts__item {
	background: #F5F5F5;
	min-height: 440px;
	margin-right: 25px;
	margin-left: 25px;
	box-shadow: 0px 4px 4px 0px #00000040;
	border-radius: 39px;
	margin-bottom: 30px;
}

.experts__img {
	text-align: center;
}

.experts__name {
	font-size: 22px;
	line-height: 32px;
	color: #42BBCC;
	text-align: center;
	padding: 10px 0px 10px 0px;
}

.experts__text {
	font-size: 17px;
	line-height: 32px;
	color: #232323;
	padding: 0px 20px 70px 25px;
}

.experts .slider-experts .owl-stage {
	display: flex;
}

.experts .slider {
	position: relative;
	overflow: hidden;
	padding-left: 20px;
  padding-right: 20px;
}

.experts .owl-prev {
	position: absolute;
	background: url(../img/experts/experts-img-left.svg) no-repeat;
	left: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

.experts .owl-next {
	position: absolute;
	background: url(../img/experts/experts-img-right.svg) no-repeat;
	right: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

@media all and (max-width: 1200px) {

	.experts__title {
		font-size: 44px;
		line-height: 24px;
	}
}

@media all and (max-width: 1000px) {

	.experts__title {
		font-size: 34px;
		line-height: 18px;
	}

	.experts__name {
		font-size: 19px;
		line-height: 24px;
		padding: 10px 5px 10px 5px;
	}

	.experts__text {
		font-size: 16px;
		line-height: 22px;
		padding: 0px 10px 20px 10px;
	}
}

@media all and (max-width: 800px) {

	.experts__title {
		font-size: 30px;
		line-height: 37px;
	}

	.experts {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}

/* -------------------------------------------------- */

.doctor {
	padding-top: 50px;
	padding-bottom: 100px;
}

.doctor__row {
	background: #FBFBFB;
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0px 10px 36.6px 0px #00000040;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 300px;
}

.doctor__col-1 {
	width: 40%;
	padding: 45px 0px 45px 60px;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.doctor__col-2 {
	width: 60%;
	position: relative;
}

.doctor__col-2 img {
	border-top-left-radius: 39px;
	border-bottom-left-radius: 300px;
	border-top-right-radius: 39px;
	border-bottom-right-radius: 300px;
}

.doctor__text1 {
	font-size: 26px;
	color:#1D1D1D;
	line-height: 40px;
	margin-bottom: 17px;
	font-weight: 400;
}

.doctor__button a {
	font-size: 20px;
	background: #42BBCC;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	padding: 18px 96px 19px 96px;
	cursor: pointer;
	text-align: center;
	border-radius: 55px;
	margin-bottom: 25px;
}

.doctor__text2 {
	font-size: 20px;
	color:#1D1D1D;
	line-height: 31px;
}

.doctor__text3 {
	font-size: 20px;
	color:#1D1D1D;
	line-height: 31px;
	margin-bottom: 35px;
	font-weight: 700;
}

.doctor__img {
	text-align: right;
}

.doctor__name {
	background: #fff;
	width: 520px;
	border: 3px solid #42BBCC;
	border-radius: 55px;
	position: absolute;
	left: 40px;
	bottom: 60px;
	height: 90px;
}

.doctor__name_text1 {
	font-size: 28px;
	color:#383838;
	line-height: 32px;
	padding: 10px 20px 0px 45px;
}

.doctor__name_text2 {
	font-size: 22px;
	color:#383838;
	line-height: 32px;
	padding-left: 45px;
}

.doctor__experience {
	background: #fff;
  width: 215px;
  border: 3px solid #42BBCC;
  border-radius: 55px;
  position: absolute;
  left: 260px;
  top: 0px;
  height: 60px;
}

.doctor__experience_text {
	font-size: 27px;
	color: #000000;
	line-height: 31px;
	padding: 8px 17px 0px 17px;
}

@media all and (max-width: 1200px) {

	.doctor__col-1 {
		width: 44%;
		padding: 45px 0px 34px 25px;
	}

	.doctor__col-2 {
		width: 56%;
	}

	.doctor__name_text1 {
		font-size: 22px;
		line-height: 27px;
	}

	.doctor__name_text2 {
		font-size: 17px;
		line-height: 28px;
	}

	.doctor__name {
		width: 445px;
		height: 78px;
	}

	.doctor__experience_text {
		font-size: 20px;
		line-height: 27px;
	}

	.doctor__experience {
		width: 170px;
		left: 60px;
		height: 50px;
	}

	.doctor__text1 {
		font-size: 22px;
		line-height: 30px;
	}

	.doctor__button a {
		font-size: 18px;
		padding: 16px 50px 17px 50px;
		margin-bottom: 20px;
	}

	.doctor__text2 {
		font-size: 18px;
		line-height: 27px;
	}

	.doctor__text3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 25px;
	}
}

@media all and (max-width: 1000px) {

	.doctor__col-1 {
		width: 100%;
	}

	.doctor__button {
		text-align: center;
	}

	.doctor__col-2 {
		width: 100%;
	}

	.doctor__img {
		text-align: center;
	}

	.doctor__row {
		border-bottom-right-radius: 40px;
	}

	.doctor {
		padding-bottom: 20px;
	}
}

@media all and (max-width: 500px) {

	.doctor__text1 {
		font-size: 18px;
		line-height: 24px;
	}

	.doctor__col-1 {
		padding: 45px 0px 34px 10px;
	}

	.doctor__button a {
		font-size: 18px;
		padding: 16px 30px 17px 30px;
		margin-bottom: 15px;
	}

	.doctor__text2 {
		font-size: 16px;
		line-height: 24px;
	}

	.doctor__text3 {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.doctor__name_text1 {
		font-size: 16px;
		line-height: 18px;
	}

	.doctor__name_text2 {
		font-size: 14px;
		line-height: 24px;
	}

	.doctor__name {
		width: 310px;
		left: 0px;
		bottom: 30px;
		height: 58px;
	}

	.doctor__name_text1 {
		font-size: 16px;
		line-height: 18px;
		padding: 5px 20px 0px 35px;
	}

	.doctor__name_text2 {
		font-size: 14px;
		line-height: 24px;
		padding-left: 13px
	}

	.doctor {
		padding-top: 40px;
		padding-bottom: 30px;
	}

	.doctor__experience {
		width: 143px;
		left: 0px;
		height: 43px;
	}

	.doctor__experience_text {
		font-size: 16px;
		line-height: 20px;
	}
}

/* -------------------------------------------------- */

.contacts {
	padding-top: 50px;
	padding-bottom: 100px;
}

.contacts__row {
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0px 10px 36.6px 0px #00000040;
	border-top-left-radius: 73px;
	border-bottom-left-radius: 73px;
	border-top-right-radius: 73px;
	border-bottom-right-radius: 73px;
}

.contacts__col-1 {
	background: #FBFBFB;
	width: 55%;
	padding: 45px 0px 30px 60px;
	border-top-left-radius: 73px;
	border-bottom-left-radius: 73px;
}

.contacts__col-1-r {
	display: flex;
	flex-wrap: wrap;
}

.contacts__col-1-1 {
	width: 45%;
}

.contacts__col-1-2 {
	width: 55%;
}

.moving-taxi {
	width: 220px; 
	height: auto;
	animation: moveLeftRight 4s infinite linear;
	display: inline-block;
	text-decoration: none;
	text-align: center;
}

.text-taxi-1 {
	text-align: center;
	letter-spacing: 10px;
	color: #7B7B7B;
}

.text-taxi-2 {
	text-align: center;
	letter-spacing: 6px;
	color: #7B7B7B;
}
  
@keyframes moveLeftRight {

	0% {
	  transform: translateX(0);
	}

	50% {
	  transform: translateX(200px);
	}

	100% {
	  transform: translateX(0);
	}

}

.contacts__col-2 {
	width: 45%;
	border-top-right-radius: 73px;
	border-bottom-right-radius: 73px;
}

.contacts__col-2 img,
.contacts__col-2 iframe {
	border-top-right-radius: 73px;
	border-bottom-right-radius: 73px;
}

.contacts__title {
	font-size: 44px;
	color:#42BBCC;
	line-height: 40px;
	letter-spacing: 0.1rem;
	margin-bottom: 45px;
	margin-left: 25px;
}

.contacts__location {
	background: url(../img/contacts/contacts-img1.svg) no-repeat left top 5px;
	font-size: 28px;
	color: #42BBCC;
  display: inline-block;
  padding-left: 50px;
	line-height: 40px;
	margin-bottom: 20px;
}

.contacts__call a {
	background: url(../img/contacts/contacts-img2.svg) no-repeat left top 5px;
	font-size: 28px;
	color: #42BBCC;
  display: inline-block;
  padding-left: 50px;
  text-decoration: none;
	line-height: 40px;
	margin-bottom: 20px;
}

.contacts__clock {
	background: url(../img/contacts/contacts-img3.svg) no-repeat left top 3px;
	font-size: 28px;
	color: #42BBCC;
  padding-left: 50px;
	line-height: 35px;
	margin-bottom: 20px;
}

@media all and (max-width: 1200px) {

	.contacts__col-1 {
		width: 45%;
		padding: 45px 0px 25px 35px;
	}

	.contacts__col-2 {
		width: 55%;
	}

	.contacts__title {
		font-size: 38px;
		line-height: 35px;
		margin-bottom: 30px;
	}

	.contacts__location {
		font-size: 22px;
		line-height: 30px;
		padding-left: 35px;
		margin-bottom: 15px;
	}

	.contacts__call a {
		font-size: 22px;
		padding-left: 40px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	.contacts__clock {
		font-size: 22px;
		padding-left: 42px;
		margin-bottom: 10px;
	}
}

@media all and (max-width: 1000px) {

	.contacts__col-1-1 {
		width: 100%;
	}

	.contacts__col-1-2 {
		width: 100%;
	}

}

@media all and (max-width: 900px) {

	.contacts__title {
		font-size: 28px;
		line-height: 28px;
		margin-bottom: 20px;
	}

	.contacts__location {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.contacts__call a {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.contacts__clock {
		font-size: 18px;
		line-height: 25px;
	}

	.contacts {
		padding-bottom: 60px;
	}
}

@media all and (max-width: 700px) {

	.contacts__col-1 {
		width: 100%;
	}

	.contacts__col-2 {
		width: 100%;
	}

	.contacts__col-1 {
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		padding: 25px 0px 20px 15px;
	}

	.contacts__col-2 img {
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}

/* -------------------------------------------------- */

.clinics {
	padding-top: 50px;
	padding-bottom: 60px;
	box-shadow: 0px 10px 36.6px 0px #00000040;
	margin-bottom: 80px;
	border-radius: 46px;
	padding-left: 10px;
	padding-right: 10px;
}

.clinics__title {
	color: #42BBCC;
	font-size: 51px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	padding-bottom: 60px;
}

.clinics__item {
	margin-right: 25px;
	margin-left: 25px;
}

.clinics__img img {
	text-align: center;
	border: 3px solid #42BBCC;
	border-radius: 44px;
}

.clinics .slider-clinics .owl-stage {
	display: flex;
}

.clinics .slider {
	position: relative;
	overflow: hidden;
	padding-left: 20px;
  padding-right: 20px;
}

.clinics .owl-prev {
	position: absolute;
	background: url(../img/experts/experts-img-left.svg) no-repeat;
	left: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -30px;
	width: 23px;
	height: 49px;
	border: none;
}

.clinics .owl-next {
	position: absolute;
	background: url(../img/experts/experts-img-right.svg) no-repeat;
	right: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -30px;
	width: 23px;
	height: 49px;
	border: none;
}

@media all and (max-width: 1000px) {

	.clinics__title {
		font-size: 42px;
		line-height: 22px;
	}
}

	@media all and (max-width: 800px) {

	.clinics__title {
		font-size: 32px;
		line-height: 14px;
	}
}

	@media all and (max-width: 600px) {

		.clinics__title {
		font-size: 30px;
		line-height: 38px;
	}
}

/* -------------------------------------------------- */

.consultation {
	margin-top: 100px;
	margin-bottom: 100px;
}

.form__wrap {
	background: #fff;
	box-shadow: 0px 10px 36.6px 0px #00000040;
	max-width: 1552px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 50px;
	padding-bottom: 40px;
	margin: 0 auto;
	border-radius: 46px;
}

.consultation__title {
	color: #42BBCC;
	font-size: 51px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	padding-bottom: 60px;
}

.forma {
	max-width: 920px;
	margin: 0 auto;
}

.forma input[type="text"],
.forma input[type="tel"] {
	width: 100%;
	padding: 10px;
	border: 3px solid #C5C2C2;
	margin-bottom: 20px;
	border-radius: 30px;
	text-align: center;
	font-size: 51px;
	color: #C5C5C5;
}

.forma input[type="submit"] {
	width: 100%;
  background: #42BBCC;
	color: #fff;
	font-size: 40px;
	display: inline-block;
	text-decoration: none;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	border-radius: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	border: none;
}

input[type="text"]::-moz-placeholder {opacity: 1; color: #C5C5C5;}
input[type="text"]:focus::-moz-placeholder {opacity: 0; color: transparent;}
input[type="tel"]::-moz-placeholder {opacity: 1; color: #C5C5C5;}
input[type="tel"]:focus::-moz-placeholder {opacity: 0; color: transparent;}

.consultation__text {
	font-size: 26px;
	color: #C2C2C2;
	text-align: center;
}

.consultation__text a {
	color: #C2C2C2;
}

.consultation-spam {
	font-size: 32px !important;
}

@media all and (max-width: 1000px) {

	.consultation__title {
		font-size: 42px;
		line-height: 22px;
		padding-bottom: 50px;
	}

	.forma input[type="text"],
	.forma input[type="tel"] {
		font-size: 42px;
	}

	.forma input[type="submit"] {
		font-size: 28px;
	}

	.consultation__text {
		font-size: 20px;
	}
}

@media all and (max-width: 700px) {

	.consultation__title {
		font-size: 30px;
		line-height: 16px;
		padding-bottom: 35px;
	}

	.forma input[type="text"],
	.forma input[type="tel"] {
		font-size: 30px;
	}

	.forma input[type="submit"] {
		font-size: 20px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.consultation__text {
		font-size: 18px;
	}

	.consultation {
		margin-top: 80px;
		margin-bottom: 70px;
	}

	.consultation-spam {
		font-size: 18px !important;
	}
}

@media all and (max-width: 500px) {

	.form__wrap {
		padding-top: 25px;
		padding-bottom: 30px;
	}

	.consultation__title {
		font-size: 30px;
		line-height: 36px;
		padding-bottom: 25px;
	}

	.forma input[type="text"],
	.forma input[type="tel"] {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.forma input[type="submit"] {
		font-size: 14px;
	}

	.consultation__text {
		font-size: 12px;
	}
}

/* -------------------------------------------------- */

.questions {
	background: #42BBCC;
	padding: 45px 10px 70px 10px;
}

.questions__title {
	color: #fff;
	font-size: 40px;
	line-height: 32px;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	padding-bottom: 30px;
	text-align: center;
}

.questions .accordion-body {
	margin-top: 30px;
	margin-bottom: 30px;
}

.questions .accordion {
	max-width: 920px;
	margin: 0 auto;
}

.questions .accordion .container {
	position: relative;
	border-bottom: 4px solid #42BBCC;
	padding: 15px 20px 10px 20px;
	background: #fff;
	border-radius: 70px;
}

.questions .accordion .container:last-child {
	border-bottom: 0;
}

.questions .accordion .label {
	font-size: 29px;
	line-height: 32px;
	position: relative;
	padding: 5px 70px 5px 5px;
	color: #42BBCC;
	cursor: pointer;
}

.questions .accordion .label::before {
	content: '';
	background: url(../img/questions/i-plus.svg) center no-repeat;
	position: absolute;
	width: 30px;
  height: 30px;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
}

.questions .accordion .content {
	font-size: 20px;
	position: relative;
	line-height: 24px;
	height: 0;
	overflow: hidden;
	transition: 0.5s;
	margin: 10px 40px 0px 40px;
	color: #585858;
}

.questions .accordion .content p {
	margin-bottom: 10px;
}

.questions .accordion .container.active .content {
	height: auto;
}

.questions .accordion .container.active .label::before {
	content: '';
	background: url(../img/questions/i-minus.svg) center no-repeat;
}

@media all and (max-width: 1000px) {

	.questions__title {
		font-size: 36px;
		line-height: 27px;
		padding-bottom: 25px;
	}

	.questions .accordion .label {
		font-size: 26px;
		line-height: 30px;
	}
}

@media all and (max-width: 700px) {

	.questions {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.questions__title {
		font-size: 30px;
		line-height: 36px;
		padding-bottom: 5px;
	}

	.questions .accordion .label {
		font-size: 18px;
		line-height: 23px;
		padding: 5px 30px 5px 5px;
	}

	.questions .accordion .content {
		font-size: 16px;
		line-height: 18px;
		margin: 10px 10px 0px 20px;
  }
}

/* ----------------------------------------------- */

.up_arrow {
  background: url("data:image/svg+xml,%3Csvg width='40px' height='40px' fill='cyan' enable-background='new 0 0 330 330' viewBox='0 0 330 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m325.606 229.393-150.004-150c-2.812-2.813-6.628-4.393-10.606-4.393-3.979 0-7.794 1.581-10.607 4.394l-149.996 150c-5.858 5.858-5.858 15.355 0 21.213 5.857 5.857 15.355 5.858 21.213 0l139.39-139.393 139.397 139.393c2.929 2.929 6.768 4.393 10.607 4.393s7.678-1.464 10.607-4.394c5.857-5.858 5.857-15.355-.001-21.213z'/%3E%3C/svg%3E");
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.calculator {
	margin-top: 131px;
}

.calculator__bg {
	display: flex;
	flex-wrap: wrap;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	border-bottom-left-radius: 40px;
	background: #FAFAFA;
	box-shadow: -4px 24px 14.9px -7px #0000002E;
}

.calculator__col-1 {
	width: 50%;
	padding-left: 99px;
	padding-bottom: 40px;
	margin-right: 10%;
}

.calculator__col-2 {
	width: 40%;
}

.calculator__video {
	width: 100%;
	border-top-left-radius: 39px;
	border-top-right-radius: 39px;
	border-bottom-right-radius: 300px;
	border-bottom-left-radius: 300px;
	display: block;
}

.calculator__title {
	font-size: 35px;
	line-height: 32px;
	color: #42BBCC;
	margin-top: 42px;
	margin-bottom: 25px;
}

.calculator__select {
	margin-bottom: 41px;
}

.calculator__select-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
	align-items: center;
}

.calculator__select-row:last-child {
	margin-bottom: 0;
}

.calculator__select-col-1 {
	font-size: 20px;
	line-height: 32px;
	color: #414141;
	width: 40%;
}

.calculator__select-col-2 {
	width: 60%;
}

.calculator__sel {
	color: #414141;
	background-color: transparent;
	border: 3px solid #D3DAED;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-family: 'GothamPro', Arial, sans-serif;
	font-size: 22px;
	line-height: 32px;
	width: 100%;
	padding: 6px 33px 6px 33px;
	outline: none;
	max-width: 394px;
}

.calculator__input {
	color: #414141;
	background-color: transparent;
	border: 3px solid #D3DAED;
	border-radius: 20px;
	display: block;
	font-size: 22px;
	line-height: 32px;
	width: 100%;
	padding: 6px 33px 6px 33px;
	outline: none;
	max-width: 394px;
}

.calculator__text-1 {
	font-size: 30px;
	line-height: 32px;
	font-weight: bold;
	color: #414141;
	margin-bottom: 20px;
}

.calculator__button {
	margin-bottom: 11px;
}

.calculator__but {
	font-size: 24px;
	line-height: 32px;
	color: #FFFFFF;
	display: inline-block;
	padding: 10px 34px 10px 38px;
	border: none;
	background: #42BBCC;
	border-radius: 98px;
	cursor: pointer;
}

.calculator__text-2 {
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	color: #7F7F7F;
	margin-bottom: 20px;
}

.calculator__text-2 a {
	color: #7F7F7F;
}

@media all and (max-width: 1200px) {

	.calculator {
		margin-top: 70px;
	}

	.calculator__col-1 {
		width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
		padding-left: 10px;
	}

	.calculator__select-col-1 {
		font-size: 18px;
		line-height: 28px;
	}

	.calculator__sel {
		font-size: 16px;
		line-height: 28px;
		padding: 6px 13px 6px 13px;
	}

	.calculator__input {
		font-size: 16px;
		line-height: 28px;
		padding: 6px 13px 6px 13px;
	}

	.calculator__text-1 {
		font-size: 28px;
		line-height: 30px;
	}

	.calculator__but {
		font-size: 16px;
		line-height: 28px;
		padding: 10px 24px 10px 28px;
	}

	.calculator__text-2 {
		font-size: 22px;
		line-height: 28px;
	}

	.calculator__col-2 {
		width: 100%;
	}

	.calculator__bg {
		border-bottom-right-radius: 40px;
	}

}
  
.modal_backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
}

.modal_wrap {
	position: relative;
	background: #fff;
	padding: 20px;
	overflow: auto;
	max-height: 100vh;
}

.modal_btn_close {
	cursor: pointer;
	width: 12px;
	height: 12px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M5.11562 6.00011L0.557617 10.5581L1.44162 11.4421L5.99962 6.88411L10.5576 11.4421L11.4416 10.5581L6.88362 6.00011L11.4416 1.44211L10.5576 0.558105L5.99962 5.11611L1.44162 0.558105L0.557617 1.44211L5.11562 6.00011Z' fill='%23CECCDE'/%3E%3C/svg%3E") no-repeat;
	position: absolute;
	right: 5px;
	top: 5px;
}

.modal_title {
	font-weight: 500;
	font-size: 18px;
	text-align: center;
}

.popup {
	max-width: 320px;
}

.popup .title {
	font-size: 24px;
	font-weight: 800;
	color: #212121;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
}
  
.popup .connection {
	font-size: 17px;
	color: #212121;
	text-align: center;
	margin-bottom: 23px;
}
  
.popup input[type="text"] {
	background: #f5f5f5;
	font-size: 15px;
	color: #A7A7A7;
	box-sizing: border-box;
	border: 1px solid #E5E5E5;
	padding: 18px 10px 18px 20px;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 16px;
}
  
.popup input[type="submit"] {
	font-size: 15px;
	color: #8D6D1A;
	width: 100%;
	text-decoration: none;
	text-align: center;
	border: none;
	background: linear-gradient(270deg, #F6DE8F 0%, #ECBD5B 100%);
	border-radius: 5px;
	padding: 19px 35px 16px 35px;
	text-transform: uppercase;
	display: inline-block;
	font-weight: 800;
	line-height: 25px;
	cursor: pointer;
	margin-bottom: 23px;
}

.popup input[type="submit"]:hover {
	background: linear-gradient(270deg, #ECBD5B 0%, #F6DE8F 100%);
}
  
.popup .warning {
	font-size: 13px;
	line-height: 16px;
	color: #212121;
	text-align: center;
}

@media all and (max-width: 700px) {

	.banner, 
	.advantages, 
	.calculator, 
	.reviews,
	.doctor {
		padding-left: 10px;
		padding-right: 10px;
	}

	.work,
	.experts,
	.clinics,
	.consultation {
		margin-left: 10px;
		margin-right: 10px;
	}

}

.input-gray::placeholder {
	color: #C5C5C5;
}

.works {
	background: #FBFBFB;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
}

.works__title {
	color: #42BBCC;
	font-size: 51px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	padding-top: 30px;
	padding-bottom: 50px;
}

.works__slider {
	position: relative;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;
}

.works__item {
	margin-right: 25px;
	margin-left: 25px;
	border: 6px solid #42BBCC;
	border-radius: 79px;
	position: relative;
}

.works__img {
	text-align: center;
}

.works__img img {
	border-radius: 73px;
}

.works__text {
	font-size: 35px;
	line-height: 32px;
	color: #FFFFFF;
	padding: 23px 83px 15px 83px;
	display: inline-block;
	background: #42BBCC;
	border-radius: 156px;
	position: absolute;
	left: 17px;
	top: -6px;
}

.works__items .owl-stage {
	display: flex;
}

.works__nav .owl-prev {
	position: absolute;
	background: url(../img/experts/experts-img-left.svg) no-repeat;
	left: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

.works__nav .owl-next {
	position: absolute;
	background: url(../img/experts/experts-img-right.svg) no-repeat;
	right: 0;
	top: 50%;
	cursor: pointer;
	margin-top: -40px;
	width: 23px;
	height: 49px;
	border: none;
}

@media all and (max-width: 1200px) {

	.works__title {
		font-size: 44px;
	}

}

@media all and (max-width: 1000px) {

	.works__title {
		font-size: 34px;
	}

	.works__item {
		border: 2px solid #42BBCC;
		border-radius: 0;
	}

	.works__text {
		font-size: 14px;
		padding: 0px 5px;
		border-radius: 0;
		top: 0;
		left: 0;
	}

	.works__item {
		margin-right: 20px;
		margin-left: 20px;
	}

}

@media all and (max-width: 800px) {

	.works__title {
		font-size: 30px;
	}

	.works {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}
