/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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

body {
	line-height:1;
}

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

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

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

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

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

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;   
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}

html {
	height: 100%;
	width: 100%;
}

body {
	/* background: url("../images/bgal.gif") no-repeat center center #000000; */
	/* background-size: cover; */
	margin: 0;
	padding: 0;
	/* transition: background-position 0.6s ease, background-size 0.6s ease; */
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("../images/bgal.gif") no-repeat center center #000;
  background-size: cover;
  transition: background-position 0.2s ease, background-size 0.6s ease;
  z-index: -1; /* stay behind all content */
  animation: pulse 1s 0.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.page {
	position: relative;
	margin: 0 auto;
	text-align: left;
	padding: 8%;
	min-height: 400px;
}

.logo {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
	height: auto;
}

.socials a {
	position: relative;
	display: inline-block;
	margin-right: 10px;
	line-height: 0;
	transition: all .4s ease;
}

	.socials i {
		line-height: 100%;
	}

	.socials a:hover {
		transform: scale(.9);
	}
	
.eu {
	background: white; 
	padding: 20px 20px 15px 20px; 
	position: absolute; 
	border: 3px solid black; 
	box-shadow: 0 0 16px rgba(0,0,0,0.5); 
	left: 8%;
	right: auto;
	bottom: 8%;
}

@media screen and (max-width: 767px) {
	.logo {
		background: rgba(0,0,0,.75);
		padding: 20px;
		border: 1px solid rgba(255,255,255,.3)
	}
	.eu {
		right: 8%;
	}
	.social-icon {
		padding: 5px;
		background: rgba(238,32,36,1);
		border: 1px solid rgba(255,255,255,.3);
		border-radius: 14px;
	}
}

.clearfix {
	display: block;
	height: 0;
	line-height: 0;
	width: 100%;
	clear: both;
}

@keyframes pulse {
  0% {
	  transform: scale(1) translate(0, 0);
	}
	20% {
	  transform: scale(1.05) translate(-3px, 2px);
	  
	}
	40% {
	  transform: scale(1.02) translate(2px, -2px);
	}
	100% {
	  transform: scale(1) translate(0, 0);
	}
}