/* CSS Document */

:root {
	--color1: rgba(151, 62, 223, 1);
	--color1-1: rgba(151, 62, 223, 0.1);
	--color1-3: rgba(151, 62, 223, 0.3);
	--color1-5: rgba(151, 62, 223, 0.5);
	--color1-7: rgba(151, 62, 223, 0.7);

	--color2: rgba(31, 157, 216, 1);
	--color2-7: rgba(31, 157, 216, 0.7);

	--color3: rgba(96, 55, 203, 1);
	--color3-5: rgba(96, 55, 203, 0.5);
	--color3-7: rgba(96, 55, 203, 0.7);

	--color4: rgb(28, 17, 56, 1);

	--color-gray1: rgba(221, 221, 221, 1);
	--color-gray2: rgb(75, 75, 75, 1);
}

@font-face {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 300;
	src: url("/files/font/OpenSans-Light.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSans";
	font-style: italic;
	font-weight: 300;
	src: url("/files/font/OpenSans-LightItalic.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 600;
	src: url("/files/font/OpenSans-Semibold.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: bold;
	src: url("/files/font/OpenSans-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 800;
	src: url("/files/font/OpenSans-ExtraBold.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSansCondensed";
	font-style: normal;
	font-weight: bold;
	src: url("/files/font/OpenSansCondensed-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "OpenSansCondensed";
	font-style: normal;
	font-weight: 300;
	src: url("/files/font/OpenSansCondensed-Light.ttf") format("truetype");
}

body {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: 300;
	font-size: 14pt;
	background-color: #fff;
	padding: 0px;
	margin: 0px;
	line-height: 1.5;
}

a {
	color: var(--color1);
	text-decoration: none;
	transition: 500ms;
}

a:hover {
	color: var(--color2);
	text-decoration: none;
}

header {
	/*min-height: 200px;*/
	position: relative;
}

main {
	min-height: 50vh;
}

footer {
	font-family: "OpenSans";
	background-color: var(--color2);
	text-align: center;
	padding: 3em 1em;
	color: #fff;
}

footer a {
	color: #fff;
	text-decoration: underline;
}

footer a:hover {
	color: #fff;
}


.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 200px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

a.admin {
	background-color: rgba(128,128,128,.3);
	border-radius: 2px;
	color: inherit;
	font-size: 80%;
	opacity: 0.2;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 100;
	transition: 200ms;
	line-height: 1;
}

section:hover > a.admin,
div:hover > a.admin {
	opacity: 0.5;
}

a.admin:hover {
	opacity: 1 !important;
}


.white_text {
	color: #fff;
}

.color3 {
	color: var(--color3);
}

.color3_bg {
	background-color: var(--color3);
}

.gray1_bg {
	background-color: var(--color-gray1);
}

.gray {
	opacity: 0.5;
}

.sm {
	font-size: 70%;
}

strong, b {
	font-weight: bold;
}

.t_center {
	text-align: center;
}

.t_left {
	text-align: left;
}

.t_right {
	text-align: right;
}

.hidden {
	display: none;
}

.bread {
	opacity: 0.5;
	color: var(--color-gray2);
	margin-bottom: 1rem;
	font-weight: 500;
}

h1 {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: normal;
	font-size: 180%;
}

h2 {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: normal;
	font-size: 140%;
	text-align: center;
}

h3 {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: normal;
	font-size: 120%;
	margin-top: 0.5rem;
}

.padding {
	padding: 1em;
}

.padding_h {
	padding-left: 1em !important;
	padding-right: 1em !important;
}

.padding_h2 {
	padding-left: 2em !important;
	padding-right: 2em !important;
}

.padding_h3 {
	padding-left: 3em !important;
	padding-right: 3em !important;
}

.padding_v {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}

.padding_v2 {
	padding-top: 2em !important;
	padding-bottom: 2em !important;
}

.padding_v3 {
	padding-top: 3em !important;
	padding-bottom: 3em !important;
}

.padding_b {
	padding-bottom: 1em !important;
}

.padding_b2 {
	padding-bottom: 2em !important;
}

.padding_b3 {
	padding-bottom: 3em !important;
}

.padding_t {
	padding-top: 1em !important;
}

.padding_t2 {
	padding-top: 2em !important;
}

.padding_t3 {
	padding-top: 3em !important;
}

.padding_r {
	padding-right: 1em !important;
}

.padding_r2 {
	padding-right: 2em !important;
}

.padding_r3 {
	padding-right: 3em !important;
}

img {
	max-width: 100%;
}

img.inline {
	height: 1em;
	vertical-align: middle;
}

img.inline2 {
	height: 2em;
	vertical-align: middle;
}

table.simple {
	font-family: Tahoma, Verdana;
}

table.simple th {
	background-color: var(--color-gray1);
	border-right: 1px solid #fff;
	font-weight: normal;
	padding: 4px;
}

table.simple td {
	padding: 4px;
}

/* Модальное окно */

.modal {
	display: none;
	position: fixed;
	z-index: 2001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

.modal_window {
	/*border-top: 0.5rem solid var(--color1);*/
	display: block;
	margin: auto;
	padding: 0;
	border-radius: 0.5rem;
	width: auto;
	max-width: 90%;
	max-height: 100vh;
	overflow-y: auto;
	position: relative;
}

.modal_alert {
	background-color: var(--color1-1);
	padding: 1rem;
	font-weight: 500;
}

.modal_alert:empty {
	display: none;
}

.modal_content {

}

.modal_content form {
	display: flex;
	grid-gap: 0.5rem;
	flex-wrap: wrap;
}

.modal_content form > * {
	width: 100%;
}

.close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 2rem;
	line-height: 1;
	font-weight: bold;
	cursor: pointer;
	padding: 0 0.5rem;
	color: var(--color1);
}

.close svg {
	height: 1rem;
	fill: var(--color1);
}
.close:hover svg {
	fill: var(--color1);
}



/* меню */


/*.hamburger {
	font-size: 120%;
}
.hamburger a {
	color: var(--color1);
}*/


div.mobile_menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	color: #000 !important;
	background-color: var(--color-gray1) !important;
	font-weight: 300 !important;
	overflow-y: scroll;
}

div.full_menu {
	background-color: var(--color1);
}
div.full_menu img {
	vertical-align: middle;
}

div.menu {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	padding: 0.5em 0em;
	background-color: var(--color1);
}
div.menu a {
	color: inherit;
}
div.bottom div.menu {
	background-color: transparent;
}

div.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen {
	div.menu ul {
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 1000px) {
	div.menu ul {
		display: block;
	}
	
	div.menu li {
		width: 100%;
		text-align: center;
	}
}


div.menu li {
	list-style: none;
	position: relative;
	box-sizing: border-box;
}

div.menu > ul > li {
	color: #fff;
}

div.menu > ul > li > a:hover {
	color: #fff;
}
div.mobile_menu ul > li {
	color: #000;
}

div.menu li a {
	display: block;
	padding: 0.2em 2em;
	text-decoration: none;
	vertical-align: middle;
	border-bottom: 2px solid transparent;
}
div.menu li a:hover {
	/*background-color: var(--color1-1);*/
	color: var(--color1);
	border-bottom: 2px solid var(--color1);
	background-color: var(--color1-1);
}

div.menu li ul {
	display: none;
	float: none;
	position: absolute;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	top: 36px; /* ? */
	left: 0px;
	z-index: 1000;
	font-weight: 300;
	color: #000;
}

div.menu li:hover ul {
	display: block;
}

div.menu li ul li {
	width: 100%;
	text-align: left;
	border-bottom: 1px solid var(--color1-1);
}

div.menu li ul li a {
	display: block;
	padding: 0.5em 1em;
	height: auto;
	border-bottom: 0px;
}

div.menu li ul li a:hover {
	border-bottom: 0px;
}

/*
.menu {
		z-index: 100000;
}

.menu a {
	display: block;
	font-family: "OpenSansCondensed";
	font-style: normal;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	padding: 0.5em 2em;
}

.menu a:hover {
	color: var(--color1);
}

.menu li {
	list-style: none;
	display: block;
	position: relative;
	background-color: #fff;
}

.menu ul {
	padding: 0;
}

.menu ul li a {
	font-weight: 300;

}

@media screen {
	.menu {
		display: flex;
		align-content: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
		padding: 0 0 2em 0;
		margin: 0;
		background: transparent;
	}
	
	.menu > li {
		display: inline-block;
	}
	
	.menu > li > a {
		border-bottom: 2px solid transparent;
		text-align: center;
		display: inline-block;
	}
	
	.menu > li > a:hover {
		border-bottom-color: var(--color1);
	}
	
	.menu li ul {
		display: none;
		background-color: #fff;
		box-shadow: 0 0.3em 0.5em 0 rgba(0, 0, 0, 0.3);
	}
	
	.menu li:hover ul {
		display: block;
		position: absolute;
		top: 48px;
		left: 0;
	}
	
	.menu ul li {
		border-bottom: 1px solid var(--color1-1);
	}
	
	.menu ul li:hover {
		background-color: var(--color1-1);
	}
	
	.hamburger {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	menu {
		display: none;
		padding: 0;
		margin: 0;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #fff;
		overflow-y: scroll;
	}
	
	menu > li {
		display: block;
	}
	
	menu > li > a {
		border-bottom: 2px solid transparent;
		text-align: center;
		display: inline-block;
	}
	
	menu > li > a:focus {
		border-bottom-color: var(--color1);
	}
	
	menu li ul {
		display: block;
		background-color: #fff;
	}
	
	menu ul li {
		border-bottom: 1px solid var(--color1-1);
	}
	
	.hamburger {
		display: block;
	}
	
	.hamburger:focus ~ menu {
		display: block;
	}
}*/




/* блоки */


.w25 { width: 25%; margin: auto; position: relative; }
.w50 { width: 50%; margin: auto; position: relative; }
.w75 { width: 75%; margin: auto; position: relative; }
.w100 { width: 100%; margin: auto; position: relative; overflow: auto; }
.wa { width: auto; margin: auto; position: relative; }
.block {
	display: block;
}

@media screen {
	.only_full {
		display: block;
	}
	.only_mobile {
		display: none;
	}
	
	div.block1 {
		width: 1000px;
		box-sizing: border-box;
		margin: auto;
	}
	
	div.block2 {
		width: 50%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 33.333%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 25%;
		box-sizing: border-box;
	}
	
	div.block1_3 {
		width: 30%;
		box-sizing: border-box;
	}
	
	div.block2_3 {
		width: 70%;
		box-sizing: border-box;
	}
	
	.logo_ui {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	
	.menu_main {
		/*display: flex;*/
	}

	#main1_menu {
		max-width: 40%;
	}

	#main1_welcome {
		max-width: 60%;
	}

}

@media screen and (max-width: 1000px) {
	.only_full {
		display: none;
	}
	.only_mobile {
		display: block;
	}

	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 50%;
		box-sizing: border-box;
	}
	
	div.block1_3 {
		width: 30%;
		box-sizing: border-box;
	}
	
	div.block2_3 {
		width: 70%;
		box-sizing: border-box;
	}
	
	.logo_ui {
		position: relative;
	}
	
	.menu_main {
		/*display: none;*/
	}

	#main1_menu {
		max-width: 100%;
	}

	#main1_welcome {
		max-width: 100%;
	}
}

@media screen and (max-width: 600px) {
	.only_full {
		display: none;
	}
	.only_mobile {
		display: block;
	}

	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block1_3 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2_3 {
		width: 100%;
		box-sizing: border-box;
	}
	
	.logo_ui {
		position: relative;
	}
	
	.menu_main {
		/*display: none;*/
	}

	#main1_menu {
		max-width: 100%;
	}

	#main1_welcome {
		max-width: 100%;
	}
}

div.flex_top {
	display: flex;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

div.flex_top_start {
	display: flex;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_center {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}

div.flex_center_start {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_center_end {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	flex-wrap: wrap;
}

div.flex_bottom {
	display: flex;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	justify-content: space-evenly;
	-webkit-justify-content: space-evenly;
	flex-wrap: wrap;
}

div.flex_bottom_start {
	display: flex;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_space_center {
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	flex-wrap: wrap;
}



/* события */

.event {
	position: relative;
	/*max-width: 500px;
	margin: 2em 2em;*/
}

.event * {
	transition: 500ms;
}

.event_img {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 20em;
}

.event_img:hover {
	transform: scale(1.03);
	box-shadow: 0.5em 0.5em 0.5em 0 rgba(0, 0, 0, 0.3);
}

.event_date {
	padding-right: 2em;
	text-align: center;
}

/*
.event_img_bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 120pt;
	background-color: rgba(255,255,255, 0.7);
	font-size: 130pt;
	overflow: hidden;
	opacity: 0.7;
}

.event_date {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 800;
	position: absolute;
	top: -60pt;
	left: -15pt;
	color: var(--color3);
}

.event_month {
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 600;
	font-size: 20%;
	position: absolute;
	bottom: 0.5em;
	left: 0pt;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: var(--color3);
}*/

.event_img:hover .event_img_bar {
	opacity: 1;
}

.event h3 {
	margin-top: 0em;
}

.event a {
	color: #000;
}

.event a:hover {
	color: var(--color1);
	text-decoration: underline;
}


/* ... */

.button {
	font-family: "OpenSansCondensed";
	font-style: normal;
	font-weight: bold;
	display: inline-block;
	padding: 0.2em 2em;
	color: #fff !important;
	border-radius: 0.5em;
	/*background-color: var(--color1);*/
	background-image: url(/files/site/button_bg.png);
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
	transition: 500ms;
}

.button:hover {
	color: #fff !important;
	box-shadow: 0.2em 0.2em 0.5em 0 var(--color1);
}

#logo_table {
	padding: 1em;
	position: absolute;
	top: 0;
	left: 0;
}

#logo_table td {
	padding: 1em;
}

#logo_text {
	font-family: Georgia, "serif";
	font-style: normal;
	font-weight: bold;
	font-size: 18pt;
}
#partners div {
	padding: 3em 3em;
}

#main_video {
	background-image: url(/files/site/video_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.menu_main {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
	font-family: Georgia, "serif";
	font-style: normal;
	text-decoration: none;
}

.menu_main li {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-weight: 300;
}

.menu_main > li {
	padding: 1em 2em;
	/*font-weight: bold;*/
}

.menu_main ul {
	display: block;
	list-style: none;
	padding: 1em 0 0 0;
}

.menu_main a {
	color: #000;
}

.menu_main a:hover {
	color: var(--color1);
}

.banner {
	position: relative;
}

.jury_item * {
	transition: 100ms;
}
.jury_item {
	padding: 0.5em 0;
	box-sizing: border-box;
}

.jury_item h3 {
	margin: 0;
}

.jury_item a {
	color: #000;
	text-decoration: none;
}

.jury_item a:hover {
	color: var(--color2);
	text-decoration: none;
}
.jury_item:hover img {
	filter: brightness(1.1);
}

.juri_detail img {
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3);
}

.round_date {
	text-align: center;
}

.round_date_day {
	font-family: "OpenSans";
	font-weight: bold;
	display: inline-block;
	width: 120px;
	height: 100px;
	background-image: url(/files/site/round_date.png);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	font-size: 70px;
	color: #fff;
}

.round_date_month {
	color: var(--color2);
	font-family: "OpenSans";
}

.regulations h3 {
	color: var(--color1);
}

.regulations td:first-child {
	font-family: "OpenSans";
	font-weight: bold;
	color: var(--color2);
	vertical-align: top;
}

.regulations td {
	padding: 0.5em 0.2em;
}

.regulations hr {
	border: 0;
	border-bottom: 1px solid var(--color2);
}






.slick-slide {
	outline: none;
}

.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: relative;
	padding: 0;
}

.slick-dots li::before {
	content: '';
}


.slick-dots li {
	display: block;
	width: 0.7em;
	height: 0.7em;
	margin: 0.3em;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid var(--color1);
	cursor: pointer;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
}

.slick-dots li:hover {
	background-color: var(--color1);
}

.slick-dots button {
	display: none;
}

.slick-slide {
	outline: none;
}


.slick-prev {
	position: absolute;
	left: 0;
	top: 40%;
	padding: 1em 0.5em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 0;
	top: 40%;
	padding: 1em 0.5em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev img,
.slick-next img {
	height: 3em;
}

label {
	display: inline;
}


#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	padding: 2rem 2rem 1rem 2rem;
	text-align: start;
	z-index: 9997;
	justify-content: center;
}

#decline-cookies {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: auto;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
}

.cookie-card {
	background-color: rgba(0, 0, 0, 0.8);
	width: 500px;
	max-width: 100%;
	position: relative;
	padding: 1rem 0.5rem 0 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}

.login {
	position: absolute;
	display: block;
	top: 1rem;
	right: 1rem;
	z-index: 10;
}


.user_img {
	width: 2em;
	height: 2em;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 0.5rem;
}






iframe {
	display: block;
	margin: 1em auto;
	max-width: 100%;
}

@media only screen {
	iframe {
		width:  1000px;
		height:  562px;
	}
}
@media only screen and (max-width: 1000px) {
	iframe {
		width:  100vw;
		height:  56.25vw;
	}
}

/*
iframe.video {
	display: block;
	margin: 1em auto;
	max-width: 100%;
}

@media only screen {
	iframe.video {
		width:  1000px;
		height:  562px;
	}
}
@media only screen and (max-width: 1000px) {
	iframe.video {
		width:  100vw;
		height:  56.25vw;
	}
}

.video iframe {
	display: block;
	margin: 1em auto;
	max-width: 100%;
}

@media only screen {
	.video iframe {
		width:  1000px;
		height:  562px;
	}
}
@media only screen and (max-width: 1000px) {
	.video iframe {
		width:  100vw;
		height:  56.25vw;
	}
}
*/