/* ========================================================================== 
	General
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
:root {
	--text-color:			#45484F;
	--text-color-xlight:	#777B87;
	--text-color-light:		#8E8E9E;
	--text-color-middle:	#696978;
	--text-color-dark:		#50505A;
	--link-color:			#7557E0;
	--link-hover-color:		#333;
	--system-color-0:		255,255,255;
	--system-color-1:		140,210,220;
	--system-color-2:		200,235,235;
	--system-color-3:		170,220,235;
	--system-color-4:		170,170,195;
	--system-color-5:		0,0,0;
	--system-color-6:		195,205,225;
	--accent2:				#B29BFD;
	--map-color-0:			#006633;
	--map-color-1:			#ff0000;
	--map-color-2:			#FF852E;
	--map-color-3:			#B257BA;
	--map-color-4:			#ADA6F8;
	--map-color-5:			115,85,225;
	--social-link:			#8C7FFF;
	--to-top-border:		rgba(77,76,87,0.5);
	--to-top-hover:			rgba(58,58,66,0.95);
}
body {
	font-family:"Roboto Flex";
	color:var(--text-color);
	background:rgba(75, 55, 145, 1);
}
img {
	display:block; 
	max-width:100%;
	}
a, button {
	cursor:pointer;
	}
a {
	color:var(--link-color);
	text-decoration:none;
	border-bottom:0;
	outline:none;
	border-bottom:1px solid var(--link-color);
}
.logo a {
	text-decoration:none;
	border:0;
	outline:none;
}
.logo a:hover {
	text-decoration:none;
	border:0;
	outline:none;
}
a:hover {
	color:var(--link-hover-color);
	border-bottom:none;
	text-decoration:none;
}
*, *:after, *:before {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.container-fluid {
	max-width:1600px;
}

/* ========================================================================== 
   Navigation
   ========================================================================== */
body.overflow-hidden {
	overflow:hidden;
}
.collapse {
	display:block; 
	clear:both;
	}
.menu-block {
	z-index:10000;
	position:absolute;
	-webkit-transition:all 0.7s ease-in-out;
	transition:all 0.7s ease-in-out;
}
@media (min-width:960px) {
	.menu-block {
		top:40px; 
		right:80px;
	}
}
@media (max-width:959px) {
	.menu-block {
		top:15px; 
		right:60px;
	}
}
.cd-container {
	width:90%; 
	max-width:768px; 
	margin:0 auto;
}
.cd-container:after {
	content:""; 
	display:table; 
	clear:both;
}
.cd-header {
	-webkit-transition:background-color 0.3s; 
	-moz-transition:background-color 0.3s; 
	transition:background-color 0.3s; 
	-webkit-transform:translate3d(0, 0, 0); 
	-moz-transform:translate3d(0, 0, 0); 
	-ms-transform:translate3d(0, 0, 0); 
	-o-transform:translate3d(0, 0, 0); 
	transform:translate3d(0, 0, 0); 
	-webkit-backface-visibility:hidden; 
	backface-visibility:hidden; 
	box-shadow:none;
}
.cd-header.menu-is-open {
	left:-14px;
}
.cd-primary-nav-trigger {
	width:56px; 
	height:56px; 
	border-radius:50%;
	padding-left:0; 
	padding-right:0; 
	background:var(--link-color);
	z-index:10000;
	position:absolute; 
	right:0; 
	top:0;
	text-decoration:none;
	border-bottom:none;
}
.cd-primary-nav-trigger .cd-menu-icon {
	display:inline-block; 
	position:absolute; 
	left:auto; 
	right:0; 
	top:50%; 
	-webkit-transform:translateX(-50%) translateY(-50%); 
	-moz-transform:translateX(-50%) translateY(-50%); 
	-ms-transform:translateX(-50%) translateY(-50%); 
	-o-transform:translateX(-50%) translateY(-50%); 
	transform:translateX(-50%) translateY(-50%); 
	width:28px; 
	height:2px; 
	-webkit-transition:background-color 0.3s; 
	-moz-transition:background-color 0.3s; 
	transition:background-color 0.3s;
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon::after {
	content:''; 
	width:100%; 
	height:100%; 
	position:absolute; 
	right:0; 
	-webkit-transition:-webkit-transform .3s, top .3s, background-color 0s; 
	-moz-transition:-moz-transform .3s, top .3s, background-color 0s; 
	transition:transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	top:-8px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
	top:8px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
	top:0;
	-webkit-transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-ms-transform:rotate(135deg);
	-o-transform:rotate(135deg);
	transform:rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
	top:0;
	-webkit-transform:rotate(225deg);
	-moz-transform:rotate(225deg);
	-ms-transform:rotate(225deg);
	-o-transform:rotate(225deg);
	transform:rotate(225deg);
}
.cd-primary-nav {
	position:fixed; 
	left:0; 
	top:0; 
	height:100%; 
	width:100%; 
	z-index:4000; 
	text-align:center; 
	-webkit-backface-visibility:hidden; 
	backface-visibility:hidden; 
	overflow:auto; -webkit-overflow-scrolling:touch; 
	opacity:0; 
	visibility:hidden; 
	-moz-transition:opacity 10ms linear, visibility 0s linear 10ms; -o-transition:opacity 10ms linear, visibility 0s linear 10ms; 
	-webkit-transition:opacity 10ms linear, visibility 0s linear; 
	-webkit-transition-delay:0s, 10ms; 
	transition:opacity 10ms linear, visibility 0s linear 10ms;
}
@media (min-width:960px) {
	.cd-primary-nav {
		margin:0; 
		padding:0;
	}
	.cd-header {
		position:absolute; 
		top:20px; 
		left:0px; 
		height:48px; 
		width:54px; 
		z-index:30000; 
		-webkit-font-smoothing:antialiased; 
		-moz-osx-font-smoothing:grayscale;
	}
}
@media screen and (min-width:320px) and (max-width:959px) {
	.cd-primary-nav {
		margin:0; 
		padding:0 50px 0 50px;
	}
	.cd-header {
		position:absolute; 
		top:20px; 
		left:-10px; 
		height:48px; 
		width:54px; 
		z-index:30000; 
		-webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
	}
}
.cd-primary-nav ul {
	list-style:none;
	margin-left:0;
	padding-left:0;
}
.cd-primary-nav li {
	font-weight:300;
	padding-left:0;
	text-align:center;
}
@media (min-width:1134px) {
	.cd-primary-nav li {
		margin:0 auto 1em auto;
	}
}
@media screen and (min-width:959px) and (max-width:1133px) {
	.cd-primary-nav li {
		margin:0 auto 0.95em auto;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.cd-primary-nav li {
		margin:0 auto 0.9em auto;
	}
}
@media screen and (min-width:320px) and (max-width:767px) {
	.cd-primary-nav li {
		margin:0 auto 0.75em auto;
	}
}
.cd-primary-nav a {
	color:#fff;
}
.no-touch .cd-primary-nav a:hover, .cd-primary-nav a:hover  {
	text-decoration:none;
	border-bottom:0;
}
.cd-primary-nav.is-visible {
	opacity:0.96; 
	visibility:visible; 
	-moz-transition:opacity 15ms linear, visibility 0s linear; 
	-o-transition:opacity 15ms linear, visibility 0s linear; 
	-webkit-transition:opacity 15ms linear, visibility 0s linear; 
	transition:opacity 15ms linear, visibility 0s linear;
}
.sf-menu-wrapper {
	margin-bottom:20px;
}
.sf-menu-wrapper li {
	color:#fff;
	font-size:var(--x-large-text-size);
}
.sf-menu-wrapper i {
	margin-left:5px;
}
.sf-menu-wrapper h3 {
	color:#fff;
	font-weight:400;
	text-transform:uppercase;
	margin-bottom:20px;
}
.cd-header {
	background:rgba(255,255,255,0);
}
.cd-header.menu-is-open {
	background-color:rgba(255,255,255,0);
}
.cd-primary-nav-trigger .cd-menu-icon {
	background-color:rgb(255,255,255);
}
.cd-primary-nav-trigger .cd-menu-icon::before, 
.cd-primary-nav-trigger .cd-menu-icon::after {
	background-color:rgb(255,255,255);
}
.cd-primary-nav-trigger:hover .cd-menu-icon.is-clicked::before, 
.cd-primary-nav-trigger:hover .cd-menu-icon.is-clicked::after,  
.cd-primary-nav-trigger:hover .cd-menu-icon,  
.cd-primary-nav-trigger:hover .cd-menu-icon::before.cd-primary-nav-trigger:hover .cd-menu-icon::after {
	background-color:rgb(145,95,255);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, 
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
	background-color:rgb(255,255,255);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
	background-color:transparent;
}
.cd-primary-nav {
	background-color:rgba(145,95,255,0.95);
}
.cd-primary-nav.is-visible {
	background-color:rgba(145,95,255,1);
}

/* ========================================================================== 
	Text Sizes
========================================================================== */
@media screen and (min-width:280px) and (max-width:479px) {
	:root {
		--xx-small-text-size:	0.8em;
		--x-small-text-size:	0.9em;
		--small-text-size:		1.1em;
		--normal-text-size:		1.2em;
		--large-text-size:		1.3em;
		--x-large-text-size:	1.6em;
		--xx-large-text-size:	2.4em;
	}
	h1 {
		font-size:2em;
	}
	h2 {
		font-size:1.8em;
	}
	h3 {
		font-size:1.4em;
	}
	h4 {
		font-size:1.25em;
	}
}
@media screen and (min-width:480px) and (max-width:767px) {
	:root {
		--xx-small-text-size:	0.8em;
		--x-small-text-size:	0.9em;
		--small-text-size:		1.15em;
		--normal-text-size:		1.25em;
		--large-text-size:		1.35em;
		--x-large-text-size:	1.5em;
		--xx-large-text-size:	2em;
	}
	h1 {
		font-size:2.4em;
	}
	h2 {
		font-size:2.2em;
	}
	h3 {
		font-size:1.6em;
	}
	h4 {
		font-size:1.4em;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	:root {
		--xx-small-text-size:	0.85em;
		--x-small-text-size:	0.95em;
		--small-text-size:		1.15em;
		--normal-text-size:		1.3em;
		--large-text-size:		1.4em;
		--x-large-text-size:	1.7em;
		--xx-large-text-size:	2.2em;
	}
	h1 {
		font-size:2.8em;
	}
	h2 {
		font-size:2.2em;
	}
	h3 {
		font-size:1.8em;
	}
	h4 {
		font-size:1.6em;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	:root {
		--xx-small-text-size:	0.85em;
		--x-small-text-size:	1em;
		--small-text-size:		1.2em;
		--normal-text-size:		1.3em;
		--large-text-size:		1.4em;
		--x-large-text-size:	1.7em;
		--xx-large-text-size:	2.4em;
	}
	h1 {
		font-size:3.2em;
	}
	h2 {
		font-size:2.6em;
	}
	h3 {
		font-size:2.2em;
	}
	h4 {
		font-size:1.8em;
	}
}
@media screen and (min-width:1134px) and (max-width:1479px) {
	:root {
		--xx-small-text-size:	0.85em;
		--x-small-text-size:	1em;
		--small-text-size:		1.2em;
		--normal-text-size:		1.35em;
		--large-text-size:		1.45em;
		--x-large-text-size:	1.8em;
		--xx-large-text-size:	2.8em;
	}
	h1 {
		font-size:3.6em;
	}
	h2 {
		font-size:3em;
	}
	h3 {
		font-size:2.4em;
	}
	h4 {
		font-size:2em;
	}
}
@media (min-width:1480px) {
	:root {
		--xx-small-text-size:	0.9em;
		--x-small-text-size:	1em;
		--small-text-size:		1.2em;
		--normal-text-size:		1.4em;
		--large-text-size:		1.5em;
		--x-large-text-size:	2em;
		--xx-large-text-size:	3em;
	}
	h1 {
		font-size:4.2em;
	}
	h2 {
		font-size:3.8em;
	}
	h3 {
		font-size:2.4em;
	}
	h4 {
		font-size:2em;
	}
	h5 {
		font-size:1.5em;
	}
}

/* ==========================================================================
	Header
========================================================================== */
.header-wrapper {
	position:relative;
	width:100%;
	height:auto;
	z-index:0;
	overflow:hidden;
	height:auto;
	background:rgba(65,65,140,1);
}
.header-wrapper.header-wrapper-second {
	position:relative;
	width:100%;
	height:auto;
	z-index:0;
	background:rgba(65,65,140,1);
}
.slide-container {
	width:100%;
	height:100%;
	max-width:1600px;
	margin:0 auto;
	position:relative;
	z-index:10;
	overflow:hidden;
}
/* Language */
.lang-wrap {
	font-weight:500;
	color:rgb(var(--system-color-0));
	z-index:100;
}
.lang-wrap span {
	padding:10px;
	border:1px solid var(--text-color-light);
	color:var(--text-color-light);
	border-radius:50%;
	font-weight:400;
	margin-left:10px;
}
.lang-wrap a {
	text-decoration:none;
	border-bottom:0;
}
.lang-wrap a span {
	color:rgb(var(--system-color-0));
	padding:10px;
	background:var(--link-color);
	border:1px solid var(--link-color);
	border-radius:50%;
}
.lang-wrap a:hover span {
	padding:10px;
	border:1px solid var(--text-color-middle);
	background:var(--text-color-middle);
	color:rgb(var(--system-color-0));
	border-radius:50%;
	font-weight:400;
}
@media (min-width:960px) {
	.lang-wrap {
		position:absolute;
		right:0; 
		top:60px;
		font-size:1.2em;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.lang-wrap {
		position:absolute;
		right:50px; 
		top:70px;
		font-size:1.1em;
	}
}
@media screen and (min-width:320px) and (max-width:767px) {
	.lang-wrap {
		position:relative;
		margin:0 0 0 -10px;
		padding-top:30px;
		font-size:1em;
	}
}
/* Header Video Background */
.header-inner {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:0;
	overflow:hidden;
}
.header__video-wrapp  {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    overflow:hidden;
	z-index:0;
}
.header__video-box {
    text-align:center;
    margin:0 -1000px;
    height:100%;
	position:relative;
}
.header__video {
    display: inline-block;
    height: 100%;
    transform: translateX(5%);
    min-height: 768px;
	position:relative;
	z-index:0;
}
.header__video-bg-left {
	position:absolute;
	top:0;
	left:0;
	width:20%;
	height:100%;
	z-index:1;
	background:linear-gradient(90deg, rgba(65,65,140,1) 0%, rgba(65,65,140,1) 70%, rgba(65,65,140,0) 100%);
}
.header__video-bg-right {
	position:absolute;
	top:0;
	right:0;
	width:20%;
	height:100%;
	z-index:1;
	background:linear-gradient(90deg, rgba(65,65,140,0) 0%, rgba(65,65,140,1) 30%, rgba(65,65,140,1) 100%);
}
.gradient-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:radial-gradient(circle, rgba(65,65,140,0.25) 10%, rgba(65,65,140,0.7) 30%, rgba(65,65,140,0.8) 40%, rgba(65,65,140,0.9) 50%, rgba(65,65,140,1) 70%, rgba(65,65,140,1) 100%);
	z-index:1;
}
.gradient-overlay-second-full {
	top:0;
	left:0;
	width:100%;
	height:100%;
	position:absolute;
	z-index:0;
	background:radial-gradient(circle, rgba(65,65,140,0.25) 10%, rgba(65,65,140,0.7) 30%, rgba(65,65,140,0.8) 40%, rgba(65,65,140,0.9) 50%, rgba(65,65,140,1) 70%, rgba(65,65,140,1) 100%);
}
.gradient-overlay-second-left {
	top:0;
	left:0;
	width:50%;
	height:100%;
	position:absolute;
	z-index:1;
	background:linear-gradient(90deg, rgba(65,65,140,1) 0%, rgba(65,65,140,1) 50%, rgba(65,65,140,0.5) 75%, rgba(65,65,140,0.25) 100%);
}
.gradient-overlay-second-right {
	top:0;
	right:0;
	width:50%;
	height:100%;
	position:absolute;
	z-index:1;
	background:linear-gradient(90deg, rgba(65,65,140,0) 0%, rgba(65,65,140,0.5) 25%, rgba(65,65,140,1) 50%, rgba(65,65,140,1) 100%);
}
.slide-container {
	width:100%;
	height:100%;
	position:relative;
	z-index:10;
	overflow:hidden;
	background:radial-gradient(circle, rgba(85,75,185,0.7), rgba(85,75,185,0.1));
}
/* Header Title */
.slide-container header {
	position:relative;
	z-index:10;
	width:100%;
	padding-bottom:0;
	/*background:rgba(var(--system-color-0),0.5);*/
	background:transparent;
}
.slide-container header .container-fluid {
	position:relative;
}
.slide-container.slide-container_second {
	height:auto;
	position:relative;
	padding-bottom:50px;
}
.slide-container.slide-container_second header {
	position:relative;
	z-index:10;
	width:100%;
	padding-bottom:0;
	background:transparent;
}
.slide-container article {
	display:flex;
	width:100%;
	height:auto;
	position:relative;
	z-index:10;
}
.slide-container footer {
	display:flex;
	width:100%;
	height:auto;
	position:relative;
	z-index:10;
}
@media (max-width:767px) {
	.slide-container article {
		min-height:300px;
	}
}
@media (min-width:768px) {
	.slide-container article {
		min-height:400px;
	}
}
footer {
	position:relative;
	width:100%;
}
/* Navigation */
.desktop-menu {
	padding-bottom:20px;
}
/* -- Logo -- */
.logo {
	width:100%;
}
.logo img {
	width:100%;
	display:inline;
	max-width:500px;
}
@media (min-width:768px) {
	.logo {
		padding:50px 0 100px 0;
	}
}
@media screen and (min-width:430px) and (max-width:767px) {
	.logo {
		padding:45px 0 40px 0;
	}
}
@media screen and (min-width:280px) and (max-width:429px) {
	.logo {
		padding:49px 0 40px 0;
	}
}
.header-buttons {
	height:100%;
}
.header-buttons label {
	display:flex;
	margin-bottom:15px;
}
.header-label {
	margin:0;
}

/* ========================================================================== 
   Titles
========================================================================== */
h1, h2, h3 {
	font-weight:700;
	font-family:'Montserrat';
	color:var(--text-color);
}
h4 {
	font-weight:600;
	color:var(--text-color-middle);
}
.header-title p, .header-title label {
	text-transform:uppercase;
	text-align:center;
	font-family:Montserrat;
	color:rgb(var(--system-color-0));
}
.header-title label {
	font-weight:700;
	margin-bottom:10px;
	margin:0 auto;
	display:block;
}
@media screen and (min-width:280px) and (max-width:479px) {
	.header-title label {
		font-size:2.4em;
		line-height:1.35;
	}
}
@media screen and (min-width:480px) and (max-width:767px) {
	.header-title label {
		font-size:3em;
		line-height:1.35;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.header-title label {
		font-size:4em;
		line-height:1.3;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	.header-title label {
		font-size:5em;
		line-height:1.25;
	}
}
@media screen and (min-width:1134px) and (max-width:1479px) {
	.header-title label {
		font-size:6em;
		line-height:1.25;
		max-width:1240px;
	}
}
@media (min-width:1480px) {
	.header-title label {
		font-size:7em;
		line-height:1.2;
		max-width:1440px;
	}
}
.header-title p {
	text-transform:uppercase;
	font-size:var(--xx-large-text-size);
	font-weight:600;
	font-family:Montserrat;
	color:#9694FF;
	margin-top:0;
}
.header-event-date {
	font-weight:600;
	font-family:Montserrat;
	font-size:var(--x-large-text-size);
	text-transform:uppercase;
	color:#9694FF;
	margin-bottom:0;
	margin-top:15px;
}
.header-event-place {
	color:#9694FF;
	font-size:var(--small-text-size);
	font-weight:400;
	font-family:Montserrat;
}
.second-page-title {
	margin-bottom:50px;
}
.second-page-title p {
	text-transform:uppercase;
	font-size:var(--normal-text-size);
	font-weight:400;
	font-family:Montserrat;
	color:#AE9EFF;
	margin-bottom:0;
}
.second-page-title label {
	text-transform:uppercase;
	font-weight:700;
	font-family:Montserrat;
	color:#fff;
	margin-bottom:0;
}
@media screen and (min-width:280px) and (max-width:479px) {
	.second-page-title label {
		font-size:1.8em;
		line-height:1.35;
	}
}
@media screen and (min-width:480px) and (max-width:767px) {
	.second-page-title label {
		font-size:2em;
		line-height:1.35;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.second-page-title label {
		font-size:2.2em;
		line-height:1.3;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	.second-page-title label {
		font-size:2.4em;
		line-height:1.3;
	}
}
@media screen and (min-width:1134px) and (max-width:1479px) {
	.second-page-title label {
		font-size:2.6em;
		line-height:1.25;
	}
}
@media (min-width:1480px) {
	.second-page-title label {
		font-size:2.8em;
		line-height:1.25;
	}
}
   
/* ========================================================================== 
	Main Sections
========================================================================== */
.main {
	color:var(--text-color);
	background:#3C3C82;
}
.light-gray, .main.light-gray {
	background:#fff;
	position:relative;
	z-index:0;
}
.main p, .main ul:not(.timeline) {
	font-size:var(--normal-text-size);
}
.block_wrapper {
	position:relative;
	z-index:1;
}
.about_block {
	background:#fff;
}

/* ========================================================================== 
	Paddings & Margins
========================================================================== */
@media (min-width:1740px) {
	.slide-container {
		padding:0;
	}
	.slide-container footer {
		padding-top:20px;
		padding-bottom:60px;
	}
	.about_block {
		padding:100px 0 90px 0;
	}
	.members_block {
		padding:100px 0 40px 0;
	}
	.prizes {
		padding:0 0 50px 0;
	}
	.what {
		padding:50px 0 50px 0;
	}
	.agenda_block {
		padding:50px 0 90px 0;
	}
	.participation_block {
		padding:100px 0 90px 0;
	}
	.contact_block {
		padding:100px 0 50px 0;
	}
	.count_block {
		padding:0 0 30px 0;
	}
	.footer {
		padding:40px 0 40px 0;
	}
	.purpose {
		padding:40px 40px;
	}
	.purpose label {
		padding:15px 30px;
	}
	.about-general {
		margin-bottom:30px;
		padding-right:50px;
	}
	.timeline-item {
		padding-left:60px;
	}
	.timeline-content {
		padding-bottom:40px;
	}
	.press {
		padding:30px 40px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 30px;
	}
	.panel-body {
		padding:20px 40px 40px 40px;
	}
	h1 {
		margin-bottom:50px;
	}
	h2 {
		margin-bottom:45px;
	}
	h3 {
		margin-bottom:30px;
	}
}
@media screen and (min-width:1460px) and (max-width:1739px) {
	.slide-container header, .slide-container article {
		padding:0 40px;
	}
	.slide-container footer {
		padding:10px 40px 70px 40px;
	}
	.about_block {
		padding:90px 40px 90px 40px;
	}
	.members_block {
		padding:90px 40px 40px 40px;
	}
	.prizes {
		padding:0 0 40px 0;
	}
	.what {
		padding:40px 0 40px 0;
	}
	.agenda_block {
		padding:40px 40px 80px 40px;
	}
	.participation_block {
		padding:90px 40px 90px 40px;
	}
	.contact_block {
		padding:90px 40px 40px 40px;
	}
	.count_block {
		padding:0 0 25px 0;
	}
	.footer {
		padding:40px;
	}
	.purpose {
		padding:40px;
	}
	.purpose label {
		padding:15px 25px;
	}
	.about-general {
		margin-bottom:20px;
		padding-right:40px;
	}
	.timeline-item {
		padding-left:50px;
	}
	.timeline-content {
		padding-bottom:30px;
	}
	.press {
		padding:30px 40px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 30px;
	}
	.panel-body {
		padding:30px 40px 40px 40px;
	}
	h1 {
		margin-bottom:50px;
	}
	h2 {
		margin-bottom:40px;
	}
	h3 {
		margin-bottom:30px;
	}
}
@media screen and (min-width:1134px) and (max-width:1459px) {
	.slide-container header, .slide-container article {
		padding:0 30px;
	}
	.slide-container footer {
		padding:0 30px 70px 30px;
	}
	.about_block {
		padding:80px 30px 80px 30px;
	}
	.members_block {
		padding:80px 30px 30px 30px;
	}
	.prizes {
		padding:0 0 40px 0;
	}
	.what {
		padding:40px 0 40px 0;
	}
	.agenda_block {
		padding:40px 30px 80px 30px;
	}
	.participation_block {
		padding:80px 30px 80px 30px;
	}
	.contact_block {
		padding:80px 30px 30px 30px;
	}
	.count_block {
		padding:0 0 20px 0;
	}
	.footer {
		padding:40px 30px 40px 30px;
	}
	.purpose {
		padding:40px;
	}
	.purpose label {
		padding:15px 25px;
	}
	.about-general {
		margin-bottom:20px;
		padding-right:30px;
	}
	.timeline-item {
		padding-left:50px;
	}
	.timeline-content {
		padding-bottom:30px;
	}
	.press {
		padding:30px 40px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 30px;
	}
	.panel-body {
		padding:30px 40px 40px 40px;
	}
	h1 {
		margin-bottom:40px;
	}
	h2 {
		margin-bottom:30px;
	}
	h3 {
		margin-bottom:20px;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	.slide-container header, .slide-container article {
		padding:0 25px;
	}
	.slide-container footer {
		padding:0 25px 60px 25px;
	}
	.about_block {
		padding:70px 25px 70px 25px;
	}
	.members_block {
		padding:70px 25px 30px 25px;
	}
	.prizes {
		padding:0 0 20px 0;
	}
	.what {
		padding:30px 0 30px 0;
	}
	.agenda_block {
		padding:30px 25px 70px 25px;
	}
	.participation_block {
		padding:70px 25px 70px 25px;
	}
	.contact_block {
		padding:70px 25px 25px 25px;
	}
	.count_block {
		padding:0 0 15px 0;
	}
	.footer {
		padding:30px 25px 30px 25px;
	}
	.purpose {
		padding:40px;
	}
	.purpose label {
		padding:15px 25px;
	}
	.about-general {
		margin-bottom:30px;
		padding-right:20px;
	}
	.timeline-item {
		padding-left:50px;
	}
	.timeline-content {
		padding-bottom:30px;
	}
	.press {
		padding:30px 40px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 20px;
	}
	.panel-body {
		padding:30px 30px 30px 30px;
	}
	h1 {
		margin-bottom:35px;
	}
	h2 {
		margin-bottom:30px;
	}
	h3 {
		margin-bottom:20px;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.slide-container header, .slide-container article {
		padding:0 20px;
	}
	.slide-container footer {
		padding:0 20px 50px 20px;
	}
	.about_block {
		padding:60px 20px 60px 20px;
	}
	.members_block {
		padding:60px 20px 30px 20px;
	}
	.prizes {
		padding:0 0 30px 0;
	}
	.what {
		padding:30px 0 30px 0;
	}
	.agenda_block {
		padding:30px 20px 60px 20px;
	}
	.participation_block {
		padding:60px 20px 60px 20px;
	}
	.contact_block {
		padding:60px 20px 20px 20px;
	}
	.count_block {
		padding:0 0 10px 0;
	}
	.footer {
		padding:30px 20px 40px 20px;
	}
	.about-general {
		margin-bottom:10px;
	}
	.timeline-item {
		padding-left:40px;
	}
	.timeline-content {
		padding-bottom:30px;
	}
	.purpose {
		padding:50px 40px;
	}
	.purpose label {
		padding:25px;
	}
	.press {
		padding:25px 30px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 20px;
	}
	.panel-body {
		padding:30px 30px 30px 20px;
	}
	h1 {
		margin-bottom:35px;
	}
	h2 {
		margin-bottom:30px;
	}
	h3 {
		margin-bottom:25px;
	}
}
@media  (max-width:767px) {
	.slide-container header, .slide-container article {
		padding:0 15px;
	}
	.slide-container footer {
		padding:0 15px 50px 15px;
	}
	.about_block {
		padding:50px 15px 50px 15px;
	}
	.members_block {
		padding:50px 15px 25px 15px;
	}
	.prizes {
		padding:0 0 25px 0;
	}
	.what {
		padding:25px 0 25px 0;
	}
	.agenda_block {
		padding:25px 15px 50px 15px;
	}
	.participation_block {
		padding:50px 15px 50px 15px;
	}
	.contact_block {
		padding:50px 15px 25px 15px;
	}
	.count_block {
		padding:0 0 5px 0;
	}
	.footer {
		padding:20px 15px 20px 15px;
	}
	.purpose {
		padding:40px 30px;
	}
	.purpose label {
		padding:25px;
	}
	.about-general {
		margin-bottom:10px;
	}
	.timeline-item {
		padding-left:40px;
	}
	.timeline-content {
		padding-bottom:30px;
	}
	.press {
		padding:20px 30px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 40px;
	}
	.panel-body {
		padding:30px 20px 30px 20px;
	}
	.accordion-toggle span {
		padding:10px 20px 10px 20px;
	}
	h1 {
		margin-bottom:30px;
	}
	h2 {
		margin-bottom:25px;
	}
	h3 {
		margin-bottom:20px;
	}
}
.tasks_block {
	color:#fff;
}

/* ========================================================================== 
	Purpose
========================================================================== */
.purpose {
	position:relative;
	border-radius:20px;
	background:#D4D5FF;
	z-index:0;
}
.purpose h4, .purpose p {
	color:var(--text-color);
	position:relative;
	z-index:1;
}
.purpose p {
	font-size:var(--normal-text-size);
}

/* ========================================================================== 
	Agenda
========================================================================== */
.sticky_block__title {
	margin:0 20px 20px 0;
	width:100%;
	position:-webkit-sticky;
	position:sticky;
	top:96px;
}
.sticky_block__cards {
	max-width:1200px;
	width:100%;
}
@media (min-width:1200px) {
	.sticky_block__title {
		top:170px;
		max-width:480px;
	}
}
@media (max-width:1199px) {
	.sticky_block__title {
		margin:0 0 40px 0;
		position:relative;
		top:unset;
		width:100%;
	}
}

/* ========================================================================== 
	List Numbers
========================================================================== */
.list-number {
	list-style-type:none;
	counter-reset:num;
	margin:0;
	padding:0;
	font-size:1em;
}
.list-number li {
    position:relative;
    font-weight:400;
	font-size:var(--normal-text-size);
    min-width:200px;
}
.list-number li:before {
    background:rgba(var(--system-color-0),0);
    color:var(--text-color-middle);
}
.list-number li:before {
    content:counter(num);
    counter-increment:num;
    display:inline-block;
    position:absolute;
    top:0;
    left:0;
    text-align:center;
    font-weight:400;
    border-radius:10px 5px 50% 5px;
	border:2px solid var(--text-color-light);
}
@media screen and (min-width:280px) and (max-width:479px) {
	.list-number li:before {
		width:32px;
		height:32px;
		line-height:28px;
		font-size:0.7em;
	}
	.list-number li {
		margin:0 20px 20px 0;
		padding:2px 0 10px 45px;
		line-height:1.25;
	}
}
@media screen and (min-width:480px) and (max-width:767px) {
	.list-number li:before {
		width:34px;
		height:34px;
		line-height:28px;
		font-size:0.75em;
	}
	.list-number li {
		margin:0 20px 20px 0;
		padding:4px 0 10px 45px;
		line-height:1.3;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.list-number li:before {
		width:38px;
		height:38px;
		line-height:32px;
		font-size:0.8em;
	}
	.list-number li {
		margin:0 20px 20px 0;
		padding:4px 0 10px 50px;
		line-height:1.35;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	.list-number li:before {
		width:38px;
		height:38px;
		line-height:32px;
		font-size:0.8em;
	}
	.list-number li {
		margin:0 30px 20px 0;
		padding:4px 0 10px 50px;
		line-height:1.35;
	}
}
@media screen and (min-width:1134px) and (max-width:1459px) {
	.list-number li:before {
		width:40px;
		height:40px;
		line-height:34px;
	}
	.list-number li {
		margin:0 40px 20px 0;
		padding:2px 0 10px 55px;
		line-height:1.35;
	}
}
@media (min-width:1460px) {
	.list-number li {
		margin:0 50px 20px 0;
		padding:2px 0 10px 60px;
		line-height:1.35;
	}
	.list-number li:before {
		width:42px;
		height:42px;
		line-height:41px;
		font-size:0.9em;
	}
}

/* ==========================================================================
	Members
========================================================================== */
.member-wrap {
	position:relative;
	z-index:0;
	margin-bottom:0;
	padding:30px 40px;
	background:rgba(var(--system-color-1),0.25);
	border-radius:20px;
	margin-bottom:20px;
}
.member-wrap:before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:0;
	border-radius:20px 20px 100% 20px;
	background:rgba(var(--system-color-1),0.2);
}
.member-wrap label {
	margin-bottom:10px;
	position:relative;
	z-index:1;
}
.member-wrap img {
	position:relative;
	z-index:1;
	margin:0 auto 40px auto;
	width:100%;
	max-width:250px;
}
.member {
	margin-bottom:10px;
	padding-top:20px;
	min-height:230px;
	position:relative;
	z-index:1;
}
.member dt {
	font-size:var(--large-text-size);
	font-weight:500;
	margin:0 0 10px 0;
	line-height:1.35;
}
.member dd {
	font-weight:300;
}
@media (min-width:1134px) {
	.member-wrap {
		padding:35px 35px 25px 35px;
	}
	.member dt {
		font-size:1.5em;
	}
	.member dd {
		font-size:1.05em;
		line-height:1.35;
	}
}
@media screen and (min-width:959px) and (max-width:1133px) {
	.member-wrap {
		padding:35px 35px 20px 35px;
	}
	.member dt {
		font-size:1.3em;
	}
	.member dd {
		font-size:1em;
		line-height:1.25;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.member-wrap {
		padding:30px 30px 20px 30px;
	}
	.member dt {
		font-size:1.25em;
	}
	.member dd {
		font-size:0.95em;
		line-height:1.15;
	}
}
@media screen and (min-width:320px) and (max-width:767px) {
	.member-wrap {
		padding:30px 30px 20px 30px;
	}
	.member dt {
		font-size:1.25em;
	}
	.member dd {
		font-size:0.9em;
		line-height:1.25;
	}
}

/* ========================================================================== 
	Program
========================================================================== */
.timeline {
	line-height:1.4em;
	list-style:none;
	margin:0;
	padding:20px 0 0 0;
	width:100%;
}
.timeline.tineline-index .subtitle-date {
	color:#B29BFD;
}
.event-title p {
	color:#fff;
}
.subtitle-date {
	font-size:var(--small-text-size);
	text-transform:uppercase;
}
.event-title p {
	font-size:var(--large-text-size);
	line-height:1.45;
}
.event-title p {
	position:relative; 
}
.timeline.tineline-index .event-title h4 {
	color:#fff;
}
.event-title h4 {
	font-family:'Montserrat';
	font-size:var(--x-large-text-size);
	font-weight:600;
}
.timeline-item {
	position:relative;
}
.timeline-item:last-child {
	padding-bottom:0;
	margin-bottom:0;
}
.timeline-item:first-child {
	padding-bottom:0;
	margin-bottom:0;
}
.timeline.tineline-index .timeline-info {
	color:rgba(var(--system-color-0),0.25);
}
.timeline-info {
	font-weight:500;
	margin:0 0 .5em 0;
	text-transform:uppercase;
}
.timeline-marker {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	width:15px;
}
.timeline-marker:before {
	background:transparent;
	border:2px solid #B29BFD;
	border-radius:100%;
	content:"";
	display:block;
	width:24px;
	height:24px;
	position:absolute;
	top:0;
	left:0;
	transition:background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline-marker:after {
	content:"";
	width:2px;
	border:1px solid #B29BFD;
	display:block;
	position:absolute;
	top:24px;
	bottom:0;
	left:11px;
}
.timeline-item:last-child .timeline-marker:after {
	content:none;
}
.timeline-item:not(.period):hover .timeline-marker:before {
	background:#B29BFD;
	border:2px solid transparent;
}
.timeline-marker.sub-marker:before {
	background:rgba(var(--map-color-5),0); 
	border:2px solid #B698FB; 
	border-radius:100%; 
	content:""; 
	display:block; 
	height:10px; 
	position:absolute; 
	top:2px; 
	left:7px; 
	width:10px; 
	transition:background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline-marker.sub-marker:after {
	content:""; 
	width:2px; 
	background:rgba(var(--system-color-5),0.25); 
	display:block; 
	position:absolute; 
	top:14px; 
	bottom:0px; 
	left:11px;
}
.timeline-content p:last-child {
	margin-bottom:0;
}
.lec-title {
	max-width:1280px;
}
.timeline.tineline-index .event-time {
	color:var(--text-color-light);
}
.event-time {
	margin-bottom:0;
	font-size:var(--large-text-size);
	font-weight:500;
}
.timeline.tineline-index .event-name {
	color:var(--text-color);
}
.event-name {
	max-width:1280px;
	font-size:var(--large-text-size);
	font-weight:600;
}
.lec_sub {
	text-transform:uppercase;
	margin-bottom:20px;
	font-weight:600;
	font-size:1.2em;
}
.peoples {
	position:relative;
	background: rgba(var(--system-color-6),0.2);
	border-radius:20px;
	margin-bottom:10px;
}
.peoples dt {
	font-size:var(--large-text-size);
}
.peoples dd {
	font-size:var(--x-small-text-size);
}
.event {
	position:relative;
	background:rgb(var(--system-color-0));
	border-radius:20px;
	margin-bottom:20px;
	font-size:var(--small-text-size);
}
.event .title {
	font-weight:600;
}
.event .time {
	font-weight:400;
	color:var(--text-color-light);
}
.event-second {
	position:relative;
}
label.subtitle-date {
	font-size:var(--small-text-size);
	font-family:'Montserrat';
	color:var(--text-color-middle);
}
.event-title-second p {
	position:relative; 
	color:var(--text-color-light);
	font-size:var(-x-small-text-size);
	padding-left:15px;
}
.event-title-second p:before {
	position:absolute; 
	left:0; 
	top:9px; 
	content:''; 
	width:6px;  
	height:6px; 
	border-radius:5px;
	background:var(--text-color-light);
}
.event-second .time {
	font-weight:300;
	color:var(--text-color-middle);
	margin-bottom:10px;
}
.event-second .title {
	font-weight:700;
	font-size:var(--large-text-size);
	color:var(--text-color-middle);
	margin-bottom:10px;
	line-height:1.35;
}
.event-second .lector {
	font-weight:500;
	font-size:var(--normal-text-size);
	color:var(--text-color-middle);
	margin-bottom:5px;
}
.event-second .job {
	font-weight:300;
	font-size:var(--x-small-text-size);
	color:var(--text-color-light);
	margin-bottom:0;
}
.event-second .time {
	font-weight:400;
	font-size:var(--normal-text-size);
}
.event header {
	margin-bottom:10px;
	font-size:var(--large-text-size);
	font-weight:500;
	color:var(--text-color-light);
}
.event article {
	font-size:var(--small-text-size);
	line-height:1.3;
	font-weight:500;
	margin-bottom:15px;
}
.event footer {
	font-size:var(--xx-small-text-size);
	color:var(--text-color-xlight);
	line-height:18px;
	position:relative;
	padding:0 0 0 30px;
	text-transform:uppercase;
}
.event footer:before {
	position:absolute; 
	left:0; 
	top:0; 
	content:''; 
	width:18px;  
	height:18px; 
	background-image:url(../img/location.svg); 
	background-repeat:no-repeat; 
	background-size:auto 18px;
}
@media (max-width:479px) {
	.peoples {
		padding:25px 25px 15px 25px;
	}
	.event {
		padding:30px 30px 20px 30px;
	}
}
@media screen and (min-width:480px) and (max-width:767px) {
	.peoples {
		padding:30px 30px 20px 30px;
	}
	.event {
		padding:30px 30px 20px 30px;
	}
}
@media screen and (min-width:768px) and (max-width:1279px) {
	.peoples {
		padding:30px 30px 20px 30px;
	}
	.event {
		padding:25px 30px 30px 30px;
	}
}
@media (min-width:1280px) {
	.peoples {
		padding:30px 30px 25px 30px;
	}
	.event {
		padding:25px 30px 25px 30px;
	}
}

/* ========================================================================== 
	FAQ
========================================================================== */
.faq {
	margin-bottom:30px;
}
.panel-subtitle {
	width:100;
	margin-bottom:10px;
	font-weight:500;
}
/* Process Accordeon */
.panel-default>.panel-heading {
	-webkit-user-select:none; 
	-moz-user-select:none; 
	-ms-user-select:none; 
	user-select:none;
}
.panel-default>.panel-heading {
	position:relative;
}
.panel-default>.panel-heading a {
	font-weight:500;
	color:var(--text-color-middle);
}
.panel-default>.panel-heading label {
	color:#333;
	padding-top:18px;
	padding-bottom:19px;
	padding-left:20px;
}
.panel-default>.panel-heading a span, .panel-default>.panel-heading label span {
	padding-top:25px;
	padding-bottom:20px;
}
.panel-default>.panel-heading a:after {
	content:"";
	top:1px;
	display:inline-block;
	color:#455BCF;
	line-height:1; 
	-webkit-font-smoothing:antialiased; 
	-moz-osx-font-smoothing:grayscale; 
	float:right; 
	transition:transform .25s linear; 
	-webkit-transition:-webkit-transform .25s linear; 
	position:absolute; 
	background: url(../img/arrow.svg) top center no-repeat;
	-webkit-transform:rotate(360deg); 
	transform:rotate(360deg);
}
.panel-default>.panel-heading a[aria-expanded="true"] {
	background-color:rgb(var(--system-color-0));
}
.panel-default>.panel-heading a[aria-expanded="true"]:after {
	background:url(../img/arrow.svg) top center no-repeat;
	-webkit-transform:rotate(180deg); 
	transform:rotate(180deg);
}
.panel-default>.panel-heading a[aria-expanded="false"]:after {
	background:url(../img/arrow.svg) top center no-repeat;
	-webkit-transform:rotate(0deg); 
	transform:rotate(0deg);
}
.panel-group {
	margin:15px 0 15px 0;
	/*max-width: 1480px;*/
}
@media (max-width:959px) {
	.panel-title {
		margin:0;
		padding:0 40px 0 0;
		line-height:1.35;
	}
	.panel-default>.panel-heading a:after {
		top:20px; 
		right:20px;
		width:24px;
		height:24px;
	}
}
@media (min-width:960px) {
	.panel-title {
		margin:0 0 0 10px;
		padding:0 50px 0 0;
		line-height:1.4;
	}
	.panel-default>.panel-heading a:after {
		top:24px; 
		right:20px;
		width:32px;
		height:32px;
	}
}
.panel-title a:hover {
	text-decoration:none;
}
.panel-title h5 {
	border:0;
}
.panel.panel-default {
	margin-bottom:20px;
	background:rgb(var(--system-color-0));
	border-radius:20px;
	}
.panel.panel-default:hover {
	border-radius:20px;
}
.panel-default>.panel-heading:hover {
	background:rgb(var(--system-color-0));
	border-radius:20px;
}
.panel-default>.panel-heading:hover a {
	color:var(--link-hover-color);
}
.accordion-toggle span {
	display:block;
	width:100%;
	padding:10px 20px 10px 20px;
	margin-bottom:0;
}
.panel-body {
	display:block;
	width:100%;
	padding:20px 30px 20px 30px;
	border-top:1px solid #EDECFE;
}
.panel-collapse {
	transition:all 0.3s ease-in-out;
}
.metro-0, .metro-1, .metro-2, .hotel-1, .hotel-2, .rest {
	position:relative;
	padding-left:25px;
	margin-bottom:5px;
}
.metro-0::before, .metro-1::before, .metro-2::before, .hotel-1::before, .hotel-2::before, .rest::before {
    content:"\2022";
	font-size:1.5em;
	display:inline-block; 
	width:1em;
	position:absolute;
	left:0px;
	top:-5px;
}
.metro-0::before {
    color:var(--map-color-0);
}
.metro-1::before {
    color:var(--map-color-1);
}
.metro-2::before {
    color:var(--map-color-2);
}
.rest::before {
    color:var(--map-color-3);
}
.hotel-1::before, .hotel-2::before {
    color:var(--map-color-4);
}
.timeline.transport {
	line-height:1.4em;
	list-style:none; 
	margin:0; 
	padding:0; 
	width:100%;
}
.timeline.transport .timeline-item {
	padding-left:40px; 
	position:relative;
}
.timeline.transport .timeline-item:last-child {
	padding-bottom:0;
}
.timeline.transport .timeline-info {
	font-size:0.85em; 
	font-weight:500; 
	letter-spacing:2px; 
	margin:0 0 .5em 0; 
	text-transform:uppercase; 
	color:var(--text-color-middle);
}
.timeline.transport .timeline-marker {
	position:absolute; 
	top:0; 
	bottom:0; 
	left:0; 
	width:15px;
}
.timeline.transport .timeline-marker:before {
	background:rgba(var(--map-color-5),0); 
	border:2px solid rgba(var(--map-color-5),1); 
	border-radius:100%; 
	content:""; 
	display:block; 
	height:15px; 
	position:absolute; 
	top:4px; left:0; 
	width:15px; 
	transition:background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline.transport .timeline-marker:after {
	content:""; 
	width:2px; 
	background:rgba(var(--system-color-5),0.25); 
	display:block; 
	position:absolute; 
	top:24px; 
	bottom:0; 
	left:6px;
}
.timeline.transport .timeline-marker.gray-marker:before {
	background:rgba(var(--map-color-5),0); 
	border:2px solid rgba(var(--system-color-5),0.5); 
	border-radius:100%; 
	content:""; 
	display:block; 
	height:10px; 
	position:absolute; 
	top:6px; 
	left:2px; 
	width:10px; 
	transition:background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline.transport .timeline-marker.gray-marker:after {
	content:""; 
	width:2px; 
	background:rgba(var(--system-color-5),0.25); 
	display:block; 
	position:absolute; 
	top:24px; 
	bottom:0; 
	left:6px;
}
.timeline.transport .timeline-item:last-child .timeline-marker:after {
	content:none;
}
.timeline.transport .timeline-item:not(.period):hover .timeline-marker:before {
	background:transparent; 
	border:2px solid rgba(var(--map-color-5),1);
}
.timeline.transport .timeline-item:not(.period):hover .timeline-marker.blue-marker:before {
	background:rgba(var(--system-color-5),1); 
	border:2px solid rgba(var(--map-color-5),1);
}
.timeline.transport .timeline-content {
	padding-bottom:20px;
}
.timeline.transport .timeline-content.gray {
	font-size:0.9em;
	color:var(--text-color-middle);
}
.timeline.transport .timeline-content p:last-child {
	margin-bottom:0;
}
.timeline.transport .period {
	padding:0;
}
.timeline.transport .period .timeline-info {
	display:none;
}
.period .timeline-marker:before {
	background:transparent; 
	content:""; 
	width:15px; 
	height:auto; 
	border:none; 
	border-radius:0; 
	top:0; 
	bottom:30px; 
	position:absolute; 
	border-top:3px solid var(--system-bg-color); 
	border-bottom:3px solid var(--system-bg-color);
}
.a-label span {
	padding: 7px 12px;
	margin-right:5px;
	border-radius: 5px;
	font-size:0.75em;
	color:#fff;
	background: rgba(var(--map-color-5),1);
}

/* ========================================================================== 
	Press
========================================================================== */
.press {
	border-radius:20px;
	background:#D4D5FF;
}
.press label {
	margin-bottom:20px;
	border-radius:20px;
	color:var(--text-color);
}

/* ========================================================================== 
	Footer
========================================================================== */
.footer  {
	font-size:var(--normal-text-size);
}
.footer .social-media a {
	width:40px; 
	height:40px; 
	border-radius:99%; 
	background:transparent; 
	transition:.4s ease;
	border-bottom:0;
	text-decoration:none;
}
.footer.footer-second {
	background:#fff;
}
.copyright {
	margin-bottom:20px;
	color:#B29BFD;
}
.footer .social-media a i {
	color:rgb(var(--system-color-0)); 
	line-height:40px;
}
.footer .social-media a:hover {
	background:var(--social-link);
}
.footer .social-media a:hover i {
	color:rgb(var(--system-color-0));
}
.social-network {
	position:relative;
}
.vkontakte:before {
	position:absolute; 
	left:0; 
	top:0; 
	content:''; 
	width:40px; 
	height:40px; 
	background-image:url(../img/vk.svg); 
	background-repeat:no-repeat; 
	background-size:auto 40px;
}
.youtube:before {
	position:absolute; 
	left:0; 
	top:0; 
	content:''; 
	width:40px; 
	height:40px; 
	background-image:url(../img/youtube.svg); 
	background-repeat:no-repeat; 
	background-size:auto 40px;
}
.tiktok:before {
	position:absolute; 
	left:0; 
	top:0; 
	content:''; 
	width:40px; 
	height:40px; 
	background-image:url(../img/tiktok.svg); 
	background-repeat:no-repeat; 
	background-size:auto 40px;
}
.telegram:before {
	position:absolute; 
	left:0; 
	top:0; 
	content:''; 
	width:40px; 
	height:40px; 
	background-image:url(../img/telegram.svg); 
	background-repeat:no-repeat; 
	background-size:auto 40px;
}

/* ==========================================================================
	Buttons
========================================================================== */
.btn {
	padding:14px 30px;
	border:0;
	border-radius:30px;
	font-weight:500;
	font-size:var(--normal-text-size);
	background:#6A5CFF;
	color:rgb(var(--system-color-0));
	transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	font-family:Montserrat;
}
.btn:hover {
	background:#8664FF;
	color:rgb(var(--system-color-0));
}
a.btn:focus-visible, a.btn:active, a.btn:focus, a.btn:focus-visible + a.btn:hover, a.btn:active + a.btn:hover, a.btn:focus + a.btn:hover {
	background:#8664FF;
	color:rgb(var(--system-color-0));
}
.btn-success {
  --bs-btn-active-bg: #333;
}

/* ========================================================================== 
	Modal
========================================================================== */
.modal.fade .modal-dialog.modal-dialog-zoom {
	-webkit-transform:translate(0,0)scale(.5);
	transform:translate(0,0)scale(.5);
}
.modal.show .modal-dialog.modal-dialog-zoom {
	-webkit-transform:translate(0,0)scale(1);
	transform:translate(0,0)scale(1);
}
.a-modal {
	text-decoration:none;
	border-bottom:0;
	display:block;
}
.a-modal {
	text-decoration:none;
	border-bottom:0;
}
.modal-open {
	overflow:hidden;
}
.modal-open .modal {
	overflow-x:hidden;
	overflow-y:auto;
}
.modal {
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:1100;
	display:none;
	overflow:hidden;
	outline:0;
}
.modal-dialog {
	position:relative;
	width:auto;
	margin:0.5rem;
	pointer-events:none;
}
.modal.fade .modal-dialog {
	transition:-webkit-transform 0.3s ease-out;
	transition:transform 0.3s ease-out;
	transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform:translate(0, -25%);
	transform:translate(0, -25%);
}
.modal.show .modal-dialog {
	-webkit-transform:translate(0, 0);
	transform:translate(0, 0);
}
.modal-dialog-centered {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:center;
	align-items:center;
	min-height:calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
	display:block;
	height:calc(100vh - (0.5rem * 2));
	content:"";
}
.modal-content {
	position:relative;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-direction:column;
	flex-direction:column;
	width:100%;
	pointer-events:auto;
	background-color:rgb(var(--system-color-0));
	background-clip:padding-box;
	border-radius:0.5rem;
	outline:0;
}
.modal-content {
	width:100%;
	background:rgb(var(--system-color-0));
	padding-bottom:30px;
	}
.modal-header {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:start;
	align-items:flex-start;
	-ms-flex-pack:justify;
	justify-content:space-between;
	padding:2rem;
	border-bottom:0;
	border-top-left-radius:0.5rem;
	border-top-right-radius:0.5rem;
}
.modal-header .close {
	padding:1rem 1.5rem;
	margin:-1rem -1rem -1rem auto;
}
.modal-title {
	margin-bottom:0;
	padding:0.5rem 0 0 1rem;
	line-height:1.5;
}
.modal-body {
	position:relative;
	-ms-flex:1 1 auto;
	flex:1 1 auto;
	padding:0 3rem 2rem 3rem;
	margin-top:-20px;
}
.modal-body p, .modal-body ol, .modal-body ul {
	font-size:var(--normal-text-size);
}
.modal-footer {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:center;
	align-items:center;
	-ms-flex-pack:end;
	justify-content:flex-end;
	padding:1rem;
	border:0;
}
.modal-footer > :not(:first-child) {
	margin-left:.25rem;
}
.modal-footer > :not(:last-child) {
	margin-right:.25rem;
}
@media (min-width:576px) {
	.modal-dialog {
		max-width:1080px;
		margin:1.75rem auto;
}
	.modal-dialog-centered {
		min-height:calc(100% - (1.75rem * 2));
	}
	.modal-dialog-centered::before {
		height:calc(100vh - (1.75rem * 2));
	}
	.modal-sm {
		max-width:300px;
	}
}
@media (min-width:992px) {
	.modal-lg {
		max-width:960px;
	}
}
.tab-wrapper {
	margin-top:30px;
}
.modal-body h4 {
	margin-bottom:30px;
}
.modal-title {
	text-transform:uppercase;
	margin-bottom:30px;
}

/* ========================================================================== 
	To Top
========================================================================== */
.back-to-top {
	position: fixed; 
	width: 56px; 
	height: 56px; 
	border: 1.5px solid var(--to-top-border);
	border-radius:50%; 
	right: 20px; 
	bottom: 20px; 
	z-index: 1100;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-transform:rotate(270deg);
	transform:rotate(270deg);
	mix-blend-mode: difference;
}
.back-to-top img {
	opacity:0.5;
}
.back-to-top:hover {
	border: 1.5px solid var(--to-top-hover);
}
.back-to-top:hover img {
	opacity:0.75;
}
@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
}
#button {
	transition: opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
}
#button.show {
	opacity: 1;
	visibility: visible;
}



.members_block {
	overflow:hidden;
	background:#3C3C82;
}
.team-unit-wrap {
	padding: 30px 25px 20px 25px;
	background: transparent;
	border-radius:20px;
	position:relative;
	width:100%;
	height:100%;
	min-height:300px;
	border:1px solid rgba(255,255,255,0.5);
}
.team-unit-wrap:hover {
	background: rgba(255,255,255,0.05);
	border:1px solid rgba(255,255,255,0.95);
}
.team-unit-wrap.second-unit {
	padding: 35px 30px 30px 30px;
	background: #fff;
	border-radius:20px;
	border: 1px solid #D6D4FE;
	position:relative;
	width:100%;
	height:100%;
	min-height:430px;
}
.team-unit-wrap img {
	margin:0 auto 20px auto;
	width:100%;
	max-width:140px;
}
.team-unit {
	position:relative;
}
.team-unit dt {
	font-size:var(--small-text-size);
	font-weight:300;
	margin:0 auto 5px auto;
	line-height:1.25;
	max-width: 280px;
	color:#fff;
	text-align:center;
}
.team-unit .degree {
	font-size:var(--x-small-text-size);
	font-weight:300;
	margin:0 0 15px 0;
	line-height:1.25;
}
.team-unit .job {
	font-size:var(--xx-small-text-size);
	font-weight:500;
	line-height:1.25;
	color: var(--job-color);
	margin-left:15px;
	padding-left:0;
	position:relative;
}
.team-unit .job::before {
    color:var(--bullet-color);
    content:"\2022";
	font-size:1.35em;
	display:inline-block; 
	width:1em;
	position:absolute;
	left:-15px;
	top:-1px;
}
.team-link-wrapper {
	width:100%;
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background: #fff;
	border-radius:20px;
	min-height:480px;
}
.team-link-wrapper:hover {
	border:1px solid rgba(var(--system-color),0.5);
	border-radius:20px;
}
.team-link {
	color:var(--link-color);
	text-transform:uppercase;
	font-size:var(--normal-text-size);
}
.team-link-wrapper:hover .team-link {
	color:var(--link-hover-color);
}
.team__carousel {
	z-index:10;
	padding-top:30px;
}
.team__carousel .swiper-container {
	overflow:initial;
}
.team__carousel .swiper-container .swiper-wrapper .swiper-slide {
	min-height:320px;
	max-width:300px;
}
@media (min-width:1134px) {
	.team__carousel .swiper-container .swiper-wrapper {
		padding:0 0 10px 0;
	}
}
@media screen and (min-width:960px) and (max-width:1133px) {
	.team__carousel .swiper-container .swiper-wrapper .swiper-slide {
		padding:0;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.team__carousel .swiper-container .swiper-wrapper .swiper-slide {
		padding:0;
	}
}
@media screen and (min-width:320px) and (max-width:767px) {
	.team__carousel .swiper-container .swiper-wrapper .swiper-slide {
		padding:0;
	}
}
.team__carousel .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
	opacity:1;
}
.team__carousel .swiper-slide.swiper-slide-active p {
	color:var(--link-hover-color);
}
@media screen and (max-width:960px) {
	.team__carousel .swiper-slide p {
		min-height:auto;
		font:300 1em/1.2 "Roboto Flex", sans-serif;
  }
}
.team__carousel .swiper-container .swiper-wrapper .swiper-slide a {
	color:var(--system-bg-color);
}
.members_block .controls {
	margin:40px 0 0 0;
	position:relative;
	z-index:10;
}
/* Slider */
.controls {
	margin:46px 0 0 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	width:100%;
}
@media screen and (max-width:460px) {
	.controls {
		margin:38px 0 0 0;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		justify-content:center;
	}
}
.controls .container {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
}
@media screen and (max-width:960px) {
	.controls .container {
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		justify-content:center;
	}
}
.controls--center {
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.controls__prev {
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
	margin:0 20px 0 0;
}
.controls__prev, .controls__next {
	cursor:pointer;
	width:56px;
	height:56px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	border-radius:1000px;
	border:1px solid rgba(var(--system-color-0),0.5);
	-webkit-transition:300ms ease;
	transition:300ms ease;
	background:transparent;
}
.controls__prev:hover, .controls__next:hover {
	border:1px solid rgba(var(--system-color-0),0.9);
}


.organizer {
	position:relative;
	padding:0 15px;
	text-align:center;
	margin-bottom:30px;
}
.organizer p {
	max-width:280px;
	margin: 0 auto;
	color:#fff;
	line-height:1.3;
	font-weight:300;
}
.organizer img {
	position:relative;
	width:100%;
	max-width:140px;
	margin: 0 auto;
}
.prize {
	border-radius:20px;
	padding:35px 30px 35px 30px;
	color:#fff;
}
.prize label {
	font-weight:500;
	font-size:var(--xx-large-text-size);
	
}


.prize p {
	font-size:var(--large-text-size);
	font-weight:400;
	margin-bottom:20px;
}
.prize.place_1 {
	background:#DB3AA2;
}
.prize.place_2 {
	background:#AB17EB;
}
.prize.place_3 {
	background:#7805EB;
}

/* ========================================================================== 
 Program Block 2
   ========================================================================== */
.competences_card {
	transition: all 0.15s ease-out;
	color:#fff;
}
.competences_card.card-border {
	background:#3C3C82;
	border:1px solid rgba(255,255,255,0.75);
	border-radius:20px;
}
.competences_card dt {
	color:#B29BFD;
	text-transform:uppercase;
	font-family: 'Montserrat';
	font-size:var(--small-text-size);
	font-weight:400;
}
.competences_card dd {
	color:#fff;
	font-size:var(--large-text-size);
	line-height:1.45;
}
.dir {
	transition: all 0.15s ease-out;
}
.dir p {
		font-weight:400;
}
@media (min-width:1134px) {
	.competences_card {
		padding: 35px 30px 20px 30px;
		min-height:170px;
		margin-bottom:20px;
	}
	.competences_card dl {
		padding-left:100px;
		padding-top:5px;
		padding-bottom:20px;
	}
	.competences_card img {
		width:100%;
		max-width:48px;
		height:auto;
		position:absolute;
		top:45px;
		left:45px;
	}
	.dir {
		min-height:50px;
		margin-bottom:20px;
	}
	.dir p {
		padding-left:60px;
		padding-top:5px;
		font-size:1.35em;
	}
	.dir img {
		width:100%;
		max-width:48px;
		height:auto;
		margin-bottom:10px;
		position:absolute;
		top:0;
		left:0;
	}
}
@media screen and (min-width:959px) and (max-width:1133px) {
	.competences_card {
		padding: 25px 25px 20px 25px;
		min-height:170px;
		margin-bottom:20px;
	}
	.competences_card dl {
		padding-left:60px;
		padding-top:5px;
		padding-bottom:20px;
	}
	.competences_card img {
		width:100%;
		max-width:48px;
		height:auto;
		position:absolute;
		top:35px;
		left:25px;
	}
	.dir {
		min-height:50px;
		margin-bottom:20px;
	}
	.dir p {
		padding-left:60px;
		padding-top:5px;
		font-size:1.3em;
	}
	.dir img {
		width:100%;
		max-width:48px;
		height:auto;
		margin-bottom:10px;
		position:absolute;
		top:0;
		left:0;
	}
}
@media screen and (min-width:768px) and (max-width:959px) {
	.competences_card {
		padding: 25px 25px 15px 25px;
		min-height:170px;
		margin-bottom:20px;
	}
	.competences_card dl {
		padding-left:50px;
		padding-top:5px;
		padding-bottom:20px;
	}
	.competences_card img {
		width:100%;
		max-width:32px;
		height:auto;
		position:absolute;
		top:35px;
		left:30px;
	}
	.dir {
		min-height:40px;
		margin-bottom:20px;
	}
	.dir p {
		padding-left:50px;
		font-size:1.25em;
	}
	.dir img {
		width:100%;
		max-width:32px;
		height:auto;
		margin-bottom:10px;
		position:absolute;
		top:0;
		left:0;
	}
}
@media (max-width:767px) {
	.competences_card {
		padding: 20px 20px 10px 20px;
		min-height:150px;
		margin-bottom:20px;
	}
	.competences_card dl {
		padding-left:0;
		padding-top:5px;
		padding-bottom:20px;
	}
	.competences_card img {
		width:100%;
		max-width:32px;
		height:auto;
		margin-bottom:10px;
		position:relative;
	}
	.dir {
		margin-bottom:20px;
	}
	.dir p {
		padding-left:50px;
		font-size:1.2em;
	}
	.dir img {
		width:100%;
		max-width:32px;
		height:auto;
		position:absolute;
		top:5px;
		left:0;
	}
}

.fact {
	position:relative;
	z-index:1;
	width:100%;
}
@media (min-width:768px) {
	.fact_wrap	{
		grid-row-gap:20px;
		flex-direction:column;
		flex:none;
		display:flex;
	}
	.fact {
		flex-direction:column;
		flex:none;
		justify-content:space-between;
		width:100%;
		height:170px;
		display:flex;
		position:-webkit-sticky;
		position:sticky;
		top:90px;
	}
}
@media (max-width:767px) {
	.fact {
		width:100%;
		height:auto;
		display:block;
		margin-bottom:20px;
	}
}

@layer countdown {
  .countdown {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1rem;
  }
.countdown > .part > .number {
	color: #666;
}
	@media (min-width:960px) {
		.countdown {
			width: 100%;
		}
		  .countdown > .part > .number {
			font-size: 3.5rem;
		}
	}
	@media screen and (min-width:320px) and (max-width:959px) {
		.countdown {
			width: 100%;
		}
		  .countdown > .part > .number {
			font-size: 1.5rem;
		}
	}  
  
  .countdown > .part {
    display: grid;
    gap: 0.5rem;
  }
  .countdown > .part > .number {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid hsl(255 100% 80% / .5);
    position: relative
  }
  .countdown > .part.days { --num: 365 }
  .countdown > .part.hours { --num: 24 }
  .countdown > .part:where(.minutes, .seconds) { --num: 60 }
  .countdown > .part > .number::after{
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -0.5);
    border-radius: inherit;
    --degree: calc(360deg / var(--num) * (var(--num) - var(--value,0)));
    background-image: conic-gradient(var(--accent2) var(--degree), transparent calc(var(--degree) + 0.1deg));
    --border-size: 4px;  
    --mask-image: radial-gradient(100% 100%, transparent calc(50% - var(--border-size)), black calc(50% - var(--border-size) + 1px));
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
  }
  .countdown > .part > .text {
    text-align: center;
    opacity: 0.75;
	display:none;
  }
}
.count_title {
	color:#666;
	text-transform:uppercase;
	font-family: 'Montserrat';
	font-size:var(--small-text-size);
	font-weight:500;
	margin-bottom:20px;
}