/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* -------------------------- */

*{
	box-sizing: border-box;
}

body{
	padding: 50px 0;
	font-family: sans-serif;
	font-size: 18px;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 1180px) {
	body{
		padding: 0;
	}
}

h1,h2,h3,h4,h5,h6{
	margin-bottom: 30px;
	font-weight: bold;
}
h1.center,h2.center,h3.center,h4.center,h5.center,h6.center,p.center{
	text-align: center;
}

h1{
	font-size: 30px;
}
h2{
	font-size: 26px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 22px;
}
p{
	margin-bottom: 20px;
}
strong{
	font-weight: bold;
}
a,a:visited{
	color: black;
}
button{
	background: #0da2f9;
	border: none;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	font-size: 120%;
	cursor: pointer;
}
button:hover{
	background: #0d4bf9;
}
button a{
	text-decoration: none;
	color: white;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 20px;
}

hr{
	border: none;
	margin: 50px 0;
	display: block;
}

.page{
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
	padding: 4%;
    background: rgba(255,255,255,0.75);
    box-shadow: 0 0 50px rgb(0 0 0 / 20%);
    border-radius: 5px;
}

.page > img,
.col > img
{
	max-width: 100%;
	height: auto;
	width: 100%;
}

.logo{
	display: block;
	width: 310px;
	height: 257px;
	margin: 0 auto 30px;
}

@media only screen and (max-width: 470px) {
	.logo{
		width: 100%;
		height: auto;
	}
}

.logo img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.columns{
	display: flex;
}
@media only screen and (max-width: 768px) {
	.columns{
		flex-wrap: wrap;
	}
}

.columns.v-c{
	align-items: center;
}

.columns .col{
	flex: 1 1 50%;
	padding: 0 2%;
}

@media only screen and (max-width: 768px) {
	.columns .col{
		flex: 1 1 100%;
		padding: 0;
	}
}

.footer{
	text-align: center;
	margin:50px 0;
}

.footer li{
	display: inline-block;
}

.footer li a{
	margin: 10px;
	display: block;
}