/*BEGIN #preloader*/
#preloader{
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	background: #ECE2E2;
}
.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: #000;
   
	-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: "Akzentica4F";
	src: url("../fonts/Akzentica4F.woff2") format("woff2");
}
@font-face{
	font-family: "Akzentica4F-Bold";
	src: url("../fonts/Akzentica4F-Bold.woff2") format("woff2");
}
/*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: #ECE2E2;  background: #000; }
p::selection      { color: #ECE2E2;  background: #000; }
a::-moz-selection { color: #ECE2E2;  background: #000; }
a::selection      { color: #ECE2E2;  background: #000; }
li::-moz-selection { color: #ECE2E2;  background: #000; }
li::selection      { color: #ECE2E2;  background: #000; }
span::-moz-selection { color: #ECE2E2;  background: #000; }
span::selection      { color: #ECE2E2;  background: #000; }
h1::-moz-selection { color: #ECE2E2;  background: #000; }
h1::selection      { color: #ECE2E2;  background: #000; }
h2::-moz-selection { color: #ECE2E2;  background: #000; }
h2::selection      { color: #ECE2E2;  background: #000; }
h3::-moz-selection { color: #ECE2E2;  background: #000; }
h3::selection      { color: #ECE2E2;  background: #000; }
h3::-moz-selection { color: #ECE2E2;  background: #000; }
h3::selection      { color: #ECE2E2;  background: #000; }
td::-moz-selection { color: #ECE2E2;  background: #000; }
td::selection      { color: #ECE2E2;  background: #000; }
input::-moz-selection { color: #000 !important;  background: #000; }
input::selection      { color: #000 !important;  background: #000; }
textarea::-moz-selection { color: #000 !important;  background: #000; }
textarea::selection      { color: #000 !important;  background: #000; }

::-webkit-input-placeholder{color: #7e858d;}
::-moz-placeholder{color: #7e858d;}
:-ms-input-placeholder{color: #7e858d;} 
:-o-input-placeholder{color: #7e858d;} 

html, body{
	overflow-x: hidden;
}
html.overflow_y_hidden, body.overflow_y_hidden{
	overflow-y: hidden;
}
html{
	font-size: 10px;
}
body{
	position: relative;
	background: #ECE2E2;
	font-family: "Akzentica4F";
	font-size: 1em;
	color: #000;
	line-height: normal;
}
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, span, li{
	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;
	padding-left: 194px;
	padding-right: 36px;
}
.content_block{
	position: relative;
}
.clear{
	clear: both;
}
.nowrap{
	white-space: nowrap;
}

@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: 8px;
	}
	body::-webkit-scrollbar-track{
		background: #ECE2E2;
	}
	body::-webkit-scrollbar-thumb{
	   background: #000; 
	}
}

@media (max-width: 1250px){
	.container{
		padding-left: 16px;
		padding-right: 16px;
	}
}
/*END GENERAL SETTINGS*/

/*BEGIN GENERAL ELEMENTS*/
.oe, .navigation_btn{
	cursor: pointer;
}
.section_relative{
	position: relative;
}
.full_section{
	height: 100vh;
	min-height: 530px;
}
.middle_element{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.dynamic_parallax_screen{
	-webkit-transition: none !important;
	transition: none !important;
}
.full_width_img{
	display: block;
	width: 100%;
	height: auto;
}
.align_center{
	text-align: center;
}
.animated_element,
.animated_element img{
	will-change: transform;
}
/*.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;
}
.animated_letters_move.hidden_letters > span > span{
	will-change: transform, opacity;
}
.oe, .navigation_btn{
	cursor: pointer;
}
.cta_type_1{
	position: relative;
	height: 64px;
	padding-left: 80px;
}
.cta_type_1,
.cta_type_1 *{
	cursor: pointer;
}
.cta_type_1 .cross{
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 64px;
	background: url(../img/general/cross_orange.svg) no-repeat 0 0 / 100% 100%;
}
.cta_type_1 > a,
.cta_type_1 > span{
	position: relative;
	display: block;
	width: 254px;
	height: 64px;
}
.cta_type_1 > a > span,
.cta_type_1 > span > span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 66px;
	
	font-size: 2.4rem;
	text-transform: uppercase;
	text-align: center;
}
.cta_type_1 > a > span:nth-child(1),
.cta_type_1 > span > span:nth-child(1){
	background: url(../img/general/button_1_stroke.svg) no-repeat 0 0 / 100% 100%;
	color: #FE7215;
}
.cta_type_1 > a > span:nth-child(2),
.cta_type_1 > span > span:nth-child(2){
	background: url(../img/general/button_1_fill.svg) no-repeat 0 0 / 100% 100%;
	color: #fff;
	opacity: 0;
}
.text_frame{
	position: relative;
	width: 587px;
	max-width: 100%;
	min-height: 247px;
	padding: 40px 160px 40px 40px;
	background: url(../img/general/text_frame.png) no-repeat 0 0 / 100% 100%;
}
.text_frame p{
	line-height: 1.14em;
}
.text_frame::before{
	content: "";
	position: absolute;
	top: 45px;
	right: 42px;
	width: 50px;
	height: 52px;
	background: url(../img/general/cross_black_empty.svg) no-repeat 0 0 / 100% 100%;
	
	-webkit-animation: text_frame_cross 20s linear 0s infinite;
	animation: text_frame_cross 20s linear 0s infinite;
}
.text_frame.right{
	float: right;
	left: -40px;
}
.section_2 .text_frame.right::after{
	content: "";
	clear: both;
}

@-webkit-keyframes text_frame_cross{
	0%{
		-webkit-transform: rotate(0deg);
	}
	100%{
		-webkit-transform: rotate(-360deg);
	}
}
@keyframes text_frame_cross{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(-360deg);
	}
}

@media (max-width: 1250px), (min-width: 1921px){
	.dynamic_parallax_screen{
		background-position: 50% 50% !important;
	}
}

@media (min-width: 1251px){
	.oe{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.oe:hover{
		opacity: 0.5;
	}
	.cta_type_1 > a > span:nth-child(2),
	.cta_type_1 > span > span:nth-child(2){
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.cta_type_1:hover > a > span:nth-child(2),
	.cta_type_1:hover > span > span:nth-child(2){
		opacity: 1;
	}
	.cta_type_1 .cross{
		-webkit-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}
	.cta_type_1:hover .cross{
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
}

@media (max-width: 1450px){
	.text_frame.right{
		float: none;
		left: 0;
	}
}

@media (max-width: 1250px){
	.cta_type_1{
		height: 48px;
		padding-left: 64px;
	}
	.cta_type_1 .cross{
		width: 48px;
		height: 48px;
	}
	.cta_type_1 > a,
	.cta_type_1 > span{
		height: 48px;
		width: 190px;
	}
	.cta_type_1 > a > span,
	.cta_type_1 > span > span{
		line-height: 50px;
		font-size: 1.8rem;
	}
	.text_frame{
		width: 100%;
		min-height: 102px;
		background: #ECE2E2;
		border: 1px solid #000;
		padding: 32px 88px 32px 32px;
		
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
	.text_frame::before{
		top: 32px;
		right: 32px;
		width: 36px;
		height: 36px;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN TEXT*/
*{
	font-weight: normal;
}
.text_bold,
strong{
	font-family: "Akzentica4F-Bold";
}
.text_caps{
	text-transform: uppercase;
}
.text_white{
	color: #fff;
}
.title_type_80_40{
	font-family: "Akzentica4F-Bold";
	font-size: 8rem;
	line-height: 1em;
	text-transform: uppercase;
}
.text_type_32_16{
	font-size: 3.2rem;
	line-height: 1.4em;
}
.text_type_28_16{
	font-size: 2.8rem;
	line-height: 1.4em;
}
.text_type_16{
	font-size: 1.6rem;
	line-height: 1.4em;
}

@media (max-width: 1250px){
	.title_type_80_40{
		font-size: 4rem;
	}
	.text_type_32_16,
	.text_type_28_16{
		font-size: 1.6rem;
	}
}
/*END TEXT*/

/*BEGIN MARGINS AND PADDINGS*/
.mb_24{
	margin-bottom: 24px;
}
.mb_40,
.mb_40_24{
	margin-bottom: 40px;
}

@media (max-width: 1250px){
	.mb_40_24{
		margin-bottom: 24px;
	}
}
/*END MARGINS AND PADDINGS*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 2;
	position: fixed;
	top: 0;
	left: 0;
	width: 194px;
	height: 100vh;
	/*background: #ECE2E2;*/
}
#top_menu .top_menu_inner{
	position: relative;
	padding: 40px;
}
#top_menu .main_logo{
	display: none;
}
#top_menu #sandwich{
	display: none;
}
#top_menu .menu{
	margin-bottom: 20px;
}
#top_menu .menu p:not(:last-child){
	margin-bottom: 12px;
}
#top_menu .menu p span{
	position: relative;
	display: inline-block;
}
#top_menu .lang_turn .active{
	text-decoration: underline;
}
#top_menu .lang_turn > *{
	padding: 10px;
}
#top_menu .menu_nav .lang_turn{
	margin-left: -10px;
}
#top_menu .top_menu_inner > .lang_turn{
	display: none;
}
#top_menu .cross{
	margin-bottom: 20px;
}
#top_menu .cover_link{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1250px){
	#top_menu{
		z-index: 10;
		width: 100%;
		height: auto;
	}
	#top_menu .top_menu_inner{
		padding: 0;
		background: #ECE2E2;
	}
	#top_menu,
	#top_menu .top_menu_inner{
		height: 48px;
	}
	#top_menu .main_logo{
		position: absolute;
		display: block;
		top: 7px;
		left: 16px;
		width: 166px;
		height: 30px;
	}
	#top_menu #sandwich, #top_menu #sandwich *{
		cursor: pointer;
	}
	#top_menu #sandwich{
		z-index: 2;
		position: absolute;
		display: block;
		top: 0;
		right: 11px;
		display: block;
		height: 48px;
		padding: 14px 4px;
	}
	#top_menu #sandwich::after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#top_menu #sandwich .inner{
		position: relative;
		width: 32px;
		height: 20px;
	}
	#top_menu #sandwich .inner div{
		position: absolute;
		left: 0;
		width: 32px;
		height: 2px;
		background: #000;
	}
	#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: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 ease, 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{
		margin-top: 8px;
		margin-bottom: 0;
	}
	#top_menu .menu_nav{
		z-index: 1;
		position: absolute;
		top: 48px;
		left: -100vw;
		width: 100vw;
		height: calc(100vh + 96px);
		background: #ECE2E2;
		overflow-y: auto;
		opacity: 0;
		
		-webkit-transition: left 0s 0.4s, opacity 0.4s ease-in-out;
		transition: left 0s 0.4s, opacity 0.4s ease-in-out;
	}
	#top_menu.active .menu_nav{
		left: 0;
		opacity: 1;
		
		-webkit-transition: left 0s, opacity 0.4s ease-in-out;
		transition: left 0s, opacity 0.4s ease-in-out;
	}
	#top_menu .menu_nav::-webkit-scrollbar{
		width: 4px;
	}
	#top_menu .menu_nav::-webkit-scrollbar-track{
		background: #ECE2E2;
	}
	#top_menu .menu_nav::-webkit-scrollbar-thumb{
	   background: #000; 
	}
	#top_menu .menu_nav .menu_nav_inner{
		display: block;
		width: 100%;
		height: auto;
		padding-bottom: 196px;
	}
	#top_menu .cross{
		display: none;
	}
	#top_menu .menu p:not(:last-child){
		margin-bottom: 0;
	}
	#top_menu .menu p span{
		line-height: 48px;
		padding: 0 16px;
	}
	#top_menu .menu_nav .lang_turn{
		display: none;
	}
	#top_menu .top_menu_inner > .lang_turn{
		display: block;
		position: fixed;
        top: 14px;
        right: 72px;
	}
}

@media (max-width: 360px){
	#top_menu .main_logo{
        top: 10px;
        width: 120px;
        height: 22px;
    }
}
/*END #top_menu*/

/*BEGIN .section_1*/
.section_1{
	height: 100vh;
	padding: 40px 0;
}
.section_1 .container{
	height: 100vh;
}
.section_1 .bg{
	position: relative;
	height: calc(100vh - 80px);
	overflow: hidden;
}
.section_1 .bg div{
	height: 100%;
	background: url(../img/page_main/section_1_bg.jpg) no-repeat 50% 0 / cover;
}
.section_1 .bg::before{
	content: "";
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_top_right.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .logo_wrapper{
	position: absolute;
	top: 0;
	left: 0;
	background: #ECE2E2;
	padding: 0 40px 40px 0;
	width: 46%;
	
	-webkit-border-radius: 0 0 40px 0;
	border-radius: 0 0 40px 0;
}
.section_1 .logo_wrapper::before{
	content: "";
	position: absolute;
	top: 0;
	right: -40px;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_top_left.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .logo_wrapper::after{
	content: "";
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_top_left.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .logo_wrapper img{
	width: 100%;
	height: auto;
}
.section_1 .text_part{
	position: absolute;
	bottom: 0;
	right: 0;
	background: #ECE2E2;
	padding: 40px 0 0 40px;
	
	-webkit-border-radius: 40px 0 0 0;
	border-radius: 40px 0 0 0;
}
.section_1 .text_part::before{
	content: "";
	position: absolute;
	top: -40px;
	right: 0;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_bottom_right.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .text_part::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: -40px;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_bottom_right.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .text_part p,
.section_1 .text_part h1{
	min-width: 33vw;
	background: #C4C1CB;
	padding: 10px 16px;
	
	text-align: center;
	
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.section_1 .text_part p:not(:last-child),
.section_1 .text_part h1:not(:last-child){
	margin-bottom: 16px;
}
.section_1 .button_part{
	position: absolute;
	bottom: 0;
	left: 0;
	background: #ECE2E2;
	padding: 40px 40px 0 0;
	
	-webkit-border-radius: 0 40px 0 0;
	border-radius: 0 40px 0 0;
}
.section_1 .button_part::before{
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_bottom_left.svg) no-repeat 0 0 / 100% 100%;
}
.section_1 .button_part::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: -40px;
	width: 40px;
	height: 40px;
	background: url(../img/general/corner_bottom_left.svg) no-repeat 0 0 / 100% 100%;
}

@media (min-width: 1251px){
	.section_1 .bg div{
		-webkit-transition: transform 16s ease-in-out;
		transition: transform 16s ease-in-out;
	}
	.section_1 .bg.draw div{
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media (max-width: 1250px){
	.section_1{
		padding: 48px 0 0 0;
	}
	.section_1 .bg{
		height: calc(100vh - 96px);
	}
	.section_1 .bg::after{
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 32px;
		height: 32px;
		background: url(../img/general/corner_bottom_right.svg) no-repeat 0 0 / 100% 100%;
	}
	.section_1 .logo_wrapper{
		padding: 0 16px 16px 0;
		width: 182px;
		
		-webkit-border-radius: 0 0 32px 0;
		border-radius: 0 0 32px 0;
		
		-webkit-box-sizing:border-box;
		box-sizing:border-box;
	}
	.section_1 .logo_wrapper::before{
		right: -32px;
		width: 32px;
		height: 32px;
	}
	.section_1 .logo_wrapper::after{
		bottom: -32px;
		left: 0;
		width: 32px;
		height: 32px;
	}
	.section_1 .text_part{
		bottom: 120px;
		padding: 16px 0 16px 16px;
		
		-webkit-border-radius: 32px 0 0 32px;
		border-radius: 32px 0 0 32px;
	}
	.section_1 .text_part::before{
		top: -32px;
		width: 32px;
		height: 32px;
	}
	.section_1 .text_part::after{
		bottom: -31px;
		left: auto;
		right: 0;
		width: 32px;
		height: 32px;
		background: url(../img/general/corner_top_right.svg) no-repeat 0 0 / 100% 100%;
	}
	.section_1 .button_part{
		padding: 16px 16px 0 0;
		-webkit-border-radius: 0 32px 0 0;
		border-radius: 0 32px 0 0;
	}
	.section_1 .button_part::before{
		top: -32px;
		left: 0;
		width: 32px;
		height: 32px;
	}
	.section_1 .button_part::after{
		content: "";
		right: -32px;
		width: 32px;
		height: 32px;
	}
	.section_1 .logo_wrapper,
	.section_1 .logo_wrapper::before{
		display: none;
	}
}

@media (max-width: 1250px) and (orientation: landscape){
	.section_1 .bg::before,
	.section_1 .bg::after{
		display: none;
	}
	.section_1 .text_part{
		bottom: 64px;
	}
	.section_1 .text_part p:not(:last-child),
	.section_1 .text_part h1:not(:last-child){
		margin-bottom: 8px;
	}
}
/*END .section_1*/

/*BEGIN .section_2*/
.section_2{
	padding-top: 200px;
	padding-bottom: 40px;
}
.section_2 .decore_gradient{
	position: absolute;
	top: 0;
	right: -420px;
	width: 812px;
	height: 812px;
	background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(236,226,226,1) 70%,rgba(236,226,226,1) 100%);
}
.section_2 .decore_blue_crosses{
	position: absolute;
	top: 0;
	right: 0;
	width: 870px;
	height: 372px;
	background: url(../img/general/decore_blue_crosses.svg) no-repeat 0 0 / 100% 100%;
}
.section_2 .content_block{
	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;
}
.section_2 .content_block .part:nth-child(1){
	width: 55%;
	padding-top: 116px;
	padding-right: 40px;
}
.section_2 .content_block .part:nth-child(2){
	width: 45%;
}
.section_2 .content_img{
	max-width: 100%;
	height: auto;
}

@media (max-width: 1450px){
	.section_2 .content_block .part:nth-child(1){
		padding-top: 80px;
	}
}

@media (max-width: 1450px){
	.section_2 .decore_blue_crosses{
		top: -120px;
	}
}

@media (max-width: 1250px){
	.section_2{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.section_2 .decore_gradient{
		right: -500px;
	}
	.section_2 .decore_blue_crosses{
		display: none;
	}
	.section_2 .content_block{
		display: block;
	}
	.section_2 .content_block .part:nth-child(1){
		width: 100%;
		padding-top: 0;
		padding-right: 0;
	}
	.section_2 .content_block .part:nth-child(2){
		width: 100%;
	}
}
/*END .section_2*/

/*BEGIN .section_3*/
.section_3{
	padding-top: 200px;
	padding-bottom: 40px;
}
.section_3 .decore_gradient{
	position: absolute;
	top: 0;
	right: -1000px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(236,226,226,1) 70%,rgba(236,226,226,1) 100%);
}
.facts .parallax_element_on_mouse_wrapper{
	padding: 16px 0;
}
.facts .part{
	position: relative;
	padding-left: 156px;
}
.facts .part .num{
	position: absolute;
	top: 7px;
	left: 0;
}
.facts .part .text_part{
	position: relative;
	min-height: 80px;
	padding: 24px 152px;
	background: #ECE2E2;
	border: 1px solid #000;
		
	-webkit-border-radius: 16px;
	border-radius: 16px;
	
	-webkit-transition: transform 1s ease-out;
	transition: transform 1s ease-out;
}
.facts .part .text_part .stick{
	position: absolute;
	top: 24px;
	width: 1px;
	height: 32px;
	background: #000;
}
.facts .part .text_part .stick:nth-child(1){
	left: 112px;
}
.facts .part .text_part .stick:nth-child(2){
	right: 112px;
}
.facts .part .text_part::before{
	content: "";
    position: absolute;
    top: 24px;
    left: 40px;
    width: 32px;
    height: 32px;
	background: url(../img/general/cross_black_empty.svg) no-repeat 0 0 / 100% 100%;
}
.facts .part .text_part::after{
	content: "";
    position: absolute;
    top: 24px;
    right: 40px;
    width: 32px;
    height: 32px;
	background: url(../img/general/cross_black_empty.svg) no-repeat 0 0 / 100% 100%;
}

@media (max-width: 1250px){
	.section_3{
		padding-top: 40px;
	}
	.facts .part{
		padding-left: 0;
	}
	.facts .part .num{
		position: static;
		display: block;
		margin-bottom: 16px;
	}
	.facts .part .text_part .stick,
	.facts .part .text_part::after{
		display: none;
	}
	.facts .part .text_part::before{
		top: 16px;
		left: 16px;
	}
	.facts .part .text_part{
		padding: 16px 16px 16px 64px;
	}
}
/*END .section_3*/

/*BEGIN .section_4*/
.section_4{
	padding-top: 200px;
	padding-bottom: 40px;
}
.tape_slider_block{
	position: relative;
}
.tape_slider_block .slider_nav_block{
	position: absolute;
	top: -120px;
	right: 0;
	width: 274px;
	height: 64px;
}
.tape_slider_block .slider_nav_block .slider_nav{
	position: absolute;
	top: 0;
	width: 64px;
	height: 64px;
	overflow: hidden;
}
.tape_slider_block .slider_nav_block .slider_nav.slider_nav_left{
	left: 0;
	background: url(../img/general/slider_arrow_left.svg) no-repeat 0% 0% / 100% 100%;
}
.tape_slider_block .slider_nav_block .slider_nav.slider_nav_right{
	right: 0;
	background: url(../img/general/slider_arrow_right.svg) no-repeat 0% 0% / 100% 100%;
}
.tape_slider_1{
	position: relative;
	left: -20px;
}
.tape_slider_1 .slide_wrapper,
.tape_slider_1 .slide_wrapper .slide,
.tape_slider_1 .slide_wrapper .slide .inner{
	height: 282px;
}
.tape_slider_1 .slide_wrapper{
	z-index: 1;
	position: relative;
	width: 30000px;
	
	-webkit-transition: transform 0.6s ease-out;
	transition: transform 0.6s ease-out;
	
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.tape_slider_1 .slide_wrapper .slide, .tape_slider_1 .slide_wrapper .slide *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
	pointer-events: none;
}
.tape_slider_1 .slide_wrapper .slide{
	float: left;
	position: relative;
	width: 628px;
}
.tape_slider_1 .slide_wrapper .slide:nth-child(odd){
	color: #fff;
}
.tape_slider_1 .slide_wrapper .slide .inner{
	position: relative;
	width: 586px;
	margin: auto;
	padding: 40px;
}
.tape_slider_1 .slide_wrapper .slide:nth-child(1) .inner,
.tape_slider_1 .slide_wrapper .slide:nth-child(5) .inner{
	background: url(../img/page_main/slide_1.svg) no-repeat 0% 0% / 586px 282px;
}
.tape_slider_1 .slide_wrapper .slide:nth-child(2) .inner,
.tape_slider_1 .slide_wrapper .slide:nth-child(4) .inner{
	background: url(../img/page_main/slide_2.svg) no-repeat 0% 0% / 586px 282px;
}
.tape_slider_1 .slide_wrapper .slide:nth-child(3) .inner{
	background: url(../img/page_main/slide_3.svg) no-repeat 0% 0% / 586px 282px;
}
.tape_slider_1 .slide_wrapper .slide .inner::before{
    content: "";
    position: absolute;
    top: 40px;
    right: 40px;
    width: 38px;
    height: 40px;
    background: url(../img/general/cross_black_empty.svg) no-repeat 0 0 / 100% 100%;
}
.tape_slider_1 .slide_wrapper .slide:nth-child(odd) .inner::before{
	background: url(../img/general/cross_white_empty.svg) no-repeat 0 0 / 100% 100%;
}
.tape_slider_1 .slide_wrapper .slide .inner .num_block{
	margin-bottom: 24px;
	font-family: "Akzentica4F-Bold";
	font-size: 8rem;
	line-height: 1em;
	text-transform: uppercase;
}

@media (min-width: 1251px){
	.section_4 h2{
		width: calc(100% - 290px);
	}
	.tape_slider_1 .slide_wrapper{
		cursor: grab;
	}
	.tape_slider_1 .slide_wrapper:active{
		cursor: grabbing;
	}
}

@media (max-width: 1250px){
	.section_4{
		padding-top: 40px;
	}
	.tape_slider_block .slider_nav_block{
		position: relative;
		width: 288px;
		top: 0;
		left: auto;
		margin: 16px auto 0;
	}
	.tape_slider_1 .slide_wrapper,
	.tape_slider_1 .slide_wrapper .slide,
	.tape_slider_1 .slide_wrapper .slide .inner{
		height: 226px;
	}
	.tape_slider_1{
		left: -16px;
	}
	.tape_slider_1 .slide_wrapper .slide{
		width: 100vw;
	}
	.tape_slider_1 .slide_wrapper .slide .inner{
		width: 288px;
		
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
	.tape_slider_1 .slide_wrapper .slide:nth-child(1) .inner,
	.tape_slider_1 .slide_wrapper .slide:nth-child(5) .inner{
		background: #5D6F93;
	}
	.tape_slider_1 .slide_wrapper .slide:nth-child(2) .inner,
	.tape_slider_1 .slide_wrapper .slide:nth-child(4) .inner{
		background: #F0E6E6;
		border: 1px solid #000;
	}
	.tape_slider_1 .slide_wrapper .slide:nth-child(3) .inner{
		background: #FE7215;
	}
	.tape_slider_1 .slide_wrapper .slide .inner::before{
		width: 32px;
		height: 32px;
	}
	.tape_slider_1 .slide_wrapper .slide .inner .num_block{
		font-size: 4rem;
	}
}
/*END .section_4*/

/*BEGIN .section_5*/
.section_5{
	padding-top: 200px;
	padding-bottom: 40px;
}
.section_5 .decore_gradient:nth-child(1){
	position: absolute;
	top: -500px;
	left: -1000px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(ellipse at center, rgba(254,114,21,1) 0%,rgba(254,114,21,0) 70%,rgba(254,114,21,0) 100%);
}
.section_5 .decore_gradient:nth-child(2){
	position: absolute;
	top: 800px;
	right: -1000px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(95,113,148,0) 60%);
}
.section_5 .decore_stripes{
	position: absolute;
	top: -690px;
	right: 0;
	width: 3370px;
	height: 2110px;
	background: url(../img/page_main/stripes_2.png) no-repeat 0 0 / 100% 100%;
}
.section_5 .teammate_get_block{
	max-width: 587px;
}
.section_5 .teammate_get_block p{
	position: relative;
	padding-left: 156px;
}
.section_5 .teammate_get_block p:not(:last-child){
	margin-bottom: 24px;
}
.section_5 .teammate_get_block p::before{
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 116px;
	height: 13px;
	background: url(../img/general/red_arrow.svg) no-repeat 0 0 / 100% 100%;
}

@media (min-width: 1251px){
	.section_5 .content_block{
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;

		-webkit-justify-content: flex-end;
		justify-content: flex-end;
		
		-webkit-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
}

@media (max-width: 1250px){
	.section_5{
		padding-top: 40px;
	}
	.section_5 .decore_gradient:nth-child(2){
		top: 550px;
	}
	.section_5 .teammate_get_block p{
		padding-left: 84px;
	}
	.section_5 .teammate_get_block p::before{
		top: 4px;
		width: 60px;
	}
	.section_5 .decore_stripes{
		top: 0;
	}
}

@media (max-width: 991px){
	.section_5 .decore_gradient:nth-child(1){
		left: -1130px;
	}
	.section_5 .decore_stripes{
		display: none;
	}
}
/*END .section_5*/

/*BEGIN .section_6*/
.section_6{
	min-height: 745px;
	padding-top: 200px;
	padding-bottom: 40px;
}
.section_6 .content_block .part{
    width: 55%;
    padding-right: 40px;
}
.section_6 .content_block .part .cta_type_1{
	position: absolute;
	bottom: 0;
	right: -204px;
}
.section_6 .text_frame .decore_blue_crosses{
	position: absolute;
	top: 64px;
	left: -520px;
	width: 480px;
	height: 344px;
	background: url(../img/general/decore_blue_crosses_2.svg) no-repeat 0 0 / 100% 100%;
}

@media (max-width: 1250px){
	.section_6{
		min-height: 0;
		padding-top: 40px;
		padding-bottom: 104px;
	}
	.section_6 .content_block .part{
		width: 100%;
		padding-right: 0;
	}
	.section_6 .content_block .part .cta_type_1{
		bottom: -64px;
		left: 0;
		right: auto;
	}
	.section_6 .text_frame .decore_blue_crosses{
		display: none;
	}
}
/*END .section_6*/

/*BEGIN .section_7*/
.section_7{
	padding-top: 200px;
	padding-bottom: 40px;
}
.section_7 .decore_gradient{
	position: absolute;
	top: -200px;
	left: -1000px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(236,226,226,1) 70%,rgba(236,226,226,1) 100%);
}
.tape_slider_2{
	position: relative;
	left: -20px;
}
.tape_slider_2 .slide_wrapper,
.tape_slider_2 .slide_wrapper .slide,
.tape_slider_2 .slide_wrapper .slide .inner{
	height: 400px;
}
.tape_slider_2 .slide_wrapper{
	z-index: 1;
	position: relative;
	width: 30000px;
	
	-webkit-transition: transform 0.6s ease-out;
	transition: transform 0.6s ease-out;
	
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.tape_slider_2 .slide_wrapper .slide, .tape_slider_2 .slide_wrapper .slide *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
.tape_slider_2 .slide_wrapper .slide{
	float: left;
	position: relative;
	width: 628px;
}
.tape_slider_2 .slide_wrapper .slide .inner{
	position: relative;
	width: 586px;
	margin: auto;
	padding: 40px;
	background: #ECE2E2;
	border: 1px solid #000;
	
	-webkit-border-radius: 32px;
	border-radius: 32px;
}
.tape_slider_2 .slide_wrapper .slide .inner a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.tape_slider_2 .slide_wrapper .slide .inner .details{
	display: inline-block;
	margin-right: 20px;
	padding: 16px 32px;
	border: 1px solid #5D6F93;
	
	font-size: 1.6rem;
	color: #5D6F93;
	line-height: 1em;
	
	-webkit-border-radius: 32px;
	border-radius: 32px;
}
.tape_slider_2 .slide_wrapper .slide .inner .hot{
	position: absolute;
	top: 40px;
	right: 40px;
	padding: 16px;
	
	font-size: 1.6rem;
	color: #FE7215;
	line-height: 1em;
	
}
.tape_slider_2 .slide_wrapper .slide .inner .text_type_32_16{
	margin-top: 112px;
}
.tape_slider_2 .slide_wrapper .slide .inner .num_block{
	position: absolute;
	bottom: 40px;
	left: 40px;
	
	font-size: 1.6rem;
	color: #FE7215;
	line-height: 1em;
}

@media (min-width: 1251px){
	.tape_slider_2 .slide_wrapper .slide .inner a::before{
		content: "";
		position: absolute;
		bottom: -32px;
		right: -32px;
		width: 112px;
		height: 112px;
		background: url(../img/general/tape_slider_2_decor.svg) no-repeat 0 0 / 100% 100%;
		opacity: 0;
		
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.tape_slider_2 .slide_wrapper .slide .inner a:hover::before{
		opacity: 1;
	}
}

@media (max-width: 1250px){
	.section_7{
		padding-top: 40px;
	}
	.section_7 .decore_gradient{
		display: none;
	}
	.tape_slider_2 .slide_wrapper,
	.tape_slider_2 .slide_wrapper .slide,
	.tape_slider_2 .slide_wrapper .slide .inner{
		height: 280px;
	}
	.tape_slider_2{
		left: -16px;
	}
	.tape_slider_2 .slide_wrapper .slide{
		width: 100vw;
	}
	.tape_slider_2 .slide_wrapper .slide .inner{
		width: 288px;
		padding: 16px 16px 40px 16px;
		
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
	.tape_slider_2 .slide_wrapper .slide .inner .details{
		width: calc(100% - 56px);
		margin-right: 0;
		margin-bottom: 16px;
		padding: 8px 16px;
	
		-webkit-border-radius: 16px;
		border-radius: 16px;
	}
	.tape_slider_2 .slide_wrapper .slide .inner .hot{
		top: 25px;
        right: 22px;
		padding: 0;
	}
	.tape_slider_2 .slide_wrapper .slide .inner .text_type_32_16{
		margin-top: 40px;
	}
	.tape_slider_2 .slide_wrapper .slide .inner .num_block{
		bottom: 16px;
		left: 16px;
	}
}
/*END .section_7*/

/*BEGIN .footer*/
.footer{
	/*z-index: 2;*/
	padding-top: 200px;
	padding-bottom: 40px;
	overflow: hidden;
}
.footer .decore_gradient:nth-child(1){
	z-index: 1;
	position: absolute;
	top: 0;
	left: -600px;
	width: 1400px;
	height: 1400px;
	background: radial-gradient(ellipse at center, rgba(254,114,21,1) 0%,rgba(254,114,21,0) 70%,rgba(254,114,21,0) 100%);
}
.footer .decore_gradient:nth-child(2){
	position: absolute;
	top: 0;
	right: 400px;
	width: 1400px;
	height: 1400px;
	/*background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(236,226,226,1) 70%,rgba(236,226,226,1) 100%);*/
	background: radial-gradient(ellipse at center,  rgba(95,113,148,1) 0%,rgba(95,113,148,0) 60%);
}
.footer .decore_gradient:nth-child(3){
	position: absolute;
	top: 0;
	right: -400px;
	width: 1200px;
	height: 1200px;
	background: radial-gradient(ellipse at center, rgba(254,114,21,1) 0%,rgba(254,114,21,0) 70%,rgba(254,114,21,0) 100%);
}
.footer .decore_gradient:nth-child(4){
	position: absolute;
	bottom: -400px;
	right: -400px;
	width: 1200px;
	height: 1200px;
	background: radial-gradient(ellipse at center, rgba(254,114,21,1) 0%,rgba(254,114,21,0) 70%,rgba(254,114,21,0) 100%);
}
/*.footer .container{
	padding-left: 40px;
}*/
.footer .top_part{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: space-between;
	justify-content: space-between;
	
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	
	/*padding-left: 156px;*/
}
.footer .social_block{
	position: relative;
	width: calc(100% - 786px);
	background: #ECE2E2;
	padding: 80px 80px 40px 80px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-justify-content: space-around;
	justify-content: space-around;
	
	-webkit-flex-flow: row;
	-ms-flex-flow: row;
	flex-flow: row;
	
	-webkit-border-radius: 40px 40px 0 0;
    border-radius: 40px 40px 0 0;
}
.footer .social_block a{
	line-height: 0;
}
.footer .social_block::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: url(../img/general/corner_bottom_right.svg) no-repeat 0 0 / 100% 100%;
}
.footer .middle_part{
	background: #ECE2E2;
	padding: 260px 160px 126px 160px;
	
	-webkit-border-radius: 40px 0 0 0;
    border-radius: 40px 0 0 0;
}
.footer .middle_part .text_block,
.footer .bottom_part .text_block{
	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 .middle_part .text_block > div:nth-child(1){
	/*width: 400px;*/
	width: 500px;
}
.footer .bottom_part .text_block{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.footer .bottom_part{
	background: #ECE2E2;
	padding: 16px 160px 48px 160px;
	
	-webkit-border-radius: 0 0 40px 40px;
    border-radius: 0 0 40px 40px;
}

@media (max-width: 1800px){
	.footer .social_block{
		padding: 80px 0 40px 0;
	}
}

@media (max-width: 1400px){
	.footer .social_block{
		width: calc(100% - 726px);
	}
	.footer .social_block img{
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 1250px){
	.footer{
		padding-top: 40px;
	}
	.footer .decore_gradient:nth-child(1),
	.footer .decore_gradient:nth-child(2),
	.footer .decore_gradient:nth-child(3){
		display: none;
	}
	.footer .decore_gradient:nth-child(4){
		bottom: -700px;
	}
	.footer .container{
		padding-left: 16px;
	}
	.footer .top_part{
		display: block;
		padding: 0;
	}
	.footer .top_part > img{
		width: 100%;
		height: auto;
		margin-bottom: 24px;
	}
	.footer .social_block{
		width: 100%;
		padding: 40px 16px;
		
		-webkit-border-radius: 16px 16px 0 0;
		border-radius: 16px 16px 0 0;
	}
	.footer .social_block::after{
		display: none;
	}
	.footer .social_block img{
		width: 56px;
		height: 56px;
	}
	.footer .middle_part,
	.footer .bottom_part{
		text-align: center;
	}
	.footer .middle_part{
		padding: 16px 16px 40px 16px;
		
		-webkit-border-radius: 0;
		border-radius: 0;
	}
	.footer .bottom_part{
		padding: 0 16px 56px 16px;
		
		-webkit-border-radius: 0 0 16px 16px;
		border-radius: 0 0 16px 16px;
	}
	.footer .middle_part .text_block,
	.footer .bottom_part .text_block{
		display: block;
	}
	.footer .middle_part .text_block > div:nth-child(1){
		width: auto;
	}
	.footer p a{
		display: inline-block;
		line-height: 1.9em;
	}
}
/*END .footer*/

/*BEGIN .page_privacy_policy_section_1*/
.page_privacy_policy_section_1{
	padding-top: 80px;
	padding-bottom: 40px;
}
.page_privacy_policy_section_1 h1{
	margin-bottom: 40px;
	font-family: "Akzentica4F-Bold";
    font-size: 8rem;
    line-height: 1em;
    text-transform: uppercase;
}
.page_privacy_policy_section_1 p,
.page_privacy_policy_section_1 ol,
.page_privacy_policy_section_1 ul{
	margin-bottom: 24px;
	font-size: 2.8rem;
	line-height: 1.4em;
}
.page_privacy_policy_section_1 ol,
.page_privacy_policy_section_1 ul{
	padding-left: 28px;
}
.page_privacy_policy_section_1 li:not(:last-child){
	margin-bottom: 16px;
}

@media (max-width: 1250px){
	/*.page_privacy_policy_section_1{
		padding-top: 40px;
	}*/
	.page_privacy_policy_section_1 h1{
		font-size: 3.2rem;
	}
	.page_privacy_policy_section_1 p,
	.page_privacy_policy_section_1 ol,
	.page_privacy_policy_section_1 ul{
		font-size: 1.6rem;
	}
	.page_privacy_policy_section_1 ol, .page_privacy_policy_section_1 ul{
		padding-left: 16px;
	}
}
/*END .page_privacy_policy_section_1*/

/*BEGIN #page_404*/
#page_404{
	height: 100vh;
}
#page_404 .text_block{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
/*END #page_404*/