body {
	background: #555;
	margin: 0;
	padding: 0;
	font-family: Exo;
	font-weight: normal;
	color: #c4c4c4;
	font-size: 1.2rem;
	line-height: 1.5;
}

body > * {
	padding: 1.5rem 2rem;	
}

body > *:not(footer) {
	background-color: #fff;
	color: #333;
}

body > footer {
	font-size: 1rem;
}

h1, h2, h3 {
 font-family: 'Bree Serif', serif;
}  


div.center {
	max-width: 50rem;
	margin: 0 auto;
    display: flex;
    overflow: hidden;
}

a {
	color: #333;
  	text-decoration: underline;
}

a:hover {
  	text-decoration: none;
}

#content div.center {
  display: block;
}

#hero {
	max-width: none;
	height: 20rem;
	padding-right: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#hero h1 {
	margin: 0;
	padding: 2rem 2.5rem;
	background: rgba(255,255,255,.4);
	backdrop-filter: blur(8px);
}

#hero h1 b {
	color: #e94c3b;
}

nav > ul {
	list-style: none;
	display: inline-block;
}

nav > ul > li {
	display: inline-block;
}

nav > ul > li > a {
	text-decoration: none;
}

header .logo img {
	margin-top: 8px;
}

header nav {
	font-size: 1.4rem;
	font-weight: bold;
}

header nav a {
	color: #333;
	display: inline-block;
	padding: 0;
	white-space: nowrap;
}

header nav > ul > li:last-child > a {
	padding-right: 0;
}

header div.center > *,
footer div.center > * {
	display: flex;
	align-items: center;
	
}

header div.center > nav,
footer div.center > nav {
	flex: 1;
	justify-content: flex-end;
}

footer .mailstopper {
    max-width: 50rem;
    margin: 0 auto;
    text-align: right;
    margin-top: 10px;
}

footer .mailstopper img {
	height: 33px;
}

footer nav > ul > li > a {
	color: #c4c4c4;

}

footer nav > ul > li:not(:last-child) > a:after {
	display: inline-block;
	padding: 0 1rem;
	content: ' | ';
}

.accordeon { flex: 1; }
.accordeon ul { display: block; margin: 0; padding: 0; list-style: none; }
.accordeon li { padding: 1.0rem 0; }
.accordeon li p { font-style: italic; color: #808080;}
.accordeon li + li { border-top: 1px solid #eee; }
.accordeon li > *:not(.toggle) { display: none; }
.accordeon li .toggle { position: relative; display: block; text-decoration: none; cursor: pointer; }
.accordeon li .toggle:after { content: '▼'; position: absolute; right: 0; top: .25rem; }
.accordeon li.show > * { display: block; }
.accordeon li.show .toggle:after { transform: rotate(180deg); }

/* exo-regular - latin */
@font-face {
  font-family: 'Exo';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/exo-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('./fonts/exo-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('./fonts/exo-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('./fonts/exo-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('./fonts/exo-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('./fonts/exo-v18-latin-regular.svg#Exo') format('svg'); /* Legacy iOS */
}

/* bree-serif-regular - latin */
@font-face {
  font-family: 'Bree Serif';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/bree-serif-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('./fonts/bree-serif-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('./fonts/bree-serif-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('./fonts/bree-serif-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('./fonts/bree-serif-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('./fonts/bree-serif-v16-latin-regular.svg#BreeSerif') format('svg'); /* Legacy iOS */
}

@media screen and (max-width: 440px) {
	header .center,
	footer .center {
		display: block;
	}
	header .center > *,
	footer .center > * {
		justify-content: center !important;
	}
	nav > ul {
		text-align: center;
		padding: inherit;
		display: grid;
	}
    footer nav > ul > li:not(:last-child) > a:after {
    	content: none;
    }
    h1 {
     line-height: 2.3rem;
     font-size: 1.8rem;
     letter-spacing: -0.02em;
    } 
     h2 {
     line-height: 2rem;
     font-size: 1.55rem;
     letter-spacing: -0.05em;
    }
    footer .mailstopper {
        text-align: center;
    }

}