/* 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;
}

/* Landing page */

html {
	background: url('../img/landing-bg.jpg') no-repeat 50% 50% #efefed;
	background-size: cover;
	height: 100%;
}

.container {
	padding: 2% 10% 20% 10%;
	display: flex;
}

.bird {
	max-width: 45%;
}

.landing {
	padding: 15% 0 0;
	position: relative;
	left: -5%;
}

.nav {
	background: url('../img/select-country.png') no-repeat top center;
	background-size: 70%;
	text-align: center;
	padding-top: 9%;
}

.nav a {
	background: url('../img/flag-shadow.png') no-repeat bottom center;
	display: inline-block;
	background-size: contain;
	max-width: 32%;
}

.nav a img {
	max-width: 150%;
	position: relative;
	left: -22%;
}

img {
	max-width: 100%;
}

@media (max-width: 400px) {
	.container {
		padding-top: 35%;
	}
}

@media (max-width: 600px) {
	.container {
		padding-top: 30%;
	}
	.bird {
		position: relative;
		left: -12px;
		margin-top: 5%;
	}
	.landing {
		max-width: 58%;
	}
	.nav a {
		max-width: 30%;
	}
}

@media (min-width: 601px) {
	.bird {
		margin-top: 2%;
	}
	.landing {
		max-width: 55%;
	}
}

#cookieNotice {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	background:#fff;
	z-index: 2051;
	line-height: 20px;
	font-size: 21px;
	color:rgb(39, 36, 36);
	border-radius: 6px;
  
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  
	 > div:first-child;
	  width:650px;
	}
  
	a {
	  text-decoration: underline;
	}
  
	#closeIcon {
	  cursor: pointer;
	}

	.btn-primary {
		width: 10em;
		font-size: 18px;
	    border-radius: 10px;
		margin-left: 5px;
		background:white;

	}
  
	@include media-breakpoint-down(md) {
	  bottom: 0;
	  left: 0;
	  right: 0;
	  border-radius: 0;
  
	  > div:first-child {
		width: auto;
	  }
	}
  

