:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 23px;
	color: #3a434f;
	background: #F7F7F7;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	overflow: hidden;
}

header, footer {
	margin: 0 0 16px;
	padding: 20px;
	background: #fff;
	border: #E5E5E5 1px solid;
}

@-webkit-keyframes slidy {
	0% {
		left: 0%;
	}

	28% {
		left: 0%;
	}

	33% {
		left: -100%;
	}

	62% {
		left: -100%;
	}

	67% {
		left: -200%;
	}

	95% {
		left: -200%;
	}

	100% {
		left: -300%;
	}

}

@keyframes slidy {
	0% {
		left: 0%;
	}

	28% {
		left: 0%;
	}

	33% {
		left: -100%;
	}

	62% {
		left: -100%;
	}

	67% {
		left: -200%;
	}

	95% {
		left: -200%;
	}

	100% {
		left: -300%;
	}

}

.slider {
	padding: 0;
}

.slider section {
	overflow: hidden;
}

.slider section figure img {
	width: 25%;
	float: left;
}

.slider section figure {
	position: relative;
	width: 400%;
	-webkit-animation-duration: 13s;
	-webkit-animation-name: slidy;
	-webkit-animation-delay: 4s;
	-webkit-animation-iteration-count: infinite;
	animation: 13s slidy infinite;
}

header p {
	color: #6F6F6F;
}

header p span {
	margin-right: 10px;
}

header p i {
	font-size: 11px;
}

article div {
	background: #fff;
	border: #E5E5E5 1px solid;
	padding: 20px;
	margin-bottom: 16px;
}

article .button {
	margin-bottom: 16px;
}

.iframe-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 34%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	border: none;
}

footer {
	padding: 0;
	display: flex;
	justify-content: flex-end;
}

.button {
	background: #14213D;
	display: block;
	text-transform: uppercase;
	color: #fff !important;
	width: 177px;
	font-weight: bold;
	text-align: center;
	height: 40px;
	line-height: 40px;
}

h1 {
	font-size: 24px;
	margin: 16px 0;
	line-height: 28px;
	color: #121212;
}

h2 {
	font-size: 24px;
	margin: 10px 0 20px;
	line-height: 28px;
	color: #333333;
}

h3 {
	font-size: 22px;
	margin: 16px 0;
	line-height: 26px;
}

img {
	max-width: 100%;
}

p:not(:last-child) {
	margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #3a434f;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 16px 15px;
	list-style: none;
}

ul li {
	padding-left: 15px;
}

li:before {
	text-indent: -15px;
	content: "\2022";
	color: #3a434f;
	float: left;
	margin: 0;
	font-size: 21px;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p,ul) {
		text-wrap: pretty;
		hyphens: auto;
	}
}

@media screen and (max-width:480px) {
	ul {
		margin-left: 0;
	}
}