@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v32-latin-regular.eot');
	src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'),
		url('../fonts/roboto-v32-latin-regular.woff') format('woff'),
		url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'),
		url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/roboto-v32-latin-500.eot');
	src: url('../fonts/roboto-v32-latin-500.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto-v32-latin-500.woff2') format('woff2'),
		url('../fonts/roboto-v32-latin-500.woff') format('woff'),
		url('../fonts/roboto-v32-latin-500.ttf') format('truetype'),
		url('../fonts/roboto-v32-latin-500.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v32-latin-700.eot');
	src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto-v32-latin-700.woff2') format('woff2'),
		url('../fonts/roboto-v32-latin-700.woff') format('woff'),
		url('../fonts/roboto-v32-latin-700.ttf') format('truetype'),
		url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
	font-size: 1rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #666;
	font-family: "Roboto", "Arial", sans-serif;
	font-size: .937rem;
	line-height: 1.5;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 53.125rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #F0F0F0;
	border: thin solid #ddd;
	box-shadow: 0 0 .937rem .312rem #eee;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 .625rem;
}

h1 {
	display: block;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1.25rem;
	text-align: center;
	color: #FF0000;
}

h2 {
	text-align: left;
	font-size: .875rem;
	line-height: 1;
	margin: 0 0 .625rem;
	color: #FF0000;
}

h3 {
	font-size: 1.062rem;
	margin: 0 0 .625rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}

ul {
	list-style: none;
	margin: 0 0 0 2.5rem;
	padding: 0;
}

ul li {
	padding-left: 1.5rem
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.5rem;
	font-size: 1.375em;
	line-height: 1.2;
}

header {
	margin: 0;
	padding: 0 0 0 1.875rem;
	background: #FF0000;
}

@keyframes slidy {
	0% {
		left: 0%;
	}

	30% {
		left: 0%;
	}

	33% {
		left: -100%;
	}

	64% {
		left: -100%;
	}

	67% {
		left: -200%;
	}

	97% {
		left: -200%;
	}

	100% {
		left: -300%;
	}
}

.slider {
	overflow: hidden;
}

.slider figure {
	position: relative;
	width: 400%;
	margin: 0;
	left: 0;
	text-align: left;
	font-size: 0;
	animation: 30s slidy infinite;
}

figure img {
	width: 25%;
	float: left;
}

.logo {
	width: 15.625rem;
}

article {
	padding: 1.875rem 1.875rem .625rem;
}

.box {
	padding: 1.562rem 1.875rem;
	margin: 0 0 1.25rem;
	background: #fff;
}

.margin {
	margin: 0;
}

footer {
	background: #666666;
	padding: 1.25rem 1.875rem;
	border-bottom: 1.25rem solid #FF0000;
}

footer p {
	color: #fff;
}

a.apply {
	color: #FF0000;
}

a.apply:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}

	article {
		padding: .625rem 0 0;
	}

	.box {
		padding: .625rem;
	}

	footer {
		padding: .625rem;
	}
}

@media only screen and (max-width: 48rem) {
	ul {
		margin: 0 0 0 .625rem;
	}

	ul li {
		padding-left: .937rem;
	}

	ul li:before {
		margin-left: -.937rem;
	}
}

@media only screen and (max-width: 30rem) {
	.logo {
		margin: 0 auto;
	}
}

@media only screen and (max-width: 23.437rem) {
	h1 {
		font-size: 1.437rem;
	}

	h3 {
		font-size: 1rem;
		line-height: 1.1;
	}
}