/*BEGIN #preloader*/
#preloader{
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	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: #76c9c7;
   
	-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: "GTWalsheimPro-Light";
	src: url("../fonts/GTWalsheimPro-Light.eot");
	src: local("☺"), url("../fonts/GTWalsheimPro-Light.woff") format("woff"), 
	url("../fonts/GTWalsheimPro-Light.ttf") format("truetype"), 
	url("../fonts/GTWalsheimPro-Light.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "MonumentExtended-Regular";
	src: url("../fonts/MonumentExtended-Regular.eot");
	src: local("☺"), url("../fonts/MonumentExtended-Regular.woff") format("woff"), 
	url("../fonts/MonumentExtended-Regular.ttf") format("truetype"), 
	url("../fonts/MonumentExtended-Regular.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "MonumentExtended-Ultrabold";
	src: url("../fonts/MonumentExtended-Ultrabold.eot");
	src: local("☺"), url("../fonts/MonumentExtended-Ultrabold.woff") format("woff"), 
	url("../fonts/MonumentExtended-Ultrabold.ttf") format("truetype"), 
	url("../fonts/MonumentExtended-Ultrabold.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: #76c9c7; }
p::selection      { color: #fff;  background: #76c9c7; }
a::-moz-selection { color: #fff;  background: #76c9c7; }
a::selection      { color: #fff;  background: #76c9c7; }
li::-moz-selection { color: #fff;  background: #76c9c7; }
li::selection      { color: #fff;  background: #76c9c7; }
span::-moz-selection { color: #fff;  background: #76c9c7; }
span::selection      { color: #fff;  background: #76c9c7; }
h1::-moz-selection { color: #fff;  background: #76c9c7; }
h1::selection      { color: #fff;  background: #76c9c7; }
h2::-moz-selection { color: #fff;  background: #76c9c7; }
h2::selection      { color: #fff;  background: #76c9c7; }
h3::-moz-selection { color: #fff;  background: #76c9c7; }
h3::selection      { color: #fff;  background: #76c9c7; }
h3::-moz-selection { color: #fff;  background: #76c9c7; }
h3::selection      { color: #fff;  background: #76c9c7; }
td::-moz-selection { color: #fff;  background: #76c9c7; }
td::selection      { color: #fff;  background: #76c9c7; }
input::-moz-selection { color: #000 !important;  background: #76c9c7; }
input::selection      { color: #000 !important;  background: #76c9c7; }
textarea::-moz-selection { color: #000 !important;  background: #76c9c7; }
textarea::selection      { color: #000 !important;  background: #76c9c7; }

::-webkit-input-placeholder{color: #030405;}
::-moz-placeholder{color: #030405;}
:-ms-input-placeholder{color: #030405;} 
:-o-input-placeholder{color: #030405;} 

html, body{
	overflow-x: hidden;
}
html{
	font-size: 10px;
}
body{
	position: relative;
	background: url(../img/general/cage.jpg) repeat;
	font-family: "GTWalsheimPro-Light";
	font-size: 1em;
	color: #030405;
	line-height: normal;
	will-change: background-position;
}
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, span, h1, h2, h3, h4{
	cursor: default;
}
a{
	text-decoration: none !important;
	outline: none !important;
	color: inherit;
}
a:hover, a:focus{
	color: inherit;
}
button{
	outline: none !important;
}
.clear{
	clear: both;
}
.nowrap{
	white-space: nowrap;
}
.container{
	z-index: 1;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

@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;
	}
}

@media (min-width: 1251px){
	body::-webkit-scrollbar{
		width: 10px;
	}
	body::-webkit-scrollbar-track{
		background: #efefef;
	}
	body::-webkit-scrollbar-thumb{
	   background: #76c9c7; 
	}
}

@media (min-width: 1211px){
	.container{
		width: 1190px;
	}
}

@media (max-width: 1210px){
	.container{
		width: 100%;
	}
}

@media (max-width: 767px){
	body{
		background-position: 50% 0;
		background-size: 25vw 25vw;
	}
}
/*END GENERAL SETTINGS*/

/*BEGIN GENERAL ELEMENTS*/
.screen_relative{
	z-index: 1;
	position: relative;
}
.screen_inner{
	position: relative;
}
.full_screen{
	height: 100vh;
	min-height: 530px;
}
.middle_element{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.padding_type_1{
	padding-top: 90px;
}
.full_width_img{
	display: block;
	width: 100%;
	height: auto;
}
.align_center{
	text-align: center;
}
.animated_element,
.animated_element img{
	will-change: transform, opacity;
}
/*.animated_element.draw,
.animated_element.draw img{
	will-change: auto;
}*/
.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{
	cursor: pointer;
}
.cta_btn, .cta_btn *{
	cursor: pointer;
}
.cta_btn{
	position: relative;
	width: 212px;
	height: 212px;
	padding-top: 85px;
	text-align: center;
}
.cta_btn .circle{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #98c66f;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.cta_btn.sp{
	padding-top: 75px;
}
.cta_btn .text_span{
	z-index: 1;
	position: relative;
	font-size: 1.8rem;
	text-decoration: underline;
}
.cta_btn .arrow_right{
	z-index: 1;
	position: relative;
	display: block;
	margin: 0 auto;
	width: 48px;
	height: 48px;
	background: url(../img/general/arrow_right.svg) no-repeat 0 0 / 100% 100%;
}
.parallax_element_on_mouse{
	-webkit-transition: transform 0.4s linear;
    transition: transform 0.4s linear;
}
.dots_decor{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.dots_decor.dots_decor_1{
	height: 6623px;
	background: url(../img/content/dots_decor_1.png) no-repeat calc(50% - 101px) 198px;
}
.movement_screen{
	position: fixed;
}
.cursor_text_decor,
.blue_circle_decor{
	position: relative;
}
.cursor_text_decor::before{
	content: "";
	position: absolute;
	top: 0;
    left: -1em;
    width: 1em;
    height: 1em;
	background: url(../img/general/cursor_text_decor.svg) no-repeat 50% 50% / 14px 56px;
}
.blue_circle_decor .circle{
	z-index: -1;
	position: absolute;
    bottom: -70px;
    left: -85px;
	width: 174px;
	height: 174px;
	background: #76c9c7;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.empty_circle{
	position: absolute;
	width: 340px;
	height: 340px;
	background: #fff;
	border: 2px solid #98c66f;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.empty_circle.small{
	width: 246px;
	height: 246px;
}
.yellow_circle{
	position: absolute;
	width: 390px;
	height: 390px;
	background: #f6d939;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.text_parallax_decor{
	z-index: 1;
	position: relative;
    width: 100%;
    height: 52px;
	will-change: background-position;
}
.text_parallax_decor.text_parallax_decor_1{
	background: url(../img/general/text_parallax_decor_1.png) repeat-x 0 0 / auto 100%;
}
.text_parallax_decor.text_parallax_decor_2{
	background: url(../img/general/text_parallax_decor_2.png) repeat-x 0 0 / auto 100%;
}
.infographics_type_1{
	z-index: 1;
	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;
}
.infographics_type_1.short{
	max-width: 600px;
}
.infographics_type_1 .part{
	width: 190px;
	margin-bottom: 50px;
}
.infographics_type_1.short .part{
	width: 200px;
}
.infographics_type_1 .part:last-child{
	margin-bottom: 0;
}
.infographics_type_1 .part p{
	line-height: 1.5em;
}

@media (min-width: 1251px){
	.oe{
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	.oe:hover{
		opacity: 0.7;
	}
	.cta_btn .circle{
		will-change: transform;
		
		-webkit-transition: transform 0.2s ease-in-out;
		transition: transform 0.2s ease-in-out;
	}
	.cta_btn:hover .circle{
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	.parallax_element_on_mouse{
		will-change: transform;
	}
}

@media (max-height: 660px) and (min-width: 768px){
	.padding_after_full_screen{
		padding-top: 90px;
	}
}

@media (max-width: 1250px){
	.cursor_text_decor::before{
		display: none;
	}
	.blue_circle_decor .circle{
		bottom: -55px;
		left: -130px;
		
		-webkit-transform: none !important;
		transform: none !important;
	}
}

@media (max-width: 991px){
	.cta_btn{
		width: 160px;
		height: 160px;
		padding-top: 60px;
	}
	.cta_btn.sp{
		padding-top: 45px;
	}
	.dots_decor{
		display: none;
	}
}

@media (max-width: 767px){
	.padding_type_1,
	.padding_after_full_screen{
		padding-top: 70px;
	}
	.text_parallax_decor{
		height: 32px;
	}
	.infographics_type_1{
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	.infographics_type_1.short{
		max-width: 200px;
	}
	.infographics_type_1 .part,
	.infographics_type_1.short .part{
		width: 100%;
		text-align: center;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN MARGINS*/
.mb_10{
	margin-bottom: 10px;
}
.mb_15{
	margin-bottom: 15px;
}
.mb_25{
	margin-bottom: 25px;
}
.mb_50{
	margin-bottom: 50px;
}
.mb_70{
	margin-bottom: 70px;
}
/*END MARGINS*/

/*BEGIN TEXT*/
*{
	font-weight: normal;
}
.text_regular{
	font-family: "MonumentExtended-Regular";
}
.text_bold{
	font-family: "MonumentExtended-Ultrabold";
}
.text_caps{
	text-transform: uppercase;
}
.text_white{
	color: #fff;
}
.text_pretitle{
	z-index: 1;
	position: relative;
	font-family: "MonumentExtended-Regular";
	font-size: 1.4em;
	text-transform: uppercase;
	line-height: 1.4em;
}
.text_title_type_1{
	z-index: 0;
	position: relative;
	font-family: "MonumentExtended-Ultrabold";
	font-size: 7.2em;
	line-height: 1.1em;
	text-transform: uppercase;
}
.text_title_type_2{
	z-index: 0;
	position: relative;
	font-family: "MonumentExtended-Ultrabold";
	font-size: 6em;
	line-height: 1.1em;
	text-transform: uppercase;
}
.text_title_type_3{
	z-index: 1;
	position: relative;
	font-family: "MonumentExtended-Ultrabold";
	font-size: 3.6em;
	line-height: 1.1em;
	text-transform: uppercase;
}
.text_type_1{
	z-index: 1;
	position: relative;
	font-size: 1.6rem;
	line-height: 1.6em;
	letter-spacing: 0.02em;
}
.text_type_2{
	z-index: 1;
	position: relative;
	font-size: 2.4rem;
	line-height: 1.1em;
	letter-spacing: 0.02em;
}
.text_type_3{
	z-index: 1;
	position: relative;
	font-size: 3.6rem;
	line-height: 1.4em;
	letter-spacing: 0.02em;
}

@media (min-width: 768px) and (max-height: 800px){
	.text_title_type_1{
		font-size: 6em;
	}
}

@media(max-width: 767px){
	.text_title_type_1,
	.text_title_type_2,
	.text_title_type_3{
		font-size: 3.4rem;
	}
	.text_type_3{
		font-size: 2.4rem;
	}
}

@media(max-width: 350px){
	.text_title_type_1,
	.text_title_type_2{
		font-size: 3rem;
	}
}
/*END TEXT*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 10;
	position: absolute;
	width: 100%;
}
#top_menu .top_logo{
	position: absolute;
	top: 45px;
	left: 60px;
	width: 160px;
	height: 88px;
}
#top_menu .menu_tel{
	position: absolute;
	top: 30px;
	right: 60px;
	
	font-family: "MonumentExtended-Regular";
	font-size: 1.4rem;
	line-height: 50px;
}

@media (max-width: 1280px){
	#top_menu .menu_inner{
		position: relative;
		width: 100%;
		max-width: 1190px;
		margin: auto;
	}
	#top_menu .top_logo{
		left: 15px;
	}
	#top_menu .menu_tel{
		right: 15px;
	}
}

@media (max-width: 767px){
	#top_menu .top_logo{
		top: 15px;
		width: 80px;
		height: 44px;
	}
	#top_menu .menu_tel{
		top: 15px;
	}
}
/*END #top_menu*/

/*BEGIN FORM SETTINGS*/
.field_checkout{
	display: none;
}
.field_wrapper{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.field_wrapper .field{
	width: 100%;
	height: 74px;
	line-height: 74px;
	padding: 0 10px;
	background: #76c9c7;
	border: 0;
	outline: none !important;
	
	font-family: "MonumentExtended-Regular";
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 0.1em;
	
	-webkit-border-radius: 30px !important;
	border-radius: 30px !important;
	
	-webkit-transition: color 0.1s ease-in-out;
	transition: color 0.1s ease-in-out;
}
.field_wrapper .field.field_phone{
	background: #76c9c7;
}
.field_wrapper .field.field_email{
	background: #de3c61;
}
.textarea_wrapper{
	height: 145px;
	margin-bottom: 48px;
}
.field_wrapper textarea.field, .field_wrapper .textarea_cover{
	background: #376eb3;
	padding: 15px 10px;
    line-height: 1.8em;
    white-space: pre-wrap;
    word-wrap: break-word;
	
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.field_wrapper textarea.field{
    height: 145px;
    resize: none;
    overflow: hidden;
}
.field_wrapper .field.textarea_cover{
    min-height: 145px;
    height: auto;
    display: none;
}
.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: -20px;
	right: 0;
	
	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 .alarm{
	opacity: 1;
}
.form_type_1{
	position: relative;
	left: calc(100% - 750px);
	max-width: 700px;
}
.form_type_1 .field_wrapper{
	display: inline-block;
	width: calc(50% - 25px);
	margin-right: 20px;
}
.form_type_1 .form_go_block{
	position: relative;
	display: inline-block;
	height: 0;
}
.form_type_1 .form_go_block .cta_btn{
	position: absolute;
	top: -45px;
    left: 60px;
}

@media (max-width: 991px){
	.form_type_1{
		left: 0;
		max-width: 460px;
		margin-left: auto;
		margin-right: auto;
	}
	.form_type_1 .field_wrapper{
		display: block;
		width: 100%;
		margin-right: 0;
	}
	.form_type_1 .form_go_block{
		display: block;
		height: 160px;
	}
	.form_type_1 .form_go_block .cta_btn{
		position: relative;
		top: 0;
		left: 50%;
		
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
/*END FORM SETTINGS*/

/*BEGIN #thanx_popup*/
#thanx_popup{
	z-index: 201;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	display: none;
}
#thanx_popup .popup_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup .popup_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 880px;
	height: auto;
	max-height: calc(100vh - 70px);
    margin: auto;
	background: #fff;
	padding: 60px 15px;
	
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#thanx_popup .popup_close{
    position: absolute;
    top: -45px;
    right: -5px;
    width: 40px;
    height: 40px;
    padding: 5px;
    cursor: pointer;
	background: url(../img/general/close_white.svg) no-repeat 50% 50% / 30px 30px;
	
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup_info{
	text-align: center;
}
#thanx_popup_info p:nth-child(1){
	margin-bottom: 15px;
	font-family: "MonumentExtended-Ultrabold";
	font-size: 4.8rem;
	color: #de3c61;
	text-transform: uppercase;
	letter-spacing: 0.007em;
}
#thanx_popup_info p:nth-child(2), #thanx_popup_info p:nth-child(3){
	margin-bottom: 5px;
	font-size: 2.56rem;
	letter-spacing: 0.02em;
}

@media (max-width: 767px){
	#thanx_popup_info p:nth-child(1){
		font-size: 3.6rem;
	}
	#thanx_popup_info p:nth-child(2), #thanx_popup_info p:nth-child(3){
		font-size: 2.3rem;
	}
}

@media (max-height: 400px){
	#thanx_popup .popup_inner{
		padding: 15px;
	}
}
/*END #thanx_popup*/

/*BEGIN .mobile_screen*/
.mobile_screen{
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
}
.mobile_screen .red_circle{
	z-index: 0;
	position: absolute;
	top: 0;
	right: -180px;
	width: 385px;
	height: 385px;
	background: #d93b5f;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.mobile_screen .mobile_block{
	z-index: 1;
	position: relative;
	top: 0;
	left: calc(100% - 290px);
	width: 290px;
	height: 625px;
}
.mobile_screen .mobile{
	width: 100%;
	height: 100%;
	will-change: transform;
}
.mobile_screen .mobile .mobile_display{
	width: 100%;
	height: 100%;
	border: 8px solid #59b3b1;
	background: url(../img/content/mobile_bg.jpg) repeat 0 0;
	overflow: hidden;
	will-change: background-position;
	
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
.mobile_screen .mobile .mobile_display::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #76c9c7;
	opacity: 0;
	border: 8px solid #59b3b1;
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-border-radius: 50px;
	border-radius: 50px;
	
	-webkit-transition: opacity 0.6s ease-out;
	transition: opacity 0.6s ease-out;
}
.mobile_screen .mobile .mobile_top{
	content: "";
	position: absolute;
	width: 56%;
	height: 25px;
	top: 0;
	left: 50%;
	background: #76c9c7;
	border-left: 8px solid #59b3b1;
	border-right: 8px solid #59b3b1;
	border-bottom: 8px solid #59b3b1;
	
	-webkit-border-radius: 0 0 28px 28px;
	border-radius: 0 0 28px 28px;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.mobile_screen .mobile_block{
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}
.mobile_screen.stop .middle_element,
.mobile_screen.stop .container{
	height: 100%;
}
.mobile_screen.stop .mobile_block{
	top: calc(100% - 617px);
	left: calc(50% - 145px);
	
	-webkit-transform: rotate(-90deg) scale(2.1);
	transform: rotate(-90deg) scale(2.1);
}
.mobile_screen.stop .mobile .mobile_display::before{
	opacity: 1;
}

@media (min-width: 768px) and (max-height: 800px){
	.mobile_screen .red_circle{
		top: 70px;
		right: -140px;
		width: 320px;
		height: 320px;
		margin-right: 200px;
	}
	.mobile_screen .mobile_block{
		left: calc(100% - 480px);
		width: 250px;
		height: 540px;
	}
	.mobile_screen .mobile .mobile_display{
		background-size: 750% auto;
	}
	.mobile_screen .mobile .mobile_top{
		height: 20px;
	}
	.mobile_screen.stop .mobile_block{
		top: calc(100% - 533px);
		left: calc(50% - 125px);
	}
}

@media (max-width: 991px){
	.mobile_screen{
		display: none;
	}
}
/*END .mobile_screen*/

/*BEGIN .screen_1*/
.screen_1 h1 .heart{
	position: relative;
}
.screen_1 h1 .heart::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 85px;
	height: 85px;
	background: url(../img/general/heart.svg) no-repeat 0 0 / 100% 100%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.screen_1 .cta_btn{
	position: absolute;
	left: 250px;
	bottom: -170px;
}
.screen_1 .mobile_for_device{
	display: none;
}
.screen_1 .green_arrow_down{
	z-index: 1;
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: 56px;
	height: 56px;
	background: url(../img/general/green_arrow_down.svg) no-repeat 0 0 / 100% 100%;
}

@media(min-width: 992px) and (max-height: 800px){
	.screen_1 .container{
		padding-top: 60px;
	}
	.screen_1 .cta_btn{
		display: none;
	}
}

@media (max-width: 991px){
	.screen_1{
		height: auto;
		min-height: 0;
	}
	.screen_1 .container{
		padding-top: 140px;
	}
	.screen_1 .middle_element{
		position: static;

		-webkit-transform: none;
		transform: none;
	}
	.screen_1 .mobile_for_device{
		display: block;
		max-width: 100%;
		height: auto;
		margin: 45px auto 0;
	}
	.screen_1 .cta_btn{
		position: relative;
		top: -220px;
		bottom: auto;
		left: auto;
		margin: -160px auto 0;
	}
	.screen_1 .cta_btn .circle{
		background: #fad93a;
	}
	.screen_1 .green_arrow_down{
		display: none;
	}
}

@media (max-width: 767px){
	.screen_1 h1 .heart::after{
		width: 40px;
		height: 40px;
	}
}
/*END .screen_1*/

/*BEGIN .screen_2*/
@media (max-width: 767px){
	.screen_2 br{
		display: none;
	}
}
/*END .screen_2*/

/*BEGIN .screen_3*/
.screen_3 .infographics_type_1{
	margin-bottom: 125px;
}

@media (max-width: 767px){
	.screen_3 .infographics_type_1{
		margin-bottom: 50px;
	}
	.screen_3 .text_title_type_2.mb_70{
		margin-bottom: 50px;
	}
	.screen_3 .text_title_type_2 br{
		display: none;
	}
}
/*END .screen_3*/

/*BEGIN .screen_4*/
@media (max-width: 1210px){
	.screen_4 .text_title_type_2 br{
		display: none;
	}
}
/*END .screen_4*/

/*BEGIN .screen_5*/
.screen_5_before{
	z-index: -1;
	position: absolute;
	left: 0;
	width: 100%;
	height: 850px;
}
.screen_5_before .empty_circle{
	top: 0;
	left: 0;
}
.screen_5_before .empty_circle.small{
	top: auto;
	bottom: 0;
	left: 50%;
}
.screen_5_before .heart{
	position: absolute;
	top: 45%;
	left: 50%;
	width: 86px;
    height: 86px;
    background: url(../img/general/heart.svg) no-repeat 0 0 / 100% 100%;
	
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.screen_5{
	height: 850px;
}
.screen_5 .container{
	height: 100%;
}
.screen_5 .text_block{
	position: absolute;
	top: calc(100% - 609px);
    left: 50%;
	width: 1312px;
    height: 609px;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.screen_5 .text_block .num{
	position: absolute;
	top: 65px;
	left: 145px;
	font-size: 43.6rem;
	color: #de3c61;
}
.screen_5 .text_block .num::after{
	content: "";
	position: absolute;
	bottom: 0.38em;
	left: 50%;
	width: 74px;
	height: 74px;
	background: url(../img/general/smile.svg) no-repeat 0 0 / 100% 100%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.screen_5 .text_block .content_part{
	position: absolute;
	top: 120px;
    left: 490px;
}
.screen_5 .text_block .content_part .text_title_type_3{
	line-height: 1.3em;
	letter-spacing: 0.02em;
}
.screen_5.animation_start .text_block .animated_element.al_1{
	-webkit-transition: opacity 0.9s ease 0.6s, transform 0.9s ease 0.6s;
	transition: opacity 0.9s ease 0.6s, transform 0.9s ease 0.6s;
}
.screen_5.animation_start .text_block .animated_element.al_2{
	-webkit-transition: opacity 0.9s ease 0.9s, transform 0.9s ease 0.9s;
	transition: opacity 0.9s ease 0.9s, transform 0.9s ease 0.9s;
}
.screen_5.animation_start .text_block .animated_element.al_3{
	-webkit-transition: opacity 0.9s ease 1.2s, transform 0.9s ease 1.2s;
	transition: opacity 0.9s ease 1.2s, transform 0.9s ease 1.2s;
}

@media (min-width: 768px) and (max-height: 800px){
	.screen_5_before .empty_circle.small{
		display: none;
	}
	.screen_5_before .heart{
		left: 42%;
	}
	.screen_5 .text_block{
		top: calc(100% - 525px);
		width: 1134px;
		height: 525px;
	}
	.screen_5 .text_block .num{
		top: 30px;
		left: 100px;
	}
	.screen_5 .text_block .content_part{
		top: 85px;
		left: 420px;
	}
}

@media (max-width: 991px){
	.screen_5_before,
	.screen_5{
		display: none;
	}
}
/*END .screen_5*/

/*BEGIN .screen_6*/
.screen_6{
	display: none;
}

@media (max-width: 991px){
	.screen_6{
		display: block;
	}
	.screen_6 .text_block .num{
		position: relative;
		margin-bottom: 20px;
		
		font-size: 43.6rem;
		color: #de3c61;
		text-align: center;
		line-height: 0.8em;
	}
	.screen_6 .text_block .num::after{
		content: "";
		position: absolute;
		bottom: 0.21em;
		left: 50%;
		width: 74px;
		height: 74px;
		background: url(../img/general/smile.svg) no-repeat 0 0 / 100% 100%;
		
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
/*END .screen_6*/

/*BEGIN .screen_7*/
.screen_7 .text_block:nth-child(1){
	z-index: 1;
	position: relative;
}
.screen_7 .text_block:nth-child(2){
	z-index: 0;
	position: absolute;
	top: 0;
	left: 50%;
}

@media (max-width: 1210px){
	.screen_7 br{
		display: none;
	}
	.screen_7 .text_title_type_2{
		margin-bottom: 25px;
	}
	.screen_7 .text_block:nth-child(2){
		position: static;
	}
}
/*END .screen_7*/

/*BEGIN .screen_8*/
.screen_8 .empty_circle{
	top: -70px;
	left: 50%;
}
.screen_8 .container > .num{
	z-index: -1;
    position: absolute;
    top: -130px;
    left: -45px;
	
    font-family: "GTWalsheimPro-Light";
    font-size: 43.6rem;
    color: #de3c61;
    line-height: 1em;
}
.screen_8 .advantages_block{
	position: relative;
	margin-bottom: 80px;
	
	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;
}
.screen_8 .advantages_block .part{
	position: relative;
	width: calc(33% - 15px);
	min-height: 170px;
	margin-bottom: 28px;
	margin-right: 28px;
	padding: 25px 30px;
	
	-webkit-border-radius: 30px;
	border-radius: 30px;
}
.screen_8 .advantages_block .part:nth-child(3n + 3){
	margin-right: 0;
}
.screen_8 .advantages_block .part:nth-child(1){
	background: #76c9c7;
}
.screen_8 .advantages_block .part:nth-child(2){
	background: #98c66f;
}
.screen_8 .advantages_block .part:nth-child(2)::after{
	content: "";
	position: absolute;
	top: 28px;
	right: 0;
	width: 110px;
	height: 28px;
	background: url(../img/content/top_5.svg) no-repeat 0 0 / 100% 100%;
}
.screen_8 .advantages_block .part:nth-child(3){
	background: #f6d939;
}
.screen_8 .advantages_block .part:nth-child(4){
	background: #de3c61;
}
.screen_8 .advantages_block .part:nth-child(5){
	background: #376eb3;
}
.screen_8 .advantages_block .part:nth-child(6){
	background: #76c9c7;
	padding-right: 0;
}
.screen_8 .advantages_block .part:nth-child(7){
	width: calc(66%);
	background: #98c66f;
}
.screen_8 .advantages_block .part:nth-child(7)::after{
    content: "";
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 74px;
    height: 74px;
    background: url(../img/general/smile.svg) no-repeat 0 0 / 100% 100%;
}

.screen_8 .advantages_block .part .num{
	font-family: "GTWalsheimPro-Light";
    font-size: 2.4rem;
}
.screen_8 .advantages_block .part .text_type_1{
	line-height: 1.2em;
}
.screen_8 .cta_btn{
	top: -45px;
    left: 75px;
}

@media (max-width: 1210px){
	.screen_8 .advantages_block .part{
		width: 30%;
		margin-right: 3%;
	}
	.screen_8 .advantages_block .part:nth-child(7){
		width: 63%;
	}
	.screen_8 .advantages_block .part br{
		display: none;
	}
}

@media (max-width: 767px){
	.screen_8 .advantages_block{
		display: block;
		max-width: 290px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 65px;
	}
	.screen_8 .advantages_block .part{
		width: 100%;
		margin-right: 0;
	}
	.screen_8 .advantages_block .part:nth-child(6){
		padding-right: 30px;
	}
	.screen_8 .advantages_block .part:nth-child(7){
		width: 100%;
		padding-bottom: 40px;
	}
	.screen_8 .advantages_block .part:nth-child(7)::after{
		content: "";
		position: absolute;
		bottom: -36px;
		right: auto;
		left: 50%;
		
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.screen_8 .cta_btn{
		top: 0;
		left: 0;
		margin: 70px auto 0;
	}
}
/*END .screen_8*/

/*BEGIN .screen_9*/
.screen_9 .empty_circle{
	top: 170px;
    left: -150px;
}
.screen_9 .yellow_circle{
	top: 320px;
    left: 50%;
}
.num_block_type_1{
	position: relative;
	margin-bottom: 80px;
	
	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: space-between;
	justify-content: space-between;
}
.num_block_type_1 .part .num{
	font-family: "GTWalsheimPro-Light";
	font-size: 18.4rem;
	color: #de3c61;
	letter-spacing: -0.09em;
	line-height: 0.7em;
}
.num_block_type_1 .part .num .dec{
	position: relative;
	display: inline-block;
}
.num_block_type_1 .part .num .dec::before{
	content: "";
	z-index: -1;
	position: absolute;
	top: -0.02em;
	left: 0;
	width: 100%;
	width: calc(100% - 0.2em);
	height: 100%;
	background: #030405;
}
.num_block_type_1 .part .num .heart{
	position: relative;
	display: inline-block;
}
.num_block_type_1 .part .num .heart::after{
    content: "";
    position: absolute;
    top: -25%;
    left: 50%;
    width: 85px;
    height: 85px;
    background: url(../img/general/heart.svg) no-repeat 0 0 / 100% 100%;
}

@media (max-width: 991px){
	.num_block_type_1{
		display: block;
		margin-bottom: 0;
	}
	.num_block_type_1 .part:not(:last-child){
		margin-bottom: 50px;
	}
}

@media (max-width: 767px){
	.num_block_type_1 .part .num{
		font-size: 14rem;
	}
	.num_block_type_1 .part br{
		display: none;
	}
}
/*END .screen_9*/

/*BEGIN .screen_10*/
@media (max-width: 991px){
	.screen_10 .text_title_type_2 br{
		display: none;
	}
}
/*END .screen_10*/

/*BEGIN .screen_footer*/
.screen_footer .container{
	height: 100px;
}
.screen_footer .bottom_logo{
	position: absolute;
	top: 2px;
	left: 15px;
	width: 97px;
	height: 54px;
}
.screen_footer p{
	position: absolute;
	top: 25px;
	font-family: "MonumentExtended-Regular";
	font-size: 1.2rem;
	color: #c2c2c2;
	line-height: 50px;
	letter-spacing: 0.1em;
}
.screen_footer p a{
	display: inline-block;
}
.screen_footer p:nth-child(2){
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.screen_footer p:nth-child(3){
	right: 15px;
}
.screen_footer p:nth-child(2) > span,
.screen_footer p:nth-child(3) > span{
	display: inline-block;
}
.screen_footer p:nth-child(3) > span a{
	color: #de3c61 !important;
}

@media (max-width: 991px){
	.screen_footer{
		padding-bottom: 70px;
	}
	.screen_footer .container{
		height: auto;
		text-align: center;
	}
	.screen_footer .bottom_logo{
		position: static;
		margin-bottom: 30px;
	}
	.screen_footer p{
		position: static;
	}
	.screen_footer p:nth-child(2){
		margin-bottom: 10px;
		line-height: 1.5em;
		
		-webkit-transform: none;
		transform: none;
	}
}
/*END .screen_footer*/