html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	background: #faa619;
}

body {
	line-height: 1;
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	/* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	/* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: .5s;
	-moz-animation-duration: .5s;
	animation-duration: .5s;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* main css */

html {
	scroll-behavior: smooth;
}

body {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #fff;
}

/* helpers */

.show {
	display: block !important;
}

/* event */

.eventimages img {
	width: 100%;
	object-fit: cover;
	margin-bottom: -2px;
	z-index: 10;
    position: relative;
}

.page-title {
	position: absolute;
    top: -20px;
    z-index: 1;
}

/* navigation side menu */

.menuContainer {
	position: fixed;
	z-index: 20;
	line-height: 11em;
	margin-right: 10px;
	right: 50px;
	top: 28.3%;
}

.menuSymbols {
	fill: transparent;
	stroke: #000;
	stroke-width: 4px;
	transition-duration: 400ms;
}

.menuSymbols:hover {
	fill: #fff;
}

/* video container */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65%;
	height: 50%;
	z-index: 101;
	transform: translate(-50%, -50%);
	display: none;
	border: 0;
}

.embed-container__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../img/video-overlay-min.jpg') center center;
	background-size: cover;
	z-index: 100;
	cursor: pointer;
}

/* bottom domain */

.domain {
	padding: 39px 42px;
	font-size: 15px;
	line-height: 1.4em;
	color: #605E5E;
	max-width: 300px;
}

.domain p {
	padding-bottom: 20px;
}

.domain a {
	color: #605E5E;
}

@media only screen and (max-width: 650px) {
	.menuContainer {
		display: none;
	}
}

@media only screen and (max-width: 900px) {
	.embed-container iframe,
	.embed-container object,
	.embed-container embed {
		width: 100%;
		height: 100%;
		z-index: 101;
	}
}

/* animations */

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}