* {
/*	outline: 1px dotted red;*/
	box-sizing: border-box;
	scroll-behavior: smooth;
}

html {
	height: 100%;
}

body {
	position: relative;
	height: 100%;
	background: lightblue;
	font-family: 'Roboto', sans-serif;
	background: url(img/webb.png);
}

.container {
	background: white;
	min-height: 100vh;
	border-left: 1px solid #b31800;
	border-right: 1px solid #b31800;
	box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.5);
}

h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
}

h4 {
	font-size: 1.5em;
}

a {
	font-weight: bold;
	text-decoration: none;
	color: #b31800;
	transition: all 0.3s;
}

a svg {
	fill: #b31800;
}

a:hover {
	color: #e52000;
}

a:hover svg {
	fill: #e52000;
}

span {
	white-space: nowrap;
}

.partners-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.partners-container .partner-logo{
	margin: 15px 30px;
}

.header {
	background: black;
	border-bottom: 1px solid #b31800;
	overflow: hidden;
    position: relative;
}

.header video {
	position: absolute;
    display: inline-block;
    vertical-align: baseline;
    top: 50%;
    left: 50%;
    width: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.logo {
	background: url(img/pcg.png);
	background-repeat: no-repeat;
	width: 288px;
	height: 200px;
	margin: 30px auto;
	position: relative;
	z-index: 1;
	transform-style: preserve-3d;
	    background-size: contain;
}

.navbar {
	z-index: 99;
	position: fixed;
    top: 0px;
    left: 5px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-burger, .navbar-top {
	position: relative;
	width: 30px;
	color: white;
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

.navbar-burger:hover {
	cursor: pointer;
}

.navbar-burger span {
	position: absolute;
	display: block;
	background: white;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.navbar-burger span:first-of-type {
	top: 10px;
}

.navbar-burger span:last-of-type {
	top: calc(100% - 10px);
}

.navbar-burger.open span {
	opacity: 0;
}

.navbar-burger.open span:first-of-type {
	opacity: 1;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.navbar-burger.open span:last-of-type {
	opacity: 1;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.navbar-burger, .navbar-top, .navbar-list {
	height: 30px;
	margin: 10px 5px;
	background: #b31800;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

.navbar-list {
	height: 30px;
	color: white;
	list-style: none;
}

.navbar-list.hidden {
	display: none;
}

.navbar-item {
	margin: 0;
}

.navbar-link {
	text-transform: lowercase;
	padding: 4px 12px 6px;
	background: #b31800;
	color: white;
	font-size: 18px;
}

.navbar-link:hover {
	background: #e52000;
	color: white;
}

.navbar-item:first-of-type .navbar-link {
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
}

.navbar-item:last-of-type .navbar-link {
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
}

.navbar-top:hover {
	background: #e52000;
}

.navbar-top:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid white;
    transform: translate(-50%, -50%);
}

section {
	padding: 30px 50px;
}

.contact-container {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.contact-person {
	text-align: center;
}

.contact-person img {
	width: 200px;
	border: 2px solid #b31800;
	border-radius: 25px;
}

.contact-person a {
	font-size: 0.9em;
}

.event-content img, .doc-preview {
	width: 100%;
	max-width: 500px;
	border: 2px solid #b31800;
	border-radius: 25px;
	margin: 0 auto 20px;
	display: block;
}

.doc-preview {
	border-radius: 5px;
}

.publications {
	list-style: none;
}

.publications .title {
    white-space: break-spaces;
    font-weight: 500;
}

.publications a {
	font-weight: 500;
}

tr:nth-of-type(even) {
	background: #e7e7e8;
}

th {
	background: #b31800;
	color: #fff;
}

td {
	padding: 5px;
}

th {
	text-align: center;
}

th:first-child, td:first-child {
	padding-left: 10px;
}

th:last-child, td:last-child {
	padding-right: 10px;
}

th:first-child {
	border-top-left-radius: 20px;
}

th:last-child {
	border-top-right-radius: 20px;
}

.button {
	text-transform: lowercase;
/*	padding: 4px 12px 6px;*/
	background: #b31800;
	color: white;
	font-size: 18px;
	border-radius: 20px;
	border: none;
}

.button:hover {
	background: #e52000;
	color: white;
}

.keynote {
	width: 100%;
	max-width: 500px;
	border: 2px solid #b31800;
	border-radius: 25px;
	margin: 0 auto 20px 0;
	display: block;
}

@media (max-width: 600px) {
	.container {
		width: 100%;
		border: none;
		padding: 0;
	}

	.navbar-burger, .navbar-top {
		width: 50px;
	}

	.navbar-burger span {
		width: 22px;
		height: 4px;
	}

	.navbar-burger span:first-of-type {
		top: 16px;
	}

	.navbar-burger span:last-of-type {
		top: calc(100% - 16px);
	}

	.navbar-burger, .navbar-top, .navbar-list {
		height: 50px;
		margin: 10px 5px;
		background: #b31800;
		border-radius: 25px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow: none;
	}

	.navbar-top {
		position: fixed;
		bottom: 10px;
		right: 10px;
	}

	.navbar-top:after {
	    border-left: 10px solid transparent;
	    border-right: 10px solid transparent;
	    border-bottom: 16px solid white;
	}

	.navbar-list {
		height: 50px;
		color: white;
		list-style: none;
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 10px;
		display: flex;
		background: none;
		justify-content: flex-start;
		margin: 0;
	}

	.navbar-item {
		margin: 0;
    	width: 100%;
    	text-align: center;
	}

	.navbar-link {
		text-transform: lowercase;
		padding: 4px 32px 6px;
		background: #b31800;
		color: white;
		font-size: 25px;
		height: 50px;
		display: block;
		border-radius: 25px;
		margin: 10px 0;

	}

	.navbar-item:first-of-type .navbar-link {
		border-bottom-left-radius: 25px;
		border-top-left-radius: 25px;
	}

	.navbar-item:last-of-type .navbar-link {
		border-bottom-right-radius: 25px;
		border-top-right-radius: 25px;
	}
}

