/* 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;
}
html, body {

	min-height:100%;
}
body {
	line-height: 1;
	background-image: url(img/bg.webp);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
}
strong {
	font-weight: 400;
}
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;
}
p:not(p:last-of-type) {
	margin-bottom:0.8em;
}
a {
	color:#2E3842;
	text-decoration: none;
}
.container {
	position: absolute;
	bottom:0;
	left:50%;
	transform: translateX(-50%);
	display: block;
	height:auto;
	width: 90%;
	background-size: cover;
	overflow: hidden;
	z-index:1;
	pointer-events: none;
}
.container img {
	position: relative;
	display: block;
	margin: 0 auto;
}
.logo {
	margin-top:50px;
	margin-left: 50px;
	width:15%;
}
.logo-bottom img {
	position: absolute;
	bottom:0;
	max-width:100%;
	opacity: 0.1;
	width:100%;
	z-index:0;
}
.contact {
	position: absolute;
	bottom:50px;
	right:50px;
	background-color: rgba(255, 255, 255, 0.9);
	color:#42597A;
	width:20%;
	min-width:400px;
	border-radius: 3px;
	z-index:3;
}
.contact-inner {
	padding:2em;
}
.contact span {
	display: block;
	margin-bottom: 0.4em;
}

@media only screen and (min-width: 1600px) {
	.container img {
		max-width:1600px;
	}
}

@media only screen and (max-width:768px) {
	.container img {
		display:none
	}
	.logo {
		width:35%;
	}

	.contact {
		bottom:0;
		right:0;
		width: 100%;
		background-color: rgba(255, 255, 255, 0.7);
	}
}