html {
	height: 100%;
	font-size: 0px;
}

#page {
	padding: 40px 5%;
	background-color: #fff;
}

* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	box-sizing: border-box;
}

::selection {
	background-color: #006cb7;
	color: #fff;
}

a, a::before {
	text-decoration: none;
	transition: color 0.4s ease-in-out;
}

h1 {
    margin: 6px 0;
	text-align: center;
    font-size: calc(min(6vw, 48px));
	white-space: nowrap;
}

h2 {
    margin: 6px 0;
	text-align: center;
    font-size: calc(min(4vw, 26px));
	white-space: nowrap;
}

h3 {
    margin: 6px 0;
    font-size: 22px;
	white-space: nowrap;
}

p {
    margin: 6px 0;
	text-align: center;
    font-size: 22px;
}

ul {
	list-style-position: outside;
    margin: 6px 36px;
}
ul > li, ul > li > strong {
	font-size: 20px;
}

p a, ul a {
	color: #006cb7;
	font-family: inherit;
	font-size: inherit;
}
p a:hover, ul a:hover {
	color: #442828;
}

img.portrait {
	border-radius: 4px;
    max-width: 60vw;
    display: block;
    width: 90%;
    margin: 0 auto 5% auto;
}

div.row {
	display: flex;
	flex-flow: row wrap;
	margin: 2vw;
}
div.row.nowrap {
	flex-flow: row nowrap;
}


div.row > div.col1 {
	width: 33%;
}
div.row > div.col2 {
	width: 67%;
}


div.row > div.col1 > h3 {
	text-align: left;
}

div.row > div.col2 > p {
	text-align: left;
}

button, a {
	cursor: pointer;
    outline: none;
	color: black;
}


a.panel {
	display: flex;
	flex-flow: column nowrap;
	width: 33%;
	padding: 30px 2%;
	background: none;
    border: none;
	opacity: 0.95;
	transform: perspective(1px) scale(1.02);
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
a.panel:hover {
	transform: scale(1.05);
	opacity: 1;
}
a.panel > img {
	display: block;
	width: 90%;
	margin: 0 auto;
}
a.panel > span.panel-button {
	flex-grow: 1;
	display: block;
	background: url(img/panel.png);
	background-size: 100% 100%;
	width: 100%;
}
a.panel > span.panel-button > span.panel-content {
	display: block;
	padding: 15% 10%;
}
a.panel > span.panel-button > span.panel-content > span.panel-headline {
	display: block;
	font-size: calc(min(3vw, 26px));
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 20px;
	text-align: center;
}
a.panel > span.panel-button > span.panel-content > span.panel-text {
	display: block;
	font-size: calc(min(2.2vw, 22px));
	text-align: center;
}


div.footer {
	flex-flow: row nowrap;
	justify-content: space-around;
	background-color: #154172;
	margin: 0px;
	padding: 20px 40px;
	color: #fff;
}
div.footer > p {
	white-space: nowrap;
	text-align: left;
	font-size: 14px;
	margin: 10px 2%;
}

@media (max-width: 880px) 
{
	a.panel {
		margin: 30px 0;
	}

	div.row > div.col1 {
		width: 100%;
	}
	div.row > div.col2 {
		width: 100%;
	}

	div.footer {
		flex-flow: column nowrap;
	}
}