﻿@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v36-latin-regular.eot');
	src: url('../fonts/open-sans-v36-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-regular.woff') format('woff'), url('../fonts/open-sans-v36-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v36-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open-sans-v36-latin-700.eot');
	src: url('../fonts/open-sans-v36-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-700.woff') format('woff'), url('../fonts/open-sans-v36-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v36-latin-700.svg#OpenSans') format('svg');
}

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
	font-weight: 400;
}

#wrapper {
	max-width: 720px;
	margin: 1rem auto;
	border: solid thin #242021;
	overflow: hidden;
	position: relative;
}

strong {
	font-weight: 700;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

header figure {
	padding: 16px;
}

.button {
	background: #2E9641;
	border-radius: 5px;
	width: 180px;
	display: block;
	height: 35px;
	line-height: 35px;
	text-align: center;
}

.slider {
	position: relative;
}

@keyframes slidy {
	0% {
		opacity: 0;
	}

	6.6% {
		opacity: 1;
	}

	33.3% {
		opacity: 1;
	}

	39.9% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}

}

.slider img {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	animation: slidy 15s linear 0s infinite normal forwards;
	vertical-align: bottom;
}

.slider img:nth-of-type(1) {
	position: relative;
}

.slider img:nth-child(2) {
	animation-delay: 5s;
}

.slider img:nth-child(3) {
	animation-delay: 10s;
}

article {
	padding: 0 16px;
}

footer {
	padding: 0 16px 30px;
	border-top: #2E9641 5px solid;
}

footer h2 {
	margin-top: 20px;
}

section {
	border-right: #2E9641 25px solid;
}

h1 {
	font-size: 22px;
	margin: 16px 0 3px;
	line-height: 28px;
	font-weight: 700;
	color: #2E9641;
	text-align: center;
}

h1+p {
	text-align: center;
}

h2 {
	font-size: 19px;
	margin: 30px 0 12px;
	line-height: 21px;
	font-weight: 700;
	color: #2E9641;
}

h3 {
	font-size: 20px;
	margin: 30px 0 12px;
	line-height: 24px;
	font-weight: 700;
	color: #2E9641;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

p:not(:last-child) {
	margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 30px 25px;
	list-style: none;
}

ul li {
	padding-left: 20px;
}

li:before {
	text-indent: -20px;
	content: "\2022";
	color: #242021;
	float: left;
	font-size: 21px;
	font-family: Arial, sans-serif;
}

@media screen and (max-width:718px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	section {
		border-right: none;
	}

	p span {
		white-space: nowrap;
	}
}

@media screen and (max-width:480px) {
	ul {
		margin-left: 0;
	}
}