html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, ins, kbd, q, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, input, button, select, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: none;
	margin: 0;
	outline: 0;
	padding: 0;
	color: inherit;
}

@font-face {
    font-family: 'victormono';
    src: url('victormono-medium-webfont.woff2') format('woff2'),
         url('victormono-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


*, *:before, *:after{ box-sizing: border-box; }
p{ margin-bottom: 15px; }

html, body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
}
body.admin-bar{
	padding-top: 132px;
}

#page{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
#content{
	flex-grow: 1;
}
.flex{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}


/* MAIN MENU */
header nav{
	flex-grow: 1;
}
header nav ul.menu{
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
}
header nav ul.menu > li{
	display: inline-block;
	list-style: none;
	position: relative;
	height: 50px;
	display: flex;
	align-items: center;
}
header nav ul.menu > li > a{
	position: relative;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 13px;
	display: inline-block;
	padding: 10px 15px;
}



footer ul{
	display: inline-block;
}
footer ul li{
	display: inline-block;
	list-style: none;
}
footer ul li + li:before{
	content: ' - ';
	margin: 0 5px;
}

footer span.top{
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 12px;
	cursor: pointer;
}
footer span.top svg{
	display: block;
	font-size: 17px;
	margin: 0 auto;
}


.cookie-bar{
	background-color: #314157;
	text-align: center;
	overflow: auto;
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	padding: 15px;
}
.cookie-bar p{
	margin-bottom: 0;
}
.cookie-bar span{
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	text-align: center;
	position: absolute;
	top: 15px;
	right: 15px;
	border: 1px solid #fff;
}
.cookie-bar span svg{
	margin: 0;
}


/*WP BLOCKS*/
.wp-block-table{
	border-collapse: collapse;
	margin: 0 auto 20px;
	width: 100%;
}
.wp-block-table td{
	border: 1px solid #efefef;
	padding: 10px;
}
.wp-block-table tr:nth-child(even) td{
	background: #f5f5f5;
}


/*REVEAL*/
.reveal{
	opacity: 0;
	transform: translateY(-30px);
}
.reveal-left,
.wp-block-media-text{
	opacity: 0;
	transform: translateX(-30px);
}
.reveal-right,
.wp-block-media-text.has-media-on-the-right{
	transform: translateX(30px);
}
.reveal-visible{
	opacity: 1;
	transform: translateY(0);
	transition: 1s cubic-bezier(.5, 0, 0, 1);
}
.reveal-left.reveal-visible,
.reveal-right.reveal-visible,
.wp-block-media-text.reveal-visible{
	transform: translateX(0);
}