@font-face {
    font-family: 'A';
    src: url('../fonts/a/a-Regular.eot');
    src: url('../fonts/a/a-Regular.eot?#iefix') format("embedded-opentype"),
         url('../fonts/a/a-Regular.woff2') format("woff2"),
         url('../fonts/a/a-Regular.woff') format("woff"),
         url('../fonts/a/a-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'A';
    src: url('../fonts/a/a-Medium.eot');
    src: url('../fonts/a/a-Medium.eot?#iefix') format("embedded-opentype"),
         url('../fonts/a/a-Medium.woff2') format("woff2"),
         url('../fonts/a/a-Medium.woff') format("woff"),
         url('../fonts/a/a-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'A';
    src: url('../fonts/a/a-SemiBold.eot');
    src: url('../fonts/a/a-SemiBold.eot?#iefix') format("embedded-opentype"),
         url('../fonts/a/a-SemiBold.woff2') format("woff2"),
         url('../fonts/a/a-SemiBold.woff') format("woff"),
         url('../fonts/a/a-SemiBold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
	font-family: 'U';
	src: local('uadd.me U'), local('uadd.me U'),
		 url('../fonts/u/u-Regular.woff2') format('woff2'),
		 url('../fonts/u/u-Regular.woff') format('woff'),
		 url('../fonts/u/u-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--v_padding: 80px;
	--white: #FFF;
	--white_blur: rgba(255, 255, 255, .8);
	--light_corp: #D1C1FF;
	--black: #37246D;
	--corp: #8F68FF;
	--yellow: #FFCD62;
	--deep: #000239;

	--h1: 64px;
	--h2: 24px;
	--h3: 21px;
	--h4: 18px;
	--text: 16px;
	--note: 16px;
	--micro: 14px;
	--radius: 24px;
	--radius_big: 60px;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;

	background-color: var(--deep);
}

body {
	margin: 0;
	padding: 77px 0 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'A', sans-serif;
	line-height: 1.15;
	background-color: var(--deep);
	background-image: url('../images/body.bg.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	-webkit-font-smoothing: subpixel-antialiased;
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
}

.bone_bottom {
	padding-bottom: var(--v_padding);
}

/* button */

.button {
	display: block;
	position: relative;

	padding: 24px 60px;
	color: var(--white);
	font-size: 15px;
	font-family: 'U', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 160%;
	background-color: #7EA502;
	border-radius: 100px;
	box-shadow: 0 0 0 6px rgba(255, 253, 23, .2);
	cursor: pointer;

	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;

	transition: box-shadow .23s ease-out;
}

.button:hover {
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
}

.button:active {
	padding: 25px 60px 23px;
}

.button span {
	color: #313F03;
}

.button.black {
	background-color: var(--black);
	box-shadow: 0 0 0 4px rgba(55, 55, 55, .2);
}

.button.black:hover {
	box-shadow: 0 0 0 4px var(--black);
}

.button.black:before {
	background-image: url('../images/button_black.svg');
}

.button.black.full:before {
	background-image: url('../images/button_black_full.svg');
}

/* button */



/* global */

.global_wrapper {
	/*overflow: hidden;*/
}

.global_header {
	margin-bottom: 40px;
}

.global_header.center {
	text-align: center;
}

.global_pretitle {
	margin-bottom: 4px;
	color: var(--white);
	font-size: 24px;
	text-transform: uppercase;
	line-height: 180%;
}

.global_title {
	color: var(--white);
	font-size: var(--h1);
	font-family: 'U', sans-serif;
	line-height: 130%;
	text-shadow: 2px 2px 0 rgba(255, 255, 255, .2);
}

.global_title.mini {
	font-size: 48px;
}

.global_descr {
	margin-top: 8px;
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
}

.global_descr strong {
	font-weight: 500;
}

.global_tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;

	margin-top: 20px;
	padding: 4px;
	background-color: rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
}

.global_tags_block {
	padding: 12px 32px;
	color: var(--white);
	font-size: 12px;
	font-family: 'U', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 100px;
	cursor: pointer;

	transition: color .23s ease-out, background-color .23s ease-out;
}

.global_tags.mini .global_tags_block {
	padding: 4px 20px;
}

.global_tags_block:hover {
	background-color: #7EA502;
}

.global_tags_block.active {
	background-color: #7EA502;
}

.global_toggle {
	overflow: hidden;

	height: 52px;
	margin-top: 12px;
}

.global_toggle.open {
	height: auto;
}

.global_toggle_button {
	position: relative;
	display: inline-block;

	margin-top: 4px;
	padding-right: 24px;
	color: #F7FF45;
	font-size: var(--micro);
	text-transform: uppercase;
	cursor: pointer;
}

.global_toggle_button:before {
	content: '';
	position: absolute;
	top: 2px;
	right: 8px;

	width: 12px;
	height: 12px;
	background-image: url('../images/icons/info_light.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transition: transform .23s ease-out;
}

.global_toggle_button:hover:before {
	transform: rotateY(360deg);
}

/* global */



/* bar */

.bar {
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;

	max-width: 600px;
	width: 100%;

	background-color: var(--bg);
	z-index: 998;

	transition: transform .25s ease-out;
	transform: translateX(100%);
}

.bar.active {
	transform: translateX(0) !important;
}

.bar_scroll {
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	position: relative;

	width: calc(100% + 30px);
	height: 100vh;
	padding: 0 30px 0 0px;

	-webkit-overflow-scrolling: touch;
}

.bar_scroll::-webkit-scrollbar {
	width: 0;
}

.bar_scroll {
	-ms-overflow-style: none;
}

.bar_scroll {
	overflow: -moz-scrollbars-none;
}

.bar_nav {
	flex-grow: 1;

	padding: 120px 20px 40px;
}

.bar_nav_li {
	padding: 8px 0;
	text-align: center;
}

.bar_nav_li a {
	color: var(--black);
	font-size: var(--h3);
	text-align: center;
	line-height: 160%;

	transition: color .23s ease-out;
}

.bar_nav_li a:hover {
	color: var(--corp);
}

.bar_bottom {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 24px;

	padding-bottom: 80px;
}

/* bar */



/* header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	padding: 12px 0;
	z-index: 999;

	transition: top .23s ease-out;
}

.header.hidden {
	top: -88px;
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.header_general {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	height: 66px;
	padding: 12px 20px 12px 12px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: 100px;

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.header_logo {
	position: relative;

	width: 53px;
	height: 42px;
	cursor: pointer;

	transition: transform .43s ease-in-out;
}

.header_logo:hover {
	transform: rotate(540deg);
}

.header_logo img {
	position: absolute;
	top: -16px;
	left: 0;
}

.header_nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.header_nav a {
	color: var(--white);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;

	transition: color .23s ease-out;
}

.header_nav a:hover {
	color: #7EA502;
}

.header_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.header_socs_block {
	display: inline-block;

	padding: 8px 16px;
	background-color: #7EA502;
	border-radius: 100px;

	transition: transform .23s ease-out;
}

.header_socs_block:hover {
	transform: scale(1.1);
}

.header_socs_block img {
	width: 24px;
}

.header_button {

}

/* header */



/* maper */

.maper {
	position: relative;

	padding: var(--v_padding) 0;
	z-index: -1;
}

/* maper */



/* general */

.general {
	padding-top: var(--v_padding);
}

.general_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.general_logo {
	width: 100%;
	max-width: 600px;
}

.general_logo img {

}

.general_year {
	margin-bottom: 12px;
	padding: 8px 20px;
	color: #FFF;
	font-size: 19px;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 16px 4px rgba(255, 255, 255, .8);
	border-radius: 100px;

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.general_descr {
	margin-top: 40px;
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
	text-align: center;
}

.general_descr span {
	color: #7EA502;
}

.general_descr strike {
	opacity: .4;
}

.general_button {

}

.general_note {
	margin-top: 4px;
	color: var(--white);
}

.general_partner {
	margin-top: 20px;
}

.general_partner_label {
	color: var(--white);
	font-size: 21px;
	font-family: 'U', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 130%;
	text-shadow: 2px 2px 0 rgba(255, 255, 255, .2);
}

.general_partner_logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	max-width: 368px;
	height: 126px;
	margin: 20px auto 0;
	padding: 12px 40px;
	background-color: var(--white);
	border-radius: var(--radius);
}

/* general */



/* edges */

.edges {
	padding-top: var(--v_padding);
}

.edges_group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
}

.edges_block {
	width: calc(25% - 15px);
	padding: 20px 20px 16px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.edges_block.double {
	width: calc(100% / 3 - 40px / 3);
}

.edges_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.edges_icon {
	width: 44px;
	padding: 12px;
	background-color: #7EA502;
	border-radius: 8px 22px 22px;
}

.edges_icon img {

}

.edges_count {
	color: var(--white);
	font-size: 32px;
	font-family: 'U', sans-serif;
}

.edges_label {
	margin-top: 12px;
	color: var(--white);
	font-size: var(--note);
	line-height: 160%;
}

.edges_header .edges_label {
	width: calc(100% - 56px);
	margin-top: 0;
}

/* edges */



/* about */

.about {
	padding-top: var(--v_padding);
}

.about_group {
	position: relative;
}

.about_header {

}

.about_row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about_col {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;

	width: calc(50% - 10px);
}

.about_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 28px;

	padding: 60px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius_big);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.about_title {
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
	line-height: 180%;
}

.about_title span {
	color: #CCCC20;
}

.about_text  {
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
}

.about_text span {
	color: #CCCC20;
	font-weight: 500;
}

.about_text strong {
	font-weight: 500;
}

.about_text em {
	font-size: var(--h3);
	font-style: italic;
}

.about_text.quote {
	padding-left: 24px;
	font-size: 15px;
	border-left: 4px solid #CCCC20;
	border-radius: 12px;
}

.about_usp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;

	margin-top: 40px;
}

.about_usp_label {
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
}

.about_usp_button {

}

.about_sticky {
	position: relative;

	height: 100%;
}

.about_video {
	overflow: hidden;
	position: sticky;
	top: 32px;

	height: 360px;
}

.about_video_player_preview {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	border-radius: var(--radius_big);
	border: 4px solid var(--white);
	cursor: pointer;
}

.about_video_player_preview img {
	object-fit: cover;

	height: 100%;
}

.about_video_player_play {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 120px;
	height: 120px;
	margin: -60px 0 0 -60px;
	background-image: url('../images/play.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	cursor: pointer;

	transition: transform .23s ease-out;
}

.about_video_player:hover .about_video_player_play {
	transform: scale(1.1);
}

/* about */



/* lister */

.lister {
	padding-top: var(--v_padding);
}

.lister_group {

}

.lister_header {

}

.lister_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.lister_block {
	position: relative;

	padding: 16px 28px 16px 64px;
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
	background: rgba(255, 253, 23, .02);
	box-shadow: inset 0 0 24px 4px rgba(255, 253, 23, .8);
	border-radius: var(--radius);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.lister_block:before {
	content: '';
	position: absolute;
	top: 18px;
	left: 20px;

	width: 28px;
	height: 28px;
	background-image: url('../images/icons/5.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/* lister */



/* speakers */

.speakers {
	padding-top: var(--v_padding);
}

.speakers_group {

}

.speakers_header {

}

.speakers_row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.speakers_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	width: calc(25% - 30px);
}

.speakers_image {
	width: 100%;
	padding: 0 12px;
}

.speakers_image img {

}

.speakers_info {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;

	width: 100%;
	padding: 20px 20px 16px;
	background-color: rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
}

.speakers_name {
	color: var(--white);
	font-size: var(--h4);
	font-family: 'U', sans-serif;
	line-height: 130%;
}

.speakers_descr {
	flex-grow: 1;

	margin-top: 8px;
	color: var(--white);
	font-size: var(--micro);
	line-height: 160%;
}

.speakers_button {
	position: relative;

	margin-top: 20px;
	padding: 11px 8px 11px 20px;
	color: var(--white);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 14px;
	background: #000239;
	background: linear-gradient(180deg,rgba(4, 6, 60, 1) 0%, rgba(45, 47, 92, .8) 100%);
	border-radius: 100px;
	cursor: pointer;

	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
}

.speakers_button:before {
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;

	width: 20px;
	height: 20px;
	background-image: url('../images/icons/info.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transition: transform .23s ease-out;
}

.speakers_button:active {
	background: #000239;
}

.speakers_button:hover:before {
	transform: rotateY(360deg);
}

.speakers_logo {
	position: absolute;
	right: 0;
	bottom: calc(100% - 10px);

	padding: 20px;
	background-color: var(--white);
	border-radius: var(--radius) var(--radius) var(--radius) 8px;
}

.speakers_logo.w_120 img {
	width: 120px;
}

.speakers_logo.h_60 img {
	width: auto;
	height: 60px;
}

.speakers_logo.h_40 img {
	width: auto;
	height: 40px;
}

.speakers_logo.w_f {
	padding: 0;
}

.speakers_logo.w_f img {
	width: 120px;
	border-radius: var(--radius) var(--radius) var(--radius) 8px;
}

/* speakers */



/* members */

.members {
	padding-top: var(--v_padding);
}

.members_group {

}

.members_header {

}

.members_logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.members_logos_labels {
	
}

.members_logos_label {
	padding-bottom: 20px;
	color: var(--white);
	font-size: 21px;
	font-family: 'U', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 130%;
	text-shadow: 2px 2px 0 rgba(255, 255, 255, .2);
}

.members_logos_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	height: 126px;
	padding: 12px 40px;
	background-color: var(--white);
	border-radius: var(--radius);
}

.members_logos_block img {
	width: auto;
	max-width: 288px;
	max-height: 80px;
}

.members_logos_block.big {
	height: 160px;
	background-color: var(--white);
}

.members_logos_block.big img {
	width: auto;
	max-width: 428px;
	max-height: 120px;
}

.members_button {
	margin-top: 40px;
}

.members_logos_sound {
	width: calc(100% / 3 - 40px / 3);
}

.members_logos_sound_image {

}

.members_logos_sound_image img {
	border-radius: var(--radius);
	border: 1px solid var(--light_corp);
	border-left-width: 8px;
}

.members_logos_sound_title {
	padding: 20px 0 0 20px;
	color: var(--white);
	font-size: var(--h3);
	font-family: 'U', sans-serif;
	line-height: 130%;
}

.members_logos.labels + .members_logos.labels {
	margin-top: 40px;
}

/* members */



/* liner */

.liner {
	overflow: hidden;
}

.liner.top {
	margin-bottom: -2px;
}

.liner.bottom {
	margin-top: -2px;
}

.liner img {
	width: calc(100% + 20px);
	margin: 0 -10px;
}

/* liner */



/* history */

.history {
	padding-top: var(--v_padding);
}

.history_group {
	padding: 0 var(--v_padding);
}

.history_header {

}

.history_slider {

}

.history_slide {

}

.history_slide img {
	border: 4px solid var(--white);
	border-radius: var(--radius_big);
}

.history_slider .swiper-slide {
	width: 600px;
}

.history_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	margin-top: 40px;
}

/* history */



/* tickets */

.tickets {
	padding-top: var(--v_padding);
}

.tickets_group {
	position: relative;
}

.tickets_header {

}

.tickets_plans {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

	margin: 0 auto;
}

.tickets_plans_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	width: calc(100% / 3 - 40px / 3);
	padding: 32px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius_big);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.tickets_plans_title {
	color: var(--white);
	font-size: 40px;
	font-family: 'U', sans-serif;
	text-align: center;
}

.tickets_plans_title span {
	font-size: var(--h3);
}

.tickets_plans_ul {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 24px;

	margin-top: 40px;
}

.tickets_plans_li {
	position: relative;

	width: 100%;
	padding-left: 44px;
	color: var(--white);
	font-size: var(--text);
	line-height: 140%;
}

.tickets_plans_li:before {
	content: '';
	position: absolute;
	top: -6px;
	left: 0;

	width: 28px;
	height: 28px;
	background-image: url('../images/icons/5.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.tickets_plans_bar {
	margin-top: 40px;
}

.tickets_plans_price {
	color: var(--white);
	font-size: var(--text);
	text-align: center;
}

.tickets_plans_price span {
	display: inline-block;

	margin-top: 8px;
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
}

.tickets_plans_price strike {
	display: inline-block;

	padding-left: 12px;
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
	opacity: .4;
}

.tickets_plans_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tickets_now {
	color: var(--white);
	font-size: var(--text);
	line-height: 160%;
}

.tickets_note {
	display: none;

	font-size: 12px;
	text-align: center;
}

.tickets_notes {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 20px;

	margin-top: 40px;
}

.tickets_notes_block {
	position: relative;

	max-width: 1056px;
	padding: 0 28px;
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
}

.tickets_notes_block:before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;

	width: 20px;
	height: 20px;
	background-image: url('../images/icons/6.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.tickets_attan {
	margin-top: 20px;
	color: var(--white);
	font-size: 12px;
	text-align: center;
	line-height: 140%;
}

/* tickets */



/* faq */

.faqs {
	padding-top: var(--v_padding);
}

.faqs_group {

}

.faqs_header {

}

.faqs_blocks {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	max-width: 1000px;
	margin: 0 auto;
}

.faqs_block {
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);

	transition: background-color .23s ease-out, border-color .23s ease-out;
}

.faqs_block:hover {
	background-color: rgba(255, 255, 255, .02);
	border-color: transparent;
}

.faqs_block.active {
	background-color: rgba(255, 255, 255, .02);
	border-color: transparent;
}

.faqs_title {
	position: relative;

	padding: 20px 20px 20px 28px;
	color: var(--white);
	font-size: var(--h3);
	font-family: 'U', sans-serif;
	line-height: 160%;
	cursor: pointer;

	transition: color .23s ease-out;
}

.faqs_block.active .faqs_title {
	color: #F7FF45;
}

.faqs_title:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;

	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-image: url('../images/icons/faqs_plus.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transition: transform .23s ease-out;
}

.faqs_block.active .faqs_title:before {
	transform: rotate(90deg);
}

.faqs_descr {
	display: none;

	padding: 0 20px 20px 28px;
	color: var(--white);
	font-size: var(--text);
	line-height: 180%;
}

.faqs_descr strong {
	font-weight: 500;
}

/* faq */



/* contacts */

.contacts {
	padding: var(--v_padding) 0 20px;
}

.contacts_group {

}

.contacts_header {

}

.contacts_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contacts_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	width: calc(100% / 3 - 40px / 3);
	padding: 40px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.contacts_row {
	padding: 12px 20px;
}

.contacts_label {
	color: #F7FF45;
	font-size: var(--text);
	font-family: 'U', sans-serif;
	text-align: center;
	line-height: 160%;
}

.contacts_title {
	color: var(--white);
	font-size: var(--text);
	text-align: center;
	line-height: 160%;
}

.contacts_title.note {
	opacity: .4;
}

.contacts_title a {
	color: var(--white);
	font-size: 21px;
	text-align: center;
	line-height: 160%;
}

/* contacts */



/* footer */

.footer {
	position: relative;

	padding-bottom: var(--v_padding);
}

.footer_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 40px;

	padding: 40px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius) var(--radius) var(--radius_big) var(--radius_big);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.footer_logo {
	width: 54px;
}

.footer_logo img {

}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer_nav a {
	color: #F7FF44;
	font-size: 12px;
	font-weight: 500;
	font-family: 'U', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;

	transition: color .23s ease-out;
}

.footer_nav.mail a {
	color: var(--white);
	font-size: var(--text);
	font-weight: 400;
	font-family: 'A', sans-serif;
	text-transform: none;
}

.footer_nav a:hover {
	color: var(--white);
}

.footer_nav.mail a:hover {
	color: #F7FF44;
}

.footer_copy {
	color: var(--white);
	font-size: var(--text);
	text-align: center;
	opacity: .4;
}

/* footer */



/* star */

.star {
	pointer-events: none;
	position: fixed;
	top: 0;
	left: calc(-50vh + 20px);

	height: 100vh;
	opacity: .4;

	transition: transform .23s ease-out;
}

.star img {
	width: auto;
	height: 100%;
}

/* star */



/* circle */

.circle {
	display: none;
	position: absolute;

	width: 180px;
	height: 180px;
	background-color: #7EA502;
	border-radius: 50%;
	z-index: -1;
}

.circle.image {
	background-color: transparent;
}

.circle_edges {
	top: -124px;
	right: -30px;
}

.circle_edges img {
	transform: rotate(-15deg);
}

.circle_about {
	left: -160px;
	bottom: 40px;
}

.circle_about img {
	transform: rotate(-8deg);
}

.circle_tickets {
	top: 80px;
	right: 80px;
}

.circle_tickets img {
	transform: rotate(-15deg);
}

.circle_footer {
	top: -120px;
	right: -40px;
}

/* circle */



/* routine */

.routine {
	padding-top: var(--v_padding);
}

.routine_group {

}

.routine_header {

}

.routine_blocks {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px;
	background: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius_big);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.routine_block {
	position: relative;

	margin-bottom: 16px;
	padding: 0 0 12px 36px;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.routine_block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0 none;
}

.routine_block:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;

	width: 20px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.routine_block.start:before {
	background-image: url('../images/icons/start.svg?2');
}

.routine_block.speaker:before {
	background-image: url('../images/icons/speaker.svg?2');
}

.routine_block.eat:before {
	background-image: url('../images/icons/eat.svg?2');
}

.routine_block.music:before {
	background-image: url('../images/icons/music.svg?2');
}

.routine_block.coffee:before {
	background-image: url('../images/icons/coffee.svg?2');
}

.routine_block.networking:before {
	background-image: url('../images/icons/networking.svg?2');
}

.routine_block.question:before {
	background-image: url('../images/icons/question.svg?2');
}

.routine_block.secret:before {
	background-image: url('../images/icons/secret.svg?2');
}

.routine_block.teatr:before {
	background-image: url('../images/icons/teatr.svg?2');
}

.routine_block.camera:before {
	background-image: url('../images/icons/camera.svg?2');
}

.routine_h3 {
	margin-bottom: 36px;
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
}

.routine_time {
	color: var(--white);
	font-size: var(--note);
	line-height: 160%;
}

.routine_title {
	color: var(--white);
	font-size: var(--text);
	font-family: 'U', sans-serif;
	line-height: 160%;
}

.routine_title span {
	color: var(--white);
	cursor: pointer;

	transition: color .23s ease-out;
}

.routine_title span:hover {
	color: #F7FF45;
}

.routine_descr {
	color: var(--white);
	font-size: var(--micro);
	line-height: 180%;
}

.routine_descr.right {
	padding-right: 104px;
}

.routine_theme {
	margin-bottom: 16px;
	padding: 0 0 16px 36px;
	color: #F7FF45;
	font-size: var(--micro);
	line-height: 180%;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.routine_image {
	position: absolute;
	right: 0;
	bottom: 0;

	width: 92px;
}

.routine_image img {
	cursor: pointer;

	transition: transform .23s ease-out;
	transform-origin: center bottom;
}

.routine_image.right {
	right: 92px;
}

.routine_images {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	margin-bottom: -12px;
	padding-top: 12px;
}

.routine_images img {
	width: 92px;
	cursor: pointer;

	transition: transform .23s ease-out;
	transform-origin: center bottom;
}

.routine_image img:hover,
.routine_images img:hover {
	transform: scale(1.1);
}

/* routine */



/* modal speakers */

.modal_speakers {
	display: flex;
	flex-wrap: wrap;
}

.modal_speakers_left {
	width: 330px;
	padding-right: 40px;
}

.modal_speakers_left_image {
	position: sticky;
	top: 60px;

	border-bottom: 1px solid #CCCC20;
}

.modal_speakers_left_image img {

}

.modal_speakers_right {
	width: calc(100% - 330px);
	padding: 60px 40px 40px 60px;
	background-color: rgba(255, 255, 255, .12);
	box-shadow: inset 0 0 32px 4px rgba(255, 255, 255, .8);
	border-radius: var(--radius_big);

	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
}

.modal_speakers_left_name {
	color: var(--white);
	font-size: var(--h2);
	font-family: 'U', sans-serif;
	line-height: 130%;
}

.modal_speakers_start {
	margin-top: 8px;
	color: #CCCC20;
	font-size: var(--micro);
	line-height: 160%;
}

.modal_speakers_logo {
	display: inline-block;

	margin-top: 20px;
	padding: 20px;
	background-color: var(--white);
	border-radius: 8px var(--radius) var(--radius) var(--radius);
}

.modal_speakers_logo.w_120 img {
	width: 120px;
}

.modal_speakers_logo.h_60 img {
	width: auto;
	height: 60px;
}

.modal_speakers_logo.h_40 img {
	width: auto;
	height: 40px;
}

.modal_speakers_logo.w_f {
	padding: 0;
}

.modal_speakers_logo.w_f img {
	width: 120px;
	border-radius: 8px var(--radius) var(--radius) var(--radius);
}

.modal_speakers_descr {
	margin-top: 40px;
}

.modal_speakers_descr p {
	margin-top: 12px;
	color: var(--white);
	font-size: 16px;
	line-height: 180%;
}

/* modal speakers */
















/* animation */

.animation_up {
	overflow: hidden;
	display: inline-block;
}

.animation_up span {
	display: inline-block;

	font-size: var(--h1);
	text-transform: uppercase;
	line-height: 100%;
	opacity: 0;

	will-change: transform, opacity;
	transform-origin: bottom left;
	transform: translate3d(0, 150%, 0) skew(0, 20deg);
	transition: opacity .23s ease-in-out, transform .63s ease-in-out;
}

.animation_up.active span {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_line.active:before {
	width: 100%;
}

.animation_opacity {
	opacity: 0;

	transform: translate3d(40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_opacity.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_top {
	opacity: 0;

	transform: translate3d(0, 40px, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_top.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_clop {
	opacity: 0;

	transform: rotate3d(1, 1, 0, 60deg);
	transform-origin: left bottom;
	transition: opacity .63s ease-in-out, transform .53s ease-in;
}

.animation_clop.active {
	opacity: 1;

	transform: rotate3d(0, 0, 0, 0deg);
}

.animation_rotate {
	opacity: 0;

	transform: rotate(-90deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate.active {
	opacity: 1;

	transform: rotate(90deg);
}

.animation_rotate_2 {
	opacity: 0;

	transform: rotate(-25deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate_2.active {
	opacity: 1;

	transform: rotate(0);
}

.animation_levitate {
	will-change: transform;

	animation: levitate-animation 8s ease-in-out infinite alternate;
}

.animation_orbita {
	will-change: transform;

	animation: orbita-animation 16s ease-in-out infinite alternate;
}

@keyframes orbita-animation {
	from {
		transform: rotate(0deg) translateX(40px) rotate(0deg);
	}
	to {
		transform: rotate(360deg) translateX(40px) rotate(-360deg);
	}
}

@keyframes levitate-animation {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(3%, -5%, 0);
	}
	100% {
		transform: translate3d(0, -7%, 0);
	}
}

/* animation */




@media only screen and (max-width: 1260px) {
	.bone {
		padding: 0 40px;
	}

	/* button */

	.button {
		padding-left: 40px;
		padding-right: 40px;
	}

	/* button */



	/* header */

	.header_nav {
		gap: 16px;
	}

	.header_socs {
		gap: 8px;
	}

	/* header */



	/* speakers */

	.speakers_block {
		width: calc(100% / 3 - 80px / 3);
	}

	/* speakers */
}

@media only screen and (max-width: 1160px) {
	:root {
		--h1: 48px;
	}

	/* header */

	.header_nav {
		display: none;
	}

	/* header */
}

@media only screen and (max-width: 1024px) {
	:root {
		--h2: 21px;
		--h3: 18px;
	}

	/* header */

	.header_nav {
		display: none;
	}

	/* header */



	/* contacts */

	.contacts_title a {
		font-size: 18px;
	}

	/* contacts */



	/* edges */

	.edges_block {
		width: calc(50% - 10px);
	}

	/* edges */
}

@media only screen and (max-width: 980px) {
	:root {
		--h1: 36px;
		--h2: 18px;
		--text: 14px;
		--note: 12px;
		--radius: 20px;
		--radius_big: 32px;
		--v_padding: 60px;
	}

	.bone {
		max-width: 600px;
		padding: 0 20px;
	}

	.button {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	/* global */

	.global_title.mini {
		font-size: var(--h1);
	}

	.global_title br {
		display: none;
	}

	.global_tags.mini .global_tags_block {
		width: 100%;
	}

	/* global */



	/* header */

	.header_button {
		display: none;
	}

	/* header */



	/* general */

	.general_logo {
		padding: 0 20px;
	}

	/* general */



	/* edges */

	.edges_block.double {
		width: 100%;
	}

	.edges_count {
		font-size: 24px;
	}

	.edges_icon {
		width: 36px;
	}

	/* edges */



	/* about */

	.about_row {
		gap: 20px;
	}

	.about_col {
		gap: 20px;

		width: 100%;
	}

	.about_block {
		padding: 32px;
	}

	.about_usp {
		gap: 20px;
	}

	.about_usp_label {
		text-align: center;
	}

	.about_video {
		height: 300px;
	}

	.about_video_player_preview img {
		border-radius: 0;
	}

	/* about */



	/* lister */

	.lister_row {
		gap: 8px;
	}

	.lister_block {
		padding: 12px 24px 12px 48px;
	}

	.lister_block::before {
		top: 15px;
		left: 16px;
		width: 20px;
		height: 20px;
	}

	/* lister */



	/* speakers */

	.speakers_block {
		width: 100%;
	}

	.speakers_image img {
		max-width: 290px;
		margin: 0 auto;
	}

	/* speakers */



	/* members */

	.members_logos {
		gap: 8px;
	}

	.members_logos.labels {
		gap: 32px;
	}

	.members_logos_label {
		font-size: 16px;
	}

	.members_logos_block {
		height: 80px;
		padding: 12px 20px;
	}

	.members_logos_block img {
		max-width: 160px;
 		max-height: 40px;
	}

	.members_logos_sound {
		width: 100%;
	}

	.members_logos_block.big img {
		max-width: 100%;
	}

	/* members */



	/* history */

	.history_group {
		padding: 0;
	}

	.history_slider .swiper-slide {
		width: 100%;
	}

	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}

	/* history */



	/* tickets */

	.tickets_table {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		border: 1px solid var(--light_corp);
		border-left-width: 8px;
		border-radius: var(--radius);
	}

	.tickets_row:first-child {
		display: none;
	}

	.tickets_row:nth-child(2) {
		border-top: 0 none;
	}

	.tickets_row {
		padding: 12px 0;
	}

	.tickets_col.mob {
		display: none;
	}

	.tickets_col {
		width: 100%;
		padding: 4px 20px;
	}

	.tickets_future {
		text-align: center;
	}

	.tickets_now {
		text-align: center;
	}

	.tickets_title {
		font-size: var(--h3);
		font-family: 'U', sans-serif;
		text-align: center;
	}

	.tickets_plans_block {
		padding: 32px;
	}

	.tickets_usp_title {
		text-align: center;
	}

	.tickets_note {
		display: block;
	}

	/* tickets */



	/* contacts */

	.contacts {
		padding-bottom: 20px;
	}

	.contacts_blocks {
		gap: 20px;
	}

	.contacts_block {
		width: 100%;
	}

	.contacts_row:first-child {
		border-top: 0 none;
	}

	/* contacts */



	/* plans */

	.tickets_plans_block {
		width: 100%;
	}

	.tickets_plans_title {
		font-size: 24px;
	}

	/* plans */



	/* footer */

	.footer_nav {
		justify-content: center;
	}
	
	/* footer */



	/* routine */

	.routine_h3 {
		margin-bottom: 16px;
	}

	.routine_block {
		padding-left: 28px;
	}

	.routine_theme {
		padding-left: 28px;
	}

	.routine_block:before {
		top: 1px;

		width: 16px;
		height: 16px;
	}

	.routine_blocks {
		padding: 24px 20px;
	}

	/* routine */



	/* modal speakers */

	.modal_speakers_left {
		width: 100%;
		padding-right: 0;
	}

	.modal_speakers_left_image {
		border-bottom: 0 none;
	}

	.modal_speakers_left_image img {
		max-width: 290px;
		margin: 0 auto;
	}

	.modal_speakers_right {
		width: 100%;
		padding: 20px 24px;
	}

	/* modal speakers */
}

@media only screen and (max-width: 660px) {
	/* global */

	.global_toggle {
		height: 44px;
	}

	/* global */



	/* routine */

	.routine_descr {
		font-size: 12px;
	}

	.routine_descr.right {
		padding-right: 0;
	}

	.routine_image {
		position: relative;

		padding-top: 12px;
		margin-bottom: -12px;
	}

	.routine_image.right {
		position: absolute;
		left: 120px;
		right: auto;

		margin-bottom: 0;
	}

	.routine_images {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.routine_images {
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE and Edge */
	}

	.routine_images::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera */
	}

	.routine_images img {
		width: 100%;
		max-width: 48px;
	}

	/* routine */
}