@charset "utf-8";

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.531em;
	font-weight: 400;
	margin: 0;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	background-color: #fff;
	overflow: hidden;
	border: solid 1px #ef7d00;
}

header {
	padding: 2rem 3rem;
	background: #f0eeea;
	display: flex;
}

article {
	padding: 0 3rem;
}

footer {
	padding: 0.5rem 2rem 1rem;
	background: #F0EEEA;
}

h1 {
	font-size: 2em;
	line-height: 1.1em;
	color: #ef7d00;
	font-weight: 700;
	margin-bottom: 0;
}

h1 small {
	font-size: .75em;
}

h2 {
	font-size: 1.121em;
	line-height: 1.131em;
	color: #ef7d00;
	border-bottom: 1px solid #ef7d00;
	font-weight: 700;
}

h2+ul,
h2+p {
	margin-top: -0.5rem;
}

footer a {
	border: solid thin rgba(3, 0, 2, 0.22);
	padding: 0.25rem 0.5rem;
	color: #ef7d00;
	background: #fff;
	text-decoration: none;
	display: inline-block;
	margin-top: 1rem;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	padding-left: 1rem;
}

li {
	padding-bottom: 0.2rem;
	list-style-type: none;
}

li:before {
	content: "\2022";
	float: left;
	margin-left: -0.938rem;
	font-size: 21px;
}

section {
	box-shadow: 0 0 10px rgb(0 0 0 / 40%);
	padding: 0.5rem 1.5rem;
	margin: 1.8rem 0;
}

.slider {
	position: relative;
}

.slider>img {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
	position: static;
	opacity: 1;
}

.slider>img:nth-of-type(2) {
	animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
	animation-delay: 12s;
}

@keyframes imageAnimation {
	4% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
	}
}

@media only screen and (max-width:799px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width:760px) {
	header {
		padding: 2rem 1rem;
	}

	article,
	footer {
		padding: 0 1rem;
	}

	footer {
		padding: 0.5rem 1rem 1rem;
	}
}

@media only screen and (max-width:581px) {
	header {
		justify-content: center;
	}

	section {
		padding: .5rem 1rem;
	}

	h1 {
		font-size: 1.7rem;
		text-align: center;
	}
}