* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

.flex-c {
   	display: flex;
   	align-items: center;
   	justify-content: center;
}




.container {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.notification {
	width: 100%;
	height: 50px;
	/*border: 2px dashed red;*/
   	background-color: #D0E8F9;
   	color: #577F9C;
   	font-size: 16px;
}

h2 {
	font-size: 52px;
	margin: 10px 0;
}


					/* OVERLAY START  */

.overlay {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba(0, 0, 0, 0.5);
  	z-index: 9000;
	display: none;
}

.overlay___show {
  	display: block;
}

.overlay_form {
	position: fixed;
	top: 30%;
	left: 30%;
/*  border: 3px dashed red;*/
	width: 800px;
	background-color: #EBF5FC;
	border-radius: 20px;
	/*color: white;*/
	padding: 0 50px 20px 50px;
	flex-direction: column;
	z-index: 9100;
	display: none;
	/*display: flex;*/
}

.overlay_form___show {
  	display: flex;
}

.overlay_form___hide {
    animation: overlay_form___hide;
    animation-duration: 0.5s;
    /*animation-delay: 0.1s;*/
    animation-fill-mode: forwards;
}

	.overlay_form_exit {
	    display: flex;
	    justify-content: flex-end;
	    font-size: 52px;
	    margin: 0;
	    cursor: pointer;
	}

	.overlay_form_title {
	    font-size: 52px;
	    margin: 0;
	}

	.overlay_form_decrp {
	    font-size: 24px;
	    margin: 0;
	    margin-top: 20px;
	    color: #383838;
	}

	.overlay_form form {
		display: flex;
		flex-direction: column;
		margin-top: 30px;
	}

		.overlay_form_inputs {
			display: flex;
			justify-content: space-between;
		}

			.overlay_form input {
				width: 48%;
				height: 45px;
				border-radius: 25px;
				border: none;
				padding-left: 20px;
			}

		.overlay_form_button {
			margin-top: 20px;
			display: flex;
			justify-content: space-between;
		}

			.overlay_form_button button {
				width: 48%;
				height: 45px;
				border-radius: 25px;
				background-color: #0DA3FF;
				color: #FFFFFF;
				border: none;
				font-size: 16px;
			}

			.overlay_form_button .overlay_form_info {
				width: 48%;
				color: #9CB4C5;
				font-size: 14px;
			}

				.overlay_form_button .overlay_form_info a {
					color: #9CB4C5;
				}

.overlay_message {
	position: fixed;
	top: 30%;
	left: 30%;
/*  border: 3px dashed red;*/
	width: 800px;
	background-color: #EBF5FC;
	border-radius: 20px;
	/*color: white;*/
	/*padding: 0 50px 20px 50px;*/
	padding: 50px;
	flex-direction: column;
	z-index: 9100;
	display: none;
	/*display: flex;*/
	font-size: 30px;
}

	.overlay_message p {
		margin: 0;
		text-align: center;
	}

.overlay_message___show {
  	display: flex;
    animation: overlay_message___show;
    animation-duration: 3.5s;
    /*animation-delay: 0.1s;*/
    animation-fill-mode: forwards;
}

@keyframes overlay_message___show {
  	0% 		{ transform: rotateX(0)rotateY(90deg)scaleX(0) }
  	10% 	{ transform: rotateX(0)rotateY(0)scaleX(1) }
  	90% 	{ transform: rotateX(0)rotateY(0)scaleX(1) }
  	100% 	{ transform: rotateX(0)rotateY(90deg)scaleX(0) }
/*  0% 	{ transform: translateX(0) }
  100% 	{ transform: translateX(100px) }*/
}


					/* OVERLAY END  */


					/* NAV START  */


.nav {
	display: flex;
	padding: 10px 0;
}

	.nav-logo-wrap {
		display: flex;
		/*border: 2px dashed yellow;*/
	}

	.nav-items {
		flex-grow: 1;
		/*width: 100%;*/
		/*border: 2px dashed green;*/
		font-size: 20px;
		display: flex;
	}

		.nav-items ul {
			flex-grow: 1;
			display: flex;
			/*width: 100%;*/
			justify-content: space-around;

		}

		.nav-items li {
			/*list-style-position: inside;*/
			display: inline;
		}

		.nav-items li a {
			color: #383838;
			text-decoration: none;
		}

		.nav-items a:hover {
			color: #0DA3FF;
		}

	.nav-call {
		display: flex;
		/*border: 2px dashed purple;*/
	}

		.nav-call-left {
			/*color: #0DA3FF;*/
			margin-right: 20px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			/*align-items: center;*/
		}

			.nav-call-left .number {
				color: #0DA3FF;
				font-size: 20px;
				/*line-height: 0.5;*/
				margin: 0;
				padding: 0;
			}

				.nav-call-left .number p {
					margin: 0;
					padding: 0;
				}

				.nav-call-left .number a {
					text-decoration: none;
					color: #0DA3FF;
					/*font-weight: bold;*/
				}

			.nav-call-left .number-decr {
				color: #3838388C;
			}

				.nav-call-left .number-decr p {
					margin: 0;
					padding: 0;
				}

		.nav-call-right {
			/*color: #0DA3FF;*/
		}

			.nav-call-right-button {
				background-color: #0DA3FFD6;
				color: white;
				border-radius: 32px;
				padding: 1px 20px;
			}

			.nav-call-right-button {
				cursor: pointer;
			}


					/* NAV END  */


					/* BANNER START  */


.block-banner {
	/*width: 100%;*/
	height: 720px;
 	background: url('/images/banner-doctor02.png') 74% bottom no-repeat,
 							url('/images/banner-background2.png') bottom 1% right 0% no-repeat;
  	/*background-size: 90%, 25%, 25%, 25%, contain;*/
	background-color: #F1F8FD;
}

	.banner-content {
		/*padding: 50px 0;*/
		display: flex;
		flex-direction: column;
		justify-content: center;
		/*align-items: center;*/
	}

		.banner-title {
			margin-top: 50px;
		}

			.banner-title h1 {
				font-size: 64px;
				font-weight: bolder;
				margin: 20px 0;
			}

		.banner-list {
		}

			.banner-list li {
				font-size: 20px;
				list-style-image: url(/images/list_check-all.png);
			}

		.banner-buttons {
			display: flex;
			margin-top: 50px;
			font-size: 20px;
		}

			.button-left {
				background-color: #0DA3FF;
				color: white;
				border-radius: 32px;
				padding: 1px 30px;
				margin: 20px;
				cursor: pointer;
			}

			.button-right {
				/*background-color: #daf1f7;*/
				color: #0DA3FF;
				border-radius: 32px;
				padding: 0px 30px;
				margin: 20px;
				border: 1px solid #0DA3FF;
				cursor: pointer;
			}

				.banner-buttons p {
					margin: 20px 1px;
				}


					/* BANNER END  */


					/* SERVICES START  */



.block-services {
	/*width: 100%;*/
	margin-top: 100px;
	/*margin: 100px 0;*/
}

	.sevices-title {
		/*width: 100%;*/
		margin-top: 20px;
	}

	.sevices-items {
		/*width: 100%;*/
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 40px;
	}

		.service-item {
			width: 32%;
			background-color: #F1F8FD;
			/*border: 2px dashed red;*/
			border-radius: 20px;
			padding: 10px;
			margin-bottom: 20px;
		}

			.service-item-image {
				width: 100%;
				border-radius: 20px;
			}

			.service-item-title {
				font-size: 24px;
				margin: 10px 20px;
			}

			.service-item-descr {
				font-size: 16px;
				margin: 10px 20px;
				color: #383838BF;
			}

			.service-item-price-button {
				display: flex;
				position: relative;
				margin-bottom: 70px;
				margin-top: 50px;
			}

				.service-item-price {
					position: absolute;
					top: 0;
					left: 30px;
					height: 55px;
					border-radius: 32px;
					border: 1px solid #0DA3FF;
					width: 80%;
					padding: 0 40px;
				}

				.service-item-button {
					position: absolute;
					top: 0;
					right: 30px;
					height: 55px;
					background-color: #0DA3FF;
					border-radius: 32px;
					padding: 0 20px;
					color: white;
					font-size: 18px;
					cursor: pointer;
				}

					/* SERVICES END  */


					/* LADDER START  */


.block-ladder-treat {
	/*width: 100%;*/
	margin: 100px auto;
}

	.block-ladder-treat img {
		width: 100%;
	}


					/* LADDER END  */


					/* ABOUT START  */


.block-about {
	background-color: #F1F8FD;
	padding-bottom: 200px;
}

	.about-content {
		padding-top: 100px;
	}

		.about-content-text-img {
			display: flex;
			margin-bottom: 50px;
		}

			.about-content-text {
				width: 50%;
				padding-right: 20px;
			}

				.about-content-text p {
					font-size: 18px;
				}

				.about-content-text ul {
					font-size: 18px;
				}

					.about-content-text ul li {
						/*display: flex;*/
					}

					.about-content-text ul li:nth-child(1) {
						list-style-image: url(/images/main-about-list-01.png);
					}

					.about-content-text ul li:nth-child(2) {
						list-style-image: url(/images/main-about-list-02.png);
					}

					.about-content-text ul li:nth-child(3) {
						list-style-image: url(/images/main-about-list-03.png);
					}

					.about-content-text ul li:nth-child(4) {
						list-style-image: url(/images/main-about-list-04.png);
					}

			.about-content-img {
				width: 50%;
			}

			.about-content-img img {
				width: 100%;
			}

		.about-documents {
			/*display: flex;*/
		}

			.about-documents-title {
				/*display: flex;*/
			}

				.about-documents-title p {
					font-size: 28px;
				}

			.about-documents-images {
				display: flex;
				justify-content: space-between;
			}

				.about-documents-images img {
					width: 22%;
				}


					/* ABOUT END  */


					/* FOOTER START  */

footer {
	min-height: 100px;
	display: flex;
	flex-direction: column;
}

	.upper {
		background-color: #232323;
		color: #FFFFFF8C;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
	}

		.upper p {
			margin: 8px;
		}

	.lower {
		background-color: #1A1A1A;
		color: #FFFFFF;
		display: flex;
		flex-direction: column;
		align-items: center;
	}


					/* FOOTER END  */






.block-reviews {
	/*height: 1000px;*/
}