@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700|Roboto:200,300,800&display=swap&subset=cyrillic');
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: #fff;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 18px;
	font-weight: 300;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;

	line-height: 30px;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

* {
	font-weight: 300;
}

h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	/*font-weight: 300 !important;*/
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 300;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
button {font-weight: 300;}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}
@media (min-width: 576px){
	.holder {
		max-width: 540px;
		margin: auto;
		padding: 0;
	}
}
@media (min-width: 768px){
	.holder {
		max-width: 720px;	
	}
}
@media (min-width: 1024px) {
	.holder {
		max-width: 960px;
	}
}
@media (min-width: 1200px){
	.holder {
		max-width: 1100px;
	}
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
.title {
	margin: 0 0 45px;
	font-size: 42px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 48px;
	text-align: center;
}
h3 {
	margin: 0 0 15px;
	font-size: 28px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 30px;
}
a {transition: all .3s linear;}
p {margin: 0 0 30px;}
p a, .article li a {color: #0084ff;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 12px 59px 11px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	background: #187fa8;
	border: 1px solid #187fa8;
	border-radius: 8px;
	transition: all .3s linear;
}
button.button {
	width: 100%;
	cursor: pointer;
}
/*.button:hover {
	background: #197397;
	border: 1px solid #197397;
}*/
.button-light {
	color: #889093;
	background: transparent;
	border: 1px solid #e3ebef;
}
.button-light:hover {
	color: #000;
	background: #e3ebef;
	border: 1px solid #e3ebef;
}
.button-blue {
	padding: 12px 35px 11px;
	color: #187fa8;
	background: transparent;
	border: 1px solid #187fa8;
}
/*.button-blue:hover {
	color: #fff;
	background: #187fa8;
	border: 1px solid #187fa8;
}*/
/************************* form-block *************************/
/************************* form-block *************************/
.input {
	display: block;
	width: 100%;
	height: 49px;
	padding: 0 17px;
	margin: 0 0 16px;
	color: #000;
	font-size: 16px;
	background: #fff;
	border: 1px solid #d9dfe2;
	border-radius: 8px;
}
.textarea {
	display: block;
	width: 100%;
	height: 120px;
	padding: 11px 17px;
	margin: 0 0 16px;
	color: #000;
	font-size: 16px;
	resize: vertical;
	background: #fff;
	border: 1px solid #d9dfe2;
	border-radius: 8px;
}
::-webkit-input-placeholder {color: #000;}
:-moz-placeholder {color: #000; opacity: 1;}
::-moz-placeholder {color: #000; opacity: 1;}
:-ms-input-placeholder {color: #000;}
.input.error, .textarea.error {
	color: rgb(255, 86, 71);
	background-color: rgb(255, 206, 202);
}
label.error {
	position: absolute;
	left: -9999px;
}
.select-block {
	margin: 0 0 16px;
}
.input-date {
	background: #fff url(../images/date-icon.svg) 90% center no-repeat;
	background-size: 18px 19px;
	background-position: right 13px center;
}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
}
.header {
	padding: 39px 0 0;
}
/************************* header-fixed *************************/
.header-fixed {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	z-index: 500;
	height: 80px;
	padding: 10px 0 0;
	background: #fff;
	box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);
	transition: all 0.5s ease;
}
.header-fixed.fixed {top: 39px;}
.header-fixed-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-fixed .header-nav-list {
	flex: 1;
	padding: 0 0 0 50px;
}
.header-fixed .header-logo-img {
	margin: 0;
}
.header-fixed .header-logo-img img {
	width: 46px;
}
/************************* header-line *************************/
.header-line {
	position: fixed;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 510;
	height: 39px;
	padding: 10px 0 8px;
	background: #fff;
	border-bottom: 1px solid #e3ecef;
}
.header-line-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.header-line-list li {
	position: relative;
	font-size: 14px;
	line-height: 20px;
}
.header-line-list a {
	position: relative;
	padding: 0 0 0 20px;
	color: #187fa8;
	text-decoration: none;
}
.header-line-list a:hover {text-decoration: underline;}
.header-line-list a:before {
	position: absolute;
	left: 0;
	top: 3px;
	display: block;
	content: '';
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	border: 1px solid #187fa8;
	transform: rotate(45deg);
}
.header-line-list a:after {
	position: absolute;
	left: 3px;
	top: 6px;
	display: block;
	content: '';
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	background: #187fa8;
	transform: rotate(45deg);
}
.header-line-list li:hover .subnav {display: block;}
.header-right .header-line-list {display: none;}
/************************* header-top *************************/
.header-top {
	padding: 35px 0 30px;
	background: #fff;
}
.header-top-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	max-width: 530px;
	color: #187fa8;
}
.header-logo-img {
	margin: 0 16px 0 0;
}
.header-logo-img img {
	width: 60px;
}
.header-logo-text {
	margin: -3px 0 0;
	font-size: 14px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 20px;
}
.header-logo-text b {
	display: block;
	padding: 4px 0 0;
	font-size: 16px;
	font-weight: 700;
}
.header-right {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}
.header-right .header-nav-list {display: none;}
.header-phone {
	padding: 0 0 0 32px;
	margin: 0 28px 0 0;
	font-size: 22px;
	font-family: 'Roboto Slab';
	font-weight: 700;
	line-height: 28px;
	background: url(../images/phone-icon.svg) 0 4px no-repeat;
	background-size: 17px 19px;
}
.header-phone-item a {
	color: #187fa8;
	text-decoration: none;
}
.header-info {
	width: 200px;
}
.header-user {
	display: block;
	padding: 8px 9px 6px;
	margin: 0 0 10px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	background: #187fa8;
	border: 1px solid #187fa8;
	border-radius: 30px;
}
.header-user span {
	padding: 0 0 0 20px;
	color: #fff;
	background: url(../images/user-icon.svg) 0 1px no-repeat;
	background-size: 13px 15px;
	transition: all 0.3s linear;
}
.header-user:hover {
	color: #187fa8;
	background: #fff;
	border: 1px solid #187fa8;
}
.header-user:hover span {
	color: #187fa8;
	background: url(../images/user-icon-blue.svg) 0 1px no-repeat;
	background-size: 13px 15px;
}
.header-info-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.header-info-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	color: #000;
	font-size: 11px;
	line-height: 13px;
	text-align: center;
	text-decoration: none;
	background: #ffe3a7;
	border-radius: 30px;
}
.header-info-item:hover {
	opacity: 0.8;
}
.header-search {
	width: 36px;
	min-width: 36px;
	background: #ffe3a7 url(../images/loupe.svg) 50% 50% no-repeat;
	background-size: 12px;
}
.header-lang {
	width: 36px;
	min-width: 36px;
}
.header-eye {
	flex: 1;
	margin: 0 10px;
}
/************************* header-nav *************************/
.header-nav {
	padding: 0 0 33px;
}
.header-nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.header-nav-list li {
	position: relative;
	font-size: 16px;
}
.header-nav-list a {
	color: #000;
	text-decoration: none;
	transition: all .3s linear;
}
.header-nav-list a:hover {color: #187fa8;}
.header-nav-list .active,
.header-nav-list .active > a,
.header-nav-list .active > span {
	color: #187fa8;
}
.subnav:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -10px;
	display: block;
	content: '';
	height: 10px;
}
.header-nav-list li:hover .subnav {display: block;}
.subnav {
	position: absolute;
	left: -30px;
	top: 100%;
	display: none;
	width: 280px;
	margin: 10px 0 0;
	padding: 20px 20px 10px 30px;
	z-index: 20;
	background: #fff;
	box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);
}
.subnav li {
    margin: 0 0 10px;
}
.mob-nav-icon {
	display: none;
	position: absolute;
	top: 34px;
	right: 15px;
	padding: 0 0 8px;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 24px;
    height: 2px;
    margin: 9px 0 0;
	background: #000;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -9px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #000;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #000;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
	background: #000;
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
	background: #000;
}
/************************* header-main *************************/
.header-video {
	position: relative;
	/*background: #187fa8;*/
}
.header-video img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 300px;
	/*filter: grayscale(1);
	opacity: 0.32;*/
}
.video-container {
	position: relative;
	padding: 100px 0;
}
.video-block {
	position: relative;
	height: 480px;
}
.video-block iframe {
	display: none;
	width: 100%;
	height: 100%;
}
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	width: 120px;
	height: 120px;
	margin: -60px 0 0 -60px;
	background: url(../images/play.svg) 50% 50% no-repeat;
	background-size: cover;
}
.video-play:hover {
	transform: scale(1.1);
}
.video-close {
	position: absolute;
	top: -44px;
	right: 0;
	z-index: 10;
	display: none;
	width: 24px;
	height: 24px;
	background: url(../images/close.svg) 50% 50% no-repeat;
	background-size: cover;
}
.video-close:hover {
	transform: rotate(180deg);
}
/************************* main-about *************************/
.main-about {
	padding: 95px 0 80px;
	text-align: center;
}
.main-about-title {
	margin: 0 0 38px;
	color: #187fa8;
	font-size: 24px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 30px;
}
/************************* category *************************/
.category {
	padding: 0px 0 44px;
}
.category-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -23px;
}
.category-col {
	width: 25%;
	padding: 0 23px 46px;
}
.category-item {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
	height: 100%;
	transition: all 0.3s linear;
	border-radius: 20px;
}
.category-item:hover {box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);}
.category-img {
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}
.category-img img {
	width: 100%;
	transition: all 0.3s linear;
}
.category-item:hover .category-img img {transform: scale(1.05);}
.category-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    padding: 20px 15px 21px;
    text-align: center;
	border: 1px solid #e3ebef;
	border-top: 0;
    border-radius: 0 0 20px 20px;
}
.category-name {
	font-size: 18px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 24px;
}
.category-name a {
	color: #187fa8;
	text-decoration: none;
}
/************************* actions *************************/
.actions {
	padding: 0px 0 90px;
}
.actions-slider {
	padding: 0 77px;
}
.actions-slide {
	padding: 23px;
}
.actions-slider .slick-arrow {
    top: 50%;
    margin-top: -20px;
}
.actions-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
	box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);
}
.actions-side {
	width: 328px;
	min-width: 328px;
}
.actions-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.actions-content {
	flex: 1;
	padding: 49px 30px 70px 44px;
}
.actions-title {
	margin: 0 0 22px;
	font-size: 22px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 30px;
}
.actions-date {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 21px;
	padding: 5px 24px 4px;
	font-size: 14px;
	line-height: 24px;
	background: #ffe600;
	border-radius: 30px;
}
.actions-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	padding: 7px 0 0;
	color: #fff;
	text-align: center;
	background: rgba(24, 127, 168, 0.8);
}
.actions-bottom-side {
	width: 328px;
	min-width: 328px;
	font-family: 'Roboto Slab';
	font-weight: 400;
}
.actions-bottom-content {
	flex: 1;
}
.actions-bottom-content a {
	color: #fff;
	text-decoration: none;
}
/************************* doctor *************************/
.doctor {
	padding: 0px 0 90px;
}
.doctor-slider {
	margin: -23px;
	padding: 56px 0 46px;
}
.doctor-slide {
	padding: 23px;
}
.doctor-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 20px;
	transition: all 0.3s linear;
}
.doctor-item:hover {box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);}
.doctor-photo {
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}
.doctor-photo img {width: 100%;}
.doctor-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	padding: 20px 25px 25px;
	text-align: center;
	border: 1px solid #e3ebef;
	border-top: 0;
	border-radius: 0 0 20px 20px;
}
.doctor-name {
	margin: 0 0 10px;
	font-size: 18px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 24px;
}
.doctor-name a {
	color: #187fa8;
	text-decoration: none;
}
.doctor-status {
	margin: 0 0 10px;
	color: #8b9295;
	font-size: 14px;
	line-height: 20px;
}
.doctor-bottom .button {
	display: block;
	width: 100%;
	margin: auto 0 0;
	padding: 11px 10px 12px;
}
.slick-dots {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}
.slick-dots li {
	margin: 0 6px 10px;
}
.slick-dots button {
	display: block;
	width: 12px;
	height: 12px;
	padding: 3px;
	font-size: 0;
	cursor: pointer;
	border: 1px solid #aeaeae;
	border-radius: 50%;
}
.slick-dots .slick-active button {
	border: 1px solid #2385ac;
}
.slick-dots .slick-active button:before {
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	background: #2385ac;
	border-radius: 50%;
}
/************************* news *************************/
.news {
	padding: 0px 0 100px;
}
.center-tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 0 44px;
	margin: -10px 0 0;
}
.center-tabs li {
	padding: 0 22px;
}
.center-tabs a {
	color: #187fa8;
	text-decoration: none;
}
.center-tabs a:hover {text-decoration: underline;}
.news-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -23px;
}
.news-col {
	width: 50%;
	padding: 0 23px 46px;
}
.news-item {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.news-item:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: block;
	content: '';
	background: #000;
	opacity: 0.3;
}
.news-item:after {
	position: absolute;
	height: 200px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 6;
	display: block;
	content: '';
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 77%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 77%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 77%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
}
.news-img {
	width: 100%;
	transition: all 0.3s linear;
}
.news-item:hover .news-img {transform: scale(1.05);}
.news-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	padding: 0 44px 39px;
}
.news-title {
	margin: 0 0 6px;
	font-size: 18px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 24px;
}
.news-title a {
	color: #fff;
	text-decoration: none;
}
.news-title a:hover {text-decoration: underline;}
.news-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 12px;
	line-height: 20px;
}
.news-date {
	margin: 0 15px 0 0;
	color: #fff;
}
.news-category {
	color: #ffff00;
	text-decoration: none;
}
/************************* order *************************/
.order {
	padding: 100px 0 100px;
	background: url(../images/media/order-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.order-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.order-side {
	max-width: 500px
}
.order-title {
	margin: 0 0 32px;
	color: #ffe3a7;
	font-size: 65px;
	font-family: 'Roboto Slab';
	font-weight: 700;
	line-height: 78px;
	text-transform: uppercase;
}
.order-text {
	color: #fff;
	font-size: 22px;
	line-height: 30px;
}
.order-form {
	width: 400px;
	padding: 50px 55px 55px;
	background: #fff;
	border-radius: 20px;
	box-shadow: -5.516px 4.31px 57px 0px rgba(0, 0, 0, 0.24);
}
.form-title {
	margin: 0 0 35px;
	color: #187fa8;
	font-size: 24px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 29px;
	text-align: center;
}
/************************* review *************************/
.review {
	padding: 91px 0 90px;
}
.review-slider {
	padding: 0 77px;
	margin: -23px 0 31px;
}
.review-slide {
	padding: 23px;
}
.slick-arrow {
	position: absolute;
	top: 78px;
	display: block;
	width: 22px;
	height: 39px;
	font-size: 0;
	cursor: pointer;
	background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
	background-size: cover;
}
.slick-prev {
	left: 0;
	transform: scale(-1, 1);
}
.slick-next {
	right: 0;
}
.review-item {
	padding: 50px 55px 50px;
	border-radius: 20px;
	box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);
}
.review-name {
	margin: 0 0 19px;
	font-size: 22px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 30px;
}
.review-date {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 20px;
}
.button-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}
.button-line .button {
	width: 206px;
	margin: 0 23px;
	padding: 12px 15px 11px;
}
/************************* gallery *************************/
.gallery {
	padding: 0px 0 100px;
}
.gallery-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -23px;
}
.gallery-item {
	width: 50%;
	padding: 0 23px 46px;
	
}
.gallery-item a:hover {box-shadow: 0 0 23px 0px rgba(201, 199, 200, 0.3);}
.gallery-item a {
	display: block;
	overflow: hidden;
	border-radius: 20px;
	transition: all 0.3s linear;
}
.gallery-item img {
	width: 100%;
	transition: all 0.3s linear;
}
.gallery-item a:hover img {transform: scale(1.05);}
/************************* contacts *************************/
.contacts .holder {
	position: relative;
}
.contacts-map {
	height: 685px;
}
.contacts-block {
	position: absolute;
	top: 100px;
	left: 0;
	z-index: 10;
	width: 285px;
	padding: 47px 55px 55px;
	background: #fff;
	border-radius: 15px;
}
.contacts-title {
	margin: 0 0 27px;
	font-size: 32px;
	font-family: 'Roboto Slab';
	font-weight: 400;
	line-height: 36px;
}
.contacts-info {
	padding: 0 0 10px;
}
.contacts-info-item {
	margin: 0 0 13px;
}
.contacts-info-item span {
	display: block;
	margin: 0 0 7px;
	font-size: 14px;
	line-height: 20px;
}
.contacts-info-item a {
	color: #000;
	text-decoration: none;
}
.contacts-info-item a:hover {color: #187fa8;}
.webs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.web {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0 15px 0 0;
	background: #187fa8;
	border-radius: 8px;
}
.web:hover {background: #ffe3a7;}
.web:last-child {margin: 0;}
.web1 svg {width: 18px;}
.web2 svg {width: 16px;}
.web3 svg {width: 7px;}
.web4 svg {width: 14px;}
.web path, .web circle {
	fill: #fff;
	transition: all 0.3s linear;
}
.web:hover path, .web:hover circle {fill: #000;}
/************************* other pages *************************/
/************************* main *************************/
.main {
	padding: 90px 0 100px;
	border-bottom: 1px solid #e3ecef;
}
.breadcrumbs-line {
	padding: 15px 0 14px;
	border-top: 1px solid #e3ecef;
	border-bottom: 1px solid #e3ecef;
}
.breadcrumbs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.breadcrumbs li {
	margin: 0 15px 0 0;
	color: #000;
	font-size: 12px;
	line-height: 16px;
}
.breadcrumbs li:before {
	display: inline-block;
	vertical-align: top;
	content: '/';
	color: #a0a7aa;
	margin: 0 14px 0 0;
}
.breadcrumbs li:first-child:before {display: none;}
.breadcrumbs li:last-child {margin: 0;}
.breadcrumbs a {
	color: #a0a7aa;
	text-decoration: none;
}
.breadcrumbs a:hover {color: #187fa8;}
.main .title {
    text-align: left;
}
/************************* pagination *************************/
.pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0 0;
}
.pagination-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination-list li {
	padding: 0 7px;
}
.pagination-list a {
	display: block;
	padding: 8px 11px 8px;
	color: #000;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 8px;
}
.pagination-list a:hover {color: #187fa8;}
.pagination-list .active {
	color: #187fa8;
	border: 1px solid #187fa8;
}
.pagination-arrow {
	display: block;
	width: 10px;
	height: 18px;
	background: url(../images/arrow-min.svg) 50% 50% no-repeat;
	background-size: cover;
}
.pagination-next {
	transform: scale(-1, 1);
}
/************************* sale page *************************/
.actions-block {
	margin: 0 0 -9px;
}
.actions-block .actions-item {
	margin: 0 0 55px;
}
/************************* review page *************************/
.review-block {
	margin: 0 0 -9px;
}
.review-block .review-item {
	margin: 0 0 55px;
}
.review-answer {
	padding: 24px 35px 27px;
	margin: 35px 0 4px;
	border: 1px solid #e3ebef;
	border-radius: 20px;
}
.review-answer-name {
	margin: 0 0 7px;
	color: #187fa8;
    font-size: 20px;
    font-family: 'Roboto Slab';
    font-weight: 400;
    line-height: 30px;
}
.title-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.title-button {
	margin: 0 0 40px;
}
/************************* news page *************************/
.main-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.side {
	width: 242px;
	min-width: 242px;
	margin: 0 44px 0 0;
}
.button-mobile {
	display: none;
}
.side-nav li {
	margin: 0 0 24px;
}
.side-nav li:last-child {margin: 0;}
.side-nav a {
	color: #187fa8;
	text-decoration: none;
}
.side-nav a:hover {color: #000;}
.side-nav .active {
	color: #000;
}
.content {
	overflow: hidden;
}
/************************* article page *************************/
.article-top {
	margin: -11px 0 41px;
	color: #a0a7aa;
	font-size: 12px;
	line-height: 18px;
}
.article-top a {
	color: #187fa8;
	text-decoration: none;
}
.article-slider {
	margin: 0 0 42px;
}
.big-slider {
	margin: 0 0 10px;
}
.big-slider img {
	width: 100%;
	border-radius: 20px;
}
.thumb-slider {
	margin: 0 -5px;
}
.thumb-slide {
	padding: 0 5px;
}
.thumb-slide img {
	width: 100%;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s linear;
}
.thumb-slide img:hover {opacity: 0.8;}
/************************* doctors page *************************/
.doctor-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -23px;
}
.doctor-col {
	width: 25%;
	padding: 0 23px 46px;
}
.sorting {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 25px;
}
.sorting-line {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 6px 0 20px;
	font-size: 18px;
	line-height: 24px;
}
.sorting-text {
	margin: 0 10px 0 0;
}
.sorting-links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.sorting-links a {
	margin: 0 14px 0 0;
	color: #187fa8;
	text-decoration: none;
	border-bottom: 1px dashed #187fa8;
}
.sorting-links a:hover,
.sorting-links .active {
	border-bottom: 1px dashed transparent;
}
.sorting-item {
	padding: 3px 21px 0 0;
	margin: 0 0 20px;
}
.sorting-item-top {
	position: relative;
	color: #187fa8;
	text-decoration: none;
	border-bottom: 1px dashed #187fa8;
}
.sorting-item-top:after {
	position: absolute;
	right: -21px;
	top: 8px;
	display: block;
	content: '';
	width: 11px;
	height: 6px;
	background: url(../images/arrow-down.svg) 50% 50% no-repeat;
	background-size: cover;
}
.search {
	position: relative;
	margin: 0 0 20px;
}
.sorting .search {
	width: 34%;
}
.search-input {
	display: block;
	width: 100%;
	height: 38px;
	padding: 0 14px;
	margin: 0;
	color: #000;
	font-size: 14px;
	background: #fff;
	border: 1px solid #dbe0e2;
	border-radius: 8px;
}
.search-button {
	position: absolute;
	top: 13px;
	right: 12px;
	display: block;
	width: 12px;
	height: 12px;
	background: url(../images/loupe-grey.svg) 50% 50% no-repeat;
	background-size: cover;
}
/************************* doctor-card page *************************/
.doc-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 100px;
}
.doc-photo {
	width: 41%;
}
.doc-photo img {
	width: 100%;
	border-radius: 20px;
}
.doc-content {
	width: 54%;
}
.doc-name {margin: -10px 0 21px;}
.doc-status {
	margin: 0 0 50px;
	color: #8b9295;
	line-height: 24px;
}
.doc-about {
	padding: 50px 55px 5px;
	border-radius: 20px;
	background-color: rgb(255, 255, 255);
	box-shadow: -5.516px 4.31px 24px 0px rgba(201, 199, 200, 0.3);
}
.doc-about-item {
	padding: 0 0 10px;
}


  


/************************* footer *************************/
.footer {
	padding: 69px 0 60px;
}
.footer-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.footer-content {
	width: 62%;
}
.footer-side {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 36%;
	padding: 20px 25px 20px;
	border: 1px solid #e3ebef;
	border-radius: 20px;
}
.footer-copy {
	margin: 0 0 31px;
	font-size: 14px;
	line-height: 24px;
}
.footer-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 14px;
	line-height: 24px;
}
.footer-list li {
	position: relative;
	width: 49.5%;
	padding: 0 0 0 18px;
	margin: 0 0 11px;
}
.footer-list li:before {
	position: absolute;
	top: 11px;
	left: 0;
	display: block;
	content: '';
	width: 10px;
	height: 1px;
	background: #000;
}
.footer-list a {
	color: #187fa8;
	text-decoration: none;
}
.footer-list a:hover {text-decoration: underline;}
.footer-side-img {
	margin: 0 14px 0 0;
}
.footer-side-img img {
	width: 40px;
}
.footer-side-text {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 24px;
}
.button-min {
	padding: 5px 30px 5px;
	color: #000;
	font-size: 12px;
	line-height: 16px;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #ff0000;
	border-radius: 30px;
}
.button-min:hover {
	color: #fff;
	background: #ff0000;
}

/************************* popup *************************/
.popup {
	width: 400px;
	display: none;
	border-radius: 20px;
}
.popup.fancybox-content {
	padding: 49px 54px 54px;
	border-radius: 20px;
}
.popup-title {
	margin: 0 0 32px;
	color: #187fa8;
    font-size: 24px;
    font-family: 'Roboto Slab';
    font-weight: 400;
	line-height: 30px;
	text-align: center;
}
/************************* media *************************/
@media screen and (max-width: 1199px) {
	.review-slider {
		padding: 0 27px;
		margin: -23px 0 31px;
	}
	.actions-slider {
		padding: 0 27px;
	}
	.content .news-content {
		padding: 0 25px 22px;
	}
	.content .news-title {
		font-size: 16px;
		line-height: 22px;
	}
	.doctor-col {width: 33.33%}
}
@media screen and (max-width: 1023px) {
	.header {padding: 0;}
	.header-fixed {
		height: 60px;
		padding: 10px 0 0;
	}
	.header-fixed.fixed {top: 0;}
	.header-fixed .header-nav-list {
		display: none;
	}
	.header-fixed .header-logo-img img {
		width: 30px;
	}
	.header-fixed-block {position: relative;}
	.header-fixed .mob-nav-icon {
		display: block;
		position: absolute;
		right: 0;
		top: 10px;
		z-index: 400;
	}
	
	.header-line {display: none;}
	.header-top-block {
		position: relative;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.header-right {
		width: 100%;
		padding: 20px 0 0;
		justify-content: space-between;
	}
	.mob-nav-icon {
		display: block;
		position: absolute;
		right: 0;
		top: 15px;
		z-index: 300;
	}
	.header-nav {display: none;}
	.header-right {
		position: fixed;
		top: 0px;
		left: -100%;
		bottom: 0;
		width: 100%;
		height: auto;
		z-index: 540;
		padding: 80px 15px 40px;
		max-height: 100vh; 
		overflow-y: auto;
		box-sizing: border-box;
		text-align: center;
		display: block;
		background: #fff;
		transition: all 0.5s ease;
	}
	.header-right.vis {
		left: 0;
	}
	.header-right .mob-nav-icon {
		top: 25px;
		left: 50%;
		margin-left: 140px;
	}
	.header-right .header-nav-list {
		display: block;
		padding: 0 0 5px;
	}
	.header-nav-list li {margin: 0 0 20px;}
	.header-nav-list a {color: #000;}
	.subnav:before {
		display: none;
	}
	.header-nav-list li:hover .subnav {display: none;}
	.subnav {
		position: relative;
		left: auto;
		top: auto;
		display: none;
		width: auto;
		margin: 0;
		padding: 20px 0 1px;
		background: none;
		box-shadow: none;
	}
	.subnav li {
		margin: 0 0 10px;
		font-size: 14px;
		line-height: 22px;
	}
	.header-right .header-line-list {
		display: block;
		padding: 10px 0 20px;
	}
	.header-line-list > li {margin: 0 0 25px;}
	.header-line-list li:hover .subnav {display: none;}
	.header-phone {
		max-width: 190px;
		margin: 0 auto 20px;
	}
	.header-info {
		max-width: 240px;
		width: auto;
		margin: 0 auto;
	}
	.title {
		margin: 0 0 35px;
		font-size: 36px;
		line-height: 42px;
	}
	.main-about {
		padding: 60px 0 70px;
		text-align: center;
	}
	.category-list {
		margin: 0 -15px;
	}
	.category-col {
		width: 25%;
		padding: 0 15px 30px;
	}
	.actions {
		padding: 0px 0 70px;
	}
	.actions-slider {
		margin: -27px 0;
	}
	.actions-item {display: block;}
	.actions-content {
		padding: 35px 30px 30px;
	}
	.actions-side {display: none;}
	.actions-bottom {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		height: auto;
		padding: 7px 10px 10px;
	}
	.actions-bottom-side {
		width: auto;
		min-width: 1px;
	}
	.doctor {
		padding: 0px 0 70px;
	}
	.doctor-slider {
		margin: -15px;
		padding: 45px 0 40px;
	}
	.doctor-slide {
		padding: 15px;
	}
	.news {
		padding: 0px 0 70px;
	}
	.news-block {
		margin: 0 -15px;
		padding: 0 0 10px;
	}
	.center-tabs {
		padding: 0 0 35px;
		margin: -10px 0 0;
	}
	.news-col {
		padding: 0 15px 30px;
	}
	.news-content {
		padding: 0 25px 20px;
	}
	.order {
		padding: 60px 0 70px;
	}
	.order-block {
		display: block;
	}
	.order-side {
		max-width: none;
		padding: 0 0 50px;
		text-align: center;
	}
	.order-title {
		margin: 0 0 25px;
		font-size: 48px;
		line-height: 56px;
	}
	.order-form {
		margin: 0 auto;
	}
	.review {
		padding: 60px 0 65px;
	}
	.review-slider {
		padding: 0 27px;
		margin: -23px 0 17px;
	}
	.review-item {
		padding: 30px 35px 30px;
	}
	.button-line .button {
		margin: 0 15px;
	}
	.gallery {
		padding: 0px 0 60px;
	}
	.gallery-block {
		padding: 0 0 10px;
		margin: 0 -15px;
	}
	.gallery-item {
		padding: 0 15px 30px;
	}
	.footer {
		padding: 49px 0 40px;
	}
	.footer-block {display: block;}
	.footer-content {
		width: auto;
		padding: 0 0 15px;
	}
	.footer-side {
		width: auto;
	}
	.main {
		padding: 60px 0 55px;
	}
	.actions-block .actions-item {
		margin: 0 0 30px;
	}
	.review-block .review-item {
		margin: 0 0 30px;
	}
	.main-block {display: block;}
	.side {
		width: auto;
		min-width: 1px;
		margin: 0;
		padding: 0 0 40px;
	}
	.side-nav {
		width: 240px;
		display: none;
	}
	.button-mobile {
		display: block;
	}
	.doc-card {
		margin: 0 0 60px;
	}
	.doc-about {
		padding: 30px 35px 1px;
	}
	.sorting .search {
		width: 100%;
	}
	.doctor-list {
		margin: 0 -15px;
	}
	.doctor-col {
		padding: 0 15px 30px;
	}

}
@media screen and (max-width: 767px) {
	.header-top {
		padding: 20px 0 20px;
	}
	.header-logo {
		max-width: none;
		padding: 0 40px 0 0;
	}
	.header-logo-text {
		margin: 0;
		font-size: 11px;
		line-height: 16px;
	}
	.header-logo-text b {
		display: block;
		padding: 4px 0 0;
		font-size: 12px;
	}
	.title {
		margin: 0 0 30px;
		font-size: 27px;
		line-height: 34px;
	}
	.category-col {
		width: 50%;
	}
	.actions-title {
		margin: 0 0 22px;
		font-size: 18px;
		line-height: 27px;
	}
	.actions-text {
		font-size: 16px;
		line-height: 24px;
	}
	.news-col {
		width: 100%;
	}
	.order-title {
		margin: 0 0 25px;
		font-size: 27px;
		line-height: 34px;
	}
	.order-text {
		font-size: 18px;
		line-height: 24px;
	}
	.contacts-block {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		padding: 0px 0 55px;
	}
	.contacts-title {
		font-size: 27px;
		line-height: 34px;
	}
	.contacts-map {
		height: 350px;
	}
	.article-top {
		margin: -5px 0 30px;
	}
	h3 {
		margin: 0 0 15px;
		font-size: 21px;
		line-height: 24px;
	}
	.sorting-item {
		margin: 0 0 25px;
	}
	.doctor-col {
		width: 50%;
	}
	.video-container {
		padding: 65px 0;
	}
	.video-block {
		height: 320px;
	}
}
@media screen and (max-width: 576px) {
	
	.main-about-title {
		margin: 0 0 30px;
		font-size: 18px;
		line-height: 27px;
	}
	.main-about-text {
		font-size: 16px;
		line-height: 24px;
	}
	.actions-slider {
		padding: 0 7px;
	}
	.actions-content {
		padding: 25px 20px 25px;
	}
	.order-form {
		width: auto;
		padding: 25px 20px 20px;
	}
	.form-title {margin: 0 0 25px;}
	.review-slider {
		padding: 0 7px;
		margin: -23px -10px 17px;
	}
	.review-item {
		padding: 30px 25px 30px;
	}
	.review-text {
		font-size: 16px;
		line-height: 27px;
	}
	.slick-arrow {
		top: 78px;
		width: 15px;
		height: 27px;
	}
	.button-line .button {
		width: 100%;
		margin: 0 0 20px;
	}
	.button-line .button:last-child {margin: 0;}
	.gallery-item {
		width: 100%;
	}
	.footer-list li {
		width: 100%;
	}
	.footer-side {
		width: auto;
		padding: 20px;
	}
	.pagination-list li {
		padding: 0 1px;
	}
	.pagination-list a {
		padding: 6px 7px 5px;
	}
	.review-answer {
		padding: 20px 25px 22px;
		margin: 25px 0 0;
	}
	.review-answer-text {
		font-size: 16px;
		line-height: 27px;
	}
	.doc-about {
		padding: 30px 25px 1px;
	}
	.doc-about-item {
		padding: 0 0 1px;
	}
}
@media screen and (max-width: 480px) {
	.header-info {
		width: 100%;
	}
	.category-col {
		width: 100%;
	}
	.doc-photo {
		width: 100%;
		margin: 0 0 40px;
	}
	.doc-content {
		width: 100%;
	}
	.doc-status {
		margin: 0 0 30px;
	}
	.doctor-col {
		width: 100%;
	}
}
@media screen and (max-width: 400px) {
	.news-content {
		padding: 0 20px 20px;
	}
	.news-title {
		font-size: 14px;
		line-height: 20px;
	}
	.popup.fancybox-content {
		padding: 25px 30px 30px;
	}
	.popup-title {
		margin: 0 0 25px;
	}
}
@media screen and (max-width: 374px) {
	.header-right {padding: 40px 15px 40px;}
	.header-nav-list li {
		margin: 0 0 15px;
	}
	.header-right .mob-nav-icon {
		margin-left: 120px;
	}
}


/*************************** new pages 23.11.2020 ******************************/
/*************************** event page ******************************/
.main {
	background: url(../images/new/main-bg.jpg) 50% 50% no-repeat;
	background-attachment: fixed;
}
.title-min {
	margin: 0 0 40px;
    font-size: 32px;
    font-family: 'Roboto Slab';
    font-weight: 400;
    line-height: 42px;
}
.event-block {padding: 40px 0 0;}
.event-item {
	padding: 0 40px 36px 0;
	margin: 0 0 80px;
	background: rgba(255, 255, 255, 0.4);
	border: 1px solid #889093;
	border-radius: 20px;
}
.event-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin: -17px 0 31px;
	padding: 0 0 0 24px;
}
.event-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	min-width: 64px;
	margin: -16px 0 0 -32px;
	background: #FFFFFF;
	border: 1px solid #187FA8;
	border-radius: 50%;
}
.event-icon img {
	max-width: 90%;
	max-height: 90%;
}
.event-title {
	position: relative;
	padding: 0 20px 0 16px;
	font-family: Roboto Slab;
	font-size: 24px;
	line-height: 32px;
}
.event-title span {position: relative;}
.event-title:before {
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	display: block;
	content: '';
	height: 3px;
	background: #F7F7F7;
}
.event-content {
	padding: 0 0 0 40px;
}
.event-list li {
	position: relative;
	padding: 0 0 0 32px;
	margin: 0 0 12px;
	line-height: 21px;
}
.event-list li:before {
	position: absolute;
	top: 4px;
	left: 0;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	background: url(../images/new/triangle-icon.svg) 0 0 no-repeat;
	background-size: contain;
}
.event-list li {
list-style:none!important;
}
.event-list a {
	color: #187FA8!important;
	text-decoration: none;
}
.event-list a:hover {text-decoration: underline;}
/*************************** method page ******************************/
.subtitle-text {margin: -5px 0 80px;}
.method-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -35px;
	padding: 40px 0 40px;
}
.method-block:last-child {
	margin-bottom: -80px;
	padding-bottom: 0;
}
.method-col {
	width: 33.33%;
	padding: 0 35px;
	margin: 0 0 80px; 
}
.method-item {
	height: 100%;
	padding: 1px 20px 48px;
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #227EA6;
	border-radius: 20px;
	transition: all 0.3s linear;
}
.method-item:hover {background: rgba(255, 255, 255, 1);}
.method-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	width: 144px;
	height: 120px;
	margin: -69px auto 28px;
}
.method-icon:before {
	position: absolute;
	top: 66px;
	left: 0;
	right: 0;
	display: block;
	content: '';
	height: 3px;
	background: #F7F7F7;
}
.method-icon img {
	position: relative;
	max-width: 100%;
	max-height: 100%;
}
.method-title {
	margin: 0 0 16px;
	font-family: Roboto Slab;
	font-size: 18px;
	line-height: 24px;
	color: #227EA6;
}
.method-title a {
	margin: 0 0 16px;
	font-family: Roboto Slab;
	font-size: 18px;
	line-height: 24px;
	color: #227EA6;
	text-decoration: none;
}
.method-text {
	max-width: 240px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 14px;
}
/*************************** patient page ******************************/
.patient-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 48px;
}
.patient-top-content {
	width: 37%;
}
.patient-top-img {
	width: 58.5%;
}
.patient-top-img img {
	width: 100%;
}
.patient-top-text {
	font-size: 18px;
	line-height: 21px;
}
.patient-method {
	padding: 0 0 80px;
}
.patient-links {
	padding: 0 0 88px;
}
.patient-links li {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 21px;
list-style: none!important;
}
.patient-links a {
	color: #227EA6!important;
	text-decoration: underline;
}
.patient-links a:hover {
	text-decoration: none;
}
.patient .event-item:last-child {
    margin: 0;
}
/*************************** smi page ******************************/

.scopus_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 80px;
  border: 1px solid #227EA6;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  width: 100%;
}

.scopus {
/*	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 80px;*/
}
.scopus_img {
	width: 280px;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
/*	border: 1px solid #227EA6;*/
/*	border-right: 0;*/

}
.scopus_img img {
	display: block;
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.scopus_content {



	padding: 40px;
/*	border: 1px solid #227EA6;*/
	background: rgba(255, 255, 255, 0.4);
/*	border-left: 0;*/
/*	border-radius: 0 20px 20px 0;*/
/*  border-radius: 20px;*/
	width: 100%;
}
.scopus_text {
	line-height: 20px;
}
/*************************** smi page ******************************/
.smi-block {
	padding: 40px 0 0;
}
.smi-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 80px;
}
.smi-item:last-child {margin: 0;}
.smi-img {
	width: 400px;
	min-width: 400px;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
}
.smi-img img {
	display: block;
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.smi-content {
	padding: 40px;
	border: 1px solid #227EA6;
	background: rgba(255, 255, 255, 0.4);
	border-left: 0;
	border-radius: 0 20px 20px 0;
	width: 100%;
}
.smi-sourse {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 14px;
	color: #889093;
}
.smi-title {
	margin: 0 0 16px;
	font-family: Roboto Slab;
	font-size: 18px;
	line-height: 24px;
}
.smi-title a {
	color: #187FA8;
	text-decoration: none;
}
.smi-text {
	font-size: 12px;
	line-height: 14px;
}
/*************************** treatment page ******************************/
.treatment-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 64px;
}
.treatment-top-content {
	width: 37%;
}
.treatment-top-img {
	width: 58.5%;
}
.treatment-top-img img {
	width: 100%;
}
.treatment-top-text {
	font-size: 18px;
	line-height: 21px;
}
.treatment-event {
	padding: 0 0 48px;
}
.treatment-event .event-item:last-child {
    margin: 0;
}
.treatment-about {
	padding: 0 0 90px;
	font-size: 18px;
	line-height: 21px;
}
.treatment-about p {
    margin: 0 0 27px;
}
.sanatorium-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -35px;
	padding: 40px 0 0;
}
.sanatorium-col {
	width: 33.33%;
	padding: 0 35px;
	margin: 0 0 80px; 
}
.sanatorium-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.sanatorium-img {
	overflow: hidden;
	display: block;
	border-radius: 20px 20px 0 0;
}
.sanatorium-img img {
	width: 100%;
}
.sanatorium-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 40px 48px;
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #187FA8;
	border-top: 0;
	box-sizing: border-box;
	border-radius: 0 0 20px 20px;
}
.sanatorium-title {
	margin: 0 0 23px;
	font-family: Roboto Slab;
	font-size: 18px;
	line-height: 24px;
}
.sanatorium-title a {
	color: #187FA8;
	text-decoration: none;
}
.sanatorium-text {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 16px;
}
.sanatorium-item .button-blue {
	margin: auto auto 0;
	padding: 12px 30px;
	font-size: 14px;
    line-height: 16px;
}
@media screen and (max-width: 1023px) {
	.title-min {
		margin: 0 0 30px;
		font-size: 24px;
		line-height: 32px;
	}
	.subtitle-text {
		margin: 0px 0 60px;
	}
	.event-title {
		font-size: 21px;
		line-height: 28px;
	}
	.event-item {
		padding: 0 20px 25px 0;
		margin: 0 0 60px;
	}
	.event-top {
		margin: -17px 0 25px;
	}
	.method-block {
		margin: 0 -20px;
		padding: 40px 0 0;
	}
	.method-block:last-child {
		margin-bottom: -80px;
	}
	.method-col {
		width: 50%;
		padding: 0 20px;
	}
	.method-item {
		height: 100%;
		padding: 1px 20px 48px;
		text-align: center;
		background: rgba(255, 255, 255, 0.5);
		border: 1px solid #227EA6;
		border-radius: 20px;
		transition: all 0.3s linear;
	}
	.smi-block {
		padding: 0;
	}
	.smi-item {
		margin: 0 0 50px;
	}
	.smi-img {
		width: 300px;
		min-width: 300px;
	}
	.patient-top {
		padding: 0 0 60px;
	}
	.patient-top-content,
	.treatment-top-content {
		width: 46%;
	}
	.patient-top-img,
	.treatment-top-img {
		width: 46%;
	}
	.treatment-about {
		padding: 0 0 40px;
	}
	.sanatorium-block {
		margin: 0 -20px;
		padding: 0;
	}
	.sanatorium-col {
		width: 50%;
		padding: 0 20px;
		margin: 0 0 40px; 
	}
}
@media screen and (max-width: 767px) {
	.smi-item {
		display: block;
		margin: 0 0 40px;
	}
	.smi-img {
		width: auto;
		min-width: 1px;
		border-radius: 20px 20px 0 0;
	}
	.smi-content {
		padding: 30px;
		border: 1px solid #227EA6;
		border-top: 0;
		border-radius: 0 0 20px 20px;
	}
	.patient-top {
		padding: 0 0 60px;
	}
	.patient-top-content,
	.treatment-top-content {
		width: 100%;
		padding: 0 0 40px;
	}
	.patient-top-img,
	.treatment-top-img {
		width: 100%;
	}
	.patient-method {
		padding: 0 0 60px;
	}
	.patient-links {
		padding: 0 0 60px;
	}
	.sanatorium-content {
		padding: 24px 30px 30px;
	}
}
@media screen and (max-width: 576px) {
	.event-title {
		font-size: 18px;
		line-height: 24px;
	}
	.event-list li {
		font-size: 16px;
	}
	.method-col {
		width: 100%;
	}
	.sanatorium-col {
		width: 100%;
	}
}
/*************************** new pages 09.12.2020 ******************************/
/*************************** about-center page ******************************/
.about-center {

}
.ac-event {
	padding: 40px 0 40px;
}
.event-num {
	padding: 0 0 3px;
	font-family: Roboto Slab;
	font-weight: 700;
	font-size: 36px;
	line-height: 47px;
	color: #187FA8;
}
.ac-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 120px;
}
.ac-top-img {
	width: 58.5%;
}
.ac-top-img img {
	width: 100%;
}
.ac-top-content {
	width: 39%;
}
.ac-top-text {
	font-size: 18px;
	line-height: 21px;
}
.ac-parts {
	padding: 0 0 40px;
}
.ac-parts-title {
	margin: 0 0 40px;
	font-family: Roboto Slab;
	font-weight: normal;
	font-size: 24px;
	line-height: 32px;
}
.ac-parts-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -35px;
}
.ac-parts-col {
	width: 33.33%;
	padding: 0 35px;
	margin: 0 0 40px; 
}
.ac-parts-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 166px;
	padding: 20px;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	background: #FFFFFF;
	border: 1px solid #889093;
	box-sizing: border-box;
	border-radius: 20px;
}
.ac-article {
	padding: 0 0 80px;
	font-size: 18px;
	line-height: 21px;
}
.ac-article p {
	margin: 0 0 21px;
}
.ac-article-text {padding: 0 0 20px;}
.ac-article-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 20px;
}
.ac-article-img {
	width: 58.5%;
	margin: 0 0 20px;
}
.ac-article-img img {
	width: 100%;
}
.ac-article-content {
	width: 37.5%;
}
.ac-article-block-reverse {
	flex-direction: row-reverse;
}
.ac-bottom .event-item:last-child {
	margin: 0;
}
/*************************** history page ******************************/
.history {
	font-size: 18px;
	line-height: 24px;
}
.history p {margin: 0 0 40px;}
.history  blockquote {
	display: block;
	padding: 0 0 0 24px;
	margin: 0 0 40px;
	color: #889093;
	font-style: italic;
	border-left: 4px solid #227EA6;
}
.history-part {
	padding: 0 0 40px;
}
.history-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.history-block-reverse {
	flex-direction: row-reverse;
}
.history-img {
	width: 45.5%;
}
.history-img img {
	display: block;
	width: 100%;
	margin: 0 0 40px;
}
.history-content {
	width: 50.5%;
}
.history-block-min .history-img {
	width: 27%;
}
.history-block-min .history-content {
	width: 69%;
}
.blue {color: #227EA6;}
/*************************** center page ******************************/
.cp-banner {
	margin: 0 -180px 120px;
}
.cp-banner img {
	width: 100%;
	border-radius: 20px;
}
.cp-event {
	padding: 40px 0 0;
}
.cp-article {
	padding: 0 0 60px;
	font-size: 18px;
	line-height: 21px;
}
.cp-article p {
	margin: 0 0 20px;
}
.cp-article a {color: #227EA6;}
.event-person {
	max-width: 540px;
}
.event-text {
	margin: 0 0 12px;
    line-height: 21px;
}
@media screen and (max-width: 1300px) {
	.cp-banner {
		margin: 0 0 120px;
	}
}
@media screen and (max-width: 1023px) {
	.cp-banner {
		margin: 0 0 60px;
	}
	.cp-event {
		padding: 20px 0 0;
	}
	.history-part {
		padding: 0 0 20px;
	}
	.history-img {
		width: 100%;
	}
	.history-content {
		width: 100%;
	}
	.history-block-min .history-img {
		width: 100%;
	}
	.history-block-min .history-content {
		width: 100%;
	}
	.ac-event {
		padding: 40px 0 0;
	}
	.ac-parts {
		padding: 0 0 20px;
	}
	.ac-parts-block {
		margin: 0 -20px;
	}
	.ac-parts-col {
		width: 50%;
		padding: 0 20px;
		margin: 0 0 40px; 
	}
	.ac-top {
		padding: 0 0 60px;
	}
	.ac-top-img {
		width: 47%;
	}
	.ac-top-content {
		width: 47%;
	}
	.ac-article-img {
		width: 47%;
	}
	.ac-article-content {
		width: 47%;
	}
	.ac-article {
		padding: 0 0 40px;
	}
}
@media screen and (max-width: 767px) {
	.ac-top-img {
		width: 100%;
		margin: 0 0 40px;
	}
	.ac-top-content {
		width: 100%;
	}
	.ac-article-img {
		width: 100%;
		padding: 0 0 20px;
	}
	.ac-article-content {
		width: 100%;
	}
	.ac-parts-item {
		font-size: 16px;
	}
}
@media screen and (max-width: 576px) {
	.cp-banner {
		margin: 0 -20px 60px;
	}
	.cp-banner img {
		border-radius: 0px;
	}
	.event-text {
		font-size: 16px;
	}
	.ac-parts-col {
		width: 100%;
	}
}
