/*BEGIN #preloader*/
#preloader{
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	background: #DCD4C2;
}
.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: #3E281F;

	-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;
}
body.dark #preloader{
	background: #011102;
}
body.dark .preloader_element{
	background: #DCD4C2;
}

@-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: "NyghtSerif-Light";
    src: url("../fonts/NyghtSerif-Light.woff2") format("woff2"),
         url("../fonts/NyghtSerif-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
@font-face{
    font-family: "FixelDisplay-Light";
    src: url("../fonts/FixelDisplay-Light.woff2") format("woff2"),
         url("../fonts/FixelDisplay-Light.otf") format("opentype");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
/*END FONTS*/

/*BEGIN #intro*/
#intro{
	z-index: 998;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	background: #DCD4C2;
	overflow: hidden;
}
#intro .top_part,
#intro .bottom_part{
	position: absolute;
	left: 0;
	width: 100%;
}
#intro .top_part{
	top: 0;
	height: 27%;
}
#intro .bottom_part{
	top: 27%;
	height: 73%;
}
#intro .top_part img{
	position: absolute;
	bottom: 0;
	left: 200px;
	width: calc(100% - 400px);
	height: auto;
	opacity: 5%;
}
#intro .bottom_part .percents{
	padding-left: 180px;
	font-size: 32vw;
	color: #3E281F !important;
	line-height: 80vh;
}
#intro .bottle_part{
	position: absolute;
    top: 13vh;
    right: 21vw;
	width: 179px;
	height: 714px;
	background: url(../img/general/bottle_1.png) no-repeat 0 0 / 100% 100%;
}
#intro .bottle_part::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/general/bottle_2.png) no-repeat 0 0 / 100% 100%;
}
#intro .bottle_part > div{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 466px;
	overflow: hidden;

	-webkit-border-radius: 7% 7% 28% 28% / 10% 10% 5% 5%;
	border-radius: 7% 7% 28% 28% / 10% 10% 5% 5%;
}
#intro .bottle_part > div div{
	position: absolute;
	left: -1228px;
	bottom: -466px;
	width: 1228px;
	height: 100%;
	margin-left: 179px;

	-webkit-transition: transform 0.2s linear;
	transition: transform 0.2s linear;

	will-change: transform;
}
#intro .bottle_part > div div:nth-child(1){
	background: url(../img/general/bottle_wave_1.png) no-repeat 0 0 / 100% 100%;
}
#intro .bottle_part > div div:nth-child(2){
	background: url(../img/general/bottle_wave_2.png) no-repeat 0 0 / 100% 100%;
}

@media (max-width: 1250px){
	#intro .top_part img{
		left: 16px;
		width: calc(100% - 32px);
	}
	#intro .bottom_part .percents{
		padding-left: 16px;
		font-size: 41vw;
	}
	#intro .bottle_part{
		top: 50%;
		left: 50%;

		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);

		-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
	}
}

@media (max-width: 767px){
	#intro .bottom_part .percents{
		font-size: 40vw;
	}
	#intro .bottle_part{
		-webkit-transform: scale(0.4) translate(-50%, -50%);
		transform: scale(0.8) translate(-50%, -50%);
	}
}
/*END #intro*/

/*BEGIN #age_check_block*/
#age_check_block{
	z-index: 997;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../img/general/start_img_1.jpg) no-repeat 0% 0% / cover;
	display: none;
}
#age_check_block .content_block{
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 32px);
	max-width: 900px;
	min-height: 400px;
	padding: 108px 16px 80px 16px;
	background: url(../img/general/glass_1.png) no-repeat 0% 50% / 900px 600px;
	border: 1px solid #6D4B2C;

	-webkit-border-radius: 40px;
	border-radius: 40px;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#age_check_block .content_block p span:nth-child(2){
	display: none;
}
#age_check_block .content_block .cta_type_1.primary{
	color: #DCD4C2;
	border-color: #DCD4C2;
}
#age_check_block .cta_type_1.secondary span{
	color: #DCD4C2;
	border-color: #DCD4C2;
}

@media (min-width: 1251px){
	#age_check_block .content_block .cta_type_1.primary:hover{
		background: #DCD4C2;
		color: #011102;
	}
}
/*END #age_check_block*/

/*BEGIN #field_animation_block*/
#field_animation_block{
	z-index: 996;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: none;
}
#field_animation_block.draw{
	top: -100vh;
	opacity: 0;

	-webkit-transition: top 0s 8s, opacity 0s 8s;
	transition: top 0s 8s, opacity 0s 8s;
}
#field_animation_block .part_sky,
#field_animation_block .part_field,
#field_animation_block .part_grape{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
#field_animation_block .part_sky{
	background: url(../img/general/start_img_sky.jpg) no-repeat 0% 0% / cover;

	-webkit-transition: opacity 8s 0s ease-in;
	transition: opacity 8s 0s ease-in;

	will-change: opacity;
}
#field_animation_block .part_field{
	background: url(../img/general/start_img_field.png) no-repeat 0% 0% / cover;

	-webkit-transition: transform 8s 0s ease-in, opacity 8s 0s ease-in;
	transition: transform 8s 0s ease-in, opacity 8s 0s ease-in;

	-webkit-transform-origin: top left;
	transform-origin: top left;

	will-change: transform, opacity;
}
#field_animation_block.draw .part_field{
	opacity: 0;

	-webkit-transform: scale(1.6) translateY(50%);
	transform: scale(1.6) translateY(50%);
}
#field_animation_block.draw .part_sky{
	opacity: 0;
}
#field_animation_block .part_grape{
	background: url(../img/general/start_img_grape.png) no-repeat 0% 0% / cover;

	-webkit-transition: transform 8s 0s ease-in;
	transition: transform 8s 0s ease-in;

	will-change: transform;
}
#field_animation_block.draw .part_grape{
	-webkit-transform: scale(1.2) translateX(-350px);
	transform: scale(1.2) translateX(-350px);
}

@media (max-width: 1250px){
	#field_animation_block .part_sky{
		background-position: 35% 0;
	}
	#field_animation_block .part_field{
		background-position: 65% 0;
	}
}
/*END #field_animation_block*/

/*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: #DCD4C2;  background: #3E281F; }
p::selection      { color: #DCD4C2;  background: #3E281F; }
a::-moz-selection { color: #DCD4C2;  background: #3E281F; }
a::selection      { color: #DCD4C2;  background: #3E281F; }
li::-moz-selection { color: #DCD4C2;  background: #3E281F; }
li::selection      { color: #DCD4C2;  background: #3E281F; }
span::-moz-selection { color: #DCD4C2;  background: #3E281F; }
span::selection      { color: #DCD4C2;  background: #3E281F; }
h1::-moz-selection { color: #DCD4C2;  background: #3E281F; }
h1::selection      { color: #DCD4C2;  background: #3E281F; }
h2::-moz-selection { color: #DCD4C2;  background: #3E281F; }
h2::selection      { color: #DCD4C2;  background: #3E281F; }
h3::-moz-selection { color: #DCD4C2;  background: #3E281F; }
h3::selection      { color: #DCD4C2;  background: #3E281F; }
h3::-moz-selection { color: #DCD4C2;  background: #3E281F; }
h3::selection      { color: #DCD4C2;  background: #3E281F; }
td::-moz-selection { color: #DCD4C2;  background: #3E281F; }
td::selection      { color: #DCD4C2;  background: #3E281F; }
input::-moz-selection { color: #DCD4C2 !important;  background: #3E281F; }
input::selection      { color: #DCD4C2 !important;  background: #3E281F; }
textarea::-moz-selection { color: #DCD4C2 !important;  background: #3E281F; }
textarea::selection      { color: #DCD4C2 !important;  background: #3E281F; }

::-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: #DCD4C2;
	font-family: "NyghtSerif-Light";
	font-size: 1em;
	color: #3E281F;
	line-height: normal;

	-webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
body.dark{
	background: #011102;
	color: #DCD4C2;
}
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: 68px;
	padding-right: 68px;
}
.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: #a59b85;
	}
	body::-webkit-scrollbar-thumb{
	   background: #3E281F;
	}
	body.dark::-webkit-scrollbar-track{
		/*background: #2E382E;*/
		background: #686d5c;
	}
	body.dark::-webkit-scrollbar-thumb{
	   background: #DCD4C2;
	}

	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;
	}

	body main.prepare{
		-webkit-transform: translateY(100vh);
		transform: translateY(100vh);

		will-change: transform;
	}
	body main.draw{
		-webkit-transform: translateY(0);
		transform: translateY(0);

		-webkit-transition: transform 8s 0s ease-in;
		transition: transform 8s 0s ease-in;
	}
}

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

/*BEGIN GENERAL ELEMENTS*/
#memory{
	display: none;
}
.oe, .navigation_btn{
	cursor: pointer;
}
.section_relative,
.position_relative{
	position: relative;
}
.full_section{
	height: 100vh;
	min-height: 600px;
}
.middle_element{
	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.middle_element_v{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.middle_element_h{
	position: relative;
	left: 50%;

	-webkit-transform: translateX(-50%);
	transform: translateX(-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,
.cta_type_1 *{
	cursor: pointer;

	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
.cta_type_1{
	display: inline-block;
	padding: 9px 24px 7px 24px;
	color: #3E281F;
	text-align: center;
}
.cta_type_1.primary{
	border: 1px solid #3E281F;

	-webkit-border-radius: 8px;
	border-radius: 8px;

	-webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.cta_type_1.secondary span{
	border-bottom: 1px solid #3E281F;

	-webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
body.dark .cta_type_1{
	color: #DCD4C2;
}
body.dark .cta_type_1.primary{
	border-color: #DCD4C2;
}
body.dark .cta_type_1.secondary span{
	border-color: #DCD4C2;
}
.cta_type_2,
.cta_type_2 *{
	cursor: pointer;
}
.cta_type_2{
	position: relative;
	display: inline-block;
	width: 264px;
	height: 264px;
}
.cta_type_2 > span > span{
	position: relative;
	display: block;
}
.cta_type_2 > span > span:nth-child(2){
	padding-left: 28px;
}
.cta_type_2 > span > span:nth-child(2) svg{
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
}
.cta_type_2 > span > span:nth-child(2) svg circle,
.cta_type_2 > span > span:nth-child(2) svg path{
	-webkit-transition: fill 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out;
}
body.dark .cta_type_2 > span > span:nth-child(2) svg circle{
	fill: #DCD4C2;
}
body.dark .cta_type_2 > span > span:nth-child(2) svg path{
	fill: #011102;
}
.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;

	-webkit-justify-content: center;
    justify-content: center;
}
.social_block a{
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 0;

	-webkit-border-radius: 100%;
	border-radius: 100%;
}
.social_block a img{
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;

	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.social_block a:not(:last-child){
    margin-right: 24px;
}
.social_block a img:nth-child(2){
	opacity: 0;
}
body.dark .social_block a img:nth-child(1){
	opacity: 0;
}
body.dark .social_block a img:nth-child(2){
	opacity: 1;
}
.simple_line_horizontal{
	width: 100%;
	height: 1px;
	background-color: #A59B85;
}
.overflow_hidden{
	overflow: hidden;
}
.line_middle{
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #A59B85;
}
.line_middle_before{
	position: absolute;
	top: -100vh;
	left: 50%;
	width: 1px;
	height: 100vh;
	background-color: #A59B85;
}
.bg_pd_block{
	padding: 40px 0;
	background-color: #DCD4C2;

	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;

	will-change: background-color;
}
body.dark .bg_pd_block{
	background: #011102;
}
.alcoline_decor_classic{
	width: 416px;
	height: 416px;
	background: url(../img/general/alcoline_decor_classic.png) no-repeat 0 0 / 100% 100%;
}
.picture_block_keep_height{
    position: relative;
}
.picture_block_keep_height picture:nth-child(1){
    opacity: 0;
}
.picture_block_keep_height picture:nth-child(2){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bullet_style{
	position: relative;
	padding-left: 16px;
}
.bullet_style::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	background: #A59B85;

	-webkit-border-radius: 100%;
	border-radius: 100%;

	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

@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;
	}
	.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.align_items_end{
		-webkit-align-items: end;
		align-items: end;
	}
	.flex_block .order_0{
		order: 0;
	}
	.flex_block .order_1{
		order: 1;
	}
	.flex_block .order_2{
		order: 2;
	}
	.flex_block .order_3{
		order: 3;
	}
	.flex_block .order_4{
		order: 4;
	}
	.flex_block .order_5{
		order: 5;
	}
	.flex_block .order_6{
		order: 6;
	}
	.flex_block .part_8{
		width: 8.33%;
	}
	.flex_block .part_16{
		width: 16.67%;
	}
	.flex_block .part_25{
		width: 25%;
	}
	.flex_block .part_33{
		width: 33.33%;
	}
	.flex_block .part_41{
		width: 41.67%;
	}
	.flex_block .part_50{
		width: 50%;
	}
	.flex_block .part_66{
		width: 66.66%;
	}
	.flex_block .part_75{
		width: 75%;
	}
	.flex_block .part_84{
		width: 83.33%;
	}
	.desktop_pr_40{
		padding-right: 40px;
	}
	.parallax_element_on_scroll{
        will-change: transform;
    }
	.cta_type_1.primary:hover{
		background: #3E281F;
		color: #DCD4C2;
	}
	body.dark .cta_type_1.primary:hover{
		background: #DCD4C2;
		color: #011102;
	}
	.cta_type_2 img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
	}
	.cta_type_2 img,
	.cta_type_2 > span{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	.cta_type_2 img:nth-child(3),
	body.dark .cta_type_2 img:nth-child(2){
		display: none;
	}
	.cta_type_2 img:nth-child(2),
	body.dark .cta_type_2 img:nth-child(3){
		display: block;
	}
	.cta_type_2:hover > span{
		opacity: 0;
	}
	.cta_type_2:hover img{
		opacity: 1;
	}
}

@media (max-width: 1250px){
	.parallax_element_on_scroll{
		margin-top: 0 !important;

		-webkit-transform: none !important;
		transform: none !important;
	}
	.align_center_bobile{
		text-align: center;
	}
	.cta_type_2{
		left: 50%;
		width: auto;
		height: auto;

		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.cta_type_2 img{
		display: none;
	}
	.picture_block_keep_height picture:nth-child(1){
		opacity: 1;
	}
	.picture_block_keep_height picture:nth-child(2){
		display: none;
	}
	.mobile_hide{
		display: none;
	}
}
/*END GENERAL ELEMENTS*/

/*BEGIN MARGINS AND PADDINGS*/
.pt_320_120{
	padding-top: 320px;
}
.pt_230_120{
	padding-top: 230px;
}
.pt_160_120{
	padding-top: 160px;
}
.m_a{
	margin: auto;
}
.mb_4{
	margin-bottom: 4px;
}
.mb_16{
	margin-bottom: 16px;
}
.mb_24,
.mb_24_68{
	margin-bottom: 24px;
}
.mb_40,
.mb_40_24{
	margin-bottom: 40px;
}
.mb_80_68{
	margin-bottom: 80px;
}
.mb_64,
.mb_64_0{
	margin-bottom: 64px;
}
.mb_68{
	margin-bottom: 68px;
}
.mb_120{
	margin-bottom: 120px;
}
.mb_160{
	margin-bottom: 160px;
}
.mb_160_68{
	margin-bottom: 160px;
}
.mb_192_68{
	margin-bottom: 192px;
}
.mb_40vh_120px{
	margin-bottom: 40vh;
}

@media (max-width: 1250px){
	.pt_320_120,
	.pt_160_120,
	.pt_230_120{
		padding-top: 120px;
	}
	.mb_40vh_120px,
	.mb_0_120{
		margin-bottom: 120px;
	}
	.mb_0_68,
	.mb_160_68,
	.mb_80_68,
	.mb_24_68,
	.mb_192_68{
		margin-bottom: 68px;
	}
	.mb_0_48{
		margin-bottom: 48px;
	}
	.mb_0_40{
		margin-bottom: 40px;
	}
	.mb_40_24{
		margin-bottom: 24px;
	}
	.mb_64_0{
		margin-bottom: 0;
	}
}
/*END MARGINS AND PADDINGS*/

/*BEGIN TEXT*/
*{
	font-weight: normal;
}
.text_caps{
	text-transform: uppercase;
}
.text_light{
	color: #DCD4C2;
}
.text_grey{
	color: #A59B85;
}
.text_type_fixel_light_12{
	font-family: "FixelDisplay-Light";
	font-size: 1.2rem;
	line-height: 1.3em;
}
.text_type_fixel_light_16{
	font-family: "FixelDisplay-Light";
	font-size: 1.6rem;
	line-height: 1.5em;
}
.text_type_nyghtserif_light_24{
	font-family: "NyghtSerif-Light";
	font-size: 2.4rem;
	line-height: 1.16em;
}
.text_type_nyghtserif_light_48_24{
	font-family: "NyghtSerif-Light";
	font-size: 4.8rem;
	line-height: 1.16em;
}
.text_type_nyghtserif_light_72_24{
	font-family: "NyghtSerif-Light";
	font-size: 7.2rem;
	line-height: 1.16em;
}

@media (max-width: 1250px){
	.text_type_nyghtserif_light_48_24,
	.text_type_nyghtserif_light_72_24{
		font-size: 2.4rem;
	}
}
/*END TEXT*/

/*BEGIN #top_menu*/
#top_menu{
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background-color: #DCD4C2;
	border-bottom: 1px solid #A59B85;

	-webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
body.dark #top_menu{
	background-color: #011102;
	border-color: #A59B85;
}
#top_menu *{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
}
#top_menu .top_menu_inner{
	position: relative;
	max-width: 100%;
}
#top_menu .main_logo{
	position: absolute;
	top: 24px;
	left: 68px;
}
#top_menu .main_logo path{
	-webkit-transition: fill 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out;
}
body.dark #top_menu .main_logo path{
	fill: #DCD4C2;
}
#top_menu #sandwich{
	display: none;
}
#top_menu .menu{
	position: absolute;
	top: 0;
	right: 320px;

	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 .menu > li{
	height: 72px;
	line-height: 72px;
}
#top_menu .menu li a{
	position: relative;
	display: block;
	padding: 0 20px;
}
#top_menu .additional_elements{
	position: absolute;
	top: 0;
	right: 68px;
	height: 72px;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-flow: flex-end;
	-ms-flex-flow: flex-end;

	-webkit-align-items: center;
	align-items: center;
}
#top_menu .additional_elements > *:not(:last-child){
	margin-right: 24px;
}
#top_menu li.menu-item-has-children{
	position: relative;
}
#top_menu .menu li.menu-item-has-children > a{
	padding-right: 24px;
}
#top_menu li.menu-item-has-children .tick{
	position: absolute;
	top: 32px;
	right: 8px;
	width: 9px;
	height: 5px;
	background: url(../img/general/tick_f_l.svg) no-repeat 0 0 / 100% 100%;

	-webkit-transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
body.dark #top_menu li.menu-item-has-children .tick{
	background: url(../img/general/tick_f_d.svg) no-repeat 0 0 / 100% 100%;
}
#top_menu li.menu-item-has-children .tick.active{
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

#top_menu li.menu-item-has-children .sub-menu{
	z-index: 2;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 100%;
	height: 0;
	background: #DCD4C2;
	opacity: 0;
	overflow: hidden;

	-webkit-transform: 0;
	transform: 0;

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

	will-change: transform, height, opacity, background;
}
#top_menu li.menu-item-has-children .sub-menu{
	background: #DCD4C2;
}
body.dark #top_menu li.menu-item-has-children .sub-menu{
	background: #011102;
}
#top_menu li.menu-item-has-children .sub-menu a{
	height: 40px;
	padding: 0 20px;
	line-height: 40px;
	white-space: nowrap;
	color: inherit !important;
}
#top_menu li.menu-item-has-children.opened .sub-menu{
	opacity: 1;

	-webkit-transform: translateY(0);
	transform: translateY(0);

	-webkit-transition: transform 0.3s ease-in-out, height 0s, opacity 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, height 0s, opacity 0.3s ease-in-out;
}
#top_menu .additional_elements{
	position: absolute;
	top: 0;
	right: 68px;
}
#top_menu .additional_elements .lang_block{
	list-style: none;
}
#top_menu .additional_elements .lang_block li{
	position: relative;
	display: inline-block;
	height: 72px;
	line-height: 72px;
}
#top_menu .additional_elements .lang_block li:not(:first-child){
	margin-left: -3px;
}
#top_menu .additional_elements .lang_block li:not(:last-child)::after{
	content: "";
    position: absolute;
    top: 26px;
    left: 100%;
    width: 1px;
    height: 17px;
    background: #3E281F;

	-webkit-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
body.dark #top_menu .additional_elements .lang_block li:not(:last-child)::after{
	background: #DCD4C2;
}
#top_menu .additional_elements .lang_block li a{
	display: inline-block;
	padding: 0 8px;
	color: inherit !important;
}
#top_menu .additional_elements .lang_block li.current-lang a{
	opacity: 0.5;
}

#top_menu .switch_element_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

#top_menu .switch_element_wrapper.mob {
	display: none;
}

#top_menu .switch_element{
	cursor: pointer;
}
#top_menu .switch_element rect{
	-webkit-transition: fill 0.3s ease-in-out, x 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out, x 0.3s ease-in-out;;
}
body.dark #top_menu .switch_element rect:nth-child(1){
	fill: #A59B85;
}
body.dark #top_menu .switch_element rect:nth-child(2){
	fill: #011102;
	x: 18;
}
#top_menu .menu li.current-menu-item > a,
#top_menu .menu li.current-menu-parent > a{
	opacity: 0.5;
}
#top_menu .menu_nav_inner .switch_element{
	display: none;
}

@media (min-width: 1251px){
	#top_menu .menu li a,
	#top_menu .additional_elements .lang_block li a{
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;
	}
	#top_menu .menu li a:hover,
	#top_menu .additional_elements .lang_block li a:hover{
		opacity: 0.5;
	}
}

@media (max-width: 1250px){
	#top_menu,
	#top_menu .top_menu_inner,
	.menu_margin_block{
		height: 48px;
	}
	#top_menu .main_logo{
		top: 15px;
		left: 16px;
		width: 140px;
		height: 18px;
	}
	#top_menu .additional_elements{
		right: 72px;
		height: 48px;
	}
	#top_menu .additional_elements > *:not(:last-child){
		margin-right: 0;
	}
	#top_menu .additional_elements .lang_block li{
		height: 48px;
		line-height: 49px;
	}
	#top_menu .additional_elements .lang_block li:not(:last-child)::after{
		top: 15px;
	}
	#top_menu .additional_elements .switch_element{
		display: none;
	}
	#top_menu .menu_nav_inner .switch_element{
		display: block;
	}

	#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: #3E281F;
	}
	body.dark #top_menu #sandwich .inner div{
		background: #DCD4C2;
	}
	#top_menu #sandwich .inner div:nth-child(1){
		top: 0;

		-webkit-transition: top 0.15s 0.15s ease, transform 0.2s ease, background 0.3s ease-in-out;
		transition: top 0.15s 0.15s ease, transform 0.2s ease, background 0.3s ease-in-out;
	}
	#top_menu #sandwich .inner div:nth-child(2){
		top: 9px;

		-webkit-transition: opacity 0.15s 0.15s ease;
		transition: opacity 0.15s 0.15s ease;
	}
	#top_menu #sandwich .inner div:nth-child(3){
		bottom: 0;

		-webkit-transition: bottom 0.15s 0.15s ease, transform 0.15s ease, background 0.3s ease-in-out;
		transition: bottom 0.15s 0.15s ease, transform 0.15s ease, background 0.3s ease-in-out;
	}
	#top_menu.active #sandwich .inner div:nth-child(1){
		top: 9px;

		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);

		-webkit-transition: top 0.15s ease, transform 0.15s 0.15s ease, background 0.3s ease-in-out;
		transition: top 0.15s ease, transform 0.15s 0.15s ease, background 0.3s ease-in-out;
	}
	#top_menu.active #sandwich .inner div:nth-child(2){
		opacity: 0;

		-webkit-transition: opacity 0.15s ease, background 0.3s ease-in-out;
		transition: opacity 0.15s ease, background 0.3s ease-in-out;
	}
	#top_menu.active #sandwich .inner div:nth-child(3){
		bottom: 9px;

		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);

		-webkit-transition: bottom 0.15s ease, transform 0.15s 0.15s ease, background 0.3s ease-in-out;
		transition: bottom 0.15s ease, transform 0.15s 0.15s ease, background 0.3s ease-in-out;
	}
	#top_menu .menu_nav{
		z-index: 1;
		position: absolute;
		top: 48px;
		left: -100vw;
		width: 100vw;
		height: 100vh;
		background: #DCD4C2;
		overflow-y: auto;
		opacity: 0;

		-webkit-transition: left 0s 0.3s, opacity 0.3s ease-in-out, background 0.3s ease-in-out;
		transition: left 0s 0.3s, opacity 0.3s ease-in-out, background 0.3s ease-in-out;
	}
	body.dark #top_menu .menu_nav{
		background: #011102;
	}
	#top_menu.active .menu_nav{
		left: 0;
		opacity: 1;

		-webkit-transition: left 0s, opacity 0.3s ease-in-out, background 0.3s ease-in-out;
		transition: left 0s, opacity 0.3s ease-in-out, background 0.3s ease-in-out;
	}
	#top_menu .menu_nav::-webkit-scrollbar{
		width: 4px;
	}
	#top_menu .menu_nav::-webkit-scrollbar-track{
		background: #a59b85;
	}
	#top_menu .menu_nav::-webkit-scrollbar-thumb{
	   background: #3E281F;
	}
	body.dark #top_menu .menu_nav::-webkit-scrollbar-track{
		background: #686d5c;
	}
	body.dark #top_menu .menu_nav::-webkit-scrollbar-thumb{
	   background: #DCD4C2;
	}
	#top_menu .menu_nav .menu_nav_inner{
		display: block;
		width: 100%;
		height: auto;
		overflow-y: hidden;
		padding-bottom: 120px;
	}
	#top_menu .menu{
		position: static;
		display: block;
	}
	#top_menu .menu li,
	#top_menu li.menu-item-has-children .sub-menu li,
	#top_menu .additional_elements .lang_turn .sub-menu li{
		height: auto;
		line-height: 48px;
	}
	#top_menu .additional_elements .lang_turn > li{
		height: 48px;
		line-height: 52px;
	}
	#top_menu .additional_elements .lang_turn > li > a{
		height: 48px;
	}
	#top_menu .menu li a{
		padding: 0 16px;
	}
	#top_menu li.menu-item-has-children .sub-menu{
		top: 48px;
	}
	#top_menu .menu_nav_inner li.menu-item-has-children .sub-menu{
		position: relative;
		top: 0;
		background: none;
		opacity: 1;

		-webkit-transform: none;
		transform: none;

		-webkit-transition: height 0.4s ease-out;
		transition: height 0.4s ease-out;
	}
	#top_menu .menu_nav_inner li.menu-item-has-children.opened .sub-menu{
		-webkit-transition: height 0.4s ease-in-out;
		transition: height 0.4s ease-in-out;
	}
	#top_menu .menu_nav_inner li.menu-item-has-children .sub-menu a{
		padding-left: 32px;
	}
	#top_menu .menu_nav .menu_nav_inner .menu_device_cta{
		display: block;
		width: 100%;
		height: 48px;
		line-height: 48px;
		padding: 0 16px;
		cursor: pointer;
	}
	#top_menu .menu li.current-menu-item.menu-item-type-custom a{
		background: none;
	}
	#top_menu li.current-menu-item a::before{
		display: none;
	}
	#top_menu .menu li.menu-item-has-children{
		padding-right: 0px;
	}
	#top_menu li.menu-item-has-children .tick{
		top: 20px;
		right: 16px;
	}
	body.dark #top_menu li.menu-item-has-children .sub-menu{
		background: none !important;
	}


	#top_menu .switch_element_wrapper {
		display: none;
	}

	#top_menu .switch_element_wrapper.mob {
		display: flex;
		justify-content: flex-start;
		padding: 16px;
	}
}
/*END #top_menu*/

/*BEGIN FORM SETTINGS*/
.field_checkout{
	display: none;
}
.field_wrapper{
	position: relative;
	width: 100%;
	margin-bottom: 48px;
}
.field_wrapper .field,
.field_wrapper .span_placeholder{
	width: 100%;
	height: 48px;
	line-height: 48px;
	padding: 0;
	background: transparent;
	border: 0;

	font-family: "FixelDisplay-Light";
	font-size: 1.6rem;
	color: #3E281F;

	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
body.dark .field_wrapper .field,
body.dark .field_wrapper .span_placeholder{
	color: #DCD4C2;
}
.field_wrapper .field{
	outline: none !important;
	border-bottom: 1px solid #A59B85;

	-webkit-transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.field_wrapper .span_placeholder{
	position: absolute;
    top: 0;
    left: 0;
	cursor: text;
	pointer-events: none;
}
.field_wrapper.active .span_placeholder{
	top: -20px;
	height: 20px;
	line-height: 20px;
	font-size: 1.4rem;
}
.field_wrapper.warning .span_placeholder{
	color: #F24C27;
}
.field_wrapper .field_line{
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 3px;
	background: #A59B85;

	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.field_wrapper .field_line.active{
	width: 100%;
}
.field_wrapper .field_line.success_input{
	width: 100% !important;
}
.field_wrapper.textarea_wrapper{
	height: 48px;
}
.field_wrapper textarea.field{
    height: 48px;
    resize: none;
    overflow: hidden;
}
.field_wrapper .field.textarea_cover{
    min-height: 48px;
    height: auto;
    display: none;
}
.field_wrapper textarea.field, .field_wrapper .textarea_cover{
	padding-top: 3px;
	padding-bottom: 3px;
    line-height: 1.8em;
    white-space: pre-wrap;
    word-wrap: break-word;

	font-family: "FixelDisplay-Light";

    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.form_go, .form_go *, .span_placeholder{
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
	cursor: pointer;
}
.field_wrapper .alarm{
	position: absolute;
	opacity: 0;
	margin: 0;
	bottom: -20px;
	right: 0;
	pointer-events: none;

	font-family: "FixelDisplay-Light";
	font-size: 1.2rem;
	color: #F24C27;

	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.field_wrapper.warning .field{
	border-color: #F24C27;
	color: #F24C27 !important;
}
.field_wrapper.warning .span_placeholder{
	color: #F24C27 !important;
}
.field_wrapper.warning .alarm{
	opacity: 1;
}

.file_input{
	display: none !important;
}
.file_input_button{
	display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.field.file_input_button{
	position: relative;
	margin-bottom: 0;
	padding-left: 24px;
	background: transparent;
}
.file_field_wrapper > img{
	position: absolute;
	top: 16px;
	left: 0;
}
/*END FORM SETTINGS*/

/*BEGIN #thanx_popup*/
#thanx_popup{
	z-index: 201;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: calc(100vh + 1px);
	display: none;
}
#thanx_popup .popup_cover{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup .popup_inner{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 800px;
	height: auto;
	max-height: calc(100vh - 70px);
    margin: auto;
	background: #DCD4C2;
	padding: 60px 16px;

    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
body.dark #thanx_popup .popup_inner{
	background: #011102;
}
#thanx_popup .popup_close{
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    cursor: pointer;
	background: url(../img/general/close_white.svg) no-repeat 0 0 / 100% 100%;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#thanx_popup .popup_info{
	text-align: center;
}

@media (max-height: 400px){
	.thanx_popup_inner{
		padding: 16px;
	}
}
/*END #thanx_popup*/

/*BEGIN .footer*/
.footer{
	padding-bottom: 112px;
}
.footer .container{
	position: static;
}
.footer .content_block{
	position: relative;
	/*min-height: 652px;*/
	border: 1px solid #DCD4C2;

	-webkit-border-radius: 40px;
	border-radius: 40px;

	-webkit-box-shadow: 8px 10px 12px rgba(220, 212, 194, 0.3);
	box-shadow: 8px 10px 12px rgba(220, 212, 194, 0.3);

	-webkit-transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
	transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}
body.dark .footer .content_block{
	border-color: #011102;

	-webkit-box-shadow: 8px 10px 12px rgba(1, 17, 2, 0.8);
	box-shadow: 8px 10px 12px rgba(1, 17, 2, 0.8);
}
.footer .bg_part{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #DCD4C2;
	padding: 192px 0 208px 0;
	overflow: hidden;

	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;

	-webkit-border-radius: 40px;
	border-radius: 40px;
}
body.dark .footer .bg_part{
	background-color: #011102;
}
.footer .content_block .glass{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/general/glass_footer.png) no-repeat 0% 100% / cover;

	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.footer .big_logo{
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100vw;
	height: auto;

	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.footer .big_logo path{
	-webkit-transition: fill 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out;
}
body.dark .footer .big_logo path{
	fill: #DCD4C2;
}
.footer .content_block .big_logo{
	bottom: -12vh;

	-webkit-filter: blur(14px);
	filter: blur(14px);
}
.footer .flex_block{
	z-index: 1;
	position: relative;
}
.footer .flex_block > div:nth-child(1) .logo_block{
	position: relative;
	width: 175px;
	height: 156px;
	margin: 0 auto 40px;
}
.footer .flex_block > div:nth-child(1) .logo_block img{
	position: absolute;
	top: 0;
	left: 0;

	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.footer .flex_block > div:nth-child(1) .logo_block img:nth-child(2){
	opacity: 0;
}
body.dark .footer .flex_block > div:nth-child(1) .logo_block img:nth-child(1){
	opacity: 0;
}
body.dark .footer .flex_block > div:nth-child(1) .logo_block img:nth-child(2){
	opacity: 1;
}
.footer p a{
	display: inline-block;
	line-height: 1.9em;
}

@media (min-width: 1251px){
	.footer .container{
		padding-left: 160px;
		padding-right: 160px;
	}
	.footer + div{
		height: 40px;
	}
	.footer .flex_block .part_25:last-child{
		margin-top: -9px;
	}
}

@media (max-width: 1250px){
	.footer{
		padding-bottom: 96px;
	}
	.footer .bg_part{
		padding: 80px 16px 96px 16px;
	}
	.footer .flex_block{
		text-align: center;
	}
	.footer .big_logo{
		display: none;
	}
}
/*BEGIN .footer*/

/*END .footer*/

/*BEGIN .page_main_section_1*/
.page_main_section_1 .text_type_nyghtserif_light_72_24 span{
	display: inline-block;
    width: 1.7em;
}
.page_main_section_1 .container{
	height: 100%;
}
/*END .page_main_section_1*/

/*BEGIN .page_main_section_2*/
@media (min-width: 1251px){
	.page_main_section_2{
		margin-top: -20vh;
	}
	.page_main_section_2::after{
		content: "";
		display: block;
		height: 30vh;
	}
	.page_main_section_2 .text_type_nyghtserif_light_48_24 span:nth-child(1){
		display: inline-block;
		width: 3.5em;
	}
	.page_main_section_2 .text_type_nyghtserif_light_48_24 span:nth-child(4),
	.page_main_section_2 .text_type_nyghtserif_light_48_24 span:nth-child(5){
		display: block;
		text-align: right;
	}
}

@media (max-width: 1250px){
	.page_main_section_2{
		margin-top: -15vh;
	}
}
/*END .page_main_section_2*/

/*BEGIN .page_main_section_3*/
.page_main_section_3 .part_50{
	position: relative;
}
.page_main_section_3 .part_50 picture:nth-child(1){
	opacity: 0;
}
.page_main_section_3 .part_50 picture:nth-child(2){
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.page_main_section_3 .alcoline_decor_classic{
	position: absolute;
	bottom: 0;
	left: 50%;

	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 1250px){
	.page_main_section_3 .alcoline_decor_classic{
		display: none;
	}
}
/*END .page_main_section_3*/

/*BEGIN .tape_slider*/
.tape_slider_content{
	display: none;
}
.tape_slider_block{
	position: relative;
	width: 100%;
}
.tape_slider_block .slider_nav_block{
	position: absolute;
	width: calc(25vw - 59px);
	height: 40px;
	bottom: 0;
	left: 0;
	background: #DCD4C2;

	-webkit-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
body.dark .tape_slider_block .slider_nav_block{
	background: #011102;
}
.tape_slider_block .slider_nav_block .slider_nav{
	z-index: 1;
	position: absolute;
	top: 0;
	width: 40px;
	height: 40;
	cursor: pointer;
}
.tape_slider_block .slider_nav_block .slider_nav_left{
	left: 0;
}
.tape_slider_block .slider_nav_block .slider_nav_right{
	right: 0;
}
.tape_slider_block .slider_nav_block .slider_nav svg{
	position: absolute;
	top: 8px;
	left: 0;
}
.tape_slider_block .slider_nav_block .slider_nav svg path{
	-webkit-transition: stroke 0.3s ease-in-out, fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: stroke 0.3s ease-in-out, fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
body.dark .tape_slider_block .slider_nav_block .slider_nav svg path:nth-child(1){
	stroke: #DCD4C2;
}
body.dark .tape_slider_block .slider_nav_block .slider_nav svg path:nth-child(2){
	fill: #DCD4C2;
}
.tape_slider_block .slider_nav_block .slider_nav svg path:nth-child(2){
	opacity: 0;
}
.tape_slider{
	position: relative;
	left: 0;
	width: 100%;
	overflow: hidden;
}
.tape_slider .slide_wrapper{
	position: relative;
	width: 60000px;

	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-transition: transform 0.6s ease-out;
	transition: transform 0.6s ease-out;

	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.tape_slider .slide_wrapper .slide, .tape_slider .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 .slide_wrapper .slide{
	/*float: left;*/
	/*width: calc(33.33% - 23px);*/

	position: relative;
	width: calc(25vw - 23px);
	height: 100%;
	padding-right: 40px;
	line-height: 0;

	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-around;
	justify-content: space-around;
}
.tape_slider .slide_wrapper .slide .inner{
	position: relative;
	width: 100%;
	height: 100%;
}
.tape_slider .slide_wrapper .slide .inner img{
	width: 100%;
	height: auto;
}

@media (min-width: 1251px){
	.tape_slider_block .slider_nav_block .slider_nav:hover svg path:nth-child(2){
		opacity: 1;
	}
	#reward_slider.tape_slider .slide_wrapper .slide{
		width: calc(25vw - 25px);
	}
	.tape_slider_block #reward_slider + .slider_nav_block{
		bottom: -40px;
	}
}

@media (max-width: 1250px){
	.tape_slider{
		left: 0;
	}
	.tape_slider_block .slider_nav_block{
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		margin-top: 16px;
	}
	.tape_slider .slide_wrapper .slide{
		width: calc(100vw - 32px);
		padding-right: 0;
	}
	.tape_slider .slide_wrapper .slide .inner{
		position: relative;
		width: 100%;
		height: auto;
	}
	.tape_slider .slide_wrapper .slide .inner img{
		display: block;
		margin: 0 auto;
	}
}
/*END .tape_slider*/

/*BEGIN .page_main_section_6*/
.page_main_section_6 .part_25 p > span{
	display: inline-block;
	line-height: 40px;
	/*cursor: pointer;*/

	-webkit-transition: font-family 0.3s ease-in-out, font-size 0.3s ease-in-out;
	transition: font-family 0.3s ease-in-out, font-size 0.3s ease-in-out;
}
.page_main_section_6 .part_25 p > span:hover{
	font-family: "NyghtSerif-Light";
	font-size: 2.4rem;
}
.page_main_section_6 .part_75 .map_block{
	position: relative;
}
.page_main_section_6 .part_75 .map_block svg{
	width: 100%;
	height: auto;
}
.page_main_section_6 .part_75 .map_block svg g:not(#map){
	opacity: 0.6;

	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
/*END .page_main_section_6*/

/*BEGIN .page_mission_and_principles_section_2*/
@media (max-width: 1250px){
	.page_mission_and_principles_section_2 .part_33{
		display: none;
	}
}
/*END .page_mission_and_principles_section_2*/

/*BEGIN .page_history_section_1*/
@media (max-width: 1250px){
	.page_history_section_1 .line_middle,
	.page_history_section_1 .line_middle_before{
		display: none;
	}
}
/*END .page_history_section_1*/

/*BEGIN .page_history_section_2*/
.page_history_section_2 .part_50{
	position: relative;
}
.page_history_section_2 .part_50 .alcoline_decor_classic{
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (max-width: 1250px){
	.page_history_section_2 .part_50 .alcoline_decor_classic{
		display: none;
	}
}
/*END .page_history_section_2*/

/*BEGIN .single_news_section_1*/
.single_news_section_1 .the_content img{
	width: 100%;
	height: auto;
}
.single_news_section_1 .the_content > img:not(:nth-child(2)),
.single_news_section_1 .the_content > p:not(:nth-child(2)) > img{
	margin-top: 80px;
}
.single_news_section_1 .the_content > img,
.single_news_section_1 .the_content > p > img{
	margin-bottom: 56px;
}
.single_news_section_1 .the_content h2,
.single_news_section_1 .the_content h3,
.single_news_section_1 .the_content h4,
.single_news_section_1 .the_content h5,
.single_news_section_1 .the_content h6{
	margin-bottom: 40px;

	font-family: "NyghtSerif-Light";
	font-size: 2.4rem;
	line-height: 1.16em;
}
.single_news_section_1 .the_content > p{
	margin-bottom: 24px;
}
.single_news_section_1 .bottom_part p{
	margin-bottom: 24px;
}
.single_news_section_1 .bottom_part p:not(:last-child) a{
	margin-right: 80px;
}
.single_news_section_1 .bottom_part a{
	display: inline-block;
	color: #A59B85 !important;
	line-height: 1.9em;
}
.single_news_section_1 .the_content a{
    font-style: italic;
	text-decoration: underline !important;
}

@media (max-width: 1250px){
	.single_news_section_1 .the_content > img:not(:nth-child(2)),
	.single_news_section_1 .the_content > p:not(:nth-child(2)) > img{
		margin-top: 32px;
	}
	.single_news_section_1 .the_content > img,
	.single_news_section_1 .the_content > p > img{
		margin-bottom: 32px;
	}
	.single_news_section_1 .bottom_part p:not(:last-child) a{
		margin-right: 0;
	}
}
/*END .single_news_section_1*/

/*BEGIN .category_item*/
.category_item{
	position: relative;
	display: block;
	padding-top: 64px;
	padding-bottom: 68px;
	border-bottom: 1px solid #A59B85;
	overflow: hidden;
}
.category_item:nth-child(1){
	border-top: 1px solid #A59B85;
}
.category_item svg{
	z-index: 1;
	position: absolute;
	top: 50%;
	right: 32px;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.category_item svg path{
	-webkit-transition: fill 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out;
}
body.dark .category_item svg path{
	fill: #DCD4C2;
}
.nothing_found{
	padding-top: 64px;
}

@media (min-width: 1251px){
	.category_item .first_text{
		z-index: 1;
		position: relative;
		display: block;

		-webkit-transition: transform 2s ease-in-out;
		transition: transform 2s ease-in-out;
	}
	.category_item:hover .first_text{
		-webkit-transform: translateX(32px);
		transform: translateX(32px);
	}
	.category_item .flex_block{
		z-index: 1;
		position: relative;
	}
	.category_item::before,
	.category_item::after{
		content: "";
		position: absolute;
		top: 162px;
		left: -100%;
		width: 3619px;
		/*height: 270px;*/
		height: calc(100% + 108px);
		opacity: 0;

		-webkit-transition: opacity 2s ease-in-out, top 2s ease-in-out, left 2s ease-in-out;
		transition: opacity 2s ease-in-out, top 2s ease-in-out, left 2s ease-in-out;
	}
	.category_item::before{
		background: url(../img/general/category_wave_2_light.png) repeat-x 0 0 / 100% 100%;
	}
	.category_item::after{
		background: url(../img/general/category_wave_1.png) repeat-x 0 0 / 100% 100%;
	}
	body.dark .category_item::before{
		background: url(../img/general/category_wave_2_dark.png) repeat-x 0 0 / 100% 100%;
	}
	.category_item:hover::before,
	.category_item:hover::after{
		top: -108px;
		left: 0;
		opacity: 1;
	}
}

@media (max-width: 1250px){
	.category_item{
		padding-right: 56px !important;
	}
	.category_item svg{
		right: 0;
	}
}
/*END .category_item*/

/*BEGIN .category_news_section_1*/
.category_news_section_1 .category_item{
	padding-right: 88px;
}
/*END .category_news_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 .pagination{
	padding-top: 116px;
}
.post_navigation .pagination h2{
	margin: 0;
}
.post_navigation .nav-links .current, .post_navigation .nav-links a{
	display: inline-block;
	width: 32px;
	height: 32px;

	color: inherit !important;
	line-height: 33px;
	text-align: center;
}
.post_navigation .nav-links .current:not(:last-child),
.post_navigation .nav-links a:not(:last-child){
	margin-right: 16px;
}
.post_navigation .nav-links .current{
	position: relative;
	background: #A59B85;
	color: #DCD4C2 !important;

	-webkit-border-radius: 100%;
	border-radius: 100%;

	-webkit-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
body.dark .post_navigation .nav-links .current{
	color: #011102 !important;
}
.post_navigation .nav-links .current, .post_navigation .nav-links .dots{
	cursor: default;
}
.post_navigation .nav-links .prev,
.post_navigation .nav-links .next{
	position: relative;
}

@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;
	}
}
/*END .post_navigation*/

/*BEGIN .category_vacancies_section_1*/
.category_vacancies_section_1 .category_item a{
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (min-width: 1251px){
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(1){
		padding-right: 32px;
	}
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(2),
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(3){
		padding-right: 16px;
	}
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(4){
		padding-right: 88px;
	}
}

@media (max-width: 1250px){
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(1),
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(2),
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(3){
		margin-bottom: 16px;
		padding-right: 0;
	}
	.category_vacancies_section_1 .category_item .flex_block > .part_25:nth-child(4){
		padding-right: 0;
	}
}
/*END .category_vacancies_section_1*/

/*BEGIN .single_vacancies_section_1*/
.single_vacancies_section_1 .back_link{
	position: relative;
	display: inline-block;
	padding-left: 40px;
	padding-right: 16px;
}
.single_vacancies_section_1 .back_link svg{
	position: absolute;
	top: -1px;
	left: 0;
	width: 24px;
    height: 24px;
}
.single_vacancies_section_1 .back_link svg circle,
.single_vacancies_section_1 .back_link svg path{
	-webkit-transition: fill 0.3s ease-in-out;
	transition: fill 0.3s ease-in-out;
}
body.dark .single_vacancies_section_1 .back_link svg circle{
	fill: #DCD4C2;
}
body.dark .single_vacancies_section_1 .back_link svg path{
	fill: #011102;
}
.single_vacancies_section_1 .first_data > *{
	display: inline-block;
}
.single_vacancies_section_1 .first_data > *:not(:last-child){
	margin-right: 40px;
}
.single_vacancies_section_1 .line{
	height: 1px;
	background: #A59B85;
}
.single_vacancies_section_1 ul,
.single_vacancies_section_1 ol{
	padding-left: 16px;
}
.single_vacancies_section_1 ul li:not(:last-child),
.single_vacancies_section_1 ol li:not(:last-child){
	margin-bottom: 8px;
}

@media (max-width: 1250px){
	.single_vacancies_section_1 .back_link,
	.single_vacancies_section_1 .cta_type_2{
		display: none;
	}
	.single_vacancies_section_1 .first_data > *{
		display: block;
	}
	.single_vacancies_section_1 .first_data > *:not(:last-child){
		margin-right: 0;
	}
}
/*END .single_vacancies_section_1*/

/*BEGIN .single_vacancies_section_2*/
.single_vacancies_section_2 .content_block{
	position: relative;
	border: 1px solid #DCD4C2;

	-webkit-border-radius: 40px;
	border-radius: 40px;

	-webkit-box-shadow: 8px 10px 12px rgba(220, 212, 194, 0.3);
	box-shadow: 8px 10px 12px rgba(220, 212, 194, 0.3);

	-webkit-transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
	transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
}
body.dark .single_vacancies_section_2 .content_block{
	border-color: #011102;

	-webkit-box-shadow: 8px 10px 12px rgba(1, 17, 2, 0.8);
	box-shadow: 8px 10px 12px rgba(1, 17, 2, 0.8);
}
.single_vacancies_section_2 .bg_part{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #DCD4C2;
	padding: 80px 20px;
	overflow: hidden;

	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;

	-webkit-border-radius: 40px;
	border-radius: 40px;
}
body.dark .single_vacancies_section_2 .bg_part{
	background-color: #011102;
}
.single_vacancies_section_2 .content_block .glass{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/general/glass_footer.png) no-repeat 0% 100% / cover;

	-webkit-border-radius: 40px;
	border-radius: 40px;
}

.single_vacancies_section_2 .form_simple{
	z-index: 1;
	position: relative;
}
.single_vacancies_section_2 .form_simple .part{
	padding: 0 20px;
}
.single_vacancies_section_2 .first_data > *{
	display: inline-block;
}
.single_vacancies_section_2 .first_data > *:not(:last-child){
	margin-right: 40px;
}

@media (max-width: 1250px){
	.single_vacancies_section_2 .first_data > *{
		display: block;
	}
	.single_vacancies_section_2 .first_data > *:not(:last-child){
		margin-right: 0;
	}
	.single_vacancies_section_2 .bg_part{
		padding: 64px 0;
	}
	.single_vacancies_section_2 .form_simple .part{
		padding: 0 16px;
	}
	.single_vacancies_section_2 .form_simple .form_go_block{
		text-align: center;
	}
}
/*END .single_vacancies_section_2*/

/*BEGIN .page_awards_section_1*/
.page_awards_section_1 .flex_block{
	-webkit-align-items: center;
	align-items: center;
}
.page_awards_section_1 .flex_block > *:not(:first-child){
	padding-right: 16px;
}
.page_awards_section_1 .flex_block > *:first-child img{
	max-width: 100%;
	height: auto;
}

@media (min-width: 1251px){
	.page_awards_section_1 .category_item:hover .first_text{
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.page_awards_section_1 .category_item::before,
	.page_awards_section_1 .category_item::after{
		display: none;
		background: none !important;
	}
	.page_awards_section_1 .category_item{
		padding-top: 32px;
		padding-bottom: 40px;
	}
}

@media (max-width: 1250px){
	.page_awards_section_1 .category_item{
		padding-right: 0 !important;
		text-align: center;
	}
	.page_awards_section_1 .flex_block > *:not(:first-child){
		padding-right: 0;
	}
	.page_awards_section_1 .flex_block > *:not(:last-child){
		margin-bottom: 24px;
	}
}
/*END .page_awards_section_1*/
