:root {
	--max-width: 1420px;
	--layout-padding: 20px;
	--yellow: #FFDB5C;
	--orange: #DBC268;
	--dark-blue: #003044;
	--dark-grey: #707070;
	--green: #647D77;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	margin: 0;
}

body {
 	background-color: #2C1302;
 	background-image: url(../img/bg.png);
	background-attachment:fixed;
 	background-size: cover;
 	background-position: top center;
 	font-family: Glober, sans-serif;
 	font-weight: 400;
	line-height: 1.6;
	font-size: 15pt;
}

.mobile {
	display: none;
}

a, a:visited {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: underline;
}

.centered {
	text-align: center;
}

.right {
	text-align: right;
}

.header {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: var(--layout-padding);
	padding-right: var(--layout-padding);
	margin-top: 70px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 80px; 
	color: white;
}

.header__logo img {
	width: 100px;
	height: 100px;
	vertical-align: top;
	margin-right: 20px;
}

.header__headline {
	margin: 0 0 -5px 0;
	color: white;
	font-weight: bold;
	line-height: 1;
	font-size: 37px;
	margin-right: 10px;
}

.header__year {
	font-size: 94px;
	color: white;
	font-weight: 800;
	line-height: 1;
	margin: 0 10px -10px 0;
}

.header__live {
	font-family: 'Signature Flavour Demo', Arial, sans-serif;
	font-size: 161px;
	color: white;
	line-height: 1;
	margin: 0 20px -60px 0;
	position: relative;
}

.header__toucan {
	position: absolute;
	top: -22px;
	left: -54px;;
	z-index: -1;
}

.header .btn {
	margin-left: auto;
	background-color: var(--yellow);
	border-radius: 34px;
	padding: 10px 20px;
	color: var(--dark-blue);
	margin-bottom: -10px;
}

.header .btn:hover {
	text-decoration: none;
}

.main {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: var(--layout-padding);
	padding-right: var(--layout-padding);
	margin-bottom: 20px;
}

.agenda {
	color: var(--yellow);
}

.content {
	display: flex;
	margin: 0 auto;
	color: white;
	padding-left: 100px;
}

.blog {
	flex: 1;
	background-color: var(--green);
	padding: 20px 0 0 0;
}

@media screen and (min-width: 1000px) {
	.blog {
		padding: 20px 0 0 80px;
	}
}

.aside {
	flex: 0 0 430px;
	padding: 85px 35px;
	background-color: var(--green);
}

.aside__content {
	padding-left: 0;
}

@media screen and (min-width: 1000px) {
	.aside__content {
		padding-left: 25px;
	}
}

.powered {
	font-size: 19px;
}

.powered a {
	text-decoration: underline;
}

.realisation {
	font-size: 14px;
	margin-bottom: 25px;
}

.nav {
	font-size: 14px;
	margin-bottom: 45px;
}

.nav a {
	font-weight: normal;
}

.backstage {
	background-color: white;
	padding: 32px 20px 20px 20px;
	color: var(--dark-grey);
	font-size: 20px;
	line-height: 24px;
	display: block;
}

.backstage h3 {
	color: var(--orange);
	margin: 0 0 15px 0;
	font-weight: normal;
	font-size: 29px;
}

.backstage p {
	margin: 0 0 20px 0;
	color: #707070;
	font-weight: normal;
}

.partners {
	margin-bottom: 40px;
}

.partners__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	text-align: center;
	row-gap: 10px;
}

.live {
	display: flex;
}

.live__image {
	width: 100%;
	vertical-align: top;
}

.live__video {
	flex: 1;
	background-color: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.live__chat {
	position: relative;
	flex: 0 0 475px;
	height: 535px;
	height: 563px;
	height: 509px;
	background-color: rgba(1, 39, 55, 0.7);
	border-radius: 0 52px 52px 0;
}

.chat__title {
	color: white;
	margin: 0 0 30px 0;
	font-size: 29px;
	font-weight: bold;
	font-weight: 600;
	line-height: 1;
	padding: 35px 15px 0 15px;
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
	-webkit-box-shadow: 6px 6px 16px -5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 6px 6px 16px -5px rgba(0, 0, 0, 0.5);
	box-shadow: 6px 6px 16px -5px rgba(0, 0, 0, 0.5);
}

.iframe-container iframe,
.iframe-container object,
.iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1220px) {
	.header {
		flex-wrap: wrap;
	}

	.header .btn {
		margin: 30px 0 0 0;
	}
}

@media screen and (max-width: 1000px) {
	.live {
		flex-direction: column;
	}

	.live__chat {
		border-radius: 0;
	}

	.content {
		padding-left: 0;
		flex-direction: column;
	}

	.blog {
		order: 1;
	}

	.aside {
		order: 0;
	}

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

	.partners__grid a {
		margin: 10px;
	}
}

.social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	margin-left: 25px;
}

.social li {
	margin-right: 10px;
}

.login {
	margin-top: 411px;
	margin-top: 21px;
}

.login__form {
	display: flex;
}

.login__form input {
	flex: 1;
	border: none;
	height: 60px;
	background-color: #012E19;
	color: white;
	resize: none;
	padding: 0 15px;
	font-family: 'Glober', Arial, sans-serif;
	font-size: 20px;
	line-height: 60px;
}

.login__form button {
	background-color: var(--yellow);
	border: none;
	font-size: 24px;
	font-weight: 600;
	font-family: 'Glober', Arial, sans-serif;
	padding: 0 10px;
	border-radius: 0 0 30px 0;
}

.storytile-sites-public-chat-messages::-webkit-scrollbar {
	width: 10px;
}

.storytile-sites-public-chat-messages::-webkit-scrollbar-track {
	background-color: #01170D;
}

.storytile-sites-public-chat-messages::-webkit-scrollbar-thumb {
	background-color: var(--yellow);
}

.storytile-sites-agenda-tooltip-time {
	display: none;
}