/*BEGIN #preloader*/
#preloader{
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	background: #fff;
}
.preloader_inner{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 14px;
	width: 66px;
	opacity: 0;
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-transform: translate(-90px, -7px);
	transform: translate(-33px, -7px);
	
	-webkit-animation: preloader_el_fade_in 1s 1s ease-in-out 1 forwards;
	animation: preloader_el_fade_in 1s 1s ease-in-out 1 forwards;
}
.preloader_element{
	float: left;
	width: 14px;
	height: 14px;
	margin: 0 4px;
	background: #cacfd5;
   
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.preloader_element_1{
	-webkit-animation: preloader_el_move 1s ease-in-out infinite;
	animation: preloader_el_move 1s ease-in-out infinite;
}
.preloader_element_2{
	-webkit-animation: preloader_el_fade_in 1s ease-in-out infinite;
	animation: preloader_el_fade_in 1s ease-in-out infinite;
}
.preloader_element_3{
	-webkit-animation: preloader_el_move 1s ease-in-out infinite;
	animation: preloader_el_move 1s ease-in-out infinite;
}

.preloader_element_2{
	margin-left: -18px;
	opacity: 0;
}
.preloader_element_4{
	opacity: 1;
	
	-webkit-animation: preloader_el_fade_out 1s ease-in-out infinite;
	animation: preloader_el_fade_out 1s ease-in-out infinite;
}

@-webkit-keyframes preloader_el_move{
	0%{
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100%{
		-webkit-transform: translateX(22px);
		transform: translateX(22px);
	}
}
@keyframes preloader_el_move{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(22px);
	}
}

@-webkit-keyframes preloader_el_fade_in{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes preloader_el_fade_in{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
  
@-webkit-keyframes preloader_el_fade_out{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@keyframes preloader_el_fade_out{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
/*END #preloader*/

/*BEGIN FONTS*/
@font-face{
	font-family: "Gilroy-Light";
	src: url("../fonts/Gilroy-Light.eot");
	src: local("☺"), url("../fonts/Gilroy-Light.woff") format("woff"), 
	url("../fonts/Gilroy-Light.ttf") format("truetype"), 
	url("../fonts/Gilroy-Light.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Gilroy-Regular";
	src: url("../fonts/Gilroy-Regular.eot");
	src: local("☺"), url("../fonts/Gilroy-Regular.woff") format("woff"), 
	url("../fonts/Gilroy-Regular.ttf") format("truetype"), 
	url("../fonts/Gilroy-Regular.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Gilroy-Medium";
	src: url("../fonts/Gilroy-Medium.eot");
	src: local("☺"), url("../fonts/Gilroy-Medium.woff") format("woff"), 
	url("../fonts/Gilroy-Medium.ttf") format("truetype"),
	url("../fonts/Gilroy-Medium.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Mon-Terminal";
	src: url("../fonts/Mon-Terminal.eot");
	src: local("☺"), url("../fonts/Mon-Terminal.woff") format("woff"),
	url("../fonts/Mon-Terminal.ttf") format("truetype"),
	url("../fonts/Mon-Terminal.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
/*END FONTS*/

/*BEGIN GENERAL SETTINGS*/
*{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
p, a, span, td, h1, h2, h3, input, li, textarea{
	-webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
}
*::after, *::before{
	-webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: -moz-none !important;
    -o-user-select: none !important;
}
p::-moz-selection { color: #fff;  background: #cacfd5; }
p::selection      { color: #fff;  background: #cacfd5; }
a::-moz-selection { color: #fff;  background: #cacfd5; }
a::selection      { color: #fff;  background: #cacfd5; }
li::-moz-selection { color: #fff;  background: #cacfd5; }
li::selection      { color: #fff;  background: #cacfd5; }
span::-moz-selection { color: #fff;  background: #cacfd5; }
span::selection      { color: #fff;  background: #cacfd5; }
h1::-moz-selection { color: #fff;  background: #cacfd5; }
h1::selection      { color: #fff;  background: #cacfd5; }
h2::-moz-selection { color: #fff;  background: #cacfd5; }
h2::selection      { color: #fff;  background: #cacfd5; }
h3::-moz-selection { color: #fff;  background: #cacfd5; }
h3::selection      { color: #fff;  background: #cacfd5; }
h3::-moz-selection { color: #fff;  background: #cacfd5; }
h3::selection      { color: #fff;  background: #cacfd5; }
td::-moz-selection { color: #fff;  background: #cacfd5; }
td::selection      { color: #fff;  background: #cacfd5; }
input::-moz-selection { color: #fff !important;  background: #292929; }
input::selection      { color: #fff !important;  background: #292929; }
textarea::-moz-selection { color: #fff !important;  background: #292929; }
textarea::selection      { color: #fff !important;  background: #292929; }

::-webkit-input-placeholder{color: #292929;}
::-moz-placeholder{color: #292929;}
:-ms-input-placeholder{color: #292929;} 
:-o-input-placeholder{color: #292929;} 

html, body{
	overflow-x: hidden;
}
html{
	font-size: 10px;
}
body{
	position: relative;
	font-family: "Gilroy-Light";
	font-size: 1em;
	color: #292929;
}
textarea{
	-webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
	vertical-align: top;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="button"],
input[type="submit"],
input[type="tel"],
select{
    -webkit-appearance: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
p, h1, h2, h3, h4{
	cursor: default;
	font-weight: normal;
}
a{
	text-decoration: none !important;
	outline: none !important;
	color: inherit;
}
a:hover, a:focus{
	color: inherit;
}
button{
	outline: none !important;
}
.container{
	z-index: 1;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.clear{
	clear: both;
}
.nowrap{
	white-space: nowrap;
}
#facebook-jssdk-iframe{
	position: fixed;
	bottom: 10vh;
}
html.popup_is_open, body.popup_is_open{
	overflow-y: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	*{
		background-attachment: scroll !important;
	}
}

@supports (-ms-ime-align:auto){
	*{
		background-attachment: scroll !important;
	}
}

@media (min-width: 2561px), (max-width: 1250px), (min-height: 1081px){
	*{
		background-attachment: scroll !important;
	}
	.dynamic_parallax_screen{
		background-position: 50% 0 !important;
	}
}

@media (min-width: 1251px){
	body::-webkit-scrollbar{
		width: 10px;
	}
	body::-webkit-scrollbar-track{
		background: #e4e7eb;
	}
	body::-webkit-scrollbar-thumb{
	   background: #cacfd5; 
	}
}

@media (min-width: 1191px){
	.container{
		width: 1170px;
	}
}

@media (max-width: 1190px){
	.container{
		width: 100%;
	}
}

@media (max-width: 991px){
	html.menu_is_open, body.menu_is_open{
		overflow-y: hidden;
	}
}
/*END GENERAL SETTINGS*/

/*BEGIN GENERAL ELEMENTS*/
#memory{
	display: none;
}
.oe, .navigation_btn{
	cursor: pointer;
}
.screen_relative{
	position: relative;
}
.full_screen{
	position: relative;
	height: 100vh;
	min-height: 530px;
}
.middle_element{
	position: absolute;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.flex_center{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.flex_inner{
	margin: auto;
}
.flex_inner.fat{
	width: 100%;
}
.full_width_img{
	display: block;
	width: 100%;
	height: auto;
}
.align_center{
	text-align: center;
}
.animated_element.fade_in_simple{
	-webkit-transition: opacity 0.9s ease;
	transition: opacity 0.9s ease;
}
.animated_element.fade_in_simple.prepare{
	opacity: 0;
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_top,
.animated_element.fade_in_from_bottom,
.animated_element.fade_in_from_left,
.animated_element.fade_in_from_right{
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	
	-webkit-transition: opacity 0.9s ease, transform 0.9s ease;
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.animated_element.fade_in_from_top.prepare{
	opacity: 0;
	
	-webkit-transform: translateY(-70px);
	transform: translateY(-70px);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_bottom.prepare{
	opacity: 0;
	
	-webkit-transform: translateY(70px);
	transform: translateY(70px);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_left.prepare{
	opacity: 0;
	
	-webkit-transform: translate(-70px, 0);
	transform: translate(-70px, 0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_right.prepare{
	opacity: 0;
	
	-webkit-transform: translate(70px, 0);
	transform: translate(70px, 0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.animated_element.fade_in_from_scale{
	-webkit-transform: scale(1);
	transform: scale(1);
	
	-webkit-transition: opacity 0.9s ease, transform 0.9s ease;
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.animated_element.fade_in_from_scale.prepare{
	opacity: 0;
	
	-webkit-transform: scale(0);
	transform: scale(0);
	
	-webkit-transition: all 0s;
	transition: all 0s;
}
.oe, .navigation_btn{
	cursor: pointer;
}
.pink_btn{
	display: inline-block;
	background: #cacfd5;
	line-height: 50px;
	padding: 0 25px;
	min-width: 250px;
	cursor: pointer;
	
	font-family: "Gilroy-Medium";
    font-size: 1.2rem;
    text-transform: uppercase;
	text-align: center;
    letter-spacing: 0.2em;
	
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.pink_btn.thin{
	min-width: 0;
	line-height: 30px;
	letter-spacing: 0.1em;
}
.pink_btn.small{
	min-width: 226px;
}
.scroll_btn{
	width: 130px;
	font-family: "Mon-Terminal";
	font-size: 1.2rem;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.6em;
	letter-spacing: 0.06em;
}
.scroll_btn .tick{
	display: block;
    width: 10px;
    height: 6px;
	margin-left: auto;
	margin-right: auto;
}
.scroll_btn.down .tick.white{
	margin-top: 7px;
    background: url(../img/general/tick_white_down.svg) no-repeat center center / 100% 100%;
}
.scroll_btn.down .tick.black{
	margin-top: 7px;
    background: url(../img/general/tick_black_down.svg) no-repeat center center / 100% 100%;
}
.scroll_btn.up .tick.black{
	margin-bottom: 7px;
    background: url(../img/general/tick_black_up.svg) no-repeat center center / 100% 100%;
}
.lines_decor{
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/general/lines_decor.png) repeat-y 50% 0;
}
.padding_type_1{
	padding-top: 80px;
}
.top_screen_stick{
	margin: 25px 0 40px 0;
    width: 90px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}
.grey_stick{
	margin: 20px 0;
    width: 90px;
    height: 2px;
    background: #939aaa;
}
.container.pl_585{
	padding-left: 585px;
}
.container.pl_80{
	padding-left: 80px;
}
.content_img_device{
	display: none;
}

@media (max-height: 660px) and (min-width: 992px){
	.top_screen_stick.en{
		margin: 10px 0 20px 0;
	}
}

@media (min-width: 1251px){
	.oe{
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;
	}
	.oe:hover{
		opacity: 0.7;
	}
	.pink_btn{
		-webkit-transition: background 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
		-webkit-transition: background 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
		transition: background 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
	}
	.pink_btn:hover{
		background: #fff;
		
		-webkit-box-shadow: 0 0 3px 1px #cacfd5;
		box-shadow: 0 0 3px 1px #cacfd5;
	}
}

@media (max-width: 1190px){
	.container.pl_585{
		padding-left: 50%;
	}
}

@media (max-width: 991px){
	.container.pl_585{
		padding-left: 15px;
	}
	.container.pl_80{
		padding-left: 15px;
	}
	.grey_stick{
		display: none;
	}
	.content_img_device{
		display: block;
		margin: 40px auto 0;
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 767px){
	.lines_decor{
		display: none;
	}
	.padding_type_1{
		padding-top: 60px;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN text*/
.title_type_1{
	font-family: "Gilroy-Regular";
	font-size: 6rem;
	line-height: 1.3em;
	letter-spacing: 0.02em;
}
.title_type_2{
	font-family: "Gilroy-Regular";
	font-size: 4.8rem;
	line-height: 1.3em;
	letter-spacing: 0.02em;
}
.text_type_1{
	margin-bottom: 10px;
	font-size: 1.4rem;
	line-height: 1.7em;
	letter-spacing: 0.02em;
}
.text_type_1.big{
	font-size: 1.6rem;
}
.text_type_2{
	margin-bottom: 10px;
	font-family: "Gilroy-Regular";
	font-size: 1.8rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
.text_type_3{
	margin-bottom: 10px;
	font-family: "Gilroy-Regular";
	font-size: 2.4rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
.text_type_4{
	margin-bottom: 10px;
	font-size: 2.4rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
.text_type_5{
	margin-bottom: 10px;
	font-family: "Gilroy-Medium";
	font-size: 1.8rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
ul.text_type_1{
	padding-left: 15px;
}
ul.text_type_1 li a{
	line-height: 28px;
	display: block;
}
ul.text_type_1.underline li a{
	text-decoration: underline !important;
}
.caps{
	text-transform: uppercase;
}
.text_type_2.caps{
	letter-spacing: 0.2em;
	line-height: 1.2em;
}
.text_type_4.caps,
.text_type_5.caps{
	letter-spacing: 0.1em;
}
.text_type_4.push_down{
	margin-bottom: 45px;
}
.color_white{
	color: #fff;
}
.color_pink,
a.color_pink{
	color: #292929;
}
.num_type_1{
	margin-bottom: 10px;
	font-family: "Mon-Terminal";
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	line-height: 1em;
}
.num_type_1.title_num{
	margin-bottom: 25px;
}
.title_type_2.text_m{
	margin: 0 0 -5px -3px; 
}
.text_type_1.text_m,
.text_type_3.text_m{
	margin: 0 0 25px 88px;
}
.text_type_3.text_m_b{
	margin-bottom: 20px;
}

@media (max-width: 991px){
	.title_type_2.text_m{
		margin: 0 0 23px -2px; 
	}
	.title_type_2.d_m_25{
		margin-bottom: 25px;
	}
	.text_type_1.text_m{
		margin-left: 0;
	}
	.text_type_3.text_m,
	.text_type_3.text_m_b{
		margin: 0 0 25px 0;
	}
}

@media (max-width: 767px){
	.title_type_1{
		font-size: 4.6rem;
	}
	.title_type_2:not(.big){
		font-size: 2.4rem;
	}
	.title_type_2.big{
		font-size: 3.6rem;
	}
	.text_type_3{
		font-size: 2.1rem;
	}
}

@media (max-width: 320px){
	.title_type_1{
		font-size: 3.6rem;
	}
	.text_type_3{
		font-size: 1.8rem;
	}
}
/*END text*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	border-bottom: 1px solid #e4e7eb;
	
	font-family: "Gilroy-Medium";
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
#top_menu::after{
	content: "";
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #e4e7eb;
}
#top_menu .top_menu_inner{
	position: relative;
	max-width: 1170px;
	height: 100%;
	margin: auto;
}
#top_menu .main_logo{
	position: absolute;
	top: 22px;
	left: 15px;
	width: 130px;
    height: 51px;
}
#top_menu #sandwich{
	display: none;
}
#top_menu .menu_nav .top_part{
	position: relative;
}
#top_menu .lang_block{
	position: absolute;
	top: 20px;
	right: 5px;
	list-style: none;
}
#top_menu.en .lang_block{
	top: 35px;
}
#top_menu .lang_block li{
	display: inline-block;
	line-height: 30px;
}
#top_menu .lang_block li:not(:last-child)::after{
	content: "";
	display: inline-block;
	width: 1px;
	height: 10px;
	background: #292929;
}
#top_menu .lang_block li a{
	display: inline-block;
	padding: 0 10px;
}
#top_menu .lang_block li.current-lang a{
	color: #cacfd5;
	text-decoration: underline !important;
}
#top_menu .top_inner_elements{
	position: absolute;
	top: 20px;
	right: 150px;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#top_menu.en .top_inner_elements{
	top: 35px;
}
#top_menu .top_inner_elements > *{
	line-height: 30px;
	margin-right: 20px;
}
#top_menu .pink_btn{
	text-align: left;
}
#top_menu .menu{
	position: absolute;
	bottom: 3px;
	right: 0;
	list-style: none;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#top_menu .menu *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
#top_menu, #top_menu ul{
	list-style: none;
	cursor: default;
}
#top_menu .menu li{
	height: 40px;
	line-height: 40px;
	white-space: nowrap;
}
#top_menu .menu > li{
	position: relative;
}
#top_menu .menu > li li{
	width: 100%;
	
	letter-spacing: 0.04em;
	font-size: 1.4rem;
	text-transform: none;
}
#top_menu .menu li a{
	z-index: 1;
	position: relative;
	display: block;
	width: 100%;
	padding: 0 15px;
}
#top_menu .menu > li > a::after{
	content: "";
	z-index: 2;
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 12px;
	height: 12px;
	opacity: 0;
	border: 2px solid #cacfd5;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#top_menu .menu > li.current-menu-item > a::after,
#top_menu .menu > li.current-menu-parent > a::after,
#top_menu .menu > li.current-category-ancestor > a::after{
	opacity: 1;
}
#top_menu .menu > li.menu-item-has-children .sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	height: 0;
	min-width: 100%;
	background: #fff;
	overflow: hidden;
	
	-webkit-transition: height 0.2s ease-out;
	transition: height 0.2s ease-out;
	
	-webkit-box-shadow: 3px 3px 6px rgba(0,0,0,0.05);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.05);
}
#top_menu .menu > li.menu-item-has-children a.active + .sub-menu{
	-webkit-transition: height 0.3s ease-in;
	transition: height 0.3s ease-in;
}
#top_menu .menu > li.menu-item-has-children .sub-menu a{
	background: #fff;
}
#top_menu .menu > li.current-menu-parent .sub-menu .current-menu-item a{
	background: #e4e7eb;
}
#top_menu .menu > li.menu-item-has-children > a{
	padding-right: 25px;
}
#top_menu .menu > li.menu-item-has-children .tick{
	position: absolute;
    top: 17px;
    right: 10px;
	width: 10px;
	height: 6px;
	background: url(../img/general/tick_pink.svg) no-repeat center center / 100% 100%;
	
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
#top_menu .menu > li.menu-item-has-children .tick.active{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	
	-webkit-transition: 0.3s ease-in;
	transition: 0.3s ease-in;
}
#menu_margin_block{
	height: 100px;
}

@media (min-width: 1251px){
	#top_menu .lang_block li a,
	#top_menu .menu > li a{
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;
	}
	#top_menu .lang_block li a:hover,
	#top_menu .menu > li:not(.menu-item-has-children) a:hover{
		opacity: 0.7;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu a{
		-webkit-transition: background 0.1s ease-in-out;
		transition: background 0.1s ease-in-out;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu a:hover{
		background: #e4e7eb;
	}
}

@media (max-width: 1100px){
	#top_menu .top_inner_elements > *{
		margin-right: 12px;
	}
	#top_menu .menu li a{
		padding: 0 10px;
	}
}

@media (max-width: 991px){
	#top_menu::after{
		display: none;
	}
	#top_menu,
	#top_menu .top_menu_inner{
		height: 50px;
	}
	#top_menu .main_logo{
		width: 90px;
		height: 35px;
		top: 8px;
	}
	#top_menu #sandwich, #top_menu #sandwich *{
		cursor: pointer;
	}
	#top_menu #sandwich{
		z-index: 2;
		position: absolute;
		top: 10px;
		right: 10px;
		display: block;
		padding: 5px;
	}
	#top_menu #sandwich::after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#top_menu #sandwich .inner{
		position: relative;
		width: 30px;
		height: 20px;
	}
	#top_menu #sandwich .inner div{
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background: #292929;
	}
	#top_menu #sandwich .inner div:nth-child(1){
		top: 0;
		
		-webkit-transition: top 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
		transition: top 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
	}
	#top_menu #sandwich .inner div:nth-child(2){
		top: 9px;
		
		-webkit-transition: opacity 0.2s 0.2s ease;
		transition: opacity 0.2s 0.2s ease;
	}
	#top_menu #sandwich .inner div:nth-child(3){
		bottom: 0;
		
		-webkit-transition: bottom 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
		transition: bottom 0.2s 0.2s ease, transform 0.2s ease, background 0.4s ease;
	}
	#top_menu.active #sandwich .inner div{
		background: #fff;
	}
	#top_menu.active #sandwich .inner div:nth-child(1){
		top: 9px;
		
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		
		-webkit-transition: top 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
		transition: top 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
	}
	#top_menu.active #sandwich .inner div:nth-child(2){
		opacity: 0;
		
		-webkit-transition: opacity 0.2s cubic-bezier(0.76,0.16,0.33,0.95, background 0.4s ease);
		transition: opacity 0.2s ease, background 0.4s ease;
	}
	#top_menu.active #sandwich .inner div:nth-child(3){
		bottom: 9px; 
		
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		
		-webkit-transition: bottom 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
		transition: bottom 0.2s ease, transform 0.2s 0.2s ease, background 0.4s ease;
	}
	#top_menu .menu_nav{
		z-index: 1;
		position: absolute;
		top: 0;
		left: -100vw;
		width: calc(100vw - 60px);
		height: calc(100vh + 51px);
		background: #fff;
		overflow-y: scroll;
		
		-webkit-transition: left 0.4s ease-out;
		transition: left 0.4s ease-out;	
	}
	#top_menu.active .menu_nav{
		left: 0;
	}
	#top_menu .menu_nav::-webkit-scrollbar{
		width: 4px;
	}
	#top_menu .menu_nav::-webkit-scrollbar-track{
		background: #e4e7eb;
	}
	#top_menu .menu_nav::-webkit-scrollbar-thumb{
	   background: #cacfd5; 
	}
	#top_menu .menu_nav .menu_nav_inner{
		display: block;
		width: 100%;
		height: auto;
		overflow-y: hidden;
		padding-bottom: 101px;
	}
	#top_menu .menu{
		position: static;
		display: block;
	}
	#top_menu .lang_block{
		position: static;
		line-height: 40px;
		padding: 0 5px;
	}
	#top_menu .top_inner_elements{
		position: static;
		display: block;
	}
	#top_menu .top_inner_elements > *{
		display: block;
		margin-right: 0;
		height: auto;
		padding: 0 15px;
		background: #fff;
		
		color: #292929;
		line-height: 40px;
	}
	#top_menu .menu li{
		line-height: 40px;
	}
	#top_menu .menu > li{
		height: auto;
		letter-spacing: 0.14em;
	}
	#top_menu .menu li a{
		padding: 0 15px;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu{
		position: relative;
		top: 0;
		background: #e4e7eb;
		
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu li{
		display: table;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu a{
		display: table-cell;
		vertical-align: middle;
		
		height: 40px;
		padding-left: 30px;
		background: #e4e7eb;
		
		line-height: 1.1em;
		white-space: normal;
	}
	#top_menu .menu > li.current-menu-item > a,
	#top_menu .menu > li.current-menu-parent .sub-menu .current-menu-item a,
	#top_menu .menu > li.current-category-ancestor a{
	    background: #cacfd5;
		color: #fff;
	}
	#top_menu .menu > li.current-menu-parent > a{
		height: 40px;
		background: #e4e7eb;
		border-top: 1px solid #fff;
	}
	#top_menu li.current-menu-item a::before,
	#top_menu li.current-menu-parent a::before,
	#top_menu li.current-category-ancestor a::before,
	#top_menu li.current-menu-item a::after,
	#top_menu li.current-menu-parent a::after,
	#top_menu li.current-category-ancestor a::after{
		display: none;
	}
	#top_menu .menu_cover{
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		height: calc(100vh + 51px);
		background: rgba(0,0,0,0.5);
		display: block;
		opacity: 0;
		
		-webkit-transition: left 0s 0.4s, opacity 0.4s ease-out;
		transition: left 0s 0.4s, opacity 0.4s ease-out;
	}
	#top_menu.active .menu_cover{
		left: 0;
		opacity: 1;
		
		-webkit-transition: left 0s, opacity 0.4s ease-in-out;
		transition: left 0s, opacity 0.4s ease-in-out;
	}
	#menu_margin_block{
		height: 50px;
	}
}
/*END #top_menu*/

/*BEGIN #footer*/
#footer{
	position: relative;
	padding-top: 80px;
	padding-bottom: 100px;
}
#footer.en{
	padding-top: 90px;
	padding-bottom: 40px;
}
#footer::before{
	content: "";
	z-index: 0;
	position: absolute;
	top: 150px;
	right: 0;
	width: calc(50% + 355px);
	height: calc(100% - 150px);
	background: #e4e7eb;
}
#footer .scroll_btn{
	margin: 0 auto 120px;
}
#footer .footer_inner{
	position: relative;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#footer .footer_inner .part{
	padding-right: 25px;
}
#footer .footer_inner .part:nth-child(1){
	width: 25%;
}
#footer .footer_inner .part:nth-child(2),
#footer .footer_inner .part:nth-child(3),
#footer .footer_inner .part:nth-child(4),
#footer .footer_inner .part:nth-child(5){
	width: 18%;
}
#footer .footer_inner .part:nth-child(5){
	padding-left: 15px;
}
#footer .text_type_5{
	margin-bottom: 20px;
	line-height: 1.5em;
	color: #292929;
}
#footer .footer_inner .part ul li{
	margin-bottom: 10px;
}
#footer .footer_inner .part a{
	line-height: 2em;
}
#footer .footer_inner .part p a{
	display: inline-block;
}
#footer .footer_inner .corp_info{
	position: absolute;
	top: 255px;
	left: 0;
}
#footer.en .footer_inner .corp_info{
	top: 0;
}
#footer .social_block{
	height: 40px;
	margin-top: 25px;
}
#footer.en .corp_info .social_block{
	margin-top: -40px;
}
#footer .social_block img{
	width: 40px;
	height: 40px;
	margin-right: 15px;
}
#footer .social_block a:last-child img{
	margin-right: 0;
}
#footer .btn_block{
	position: absolute;
	bottom: 20px;
    right: 130px;
}
#footer .btn_block.en{
    bottom: 0;
    right: 0;
}
#footer .btn_block:not(.en) div.pink_btn{
	display: block;
	margin-bottom: 25px;
}
#footer .btn_block.en div.pink_btn{
    margin-right: 20px;
}
#footer .btn_block a.pink_btn{
	min-width: 220px;
}
#footer .main_logo{
	display: none;
}

@media (max-width: 1230px){
	#footer::before{
		width: 100%;
	}
	#footer .footer_inner .part p a{
		display: block;
	}
	#footer .btn_block:not(.en){
		right: 70px;
	}
	#footer .btn_block a.pink_btn,
	#footer .btn_block .pink_btn.price_popup_open{
		min-width: 0;
	}
}

@media (max-width: 991px){
	#footer.en{
		padding-top: 90px;
		padding-bottom: 70px;
	}
	#footer .scroll_btn{
		margin-bottom: 100px;
	}
	#footer .footer_inner{
		display: block;
		text-align: center;
	}
	#footer .footer_inner .part:nth-child(1),
	#footer .footer_inner .part:nth-child(2),
	#footer .footer_inner .part:nth-child(3),
	#footer .footer_inner .part:nth-child(4),
	#footer .footer_inner .part:nth-child(5){
		width: 100%;
		margin-bottom: 45px;
		padding: 0;
	}
	#footer .footer_inner .corp_info{
		position: static;
	}
	#footer .btn_block{
		position: static;
	}
	#footer .btn_block .pink_btn{
		display: block;
		width: 290px;
		padding: 0;
		letter-spacing: 0.18em;
	}
	#footer .btn_block div.pink_btn,
	#footer .btn_block.en div.pink_btn{
		margin: 50px auto 0; 
	}
	#footer .btn_block a.pink_btn{
		margin: 15px auto 0;
	}
	#footer .footer_inner .part p a,
	#footer .footer_inner .part ul li a{
		display: inline-block;
		line-height: 2.2em;
	}
	#footer .text_type_5 br,
	#footer .footer_inner .part ul li a br{
		display: none;
	}
	#footer .footer_inner .part ul{
		list-style: none;
		padding-left: 0;
	}
	#footer .corp_info.en .social_block{
		margin-top: 0;
	}
}
/*END #footer*/

/*BEGIN FORM SETTINGS*/
.field_checkout{
	display: none;
}
.field_wrapper{
	position: relative;
	width: 100%;
	margin-bottom: 25px;
}
.field_wrapper .field{
	width: 100%;
	height: 50px;
	line-height: 50px;
	padding: 0 15px;
	background: #f1f3f5;
	outline: none !important;
	border: 0;
	
	font-family: "Gilroy-Light";
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	
	-webkit-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.field_wrapper .field.field_textarea{
	resize: none;
	height: 105px;
	padding: 15px;
	line-height: 1.4em;
}
.field_wrapper .field.field_textarea::-webkit-scrollbar{
	width: 4px;
}
.field_wrapper .field.field_textarea::-webkit-scrollbar-track{
	background: #e4e7eb;
}
.field_wrapper .field.field_textarea::-webkit-scrollbar-thumb{
   background: #cacfd5; 
}
.form_go, .form_go *, .span_placeholder{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
	cursor: pointer;
}
.field_wrapper .alarm{
	position: absolute;
	opacity: 0;
	margin: 0;
	bottom: -18px;
	right: 0;
	
	font-family: "Gilroy-Light";
	font-size: 1.4rem;
	color: #ff0000;
	letter-spacing: 0.01em;
	
	-webkit-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}
.field_wrapper.warning .field{
	border-color: #ff0000;
	color: #ff0000;
}
.field_wrapper.warning .alarm{
	opacity: 1;
}
.form_type_1{
	width: 100%;
	max-width: 580px;
	margin: auto;
}
.form_type_1 .form_title{
	margin-bottom: 15px;
	font-family: "Gilroy-Regular";
	font-size: 3.6rem;
	line-height: 1.3em;
	letter-spacing: 0.02em;
}
.form_type_1 .title_type_2{
	margin-bottom: 25px;
}
.form_type_1 .field:focus{
	width: calc(100% + 10px);
	background: #cacfd5;
}
.form_type_1 .form_go_block{
	height: 50px;
}
.form_type_1 .form_go{
	float: right;
}

@media (max-width: 767px){
	.form_type_1 .form_title{
		font-size: 2.4rem;
	}
	.form_type_1 .field:focus{
		width: calc(100% + 5px);
	}
}
/*END FORM SETTINGS*/

/*BEGIN .popup*/
.popup{
	z-index: 11;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	display: none;
}
.popup_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.popup_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
	height: auto;
    margin: auto;
	
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.thanx_popup_inner,
.form_popup_inner{
	max-width: 880px;
	max-height: calc(100vh - 70px);
	background: #fff;
}
.thanx_popup_inner{
	padding: 60px 15px;
}
.form_popup_inner{
	padding: 90px 15px;
}
.slider_popup_inner{
	max-width: 1000px;
	padding-bottom: 640px;
}
.video_popup_inner{
	max-width: 1000px;
	padding-bottom: 562px;
}
.price_popup_inner{
	max-width: 1000px;
	padding-bottom: 80vh;
}
.popup_close{
    position: absolute;
    top: -45px;
    right: -4px;
    width: 38px;
    height: 38px;
    padding: 5px;
    background: url(../img/general/close_white.svg) no-repeat 50% 50% / 30px 30px;
    cursor: pointer;
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.thanx_popup_info{
	text-align: center;
}
.slider_popup_info,
.video_popup_info,
.price_popup_info{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video_popup_info iframe,
.price_popup_info iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.thanx_popup_info p:nth-child(1){
	margin-bottom: 20px;
	
	font-family: "Gilroy-Medium";
	font-size: 7.2rem;
	color: #cacfd5;
	text-transform: uppercase;
	letter-spacing: 0.004em;
}
.thanx_popup_info p:nth-child(2), .thanx_popup_info p:nth-child(3){
	font-size: 2.56rem;
	letter-spacing: 0.01em;
	line-height: 1.3em;
}
.thanx_popup_info p:nth-child(2){
	margin-bottom: 20px;
}
.slider_popup_info img{
	width: 100%;
	height: auto;
}
.slider_popup_inner .nav{
	z-index: 1;
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	cursor: pointer;
	
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.slider_popup_inner .nav_left{
	left: 0;
	background: rgba(0,0,0,0.22);
	background: -moz-linear-gradient(left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.22)), color-stop(100%, rgba(0,0,0,0)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
}
.slider_popup_inner .nav_right{
	right: 0;
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.22)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
}
.slider_popup_inner .nav_left::after,
.slider_popup_inner .nav_right::after{
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	
}
.slider_popup_inner .nav_left::after{
	left: 0;
	background: url(../img/general/back.svg) no-repeat 50% 50% / 36px 36px;
}
.slider_popup_inner .nav_right::after{
	right: 0;
	background: url(../img/general/next.svg) no-repeat 50% 50% / 36px 36px;
}

@media (min-width: 768px) and (max-height: 700px){
	.form_popup_inner{
		padding: 60px 15px;
	}
}

@media (min-width: 768px){
	.form_popup_inner{
		min-height: 382px;
	}
}

@media (max-width: 1050px){
	.slider_popup_inner{
		padding-bottom: 64%;
		padding-bottom: calc(64% - 19px);
	}
	.video_popup_inner{
		padding-bottom: 56.2%;
		padding-bottom: calc(56% - 16px);
	}
}

@media (min-width: 768px) and (max-height: 750px){
	.slider_popup_inner{
		max-width: 720px;
		padding-bottom: 461px;
	}
	.video_popup_inner{
		max-width: 820px;
		padding-bottom: 461px;
	}
}

@media (max-width: 767px){
	.form_popup_inner{
		/*height: calc(100vh - 100px);*/
		max-height: 100%;
		padding: 0;
	}
	.form_popup_info{
		padding: 40px 15px;
		height: 100%;
		overflow-y: auto;
		
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
	.form_popup_info::-webkit-scrollbar{
		width: 4px;
	}
	.form_popup_info::-webkit-scrollbar-track{
		background: #e4e7eb;
	}
	.form_popup_info::-webkit-scrollbar-thumb{
	  background: #cacfd5; 
	}
	.thanx_popup_info p:nth-child(1){
		margin-bottom: 16px;
		font-size: 4.6rem;
	}
	.thanx_popup_info p:nth-child(2), .thanx_popup_info p:nth-child(3){
		font-size: 2rem;
	}
	.thanx_popup_info p:nth-child(2){
		margin-bottom: 16px;
	}
	.form_popup_info .form_type_1 .form_title{
		font-size: 2.4rem;
	}
	.form_popup_info .field_wrapper{
		margin-bottom: 24px;
	}
	.slider_popup_inner .nav{
		width: 60px;
	}
}

@media (max-width: 320px){
	.form_popup_info .field_wrapper{
		margin-bottom: 25px;
	}
}

@media (max-height: 400px){
	.thanx_popup_inner{
		padding: 15px;
	}
}
/*END .popup*/

/*BEGIN #page_main_screen_1*/
#page_main_screen_1{
	background: url(../img/page_main/page_main_screen_1_bg.jpg) no-repeat 50% 0 / cover fixed;
}
#page_main_screen_1 h1 > span{
	display: block;
}
#page_main_screen_1 h1 .title_type_1{
	position: relative;
	left: -0.05em;
}
#page_main_screen_1 .scroll_btn{
	position: absolute;
	bottom: 60px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#page_main_screen_1 .mb_25{
	margin-bottom: 25px;
}

@media (min-width: 992px) and (max-height: 700px){
	#page_main_screen_1 .scroll_btn{
		bottom: 30px;
	}
}

@media (max-width: 991px){
	#page_main_screen_1{
		position: relative;
		background-position: 70% 0 !important;
	}
	#page_main_screen_1::after{
		content: "";
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.4);
	}
	#page_main_screen_1 .scroll_btn{
		bottom: 50px;
	}
}

@media (max-width: 320px){
	#page_main_screen_1 h1{
		margin-bottom: 32px;
	}
}
/*END #page_main_screen_1*/

/*BEGIN #page_main_screen_2*/
#page_main_screen_2{
	height: 555px;
	background: url(../img/page_main/page_main_screen_2_bg.png) no-repeat 50% 0;
}
#page_main_screen_2 .container{
	padding-top: 144px;
}
#page_main_screen_2 .text_type_1{
	margin: 52px 0 45px 88px;
}
#page_main_screen_2 .pink_btn{
	margin-left: 88px;
}

@media (max-width: 1190px){
	#page_main_screen_2 .text_type_1 br{
		display: none;
	}
}

@media (max-width: 991px){
	#page_main_screen_2{
		height: auto;
		background: none;
	}
	#page_main_screen_2 .container{
		padding-top: 50px;
	}
	#page_main_screen_2 .text_type_1{
		margin: 25px auto 32px;
	}
	#page_main_screen_2 .pink_btn{
		margin-left: 0;
	}
}

@media (max-width: 767px){
	#page_main_screen_2 .text_type_3 br{
		display: none;
	}
}
/*END #page_main_screen_2*/

/*BEGIN #page_main_screen_3*/
#page_main_screen_3{
	height: 374px;
	background: url(../img/page_main/page_main_screen_3_bg.png) no-repeat 50% 0;
}

@media (max-width: 767px){
	#page_main_screen_3{
		height: 344px;
		background-position: 35% 0;
	}
}
/*END #page_main_screen_3*/

/*BEGIN #page_main_screen_4*/
#page_main_screen_4 .service_block{
	width: calc(100% + 30px);
	margin-left: -15px;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#page_main_screen_4 .service_block .part{
	width: 25%;
	min-height: 500px;
	padding: 35px 50px 0 50px;
}
#page_main_screen_4 .service_block .part a{
	text-decoration: none !important;
}
#page_main_screen_4 .service_block .part:nth-child(1){
	background: url(../img/page_main/service_1.jpg) no-repeat 50% 0;
}
#page_main_screen_4 .service_block .part:nth-child(2){
	background: url(../img/page_main/service_2.jpg) no-repeat 50% 0;
}
#page_main_screen_4 .service_block .part:nth-child(3){
	background: url(../img/page_main/service_3.jpg) no-repeat 50% 0;
}
#page_main_screen_4 .service_block .part:nth-child(4){
	background: url(../img/page_main/service_4.jpg) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_main_screen_4 .service_block .part:nth-child(1),
	#page_main_screen_4 .service_block .part:nth-child(2),
	#page_main_screen_4 .service_block .part:nth-child(3),
	#page_main_screen_4 .service_block .part:nth-child(4){
		background-size: auto 100%;
		padding-bottom: 25px;
	}
}

@media (max-width: 1190px){
	#page_main_screen_4 .service_block{
		width: 100%;
		margin-left: 0;
	}
	#page_main_screen_4 .service_block .part{
		padding: 45px 15px 0 15px;
	}
}

@media (max-width: 991px){
	#page_main_screen_4 .service_block{
		display: block;
		width: 100%;
		max-width: 390px;
		margin: auto;
	}
	#page_main_screen_4 .service_block .part{
		width: 100%;
		height: 440px;
		padding: 0 15px;
		text-align: center;
		
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
	#page_main_screen_4 .service_block .part:not(:last-child){
		margin-bottom: 45px;
	}
	#page_main_screen_4 .service_block .part .info_part{
		width: 100%;
		margin: auto;
	}
	#page_main_screen_4 .service_block .part ul{
		list-style: none;
		padding-left: 0;
	}
	#page_main_screen_4 .service_block .part ul li a{
		line-height: 30px;
	}
}
/*END #page_main_screen_4*/

/*BEGIN #page_main_screen_5*/
#page_main_screen_5{
	position: relative;
}
#page_main_screen_5::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 953px;
	background: url(../img/page_main/page_main_screen_5_bg.jpg) no-repeat 50% -158px / 862px 953px;
}
#page_main_screen_5 .category_news_wrapper{
	position: relative;
	padding-bottom: 65px;
}
#page_main_screen_5 .pink_btn{
	position: absolute;
	bottom: 0;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#page_main_screen_5 .pink_btn span{
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 2rem;
}

@media (max-width: 1230px){
	#page_main_screen_5::before{
		display: none;
	}
}
/*END #page_main_screen5*/

/*BEGIN #category_news_screen_1, .news_screen*/
#category_news_screen_1{
	/*min-height: calc(100vh - 100px);*/
	padding-top: 82px;
}
#category_news_screen_1 .menu{
	position: relative;
	height: 100px;
	margin-bottom: 60px;
	background: #e4e7eb;
	list-style: none;
	
	font-family: "Gilroy-Medium";
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: center;
	justify-content: center;
}
#category_news_screen_1 .menu::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #292929;
}
#category_news_screen_1 .menu li a{
	width: 216px;
	display: block;
	height: 100px;
	line-height: 120px;
	text-align: center;
}
#category_news_screen_1 .menu li.current-menu-item a{
	background: #cacfd5;
	color: #fff;
}
.news_screen .container{
	padding-left: 0;
	padding-right: 0;
}
.news_screen .p_nothing_found{
	width: 100%;
	margin: 100px 0;
}
.category_news_wrapper{
	width: calc(100% + 30px);
	margin-left: -15px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
.category_news_wrapper .category_news_block{
	width: 33.33%;
	margin-bottom: 50px;
	padding: 0 15px;
}
.category_news_wrapper .category_news_block .category_news_thumb{
	position: relative;
	margin-bottom: 10px;
	line-height: 0;
	overflow: hidden;
	
	-webkit-border-radius: 15px;
	border-radius: 15px;
}
.category_news_wrapper .category_news_block .category_news_thumb img{
	width: 100%;
	height: auto;
}
.category_news_wrapper .category_news_block .category_news_thumb a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(25,44,63,0.3);
}
.category_news_wrapper .category_news_block .text_type_3{
	line-height: 1.3em;
}

@media (min-width: 1251px){
	.category_news_wrapper .category_news_block .category_news_thumb a{
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;
	}
	.category_news_wrapper .category_news_block .category_news_thumb a:hover{
		opacity: 0;
	}
	#category_news_screen_1 .menu li a{
		-webkit-transition: 0.1s ease-in-out;
		transition: 0.1s ease-in-out;
	}
	#category_news_screen_1 .menu li a:hover{
		background: #cacfd5;
		color: #fff;
	}
}

@media (max-width: 1230px){
	#category_news_screen_1 .menu li a{
		width: 188px;
	}
	.category_news_wrapper{
		width: 100%;
		max-width: 780px;
		margin-left: auto;
		margin-right: auto;
	}
	.category_news_wrapper .category_news_block{
		width: 50%;
		margin-bottom: 40px;
	}
	.category_news_wrapper .category_news_block .category_news_thumb{
		height: 230px;
	}
	.category_news_wrapper .category_news_block .category_news_thumb a{
		background: none;
	}
	.category_news_wrapper .category_news_block .text_type_3{
		font-size: 1.6rem;
	}
}

@media (max-width: 991px){
	/*#category_news_screen_1{
		min-height: calc(100vh - 50px);
	}*/
	#category_news_screen_1 .menu li a{
		width: 184px;
	}
}

@media (max-width: 800px){
	.category_news_wrapper .category_news_block .category_news_thumb{
		height: auto;
	}
}

@media (max-width: 767px){
	#category_news_screen_1{
		padding-top: 60px;
	}
	.news_screen .container{
		padding-left: 15px;
		padding-right: 15px;
	}
	#category_news_screen_1 .menu{
		height: auto;
		background: none;
		display: block;
		font-size: 1.2rem;
	}
	#category_news_screen_1 .menu::after{
		display: none;
	}
	#category_news_screen_1 .menu li a{
		width: 100%;
		height: 40px;
		margin-bottom: 2px;
		padding: 0 15px;
		
		line-height: 40px;
		text-align: left;
		background: #e4e7eb;
	}
	.category_news_wrapper{
		display: block;
		max-width: 374px;
	}
	.category_news_wrapper .category_news_block{
		width: 100%;
		margin-bottom: 50px;
		padding: 0;
	}
	.category_news_wrapper .category_news_block:last-child{
		margin-bottom: 0;
	}
}
/*END #category_news_screen_1, .news_screen*/

/*BEGIN #post_navigation*/
#post_navigation *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
#post_navigation{
	clear: both;
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	text-align: center;
}
#post_navigation .pagination{
	margin: 20px auto 0;
}
#post_navigation .pagination h2{
	margin: 0;
}
#post_navigation .nav-links{
	font-size: 2rem;
	line-height: 32px;
}
#post_navigation .nav-links .current, #post_navigation .nav-links a{
	display: inline-block;
	min-width: 32px;
	padding: 0 10px;
	color: inherit !important;
}
#post_navigation .nav-links .current{
	background: #cacfd5;
	color: #fff !important;
}
#post_navigation .nav-links .current, #post_navigation .nav-links .dots{
	cursor: default;
}
#post_navigation .nav-links .prev, #post_navigation .nav-links .next{
	position: relative;
	top: 0;
	
	font-family: arial;
    font-size: 1.4em;
}

@media (min-width: 1251px){
	#post_navigation .nav-links a{
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;
	}
	#post_navigation .nav-links a:hover{
		opacity: 0.7;
	}
}

@media (max-width: 767px){
	#post_navigation .pagination{
		margin: 60px auto 10px;
	}
	#post_navigation .nav-links{
		font-size: 1.6rem;
	}
	#post_navigation .nav-links .current, #post_navigation .nav-links a{
		padding: 0 12px;
	}
}
/*END #post_navigation*/

/*BEGIN .single_screen*/
.single_screen{
	padding-top: 81px;
}
.single_screen .container{
	max-width: 1030px;
}
.single_screen .title_type_2{
	margin-bottom: 40px;
	border-bottom: 1px solid #e4e7eb;
}
.single_screen img:not(.slide){
	width: 100%;
	height: auto;
}
.single_screen #the_content .slide{
	display: none;
}
.single_screen iframe{
	width: 100%;
}
.single_screen h1:not(.title_type_2),
.single_screen h2,
.single_screen h3,
.single_screen h4{
	margin-bottom: 30px;
	font-family: "Gilroy-Regular";
	font-size: 2.4rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
.single_screen p:not(.num_type_1),
.single_screen ul li:not(.num_type_1),
.single_screen ol li:not(.num_type_1){
	margin-bottom: 30px;
	font-size: 1.4rem;
	line-height: 1.7em;
	letter-spacing: 0.02em;
}
.single_screen ul,
.single_screen ol{
	padding-left: 15px;
}
.single_screen #the_content li a,
.single_screen #the_content p a{
	text-decoration: underline !important;
}
.single_pag_wrap{
    z-index: 1;
    position: relative;
    margin-top: 40px;
}
.single_pag_wrap:not(:empty){
	height: 32px;
}
.single_pag_wrap .single_pag{
	margin-bottom: 0;
}
.single_pag_wrap .single_pag a{
	padding: 10px 0 3px 0;
	border-bottom: 1px solid #292929;
	line-height: 30px;
}
.single_pag_prev{
    float: left;
}
.single_pag_next{
    float: right;
    text-align: right;
}
.fb_iframe_widget{
	z-index: 2;
    position: relative;
    display: block !important;
	margin-top: 30px;
}
.single_screen .gallery:empty{
	display: none;
}
.single_screen .gallery{
	width: calc(100% + 30px);
	margin-left: -15px;
	
	/*display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;*/
}
.single_screen .gallery .slide{
	display: inline-block;
	width: calc(33.33% - 30px);
	height: auto;
	margin: 0 15px 30px 15px;
	cursor: pointer;
	
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

@media (min-width: 1251px){
	.single_content a, 
	.single_pag_wrap .single_pag a,
	.single_screen .gallery .slide{
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;
	}
	.single_content a:hover, 
	.single_pag_wrap .single_pag a:hover,
	.single_screen .gallery .slide:hover{
		opacity: 0.7;
	}
}

@media (max-width: 767px){
	.single_screen{
		padding-top: 60px;
	}
	.single_screen .title_type_2{
		padding-bottom: 10px;
	}
	.single_pag_wrap{
		margin-top: 30px;
	}
	.single_pag_wrap .single_pag.text_type_2{
		font-size: 1.3rem;
		letter-spacing: 0;
	}
	.single_pag_wrap .single_pag a{
		padding: 8px 0 6px 0;
	}
	.single_screen .gallery{
		width: calc(100% + 14px);
		margin-left: -7px;
	}
	.single_screen .gallery .slide{
		width: calc(50% - 14px);
		margin: 0 7px 15px 7px;
	}
}
/*END .single_screen*/

/*BEGIN #page_contacts_screen_1*/
#page_contacts_screen_1 .container{
	height: 480px
}
#page_contacts_screen_1 .container::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	right: 15px;
	width: 277px;
	height: 100%;
	background: #e4e7eb;
}
#page_contacts_screen_1 h1{
	z-index: 1;
	position: relative;
    left: -0.05em;
}
#page_contacts_screen_1 img{
	position: absolute;
	top: -80px;
	right: 15px;
}

@media (max-width: 991px){
	#page_contacts_screen_1 .container{
		height: auto
	}
	#page_contacts_screen_1 img{
		position: static;
		max-width: 100%;
		height: auto;
		margin-top: 35px;
	}
}

@media (max-width: 767px){
	#page_contacts_screen_1 .container::before{
		display: none;
	}
}
/*END #page_contacts_screen_1*/

/*BEGIN #page_contacts_screen_2*/
#page_contacts_screen_2 .container::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: -80px;
	left: 0;
	width: 50%;
	height: 123px;
	background: #f1f3f5;
}
#page_contacts_screen_2 .container::after{
	content: "";
	z-index: -1;
	position: absolute;
	top: -80px;
	left: 50%;
	width: 50vw;
	height: 123px;
	background: #f1f3f5;
}
#page_contacts_screen_2 .info_block{
	width: calc(100% + 30px);
	margin-left: -15px;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#page_contacts_screen_2 .info_block .part{
	position: relative;
	width: 33.33%;
	padding-left: 100px;
}
#page_contacts_screen_2 .info_block .part .num_type_1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 40px;
	text-align: center;
}
#page_contacts_screen_2 .info_block .part .num_type_1::after{
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #cacfd5;
}
#page_contacts_screen_2 .info_block .part .text_type_5{
	margin-top: -6px;
	margin-bottom: 40px;
}
#page_contacts_screen_2 .info_block .part .text_type_1 a{
	display: inline-block;
}
#page_contacts_screen_2 .info_block .part .text_type_1 .first{
	margin-right: 20px;
}
#page_contacts_screen_2 .info_block .part .text_type_1 .second{
	margin-right: 46px;
}
#page_contacts_screen_2 .info_block .part .pink_btn{
	margin-top: 25px;
}

@media (max-width: 991px){
	#page_contacts_screen_2 .container::before,
	#page_contacts_screen_2 .container::after{
		display: none;
	}
	#page_contacts_screen_2 .info_block{
		display: block;
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	#page_contacts_screen_2 .info_block .part{
		width: 100%;
		padding-left: 0;
	}
	#page_contacts_screen_2 .info_block .part:not(:last-child){
		margin-bottom: 50px;
	}
	#page_contacts_screen_2 .info_block .part .num_type_1{
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#page_contacts_screen_2 .info_block .part .num_type_1::after{
		display: none;
	}
	#page_contacts_screen_2 .info_block .part .text_type_5{
		margin-top: 0;
		margin-bottom: 18px;
	}
	#page_contacts_screen_2 .info_block .part .text_type_1 a{
		line-height: 30px;
	}
}
/*END #page_contacts_screen_2*/

/*BEGIN #page_contacts_screen_3*/
#page_contacts_screen_3 .container iframe{
	width: calc(100% + 30px);
	height: 400px;
	margin-left: -15px;
}

@media (max-width: 991px){
	#page_contacts_screen_3 .container iframe{
		width: 100%;
		height: 300px;
		margin-left: 0;
	}
}
/*END #page_contacts_screen_3*/

/*BEGIN #page_about_clinic_screen_1*/
#page_about_clinic_screen_1{
	background: url(../img/page_about_clinic/page_about_clinic_screen_1_bg.jpg) no-repeat 50% 0 / cover fixed;
}
#page_about_clinic_screen_1 h1 > span{
	display: block;
}
#page_about_clinic_screen_1 h1 .title_type_1{
	position: relative;
	left: -0.05em;
}
#page_about_clinic_screen_1 .scroll_btn{
	position: absolute;
	bottom: 60px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (min-width: 992px) and (max-height: 700px){
	#page_about_clinic_screen_1 .scroll_btn{
		bottom: 30px;
	}
}

@media (max-width: 991px){
	#page_about_clinic_screen_1{
		position: relative;
	}
	#page_about_clinic_screen_1::after{
		content: "";
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.4);
	}
	#page_about_clinic_screen_1 .scroll_btn{
		bottom: 50px;
	}
}

@media (max-width: 320px){
	#page_about_clinic_screen_1 h1{
		margin-bottom: 32px;
	}
}
/*END #page_about_clinic_screen_1*/

/*BEGIN #page_about_clinic_screen_2*/
#page_about_clinic_screen_2{
	height: 654px;
	background: url(../img/page_about_clinic/page_about_clinic_screen_2_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_about_clinic_screen_2.padding_type_1{
		padding-top: 79px;
	}
}

@media (max-width: 991px){
	#page_about_clinic_screen_2{
		height: auto;
		background: none;
	}
}
/*END #page_about_clinic_screen_2*/

/*BEGIN #page_about_clinic_screen_3*/
#page_about_clinic_screen_3{
	height: 639px;
	margin-top: -16px;
	background: url(../img/page_about_clinic/page_about_clinic_screen_3_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_about_clinic_screen_3.padding_type_1{
		padding-top: 130px;
	}
}

@media (max-width: 991px){
	#page_about_clinic_screen_3{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#page_about_clinic_screen_3 br{
		display: none;
	}
}
/*END #page_about_clinic_screen_3*/

/*BEGIN #page_about_clinic_screen_4*/
#page_about_clinic_screen_4{
	height: 510px;
	background: url(../img/page_about_clinic/page_about_clinic_screen_4_bg.png) no-repeat 50% 0;
}
#page_about_clinic_screen_4 .grey_stick{
	margin-top: 135px;
}

@media (min-width: 992px){
	#page_about_clinic_screen_4.padding_type_1{
		padding-top: 140px;
	}
	#page_about_clinic_screen_4 .container::before{
		content: "";
		position: absolute;
		top: -240px;
		left: 115px;
		width: 330px;
		height: 200px;
		border: 2px solid #e4e7eb;
	}
	#page_about_clinic_screen_4 .text_type_3{
		color: #fff;
	}
}

@media (max-width: 991px){
	#page_about_clinic_screen_4{
		height: auto;
		background: none;
	}
	#page_about_clinic_screen_4 br{
		display: none;
	}
}
/*END #page_about_clinic_screen_4*/

/*BEGIN #page_about_clinic_screen_5*/
#page_about_clinic_screen_5{
	height: 613px;
	background: url(../img/page_about_clinic/page_about_clinic_screen_5_bg.png) no-repeat 50% 0;
}
#page_about_clinic_screen_5 .sign{
	margin: 50px 0 0 80px;
}

@media (min-width: 992px){
	#page_about_clinic_screen_5.padding_type_1{
		padding-top: 78px;
	}
}

@media (max-width: 991px){
	#page_about_clinic_screen_5{
		height: auto;
		background: none;
	}
	#page_about_clinic_screen_5 br{
		display: none;
	}
	#page_about_clinic_screen_5 .sign{
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
}
/*END #page_about_clinic_screen_5*/

/*BEGIN #page_doctors_screen_1*/
#page_doctors_screen_1{
	height: 434px;
	background: url(../img/page_doctors/page_doctors_screen_1_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#page_doctors_screen_1{
		height: auto;
		background: none;
	}
	#page_doctors_screen_1 br{
		display: none;
	}
	#page_doctors_screen_1 .title_type_2{
		margin-bottom: 23px;
	}
}
/*END #page_doctors_screen_1*/

/*BEGIN #page_doctors_screen_2*/
#page_doctors_screen_2{
	background: url(../img/page_doctors/page_doctors_screen_2_bg.png) no-repeat 50% 475px;
}

@media (max-width: 991px){
	#page_doctors_screen_2{
		background: none;
	}
}
/*END #page_doctors_screen_2*/

/*BEGIN .doctors_wrapper*/
.doctors_wrapper{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.doctors_wrapper .doctor_block{
	position: relative;
	width: 50%;
	height: 480px;
	overflow: hidden;
}
.doctors_wrapper .doctor_block::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: 174px;
	left: 0;
	width: 320px;
	height: 250px;
	border: 2px solid #e4e7eb;
}
.doctors_wrapper .doctor_block .thumb{
	position: absolute;
	top: 0;
	left: 15px;
	width: 230px;
}
.doctors_wrapper .doctor_block .thumb img{
	width: auto;
	height: auto;
}
.doctors_wrapper .doctor_block .info_block{
	position: absolute;
	top: 255px;
	left: 190px;
	width: 310px;
	padding: 25px 25px 25px 60px;
	background: #f1f3f5;
}
.doctors_wrapper .doctor_block .info_block .text_type_3{
	z-index: 1;
	position: relative;
	line-height: 1.3em;
}
.doctors_wrapper .doctor_block .info_block .text_type_3 a{
	display: inline-block;
}
.doctors_wrapper .doctor_block .info_block .text_type_1.caps{
	z-index: 1;
	position: relative;
	margin-bottom: 0;
	letter-spacing: 0.1em;
}
.doctors_wrapper .doctor_block .num_type_1{
	position: absolute;
	top: 213px;
	left: 278px;
}
.doctors_wrapper .p_nothing_found{
	width: 100%;
}

@media (min-width: 991px){
	.doctors_wrapper .doctor_block:nth-child(4n) .thumb,
	.doctors_wrapper .doctor_block:nth-child(4n-1) .thumb{
		left: auto;
		right: 15px;
	}
	.doctors_wrapper .doctor_block:nth-child(4n)::before,
	.doctors_wrapper .doctor_block:nth-child(4n-1)::before{
		left: auto;
		right: 0;
	}
	.doctors_wrapper .doctor_block:nth-child(4n) .info_block,
	.doctors_wrapper .doctor_block:nth-child(4n-1) .info_block{
		left: auto;
		right: 195px;
		padding-left: 35px;
	}
}

@media (min-width: 991px) and (max-width: 1190px){
	.doctors_wrapper .doctor_block .num_type_1{
		top: 230px;
		left: 255px;
	}
}

@media (max-width: 991px){
	.doctors_wrapper{
		display: block;
		max-width: 570px;
		margin: auto;
	}
	.doctors_wrapper .doctor_block{
		width: 100%;
	}
	.doctors_wrapper .doctor_block .num_type_1{
		left: 287px;
	}
	.doctors_wrapper .doctor_block .info_block{
		width: calc(100% - 190px);
		padding-left: 95px;
	}
}

@media (max-width: 767px){
	.doctors_wrapper .doctor_block::before{
		width: 100%;
	}
	.doctors_wrapper .doctor_block .thumb{
		position: static;
		margin: auto;
	}
	.doctors_wrapper .doctor_block .info_block{
		z-index: 1;
		left: 15px;
		width: calc(100% - 30px);
		padding-left: 15px;
	}
	.doctors_wrapper .doctor_block .num_type_1{
		top: 230px;
		left: 17px;
	}
	.doctors_wrapper .doctor_block .info_block .text_type_1.caps{
		font-size: 1.2rem;
	}
}
/*END .doctors_wrapper*/

/*BEGIN .single_doctor_screen_1*/
.single_doctor_screen_1{
	position: relative;
}
.single_doctor_screen_1 .container{
	min-height: 600px;
	padding-bottom: 270px;
}
.single_doctor_screen_1 .container img{
	position: absolute;
	top: -30px;
	right: 85px;
	width: 390px;
	height: auto;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.single_doctor_screen_1 .stamp{
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 133px;
	background: url(../img/general/stamp.png) no-repeat 50% 0;
}
.single_doctor_screen_1 .grey_rect{
    z-index: -1;
    position: absolute;
    bottom: 125px;
    right: 15px;
    width: 275px;
    height: calc(100% - 40px);
    background: #e4e7eb;
}
.single_doctor_screen_1 .container::before{
    content: "";
    z-index: -2;
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 50%;
    height: 123px;
    background: #f1f3f5;
}
.single_doctor_screen_1 .container::after{
    content: "";
    z-index: -2;
    position: absolute;
    bottom: 65px;
    left: 50%;
    width: 50vw;
    height: 123px;
    background: #f1f3f5;
}
.single_doctor_screen_1 .text_type_3{
	width: calc(50% - 88px);
}
.single_doctor_screen_1 .scroll_btn{
	position: absolute;
    bottom: 215px;
    left: 50%;
    margin-left: -60px;
}

@media (max-width: 991px){
	.single_doctor_screen_1 .title_type_2{
		margin-bottom: 23px;
	}
	.single_doctor_screen_1 .container{
		min-height: 0;
		padding-bottom: 0;
	}
	.single_doctor_screen_1 .stamp,
	.single_doctor_screen_1 .grey_rect{
		display: none;
	}
	.single_doctor_screen_1 .container::before,
	.single_doctor_screen_1 .container::after{
		display: none;
	}
	.single_doctor_screen_1 .text_type_3{
		width: 100%;
		margin-bottom: 0;
	}
	.single_doctor_screen_1 .container img{
		position: static;
		width: auto;
		max-width: 100%;
		margin: 35px auto 0;
		
		-webkit-border-radius: 0;
		border-radius: 0;
	}
	.single_doctor_screen_1 .scroll_btn{
		display: none;
	}
}
/*END .single_doctor_screen_1*/

/*BEGIN .single_doctor_screen_2*/
.single_doctor_screen_2 .container{
	padding: 0 100px;
}
.single_doctor_screen_2 .container img{
	display: none;
}
.single_doctor_screen_2 .container .part{
	position: relative;
}
.single_doctor_screen_2 .container .part:not(:last-child){
	margin-bottom: 70px;
}
.single_doctor_screen_2 .container .part .num_type_1{
	position: absolute;
    top: 4px;
    width: 100px;
    left: -100px;
    text-align: center;
}
.single_doctor_screen_2 .container .part .text_type_2{
	margin-bottom: 30px;
	font-size: 1.6rem;
}
.single_doctor_screen_2 .container .part .text_type_1{
	font-size: 1.6rem;
}
.single_doctor_screen_2 .container .part ul.text_type_1 li{
	margin-bottom: 15px;
}

@media (max-width: 991px){
	.single_doctor_screen_2 .container{
		padding: 0 15px;
	}
	.single_doctor_screen_2 .container .part:not(:last-child){
		margin-bottom: 60px;
	}
	.single_doctor_screen_2 .container .part .num_type_1{
		position: static;
		display: block;
		width: auto;
		margin-bottom: 20px;
		text-align: left;
	}
	.single_doctor_screen_2 .container .part .text_type_2{
		margin-bottom: 23px;
	}
}
/*END .single_doctor_screen_2*/

/*BEGIN #page_our_principles_screen_1*/
#page_our_principles_screen_1{
	background: url(../img/page_our_principles/page_our_principles_screen_1_bg.jpg) no-repeat 50% 0 / cover fixed;
}
#page_our_principles_screen_1 h1 > span{
	display: block;
}
#page_our_principles_screen_1 h1 .title_type_1{
	position: relative;
	left: -0.05em;
}
#page_our_principles_screen_1 .scroll_btn{
	position: absolute;
	bottom: 60px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (min-width: 992px) and (max-height: 700px){
	#page_our_principles_screen_1 .scroll_btn{
		bottom: 30px;
	}
}

@media (max-width: 991px){
	#page_our_principles_screen_1{
		position: relative;
	}
	#page_our_principles_screen_1::after{
		content: "";
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.4);
	}
	#page_our_principles_screen_1 .scroll_btn{
		bottom: 50px;
	}
}

@media (max-width: 320px){
	#page_our_principles_screen_1 h1{
		margin-bottom: 32px;
	}
}
/*END #page_our_principles_screen_1*/

/*BEGIN #page_our_principles_screen_2*/
#page_our_principles_screen_2{
	height: 539px;
	background: url(../img/page_our_principles/page_our_principles_screen_2_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#page_our_principles_screen_2{
		height: auto;
		background: none;
	}
	#page_our_principles_screen_2 br{
		display: none;
	}
}
/*END #page_our_principles_screen_2*/

/*BEGIN #page_our_principles_screen_3*/
#page_our_principles_screen_3{
	height: 565px;
	margin-top: -71px;
	background: url(../img/page_our_principles/page_our_principles_screen_3_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#page_our_principles_screen_3{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#page_our_principles_screen_3 br{
		display: none;
	}
}
/*END #page_our_principles_screen_3*/

/*BEGIN #page_our_principles_screen_4*/
#page_our_principles_screen_4{
	height: 524px;
	background: url(../img/page_our_principles/page_our_principles_screen_4_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#page_our_principles_screen_4{
		height: auto;
		background: none;
	}
	#page_our_principles_screen_4 br{
		display: none;
	}
}
/*END #page_our_principles_screen_4*/

/*BEGIN #page_our_principles_screen_5*/
#page_our_principles_screen_5{
	height: 448px;
	margin-top: -40px;
	background: url(../img/page_our_principles/page_our_principles_screen_5_bg.png) no-repeat 50% 0;
}

@media (min-width: 1171px){
	#page_our_principles_screen_5 .container.pl_585{
		padding-left: 660px;
	}
}

@media (min-width: 992px) and (max-width: 1170px){
	#page_our_principles_screen_5 .container.pl_585{
		padding-left: calc(50% + 15px);
	}
}

@media (max-width: 991px){
	#page_our_principles_screen_5{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#page_our_principles_screen_5 br{
		display: none;
	}
}
/*END #page_our_principles_screen_5*/

/*BEGIN #page_our_principles_screen_6*/
#page_our_principles_screen_6{
	height: 558px;
	margin-top: -70px;
	background: url(../img/page_our_principles/page_our_principles_screen_6_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_our_principles_screen_6.padding_type_1{
		padding-top: 120px;
	}
}

@media (max-width: 991px){
	#page_our_principles_screen_6{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#page_our_principles_screen_6 br{
		display: none;
	}
}
/*END #page_our_principles_screen_6*/

/*BEGIN .option_list_screen*/
.option_list_screen{
	position: relative;
	padding: 170px 0 15px 0;
	background: url(../img/general/option_list_screen_bg.png) no-repeat 50% 0;
}
.option_list_screen::before,
.option_list_screen::after{
	content: "";
	z-index: -1;
	position: absolute;
	top: 67px;
	height: calc(100% - 67px);
	background: #f1f3f5;
}
.option_list_screen::before{
	right: 50%;
	width: 584px;
}
.option_list_screen::after{
	left: 50%;
	width: 50vw;
}
.option_list .part{
	margin-bottom: 25px;
}
.option_list .part .point{
	position: relative;
	padding: 13px 70px 13px 80px;
	background: transparent;
	border-bottom: 1px solid #cbced2;
	cursor: pointer;
}
.option_list .part.active .point{
	background: #fff;
}
.option_list .part .point *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
.option_list .part.active .point *{
	color: #cacfd5;
}
.option_list .part .point .num_type_1{
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 50px;
	margin-bottom: 0;
	line-height: 50px;
	text-align: center;
}
.option_list .part .point .sign{
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	height: 50px;
	margin-bottom: 0;
	
	font-family: "Gilroy-Regular";
	font-size: 3.6rem;
	line-height: 50px;
	text-align: center;
}
.option_list .part .point .text_type_1{
	font-family: "Gilroy-Regular";
	letter-spacing: 0.1em;
}
.option_list .part .info{
	background: #fff;
	height: 0;
	overflow: hidden;
	
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.option_list .part .info .content_block{
	padding: 13px 70px 13px 80px;
}
.option_list .part .info .text_type_1:not(.m){
	margin-bottom: 0;
}

@media (min-width: 1251px){
	.option_list .part .point{
		-webkit-transition: background 0.1s ease-in-out;
		transition: background 0.1s ease-in-out;
	}
	.option_list .part .point:hover{
		background: #cacfd5;
	}
	.option_list .part .point > *{
		-webkit-transition: color 0.1s ease-in-out;
		transition: color 0.1s ease-in-out;
	}
	.option_list .part .point:hover > *{
		color: #fff;
	}
}

@media (max-width: 991px){
	.option_list_screen{
		margin-top: 45px;
		padding-top: 40px;
		background: #f1f3f5;
	}
	.option_list_screen::before,
	.option_list_screen::after{
		display: none;
	}
	.option_list .part .point{
		padding: 13px 30px 13px 30px;
	}
	.option_list .part .info .content_block{
		padding: 13px 15px 13px 15px;
	}
	.option_list .part .point .num_type_1,
	.option_list .part .point .sign{
		width: 30px;
		line-height: 48px;
	}
}
/*END .option_list_screen*/

/*BEGIN .page_service_screen_1*/
@media (min-width: 992px){
	.page_service_screen_1{
		min-height: 479px;
		padding-bottom: 30px;
	}
}

@media (max-width: 991px){
	.page_service_screen_1 br{
		display: none;
	}
}
/*END .page_service_screen_1*/

/*BEGIN #page_trichoscopy_screen_1*/
@media (min-width: 992px){
	#page_trichoscopy_screen_1{
		background: url(../img/page_trichoscopy/page_trichoscopy_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_trichoscopy_screen_1*/

/*BEGIN #page_biopsy_of_the_head_skin_screen_1*/
@media (min-width: 992px){
	#page_biopsy_of_the_head_skin_screen_1{
		background: url(../img/page_biopsy_of_the_head_skin/page_biopsy_of_the_head_skin_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_biopsy_of_the_head_skin_screen_1*/

/*BEGIN #page_androgenetic_alopecia_for_men_screen_1*/
@media (min-width: 992px){
	#page_androgenetic_alopecia_for_men_screen_1{
		background: url(../img/page_androgenetic_alopecia_for_men/page_androgenetic_alopecia_for_men_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_androgenetic_alopecia_for_men_screen_1*/

/*BEGIN #page_scar_alopecia_screen_1*/
@media (min-width: 992px){
	#page_scar_alopecia_screen_1{
		background: url(../img/page_scar_alopecia/page_scar_alopecia_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_scar_alopecia_screen_1*/

/*BEGIN #page_nested_alopecia_screen_1*/
@media (min-width: 992px){
	#page_nested_alopecia_screen_1{
		background: url(../img/page_nested_alopecia/page_nested_alopecia_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_nested_alopecia_screen_1*/

/*BEGIN #page_phototrichogram_screen_1*/
@media (min-width: 992px){
	#page_phototrichogram_screen_1{
		background: url(../img/page_phototrichogram/page_phototrichogram_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_phototrichogram_screen_1*/

/*BEGIN #page_tricholab_screen_1*/
@media (min-width: 992px){
	#page_tricholab_screen_1{
		background: url(../img/page_tricholab/page_tricholab_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_tricholab_screen_1*/

/*BEGIN #page_telogen_hair_loss_screen_1*/
@media (min-width: 992px){
	#page_telogen_hair_loss_screen_1{
		background: url(../img/page_telogen_hair_loss/page_telogen_hair_loss_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_telogen_hair_loss_screen_1*/

/*BEGIN #page_psoriasis_of_the_head_skin_screen_1*/
@media (min-width: 992px){
	#page_psoriasis_of_the_head_skin_screen_1{
		background: url(../img/page_psoriasis_of_the_head_skin/page_psoriasis_of_the_head_skin_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_psoriasis_of_the_head_skin_screen_1*/

/*BEGIN #page_seborrheic_dermatitis_of_the_head_skin_screen_1*/
@media (min-width: 992px){
	#page_seborrheic_dermatitis_of_the_head_skin_screen_1{
		background: url(../img/page_seborrheic_dermatitis_of_the_head_skin/page_seborrheic_dermatitis_of_the_head_skin_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_seborrheic_dermatitis_of_the_head_skin_screen_1*/

/*BEGIN #page_skin_chek_screen_1*/
@media (min-width: 992px){
	#page_skin_chek_screen_1{
		background: url(../img/page_skin_chek/page_skin_chek_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_skin_chek_screen_1*/

/*BEGIN #page_surgical_removal_of_skin_tumors_screen_1*/
@media (min-width: 992px){
	#page_surgical_removal_of_skin_tumors_screen_1{
		background: url(../img/page_surgical_removal_of_skin_tumors/page_surgical_removal_of_skin_tumors_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_surgical_removal_of_skin_tumors_screen_1*/

/*BEGIN #page_histological_research_screen_1*/
@media (min-width: 992px){
	#page_histological_research_screen_1{
		background: url(../img/page_histological_research/page_histological_research_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_histological_research_screen_1*/

/*BEGIN #page_acne_screen_1*/
@media (min-width: 992px){
	#page_acne_screen_1{
		background: url(../img/page_acne/page_acne_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_acne_screen_1*/

/*BEGIN #page_rosacea_screen_1*/
@media (min-width: 992px){
	#page_rosacea_screen_1{
		background: url(../img/page_rosacea/page_rosacea_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_rosacea_screen_1*/

/*BEGIN #page_hair_transplantation_screen_1*/
@media (min-width: 992px){
	#page_hair_transplantation_screen_1{
		background: url(../img/page_hair_transplantation/page_hair_transplantation_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_hair_transplantation_screen_1*/

/*BEGIN #page_plasma_therapy_screen_1*/
@media (min-width: 992px){
	#page_plasma_therapy_screen_1{
		background: url(../img/page_plasma_therapy/page_plasma_therapy_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_plasma_therapy_screen_1*/

/*BEGIN #page_mesotherapy_screen_1*/
@media (min-width: 992px){
	#page_mesotherapy_screen_1{
		background: url(../img/page_mesotherapy/page_mesotherapy_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_mesotherapy_screen_1*/

/*BEGIN #page_biorevitalization_screen_1*/
@media (min-width: 992px){
	#page_biorevitalization_screen_1{
		background: url(../img/page_biorevitalization/page_biorevitalization_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_biorevitalization_screen_1*/

/*BEGIN #page_botulinum_therapy_screen_1*/
@media (min-width: 992px){
	#page_botulinum_therapy_screen_1{
		background: url(../img/page_botulinum_therapy/page_botulinum_therapy_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_botulinum_therapy_screen_1*/

/*BEGIN #page_contour_plastic_screen_1*/
@media (min-width: 992px){
	#page_contour_plastic_screen_1{
		background: url(../img/page_contour_plastic/page_contour_plastic_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_contour_plastic_screen_1*/

/*BEGIN #page_hyperhidrosis_screen_1*/
@media (min-width: 992px){
	#page_hyperhidrosis_screen_1{
		background: url(../img/page_hyperhidrosis/page_hyperhidrosis_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_hyperhidrosis_screen_1*/

/*BEGIN #page_atopic_dermatitis_screen_1*/
@media (min-width: 992px){
	#page_atopic_dermatitis_screen_1{
		background: url(../img/page_atopic_dermatitis/page_atopic_dermatitis_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_atopic_dermatitis_screen_1*/

/*BEGIN #page_seborrheic_dermatitis_children_screen_1*/
@media (min-width: 992px){
	#page_seborrheic_dermatitis_children_screen_1{
		background: url(../img/page_seborrheic_dermatitis_children/page_seborrheic_dermatitis_children_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_seborrheic_dermatitis_children_screen_1*/

/*BEGIN #page_contagious_mollusk_screen_1*/
@media (min-width: 992px){
	#page_contagious_mollusk_screen_1{
		background: url(../img/page_contagious_mollusk/page_contagious_mollusk_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_contagious_mollusk_screen_1*/

/*BEGIN #page_page_diaper_dermatitis_screen_1*/
@media (min-width: 992px){
	#page_page_diaper_dermatitis_screen_1{
		background: url(../img/page_diaper_dermatitis/page_diaper_dermatitis_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_page_diaper_dermatitis_screen_1*/

/*BEGIN #page_perioral_dermatitis_screen_1*/
@media (min-width: 992px){
	#page_perioral_dermatitis_screen_1{
		background: url(../img/page_perioral_dermatitis/page_perioral_dermatitis_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_perioral_dermatitis_screen_1*/

/*BEGIN #page_classic_fue_screen_1*/
@media (min-width: 992px){
	#page_classic_fue_screen_1{
		background: url(../img/page_classic_fue/page_classic_fue_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_classic_fue_screen_1*/

/*BEGIN #page_partial_shave_fue_screen_1*/
@media (min-width: 992px){
	#page_partial_shave_fue_screen_1{
		background: url(../img/page_partial_shave_fue/page_partial_shave_fue_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_partial_shave_fue_screen_1*/

/*BEGIN #page_no_shave_fue_screen_1*/
@media (min-width: 992px){
	#page_no_shave_fue_screen_1{
		background: url(../img/page_no_shave_fue/page_no_shave_fue_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_no_shave_fue_screen_1*/

/*BEGIN #page_long_hair_fue_screen_1*/
@media (min-width: 992px){
	#page_long_hair_fue_screen_1{
		background: url(../img/page_long_hair_fue/page_long_hair_fue_screen_1_bg.png) no-repeat 50% 0;
	}
}
/*END #page_long_hair_fue_screen_1*/

/*BEGIN #page_en_screen_2*/
#page_en_screen_2{
	height: 539px;
	background: url(../img/page_en/page_en_screen_2_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_en_screen_2.padding_type_1{
		padding-top: 130px;
	}
}

@media (max-width: 991px){
	#page_en_screen_2{
		height: auto;
		background: none;
	}
	#page_en_screen_2 br{
		display: none;
	}
}
/*END #page_en_screen_2*/

/*BEGIN #page_en_screen_3*/
#page_en_screen_3{
	height: 372px;
	background: url(../img/page_en/page_en_screen_3_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#page_en_screen_3{
		height: auto;
		background: none;
	}
	#page_en_screen_3 br{
		display: none;
	}
}
/*END #page_en_screen_3*/

/*BEGIN #page_en_screen_4*/
.page_en_screen_4_title{
	margin: 97px auto 0;
	padding: 0 15px;
}
#page_en_screen_4{
	height: 654px;
	background: url(../img/page_en/page_en_screen_4_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_en_screen_4.padding_type_1{
		padding-top: 79px;
	}
}

@media (max-width: 991px){
	.page_en_screen_4_title{
		margin: 70px auto 25px;
	}
	#page_en_screen_4{
		padding-top: 0;
		height: auto;
		background: none;
	}
}
/*END #page_en_screen_4*/

/*BEGIN #page_en_screen_5*/
#page_en_screen_5{
	height: 639px;
	margin-top: -16px;
	background: url(../img/page_en/page_en_screen_5_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#page_en_screen_5.padding_type_1{
		padding-top: 130px;
	}
}

@media (max-width: 991px){
	#page_en_screen_5{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#page_en_screen_5 br{
		display: none;
	}
}
/*END #page_en_screen_5*/

/*BEGIN #page_en_screen_6*/
#page_en_screen_6{
	height: 510px;
	background: url(../img/page_en/page_en_screen_6_bg.png) no-repeat 50% 0;
}
#page_en_screen_6 .grey_stick{
	margin-top: 135px;
}

@media (min-width: 992px){
	#page_en_screen_6.padding_type_1{
		padding-top: 140px;
	}
	#page_en_screen_6 .container::before{
		content: "";
		position: absolute;
		top: -240px;
		left: 115px;
		width: 330px;
		height: 200px;
		border: 2px solid #e4e7eb;
	}
	#page_en_screen_6 .text_type_3{
		color: #fff;
	}
}

@media (max-width: 991px){
	#page_en_screen_6{
		height: auto;
		background: none;
	}
	#page_en_screen_6 br{
		display: none;
	}
}
/*END #page_en_screen_6*/

/*BEGIN #page_en_screen_7*/
#page_en_screen_7{
	height: 613px;
	background: url(../img/page_en/page_en_screen_7_bg.png) no-repeat 50% 0;
}
#page_en_screen_7 .sign{
	margin: 50px 0 0 80px;
}

@media (min-width: 992px){
	#page_en_screen_7.padding_type_1{
		padding-top: 78px;
	}
}

@media (max-width: 991px){
	#page_en_screen_7{
		height: auto;
		background: none;
	}
	#page_en_screen_7 br{
		display: none;
	}
	#page_en_screen_7 .sign{
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
}
/*END #page_en_screen_7*/

/*BEGIN #en_page_our_principles_screen_2*/
.en_page_our_principles_screen_2_title{
	margin: 60px auto;
	padding: 0 15px;
}
#en_page_our_principles_screen_2{
	height: 539px;
	background: url(../img/page_en/en_page_our_principles_screen_2_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	.en_page_our_principles_screen_2_title{
		margin: 70px auto 25px;
	}
	#en_page_our_principles_screen_2{
		height: auto;
		padding-top: 0;
		background: none;
	}
	#en_page_our_principles_screen_2 br{
		display: none;
	}
}
/*END #en_page_our_principles_screen_2*/

/*BEGIN #en_page_our_principles_screen_3*/
#en_page_our_principles_screen_3{
	height: 565px;
	margin-top: -71px;
	background: url(../img/page_en/en_page_our_principles_screen_3_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#en_page_our_principles_screen_3{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#en_page_our_principles_screen_3 br{
		display: none;
	}
}
/*END #en_page_our_principles_screen_3*/

/*BEGIN #en_page_our_principles_screen_4*/
#en_page_our_principles_screen_4{
	height: 524px;
	background: url(../img/page_en/en_page_our_principles_screen_4_bg.png) no-repeat 50% 0;
}

@media (max-width: 991px){
	#en_page_our_principles_screen_4{
		height: auto;
		background: none;
	}
	#en_page_our_principles_screen_4 br{
		display: none;
	}
}
/*END #en_page_our_principles_screen_4*/

/*BEGIN #en_page_our_principles_screen_5*/
#en_page_our_principles_screen_5{
	height: 448px;
	margin-top: -40px;
	background: url(../img/page_en/en_page_our_principles_screen_5_bg.png) no-repeat 50% 0;
}

@media (min-width: 1171px){
	#en_page_our_principles_screen_5 .container.pl_585{
		padding-left: 660px;
	}
}

@media (min-width: 992px) and (max-width: 1170px){
	#en_page_our_principles_screen_5 .container.pl_585{
		padding-left: calc(50% + 15px);
	}
}

@media (max-width: 991px){
	#en_page_our_principles_screen_5{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#en_page_our_principles_screen_5 br{
		display: none;
	}
}
/*END #en_page_our_principles_screen_5*/

/*BEGIN #en_page_our_principles_screen_6*/
#en_page_our_principles_screen_6{
	height: 558px;
	margin-top: -70px;
	background: url(../img/page_en/en_page_our_principles_screen_6_bg.png) no-repeat 50% 0;
}

@media (min-width: 992px){
	#en_page_our_principles_screen_6.padding_type_1{
		padding-top: 120px;
	}
}

@media (max-width: 991px){
	#en_page_our_principles_screen_6{
		height: auto;
		margin-top: 0;
		background: none;
	}
	#en_page_our_principles_screen_6 br{
		display: none;
	}
}
/*END #en_page_our_principles_screen_6*/

/*BEGIN #page_en_screen_8*/
.page_en_screen_8_title{
	margin: 60px auto;
	padding: 0 15px;
}
#page_en_screen_8 .container::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: -80px;
	left: 0;
	width: 50%;
	height: 123px;
	background: #f1f3f5;
}
#page_en_screen_8 .container::after{
	content: "";
	z-index: -1;
	position: absolute;
	top: -80px;
	left: 50%;
	width: 50vw;
	height: 123px;
	background: #f1f3f5;
}
#page_en_screen_8 .info_block{
	width: calc(100% + 30px);
	margin-left: -15px;
	
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
#page_en_screen_8 .info_block .part{
	position: relative;
	width: 33.33%;
	padding-left: 100px;
}
#page_en_screen_8 .info_block .part .num_type_1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 40px;
	text-align: center;
}
#page_en_screen_8 .info_block .part .num_type_1::after{
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #cacfd5;
}
#page_en_screen_8 .info_block .part .text_type_5{
	margin-top: -6px;
	margin-bottom: 40px;
}
#page_en_screen_8 .info_block .part .text_type_1 a{
	display: inline-block;
}
#page_en_screen_8 .info_block .part .text_type_1 .first{
	margin-right: 20px;
}
#page_en_screen_8 .info_block .part .text_type_1 .second{
	margin-right: 46px;
}
#page_en_screen_8 .info_block .part .pink_btn{
	margin-top: 25px;
	letter-spacing: 0.1em;
}

@media (max-width: 991px){
	.page_en_screen_8_title{
		margin: 70px auto 0;
	}
	#page_en_screen_8{
		padding-top: 50px;
	}
	#page_en_screen_8 .container::before,
	#page_en_screen_8 .container::after{
		display: none;
	}
	#page_en_screen_8 .info_block{
		display: block;
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	#page_en_screen_8 .info_block .part{
		width: 100%;
		padding-left: 0;
	}
	#page_en_screen_8 .info_block .part:not(:last-child){
		margin-bottom: 50px;
	}
	#page_en_screen_8 .info_block .part .num_type_1{
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#page_en_screen_8 .info_block .part .num_type_1::after{
		display: none;
	}
	#page_en_screen_8 .info_block .part .text_type_5{
		margin-top: 0;
		margin-bottom: 18px;
	}
	#page_en_screen_8 .info_block .part .text_type_1 a{
		line-height: 30px;
	}
}
/*END #page_en_screen_8*/

/*BEGIN #page_en_screen_9*/
#page_en_screen_9 .container iframe{
	width: calc(100% + 30px);
	height: 400px;
	margin-left: -15px;
}

@media (max-width: 991px){
	#page_en_screen_9 .container iframe{
		width: 100%;
		height: 300px;
		margin-left: 0;
	}
}
/*END #page_en_screen_9*/