/*BEGIN #preloader*/
#preloader{
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	background: #EBE3AE;
}
.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: #332B1A;
   
	-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: "NAMU-Pro";
    src: url("../fonts/NAMU-Pro.woff") format("woff"),
         url("../fonts/NAMU-Pro.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
@font-face{
    font-family: "PressStart2P";
    src: url("../fonts/PressStart2P-vaV7.woff") format("woff"),
         url("../fonts/PressStart2P-vaV7.ttf") format("opentype");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
/*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: #EBE3AE;  background: #332B1A; }
p::selection      { color: #EBE3AE;  background: #332B1A; }
a::-moz-selection { color: #EBE3AE;  background: #332B1A; }
a::selection      { color: #EBE3AE;  background: #332B1A; }
li::-moz-selection { color: #EBE3AE;  background: #332B1A; }
li::selection      { color: #EBE3AE;  background: #332B1A; }
span::-moz-selection { color: #EBE3AE;  background: #332B1A; }
span::selection      { color: #EBE3AE;  background: #332B1A; }
h1::-moz-selection { color: #EBE3AE;  background: #332B1A; }
h1::selection      { color: #EBE3AE;  background: #332B1A; }
h2::-moz-selection { color: #EBE3AE;  background: #332B1A; }
h2::selection      { color: #EBE3AE;  background: #332B1A; }
h3::-moz-selection { color: #EBE3AE;  background: #332B1A; }
h3::selection      { color: #EBE3AE;  background: #332B1A; }
h3::-moz-selection { color: #EBE3AE;  background: #332B1A; }
h3::selection      { color: #EBE3AE;  background: #332B1A; }
td::-moz-selection { color: #EBE3AE;  background: #332B1A; }
td::selection      { color: #EBE3AE;  background: #332B1A; }
input::-moz-selection { color: #000 !important;  background: #332B1A; }
input::selection      { color: #000 !important;  background: #332B1A; }
textarea::-moz-selection { color: #000 !important;  background: #332B1A; }
textarea::selection      { color: #000 !important;  background: #332B1A; }

::-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: #EBE3AE;
	font-family: "NAMU-Pro";
	font-size: 1em;
	color: #332B1A;
	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;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}
.clear{
	clear: both;
}
.break_word{
	word-wrap: break-word;
}
.nowrap{
	white-space: nowrap;
}
picture{
	display: block;
	line-height: 0;
}

@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: #BDAA82;
	}
	body::-webkit-scrollbar-thumb{
	   background: #332B1A; 
	}
	html.smooth, body.smooth{
		width: 100%;
		height: 100vh;
		overscroll-behavior: none;
	}
	body.smooth main{
		position: fixed;
		width: 100%;
		height: 100vh;
	}
	body.smooth .scrollable{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		will-change: transform;
	}
}
/*END GENERAL SETTINGS*/

/*BEGIN GENERAL ELEMENTS*/
#memory{
	display: none;
}
.oe, .navigation_btn{
	cursor: pointer;
}
.section_relative{
	position: relative;
}
.full_section{
	height: 100vh;
	min-height: 600px;
}
.section_brown{
	background: #BDAA82;
}
.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;
	display: inline-block;
	padding: 0 24px;
	border: 2px solid #332B1A;
	cursor: pointer;
	
	font-family: "PressStart2P";
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	
	-webkit-border-radius: 72px;
	border-radius: 72px;
	
	-webkit-box-shadow: 2px 4px 0 #332B1A;
	box-shadow: 2px 4px 0 #332B1A;
	
	-webkit-transition: transform 0.1s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
	transition: transform 0.1s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
	
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
	
	/*-webkit-tap-highlight-color: #000;*/
}
.cta_type_1:active,
.social_block a:active{
	-webkit-box-shadow: 0 0 0 #332B1A;
	box-shadow: 0 0 0 #332B1A;
	
	-webkit-transform: translate(2px, 4px);
	transform: translate(2px, 4px);
}
.cta_type_1.big{
	height: 72px;
	line-height: 70px;
	font-size: 1.6rem;
}
.cta_type_1.small{
	height: 48px;
	line-height: 46px;
	font-size: 1.2rem;
}
.cta_type_1.primary{
	background: #574F3E;
	color: #FEFEFE;
}
.cta_type_1.secondary{
	background: #BDB78C;
	color: #332B1A;
}
.social_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;
}
.social_block a{
	padding: 9px;
	background: #BDB78C;
	border: 1px solid #332B1A;
	line-height: 0;
	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-border-radius: 100%;
	border-radius: 100%;
	
	-webkit-box-shadow: 2px 4px 0 #332B1A;
	box-shadow: 2px 4px 0 #332B1A;
	
	-webkit-transition: transform 0.1s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
	transition: transform 0.1s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.1s ease-in-out;
}
.social_block a:not(:last-child){
    margin-right: 16px;
}
.social_block a img{
    width: 28px;
    height: 28px;
}
.plr{
	z-index: 1;
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
}
.a_bg_block{
	height: 100%;
}
.yt_wrapper{
	position: relative;
	padding-bottom: 56.2%;
}
.yt_wrapper img,
.yt_wrapper iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.yt_wrapper:not(.active),
.yt_wrapper:not(.active) *{
	cursor: pointer;
}
.only_mobile{
	display: none !important;
}

@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.primary:hover{
		background-color: #D1BE96;
	}
	.cta_type_1.secondary:hover,
	.social_block a:hover{
		background-color: #EFE9BE;
	}
	.flex_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;
	}
	.flex_block .part_33{
		width: 33.33%;
		/*width: calc(29.58% + 40px);*/
	}
	.flex_block .part_50{
		width: 50%;
	}
	.flex_block .part_66{
		width: 66.66%;
	}
}

@media (max-width: 1250px){
	.plr{
		padding-left: 16px;
		padding-right: 16px;
	}
	.a_bg_block{
		height: 60vh;
		min-height: 480px;
	}
	.cta_type_1.big{
		height: 48px;
		line-height: 46px;
		font-size: 1.2rem;
	}
	.only_desktop{
		display: none !important;
	}
	.only_mobile{
		display: block !important;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN MARGINS AND PADDINGS*/
.mb_128_96_48{
	margin-bottom: 128px;
}
.mb_48_32,
.mb_48_40{
	margin-bottom: 48px;
}
.mb_40_24{
	margin-bottom: 40px;
}
.mb_96_40,
.mb_96_72_56,
.mb_96_72_40{
	margin-bottom: 96px;
}
.mb_56_24,
.mb_56_40_24{
	margin-bottom: 56px;
}
.mb_24{
	margin-bottom: 24px;
}
.mb_16_6{
	margin-bottom: 16px;
}
.pt_200_96{
	padding-top: 200px;
}
.pt_128_24{
	padding-top: 128px;
}
.pt_96_80,
.pt_96_80_40{
	padding-top: 96px;
}
.pt_128_80,
.pt_128_96_40,
.pt_128_96_80{
	padding-top: 128px;
}
.pb_128_96_48,
.pb_128_96_64{
	padding-bottom: 128px;
}

@media (max-width: 1800px){
	.mb_128_96_48{
		margin-bottom: 96px;
	}
	.mb_96_72_40,
	.mb_96_72_56{
		margin-bottom: 72px;
	}
	.mb_56_40_24{
		margin-bottom: 40px;
	}
	.pt_128_96_80{
		padding-top: 96px;
	}
	.pt_96_80,
	.pt_96_80_40,
	.pt_128_80{
		padding-top: 80px;
	}
	.pb_128_96_48,
	.pb_128_96_64{
		padding-bottom: 96px;
	}
}

@media (max-width: 1250px){
	.mb_96_72_56{
		margin-bottom: 56px;
	}
	.mb_128_96_48{
		margin-bottom: 48px;
	}
	.mb_48_40,
	.mb_96_40,
	.mb_96_72_40{
		margin-bottom: 40px;
	}
	.mb_40_24,
	.mb_56_24,
	.mb_56_40_24{
		margin-bottom: 24px;
	}
	.mb_48_32{
		margin-bottom: 32px;
	}
	.mb_16_6{
		margin-bottom: 6px;
	}
	.pt_200_96{
		padding-top: 96px;
	}
	.pt_128_96_80{
		padding-top: 80px;
	}
	.pt_128_96_40,
	.pt_96_80_40{
		padding-top: 40px;
	}
	.pt_128_24{
		padding-top: 24px;
	}
	.pb_128_96_48{
		padding-bottom: 48px;
	}
	.pb_128_96_64{
		padding-bottom: 64px;
	}
}
/*END MARGINS AND PADDINGS*/

/*BEGIN TEXT*/
*{
	font-weight: normal;
}
.text_caps{
	text-transform: uppercase;
}
.title_type_81_24,
.title_type_81_54_24,
.title_type_81_54_16{
	font-family: "PressStart2P";
	font-size: 8.1rem;
	line-height: 1.1em;
}
.title_type_54_36_16,
.title_type_54_36_24{
	font-family: "PressStart2P";
	font-size: 5.4rem;
	line-height: 1.1em;
}
.title_type_36_16{
	font-family: "PressStart2P";
	font-size: 3.6rem;
	line-height: 1.1em;
}
.title_type_24_16{
	font-family: "PressStart2P";
	font-size: 2.4rem;
	line-height: 1.1em;
}
.text_type_36_16,
.text_type_36_24_16{
	font-size: 3.6rem;
	line-height: 1.3em;
}
.text_type_24_16{
	font-size: 2.4rem;
	line-height: 1.3em;
}
.text_type_16{
	font-size: 1.6rem;
	line-height: 1.3em;
}

@media (max-width: 1800px){
	.title_type_54_36_16,
	.title_type_54_36_24{
		font-size: 3.6rem;
	}
	.title_type_81_54_16,
	.title_type_81_54_24{
		font-size: 5.4rem;
	}
	.text_type_36_24_16{
		font-size: 2.4rem;
	}
	.title_type_24_16,
	.text_type_24_16{
		font-size: 1.6rem;
	}
}

@media (max-width: 1250px){
	.title_type_81_24,
	.title_type_54_36_24,
	.title_type_81_54_24{
		font-size: 2.4rem;
	}
	.title_type_54_36_16,
	.title_type_81_54_16,
	.title_type_36_16,
	.text_type_36_24_16,
	.text_type_36_16{
		font-size: 1.6rem;
	}
	.title_type_81_54_16,
	.title_type_54_36_16,
	.title_type_36_16,
	.title_type_24_16{
		line-height: 1.2em;
	}
	
}
/*END TEXT*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #BDAA82;
}
#top_menu .top_menu_inner{
	position: relative;
	max-width: 100%;
	height: 100%;
	
	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 .logo_a{
	z-index: 1;
	position: absolute;
	top: 24px;
	left: 50%;
	width: 112px;
    height: 112px;
	margin-left: -56px;
}
#top_menu .logo_a.fix{
	-webkit-transform-style: flat !important;
	transform-style: flat !important;
}
#top_menu .logo_a .main_logo_front,
#top_menu .logo_a .main_logo_back{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#top_menu .logo_a .main_logo_e{
	display: none;
}
#top_menu .logo_a .main_logo_back{
	z-index: 2;

	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
#top_menu #sandwich{
	display: none;
}
#top_menu .menu{
	/*position: relative;
	top: 16px;*/
	margin-top: 16px;
	padding-left: 40px;
	
	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;
	
	list-style: none;
}
#top_menu .lang_turn{
	position: relative;
	top: 16px;
	list-style: none;
}
#top_menu .menu li,
#top_menu .lang_turn li{
	height: 48px;
	line-height: 48px;
	font-size: 1.6rem;
}
#top_menu .menu > li{
	margin-right: 24px;
}
#top_menu .menu li a,
#top_menu .menu li a *,
#top_menu .lang_turn li a,
#top_menu .lang_turn li a *{
	cursor: pointer;
	
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
#top_menu .menu li a,
#top_menu .lang_turn li a{
	position: relative;
	display: block;
	padding: 0 24px;
}
#top_menu .menu li a::before,
#top_menu .lang_turn li a:before{
	content: "";
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #D1BE96;
	opacity: 0;
}
#top_menu .menu li.current-menu-item a::before{
	opacity: 1;
}
#top_menu .menu li a span:first-child,
#top_menu .lang_turn li a span:first-child{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#top_menu .menu li a span:first-child span,
#top_menu .lang_turn li a span:first-child span{
	position: absolute;
	width: 8px;
	height: 8px;
}
#top_menu .menu li a span:first-child span:nth-child(1),
#top_menu .lang_turn li a span:first-child span:nth-child(1){
	top: 0;
	left: 0;
	border-top: 2px solid #332B1A;
	border-left: 2px solid #332B1A;
}
#top_menu .menu li a span:first-child span:nth-child(2),
#top_menu .lang_turn li a span:first-child span:nth-child(2){
	top: 0;
	right: 0;
	border-top: 2px solid #332B1A;
	border-right: 2px solid #332B1A;
}
#top_menu .menu li a span:first-child span:nth-child(3),
#top_menu .lang_turn li a span:first-child span:nth-child(3){
	bottom: 0;
	left: 0;
	border-bottom: 2px solid #332B1A;
	border-left: 2px solid #332B1A;
}
#top_menu .menu li a span:first-child span:nth-child(4),
#top_menu .lang_turn li a span:first-child span:nth-child(4){
	bottom: 0;
	right: 0;
	border-bottom: 2px solid #332B1A;
	border-right: 2px solid #332B1A;
}
#top_menu .menu > li.menu-item-has-children .sub-menu{
	position: absolute;
	/*top: 48px;*/
	top: 64px;
	left: 0;
	height: 0;
	/*width: 100vw;*/
	width: 100%;
	opacity: 0;
	overflow: hidden;

	-webkit-transition: transform 0.4s ease-out, height 0s 0.4s ease-out, opacity 0.4s ease-out;
	transition: transform 0.4s ease-out, height 0s 0.4s ease-out, opacity 0.4s ease-out;

	will-change: transform, height, opacity;
}
#top_menu li.menu-item-has-children.opened .sub-menu{
	opacity: 1;
	
	-webkit-transform: translateY(0);
	transform: translateY(0);
	
	-webkit-transition: transform 0.4s ease-out, height 0s, opacity 0.4s ease-out;
	transition: transform 0.4s ease-out, height 0s, opacity 0.4s ease-out;
}
#top_menu .menu > li.menu-item-has-children .tick{
	position: absolute;
	bottom: 0;
	left: 50%;
	display: inline-block;
    width: 14px;
    height: 6px;
	margin-left: -7px;
	background: url(../img/general/tick_black.svg) no-repeat 50% 50% / 100% 100%;
	pointer-events: none;
	
	-webkit-transition: transform 0.4s ease-out;
	transition: transform 0.4s ease-out;
}
#top_menu .menu > li.menu-item-has-children .tick.active{
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#top_menu .additional_elements{
	position: absolute;
	top: 15px;
	right: 40px;
}
#top_menu .additional_elements,
#top_menu .desktop_cta_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;
}
#top_menu .additional_elements > *:not(:last-child),
#top_menu .desktop_cta_block > *:not(:last-child){
	margin-right: 32px;
}
#top_menu .mobile_cta_block,
#top_menu .menu_nav_inner > .social_block{
	display: none;
}
#top_menu .additional_elements .social_block a:not(:nth-child(1), :nth-child(2)){
	display: none;
}
#top_menu .menu > li:nth-child(2) .sub-menu li:nth-child(1){
	display: none;
}

@media (min-width: 1251px){
	#top_menu .logo_a{
		display: block;
		
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
		
		-webkit-perspective: 700px;
		perspective: 700px;
		
		-webkit-transition: -webkit-transform 0.4s ease-out;
		-webkit-transition: transform 0.4s ease-out;
		transition: transform 0.4s ease-out;
	}
	#top_menu .logo_a.move{
		-webkit-transform: translateY(-72px);
		transform: translateY(-72px);
	}
	#top_menu .logo_a .main_logo_front,
	#top_menu .logo_a .main_logo_back{
		-webkit-transition: -webkit-transform 0.5s ease-in-out;
		-webkit-transition: transform 0.5s ease-in-out;
		transition: transform 0.5s ease-in-out;
		
		will-change: transform;
	}
	#top_menu .logo_a:hover .main_logo_front{
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
	}
	#top_menu .logo_a:hover .main_logo_back{
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
	
	#top_menu .menu li:not(.menu-item-has-children) a::before,
	#top_menu .lang_turn li a:before{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	#top_menu .menu li:not(.menu-item-has-children) a:hover::before,
	#top_menu .lang_turn li a:hover:before{
		opacity: 1;
	}
	#top_menu .menu li:not(.menu-item-has-children) a:hover span:first-child span:nth-child(1),
	#top_menu .lang_turn li a:hover span:first-child span:nth-child(1){
		-webkit-animation: menu_link_span_1_animation 1s linear infinite;
		animation: menu_link_span_1_animation 1s linear infinite;
	}
	@-webkit-keyframes menu_link_span_1_animation{
		0%{
			-webkit-transform: translate(0, 0);
		}
		50%{
			-webkit-transform: translate(-3px, -3px);
		}
		100%{
			-webkit-transform: translate(0, 0);
		}
	}
	@keyframes menu_link_span_1_animation{
		0%{
			transform: translate(0, 0);
		}
		50%{
			transform: translate(-3px, -3px);
		}
		100%{
			transform: translate(0, 0);
		}
	}
	
	#top_menu .menu li:not(.menu-item-has-children) a:hover span:first-child span:nth-child(2),
	#top_menu .lang_turn li a:hover span:first-child span:nth-child(2){
		-webkit-animation: menu_link_span_2_animation 1s linear infinite;
		animation: menu_link_span_2_animation 1s linear infinite;
	}
	@-webkit-keyframes menu_link_span_2_animation{
		0%{
			-webkit-transform: translate(0, 0);
		}
		50%{
			-webkit-transform: translate(3px, -3px);
		}
		100%{
			-webkit-transform: translate(0, 0);
		}
	}
	@keyframes menu_link_span_2_animation{
		0%{
			transform: translate(0, 0);
		}
		50%{
			transform: translate(3px, -3px);
		}
		100%{
			transform: translate(0, 0);
		}
	}
	
	#top_menu .menu li:not(.menu-item-has-children) a:hover span:first-child span:nth-child(3),
	#top_menu .lang_turn li a:hover span:first-child span:nth-child(3){
		-webkit-animation: menu_link_span_3_animation 1s linear infinite;
		animation: menu_link_span_3_animation 1s linear infinite;
	}
	@-webkit-keyframes menu_link_span_3_animation{
		0%{
			-webkit-transform: translate(0, 0);
		}
		50%{
			-webkit-transform: translate(-3px, 3px);
		}
		100%{
			-webkit-transform: translate(0, 0);
		}
	}
	@keyframes menu_link_span_3_animation{
		0%{
			transform: translate(0, 0);
		}
		50%{
			transform: translate(-3px, 3px);
		}
		100%{
			transform: translate(0, 0);
		}
	}
	
	#top_menu .menu li:not(.menu-item-has-children) a:hover span:first-child span:nth-child(4),
	#top_menu .lang_turn li a:hover span:first-child span:nth-child(4){
		-webkit-animation: menu_link_span_4_animation 1s linear infinite;
		animation: menu_link_span_4_animation 1s linear infinite;
	}
	@-webkit-keyframes menu_link_span_4_animation{
		0%{
			-webkit-transform: translate(0, 0);
		}
		50%{
			-webkit-transform: translate(3px, 3px);
		}
		100%{
			-webkit-transform: translate(0, 0);
		}
	}
	@keyframes menu_link_span_4_animation{
		0%{
			transform: translate(0, 0);
		}
		50%{
			transform: translate(3px, 3px);
		}
		100%{
			transform: translate(0, 0);
		}
	}
	
	#top_menu .menu > li.menu-item-has-children > a,
	#top_menu .menu > li.menu-item-has-children > a *{
		cursor: default;
	}
	#top_menu .menu .sub-menu{
		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;*/
		
		background: #BDAA82;
		padding: 0 40px;
	}
	#top_menu .menu .sub-menu li{
		margin-top: 40px;
		text-align: center;
	}
	#top_menu .menu .sub-menu li a{
		display: block;
		width: 100%;
		margin: auto;
		padding-top: 14px;
		padding-bottom: 14px;
		line-height: 1.25em;
	}
	#top_menu .menu .sub-menu li:last-child{
		margin-bottom: 40px;
	}
}

@media (min-width: 1501px){
	#top_menu .menu .sub-menu li{
		width: calc(25% - 18px);
		margin-right: 24px;
	}
	#top_menu .menu .sub-menu li:nth-child(4n+4){
		margin-right: 0;
	}
	#top_menu .menu .sub-menu li:last-child{
		margin-right: 0;
	}
}

@media (min-width: 1631px){
	#top_menu .menu .sub-menu li:nth-child(4n+4){
		margin-right: 24px;
	}
	#top_menu .menu .sub-menu li:nth-child(4n+5){
		margin-right: 0;
	}
}

@media (min-width: 1251px) and (max-width: 1500px){
	#top_menu .menu .sub-menu li{
		width: calc(33.33% - 16px);
	}
	#top_menu .menu .sub-menu li:not(:nth-child(3n+3)){
		margin-right: 24px;
	}
	#top_menu .menu .sub-menu li:last-child{
		margin-right: 0;
	}
}

@media (max-width: 1630px){
	#top_menu .additional_elements .social_block,
	#top_menu .menu > li:nth-child(1){
		display: none;
	}
	#top_menu .menu > li:nth-child(2) .sub-menu li:nth-child(1){
		display: block;
	}
}

@media (max-width: 1250px){
	#top_menu,
	#top_menu .top_menu_inner,
	.menu_margin_block{
		height: 48px;
	}
	#top_menu .logo_a{
		top: 4px;
		left: 16px;
		width: 40px;
		height: 40px;
		margin-left: 0;
	}
	#top_menu .logo_a .main_logo_front,
	#top_menu .logo_a .main_logo_back{
		display: none;
	}
	#top_menu .logo_a .main_logo_e{
		display: block;
		width: 40px;
		height: 40px;
	}
	#top_menu .additional_elements{
		display: none;
	}
	#top_menu .lang_turn{
		position: absolute;
		top: 8px;
		right: 72px;
	}
	#top_menu .lang_turn li{
		height: 32px;
		line-height: 32px;
	}
	#top_menu .lang_turn li a{
		padding: 0 16px;
	}
	
	#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: #332B1A;
	}
	#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_nav{
		z-index: 1;
		position: absolute;
		top: 48px;
		left: -100vw;
		width: 100vw;
		/*height: calc(100vh - 48px);*/
		height: calc(100vh + 96px);
		background: #BDAA82;
		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: #BDAA82;
	}
	#top_menu .menu_nav::-webkit-scrollbar-thumb{
	   background: #332B1A; 
	}
	body::-webkit-scrollbar-thumb{
	   background: #332B1A; 
	}
	
	#top_menu .menu_nav .menu_nav_inner{
		display: block;
		width: 100%;
		height: auto;
		/*overflow-y: hidden;
		padding-bottom: 88px;*/
		padding-bottom: 196px;
	}
	#top_menu .menu{
		position: static;
		display: block;
		margin-top: 0;
		padding-left: 0;
	}
	#top_menu .menu li{
		height: auto;
		min-height: 48px;
		line-height: 47px;
	}
	#top_menu .menu > li{
		margin-right: 0;
	}
	#top_menu .menu li a{
		padding: 0 16px;
	}
	#top_menu .menu li a span{
		display: none;
	}
	/*#top_menu .menu > li:nth-child(1){
		display: block;
	}*/
	#top_menu .menu > li.menu-item-has-children > a{
		display: none;
	}
	#top_menu .menu > li.menu-item-has-children .sub-menu{
		position: static;
		display: block;
		height: auto !important;
		width: 100%;
		opacity: 1 !important;
		overflow: visible;
	}
	#top_menu .mobile_cta_block{
		display: block;
	}
	#top_menu .mobile_cta_block .mobile_cta{
		display: block;
		height: auto;
		min-height: 48px;
		line-height: 47px;
		padding: 0 16px;
		cursor: pointer;
	}
	#top_menu .mobile_cta_block .mobile_cta:nth-child(1){
		display: block;
		background: #574F3E;
		color: #FEFEFE;
	}
	#top_menu .menu_nav_inner > .social_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;
		
		margin-top: 16px;
		padding: 0 16px;
	}
}
/*END #top_menu*/

/*BEGIN .footer*/
.footer .flex_block .part_50:nth-child(1){
	padding: 160px;
	background: #EBE3AE;
}
.footer .flex_block .part_50:nth-child(1) .logo{
	position: relative;
}
.footer .flex_block .part_50:nth-child(1) .logo .logo_a{
	z-index: 1;
	position: relative;
	display: block;
}
.footer .flex_block .part_50:nth-child(1) .logo .logo_a.fix{
	-webkit-transform-style: flat !important;
	transform-style: flat !important;
}
.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_front,
.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_back{
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: auto;
	
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_front{
	position: relative;
}
.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_back{
	z-index: 2;
	position: absolute;

	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.footer .flex_block .part_50:nth-child(2) .text_block{
	padding-left: 96px;
}
/*footer .text_block .text_type_24_16 a{
	display: inline-block;
	line-height: 2em;
}*/

@media (min-width: 1251px){
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a{
		display: block;
		
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
		
		-webkit-perspective: 80vw;
		perspective: 80vw;
		
		-webkit-transition: -webkit-transform 0.4s ease-out;
		-webkit-transition: transform 0.4s ease-out;
		transition: transform 0.4s ease-out;
	}
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a.move{
		-webkit-transform: translateY(-72px);
		transform: translateY(-72px);
	}
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_front,
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_back{
		-webkit-transition: -webkit-transform 0.5s ease-in-out;
		-webkit-transition: transform 0.5s ease-in-out;
		transition: transform 0.5s ease-in-out;
		
		will-change: transform;
	}
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a:hover .main_logo_front{
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
	}
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a:hover .main_logo_back{
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}

@media (max-width: 1250px){
	.footer{
		text-align: center;
	}
	.footer .flex_block .part_50:nth-child(1){
		padding: 0;
		background: none;
	}
	.footer .flex_block .part_50:nth-child(1) .logo{
		width: 192px;
		margin: 0 auto 64px;
	}
	.footer .flex_block .part_50:nth-child(1) .logo .logo_a .main_logo_back{
		display: none;
	}
	.footer .flex_block .part_50:nth-child(2) .text_block{
		padding-left: 0;
	}
	.footer .flex_block .part_50:nth-child(2) .text_block p a{
		display: inline-block;
		line-height: 2.2em;
	}
	.footer .flex_block .part_50:nth-child(2) .social_block{
		padding-top: 4px;
		
		-webkit-justify-content: center;
		justify-content: center;
	}
}
/*END .footer*/

/*END .bottom_part_decor*/
.bottom_part_decor{
	position: relative;
	padding: 24px 0;
	background: #BDAA82;
	
	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;
	
	-webkit-box-shadow: 0 2px 0 #BDAA82;
	box-shadow: 0 2px 0 #BDAA82;
}
.bottom_part_decor picture{
	width: calc(33.33% - 40px);
	height: auto;
}
.bottom_part_decor picture:nth-child(1){
	padding-left: 40px;
}
.bottom_part_decor picture:nth-child(2){
	padding-right: 40px;
}
.bottom_part_decor picture img{
	width: 100%;
	height: auto;
}
.bottom_part_decor .title_type_36_16{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.bottom_part_decor.ts::after{
	content: "";
	position: absolute;
    bottom: 24px;
    left: 50%;
	
    display: inline-block;
    width: 40px;
    height: 16px;
    margin-left: -20px;
    background: url(../img/general/tick_black.svg) no-repeat 50% 50% / 100% 100%;
}

@media (max-width: 1800px) and (min-width: 1251px){
	.bottom_part_decor .title_type_36_16{
		font-size: 2.4rem;
	}
}

@media (max-width: 1800px){
	.bottom_part_decor.ts::after{
		width: 24px;
		height: 10px;
		margin-left: -12px;
	}
}

@media (max-width: 1250px){
	.bottom_part_decor{
		padding: 24px 16px;
	}
	.bottom_part_decor picture:nth-child(1),
	.bottom_part_decor picture:nth-child(2){
		padding: 0;
	}
}

/*@media (max-width: 991px) and (min-width: 768px){
	.bottom_part_decor.ts::after{
		width: 20px;
		height: 8px;
		margin-left: -10px;
	}
}*/

@media (max-width: 767px){
	.bottom_part_decor.ts::after{
		position: relative;
		bottom: auto;
		margin-top: 16px;
	}
}

@media (max-width: 767px){
	.bottom_part_decor{
		display: block;
		padding: 24px 16px 58px 16px;
	}
	.bottom_part_decor.ts{
		padding-bottom: 40px;
	} 
	.bottom_part_decor picture{
		display: block;
		width: 100%;
		margin-bottom: 40px;
	}
	.bottom_part_decor picture:nth-child(2){
		display: none;
	}
	.bottom_part_decor .title_type_36_16{
		position: static;
		
		-webkit-transform: none;
		transform: none;
	}
	.bottom_part_decor::after{
		position: relative;
		bottom: auto;
		margin-top: 16px;
	}
}
/*END .bottom_part_decor*/

/*BEGIN .page_main_section_1*/
.page_main_section_1{
	min-height: 100vh;
	padding-top: 80px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
}
.page_main_section_1 .top_part{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	flex-grow: 1;
	
	padding: 80px 0;
}
.page_main_section_1 .top_part .content_block{
	width: 100%;
	margin: auto;
}
.page_main_section_1 .top_part img{
	display: none;
}

@media (max-width: 1400px) and (min-width: 1251px){
	.page_main_section_1.uk .title_type_81_24{
		font-size: 5.4rem;
	}
	.page_main_section_1.uk .text_type_36_16{
		font-size: 2.4rem;
	}
	.page_main_section_1.uk .mb_48_32{
		margin-bottom: 40px;
	}
}

@media (max-width: 1800px) and (min-width: 1251px){
	.page_main_section_1.en .title_type_81_24{
		font-size: 5.4rem;
	}
	.page_main_section_1.en .text_type_36_16{
		font-size: 2.4rem;
	}
	.page_main_section_1.en .mb_48_32{
		margin-bottom: 40px;
	}
}

@media (max-width: 1250px){
	.page_main_section_1{
		padding-top: 48px;
	}
	.page_main_section_1 .top_part img{
		display: block;
		margin: 56px auto 0;
	}
}

@media (max-width: 1250px) and (min-width: 768px){
	.page_main_section_1 .top_part img{
		width: 240px;
		height: auto;
	}
}

@media (max-width: 430px){
	.page_main_section_1 .top_part br{
		display: none;
	}
}

@media (max-width: 416px) and (min-width: 390px){
	.page_main_section_1.uk .plr{
		padding-left: 0;
		padding-right: 0;
	}
	.page_main_section_1.uk .title_type_81_24{
		font-size: 2.3rem;
		letter-spacing: -0.03em;
	}
}
/*END .page_main_section_1*/

/*BEGIN .page_main_section_2*/
.page_main_section_2 .part_66{
	order: 1;
}
.page_main_section_2 .part_33{
	order: 0;
	padding-right: 40px;
}
.page_main_section_2 .part_33 .a_bg_block{
	background: url(../img/page_main/page_main_content_img_1.jpg) no-repeat 50% 50% / cover;
}

@media (min-width: 1251px){
	.page_main_section_2 .title_type_54_36_16{
		padding: 0 80px 0 56px;
	}
	.page_main_section_2 .text_type_36_24_16{
		padding: 0 80px 0 16.5vw;
	}
}

@media (max-width: 1250px){
	.page_main_section_2 .part_66{
		padding-left: 16px;
		padding-right: 16px;
	}
	.page_main_section_2 .title_type_54_36_16,
	.page_main_section_2 .text_type_36_24_16{
		padding: 0;
	}
	.page_main_section_2 .part_33{
		padding-right: 0;
	}
}
/*END .page_main_section_2*/

/*BEGIN .page_main_section_3*/
.page_main_section_3 .part_66 img{
	margin-top: 96px;
	margin-left: 40px;
}
.page_main_section_3 .part_33{
	padding-left: 40px;
}
.page_main_section_3 .part_33 .a_bg_block{
	background: url(../img/page_main/page_main_content_img_2.jpg) no-repeat 50% 50% / cover;
}

@media (min-width: 1251px){
	.page_main_section_3 .title_type_54_36_16{
		padding: 0 56px 0 40px;
	}
	.page_main_section_3 .text_type_36_24_16{
		padding: 0 196px 0 296px;
	}
}

@media (max-width: 1800px){
	.page_main_section_3 .text_type_36_24_16{
		padding: 0 80px 0 240px;
	}
	.page_main_section_3 .part_66 img{
		width: 160px;
		height: auto;
	}
}

@media (max-width: 1250px){
	.page_main_section_3 .part_66{
		padding-left: 16px;
		padding-right: 16px;
	}
	.page_main_section_3 .title_type_54_36_16,
	.page_main_section_3 .text_type_36_24_16{
		padding: 0;
	}
	.page_main_section_3 .part_66 img{
		display: block;
		width: 180px;
		margin: 64px auto 16px;
	}
	.page_main_section_3 .part_33{
		display: none;
	}
}
/*END .page_main_section_3*/

/*BEGIN .page_main_section_4*/
.page_main_section_4{
	height: calc(100vh - 80px);
	background: url(../img/page_main/page_main_content_img_3.jpg) no-repeat 50% 0 / cover;
}

@media (max-width: 1250px) and (orientation: portrait){
	.page_main_section_4{
		height: 60vh;
		min-height: 480px;
		background: url(../img/page_main/page_main_content_img_3_d.jpg) no-repeat 100% 0 / cover;
	}
}

@media (max-width: 767px) and (orientation: portrait){
	.page_main_section_4{
		background: url(../img/page_main/page_main_content_img_3_m.jpg) no-repeat 100% 0 / cover;
	}
}

@media (max-width: 420px){
	.page_main_section_4 .title_type_54_36_24 .h{
		display: none;
	}
}
/*END .page_main_section_4*/

/*BEGIN .page_main_section_5*/
.page_main_section_5 .part_50:nth-child(1){
	order: 1;
	position: relative;
	padding-right: 80px;
}
.page_main_section_5 .part_50:nth-child(1) img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: auto;
}
.page_main_section_5 .part_50:nth-child(2){
	order: 0;
	padding-right: 96px;
}
.page_main_section_5 .part_50:nth-child(2) img{
	width: 100%;
	height: auto;
}

@media (max-width: 1250px){
	.page_main_section_5 .part_50:nth-child(1){
		padding: 0 16px 48px 16px;
	}
	.page_main_section_5 .part_50:nth-child(1) img{
		display: none;
	}
	.page_main_section_5 .part_50:nth-child(2){
		padding-right: 0;
	}
	.page_main_section_5 br{
		display: none;
	}
}
/*END .page_main_section_5*/

/*BEGIN .page_main_section_6*/
.page_main_section_6 .flex_block{
	padding-bottom: 128px;
}
.page_main_section_6 .part_50:nth-child(1){
	order: 1;
	position: relative;
	padding-right: 80px;
}
.page_main_section_6 .part_50:nth-child(2){
	order: 0;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.page_main_section_6 .part_50:nth-child(2) .cta_type_1{
	margin: auto;
}
.page_main_section_6 .video{
	display: block;
	width: 100%;
	height: auto;
	line-height: 0;
}

@media (max-width: 1800px){
	/*.page_main_section_6{
		padding-bottom: 96px;
	}*/
	.page_main_section_6 .flex_block{
		padding-bottom: 96px;
	}
}

@media (max-width: 1250px){
	/*.page_main_section_6{
		padding-bottom: 0;
	}*/
	.page_main_section_6 .flex_block{
		padding-bottom: 0;
	}
	.page_main_section_6 .part_50:nth-child(1){
		padding: 0 16px;
	}
	.page_main_section_6 .part_50:nth-child(2){
		padding: 64px 16px 72px 16px;
	}
}
/*END .page_main_section_5*/

/*BEGIN .category_section_1*/
.category_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;
	
	-webkit-justify-content: center;
	justify-content: center;
	
	min-height: 456px;
}
.category_wrapper .nothing_found{
	margin: auto;
	text-align: center;
}
.category_wrapper .category_item{
	position: relative;
	width: calc(33.33% - 32px);
	margin-bottom: 48px;
	padding-bottom: 148px;
	background: #EBE3AE;
}
.category_wrapper .category_item:not(:nth-child(3n + 3)){
	margin-right: 48px;
}
.category_wrapper .category_item:last-child{
	margin-right: 0;
}
.category_wrapper .category_item .category_thumb{
	line-height: 0;
}
.category_wrapper .category_item .category_thumb img{
	width: 100%;
	height: auto;
}
.category_wrapper .category_item .text_block{
	padding: 48px 40px 0 40px;
}
.category_wrapper .category_item .text_block .text_type_24_16 > *:not(:last-child){
	margin-bottom: 16px;
}
.category_wrapper .category_item .cta_block{
	position: absolute;
	bottom: 56px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 1800px){
	.category_wrapper .category_item .text_block{
		padding: 40px 24px 0 24px;
	}
}

@media (min-width: 1251px){
	.align_center_desktop{
		text-align: center;
	}
}

@media (max-width: 1250px){
	.category_section_1 .text_type_36_24_16 br{
		display: none;
	}
	.category_section_1 .align_center{
		text-align: left;
	}
	.category_wrapper{
		display: block;
		width: calc(100% - 32px);
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 16px;
	}
	.category_wrapper .category_item{
		width: 100%;
		margin-bottom: 16px;
		padding-bottom: 140px;
	}
	.category_wrapper .category_item:not(:nth-child(3n + 3)){
		margin-right: 0;
	}
	.category_wrapper .category_item:last-child{
		margin-bottom: 0;
	}
	.category_wrapper .category_item .text_block{
		padding: 32px 16px 0 16px;
	}
	
	.category_wrapper .category_item .cta_block{
		bottom: 52px;
	}
}
/*END .category_section_1*/

/*BEGIN .post_navigation*/
.post_navigation *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
.post_navigation{
	margin: auto;
	text-align: center;
}
.post_navigation nav{
	padding: 72px 0 112px 0;
}
.post_navigation .pagination h2{
	margin: 0;
}
.post_navigation .nav-links{
    font-size: 1.6rem;
}
.post_navigation .nav-links .current, .post_navigation .nav-links a{
	display: inline-block;
	width: 48px;
	height: 48px;
	
	color: inherit !important;
	line-height: 48px;
	text-align: center;
}
.post_navigation .nav-links .current{
	position: relative;
	background: #EBE3AE;
}
.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;
}
.post_navigation .nav-links .prev{
	background: url(../img/general/btn_arrow_black_left.svg) no-repeat 50% 50% / 8px 12px;
}
.post_navigation .nav-links .next{
	background: url(../img/general/btn_arrow_black_right.svg) no-repeat 50% 50% / 8px 12px;
}

@media (min-width: 1251px){
	.post_navigation .nav-links a{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.post_navigation .nav-links a:hover{
		opacity: 0.5;
	}
}

@media (max-width: 1250px){
	.post_navigation nav{
		padding: 56px 0 72px 0;
	}
}
/*END .post_navigation*/

/*BEGIN .donation_section*/
.donation_section{
	padding-bottom: 377px;
}
.donation_block .item,
.donation_block .subt{
	padding-left: 64px;
}
.donation_block .item *{
	text-decoration: none !important;
	-webkit-appearance: none !important;
}
.donation_block .item .text_type_36_24_16{
	position: relative;
}
.donation_block .item .text_type_36_24_16 .copy_element{
	position: absolute;
	top: -2px;
	left: -64px;
	display: block;
	width: 48px;
	height: 48px;
}
.donation_block .item .text_type_36_24_16 .copy_data{
	word-wrap: break-word;
}
.donation_block .item .text_type_36_24_16 .copy_element .icon_for_card{
	display: block;
	width: 48px;
	height: 48px;
	background: url(../img/general/copy_icon.svg) no-repeat 50% 50% / 24px 26px;
}
.donation_block .item .text_type_36_24_16 .copy_element .copied{
	/*z-index: 1;*/
    position: absolute;
	top: 0;
	left: 48px;
	display: none;
	height: 48px;
	background: #BDB78C;
	padding: 0 16px;
	min-width: 96px;
    pointer-events: none;
	
	font-size: 1.6rem;
	color: #353535;
	text-align: center;
	line-height: 47px;
}
.donation_block .item .text_type_36_24_16 .copy_element .copied::before{
	content: "";
    position: absolute;
    top: 50%;
	left: -7px;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #BDB78C transparent transparent;
	
   -webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.donation_block .item p a{
	display: inline-block;
}
.donation_block .item p .icon_link{
	position: absolute;
	top: 0;
	left: -66px;
	width: 64px;
	height: 48px;
	background: url(../img/general/icon_link.svg) no-repeat 13px 50% / 26px 26px;
	cursor: pointer;
}
.donation_block .item.ibans .text_type_36_24_16:not(:last-child){
	margin-bottom: 8px;
}
.donation_block.blink{
	-webkit-animation: donation_wrapper_animation 1s 1s linear 1 forwards;
	animation: donation_wrapper_animation 1s 1s linear 1 forwards;
}
.donation_block .text_type_24_16{
	color: #8f8764;
}

@-webkit-keyframes donation_wrapper_animation{
	0%{
		opacity: 1;
	}
	25%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes donation_wrapper_animation{
	0%{
		opacity: 1;
	}
	25%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.donation_section .decor{
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 160px;
	height: 217px;
	background: url(../img/general/decor_face_half_left.svg) no-repeat 0 0 / 100% 100%;
}

@media (min-width: 1251px){
	.donation_section .flex_block .part_50{
		padding-left: 0;
	}
}

@media (max-width: 1800px){
	.donation_block .item p .icon_link{
		top: -9px;
		left: -64px;
		background-size: 22px 22px;
	}
	.donation_block .item .text_type_36_24_16 .copy_element{
		top: -10px;
	}
	.donation_block .item .text_type_36_24_16 .copy_element .icon_for_card{
		background-size: 20px 22px;
	}
}

@media (max-width: 1250px){
	.donation_section br{
		display: none;
	}
	.donation_block{
		padding-left: 0;
		padding-right: 0;
	}
	.option_list .part{
		
	}
	.donation_block .item,
	.donation_block .subt{
		padding-left: 48px;
	}
	.donation_block .item{
		padding-right: 16px;
	}
	.donation_block .item .text_type_36_24_16{
		line-height: 2em;
	}
	.donation_block .item .text_type_36_24_16 .copy_element{
		top: -8px;
		left: -48px;
	}
	.donation_block .item .text_type_36_24_16 .copy_element .copied{
		line-height: 45px;
	}
	.donation_block .item .text_type_36_24_16 .copy_element .icon_for_card{
		background-size: 14px 16px;
	}
	.donation_block .item .text_type_36_24_16 .bl{
		display: block;
	}
	.donation_block .item p .icon_link{
		top: -7px;
		left: -48px;
		width: 48px;
		height: 48px;
		background-size: 16px 16px;
		background-position: 50% 50%;
	}
	.donation_block .item.mb_72_56{
		margin-bottom: 56px;
	} 
	.donation_block .item.ibans .text_type_36_24_16:not(:last-child){
		margin-bottom: 4px;
	}
	.donation_block .item{
		/*width: calc(100% + 16px);
		
		-webkit-transform: translateX(-16px);
		transform: translateX(-16px);*/
	}
}
/*END .donation_section*/

/*BEGIN .single_section_1*/
.single_section_1{
	min-height: 100vh;
    padding-top: 80px;
	
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}
.single_section_1 .top_part{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
	
	flex-grow: 1;
}
.single_section_1 .top_part .part{
	width: 50%;
	position: relative;
}
.single_section_1 .top_part .part:nth-child(1){
	order: 1;
	padding: 0 48px 0 96px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.single_section_1 .top_part .part:nth-child(1) .text_block{
	margin: auto;
}
.single_section_1 .top_part .part:nth-child(1) .text_type_36_24_16 p:nth-child(2){
	margin-top: 16px;
}
.single_section_1 .top_part .part:nth-child(2){
	order: 0;
}
.single_section_1 .thumb{
	display: none;
}

@media (max-width: 1250px){
	.single_section_1{
		display: block;
		min-height: 0;
		padding-top: 48px;
	}
	.single_section_1 .top_part{
		display: block;
	}
	.single_section_1 .top_part .part{
		width: 100%;
	}
	.single_section_1 .top_part .part:nth-child(1){
		display: block;
		padding: 56px 16px 48px 16px;
	}
}
/*END .single_section_1*/

/*BEGIN .slider_type_1*/
.slider_type_1_hidden_slides{
	display: none;
}
.slider_type_1{
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2B2B2B;
	overflow: hidden;
}
.slider_type_1 .slider_wrapper{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slider_type_1 .slide{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	
	-webkit-transition: opacity 0.6s linear;
	transition: opacity 0.6s linear;
}
.slider_type_1 .slide::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,  rgba(254,254,254,0) 70%,rgba(254,254,254,0.1) 100%);
}
.slider_type_1 .slide.active{
	z-index: 1;
	opacity: 1;
}
.slider_type_1 .bullets{
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 8px;
	
	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;
}
.slider_type_1 .bullets .slider_bullet{
	position: relative;
	height: 40px;
	flex-grow: 1;
}
.slider_type_1 .bullets .slider_bullet.active{
	opacity: 1;
}
.slider_type_1 .bullets .slider_bullet::after{
	content: "";
	position: absolute;
	bottom: 8px;
	left: 8px;
	width: calc(100% - 16px);
	height: 4px;
	background: #332B1A;
	
	-webkit-transition: background-color 0.6s linear;
	transition: background-color 0.6s linear;
}
.slider_type_1 .bullets .slider_bullet.light::after{
	background: #FEFEFE;
}

@media (max-width: 1250px){
	.slider_type_1{
		position: relative;
		padding-bottom: 62.5%;
	}
	.slider_type_1 .bullets{
		padding: 0 4px;
	}
	.slider_type_1 .bullets .slider_bullet::after{
		left: 4px;
		width: calc(100% - 8px);
		height: 2px;
	}
}
/*END .slider_type_1*/

/*BEGIN .single_section_2*/
.single_section_2 img:not(.social_icon),
.single_section_2 iframe,
.single_section_2 .title_type_54_36_16:not(:first-child){
	padding-top: 72px;
}
.single_section_2 img:not(.social_icon),
.single_section_2 iframe{
	display: block;
	width: 100vw;
	max-width: 100vw;
	height: auto;
	margin-left: -40px;
	
}
.single_section_2 p a:not(.cta_type_1){
	color: #332B1A !important;
	text-decoration: underline !important;
}
.single_section_2 .btn_block{
	padding: 48px 0 0 0;
}

.single_pag_wrap{
    z-index: 1;
    position: relative;
    margin: 0;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row;
	-ms-flex-flow: row;
	flex-flow: row;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.single_pag_wrap .single_pag{
	margin-bottom: 0 !important;
	white-space: nowrap;
}
.single_pag_wrap .single_pag a{
	position: relative;
	display: inline-block;
	margin-top: 96px;
}
/*.single_pag_wrap .single_pag a::after{
	content: "";
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #848484;
}*/

.single_section_2 .yt_wrapper{
	padding-bottom: 62.4%;
}
.single_section_2 .yt_wrapper::after{
	content: "";
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 158px;
	height: 110px;
	background: url(../img/general/youtube_icon.png) no-repeat 0 0 / 100% 100%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.single_section_2 .yt_wrapper iframe{
	z-index: 2;
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

@media (min-width: 1251px){
	.single_section_2 .text_type_36_24_16,
	.single_section_2 .social_block{
		padding-right: 40px;
		padding-left: calc(33.33% - 40px);
	}
	.single_pag_wrap .single_pag.text_type_36_24_16{
		padding: 0;
	}
	.single_section_2 p a:not(.cta_type_1){
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.single_section_2 p a:not(.cta_type_1):hover{
		opacity: 0.5;
	}
}

@media (max-width: 1800px){
	.single_section_2 img:not(.social_icon),
	.single_section_2 iframe,
	.single_section_2 .title_type_54_36_16:not(:first-child){
		padding-top: 40px;
	}
	.single_section_2 .btn_block{
		padding: 24px 0 0 0;
	}
	.single_pag_wrap .single_pag a{
		margin-top: 80px;
	}
}

@media (max-width: 1250px){
	.single_section_2 img:not(.social_icon),
	.single_section_2 iframe{
		margin-left: -16px;
		padding-top: 24px;
		
	}
	.single_section_2 .btn_block{
		padding: 24px 0;
	}
	.single_section_2 p a:not(.cta_type_1){
		display: inline-block;
		line-height: 2em;
	}
	.single_pag_wrap .single_pag a{
		margin-top: 56px;
	}
	.single_section_2 .social_additional_part{
		padding-top: 32px;
	}
	.single_section_2 .yt_wrapper{
		padding-bottom: 69%;
	}
	.single_section_2 .yt_wrapper::after{
		width: 60px;
		height: 42px;
	}
}

@media (max-width: 360px){
	.single_pag_wrap .single_pag{
		font-size: 1.4rem;
	}
}
/*END .single_section_2*/

/*BEGIN .option_list*/
.option_list .part{
	position: relative;
	/*border-bottom: 2px solid #332B1A;*/
}
.option_list .part::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #332B1A;
}
.option_list .part .point{
	position: relative;
	padding: 32px 96px 28px 64px;
	background: transparent;
	cursor: pointer;
}
.option_list .part .point *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
	
	cursor: pointer;
}
.option_list .part .point .sign{
	position: absolute;
    top: 50%;
    right: 64px;
    display: inline-block;
	
	width: 24px;
    height: 10px;
	margin-top: -5px;
    margin-left: -12px;
    background: url(../img/general/tick_black.svg) no-repeat 50% 50% / 100% 100%;
    pointer-events: none;
	
    -webkit-transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
}
.option_list .part.active .point .sign{
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.option_list .part .info{
	height: 0;
	overflow: hidden;
	
	-webkit-transition: height 0.4s ease-out;
	transition: height 0.4s ease-out;
}
.option_list .part .info .content_block{
	padding: 16px 0 32px 0;
}

@media (max-width: 1250px){
	.option_list .part .point{
		padding: 24px 64px 20px 48px;
	}
	.option_list .part .point .sign{
		right: 48px;
		width: 14px;
		height: 6px;
		margin-top: -3px;
		margin-left: -7px;
	}
	.option_list .part::after{
		left: 16px;
		width: calc(100% - 32px);
	}
}
/*END .option_list*/