@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: 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-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: 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');
}

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

body {
	color: #606060;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 0.963em;
	line-height: 1.431em;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.logo {
	width: fit-content;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	border: none;
	background-color: #fff;
	overflow: hidden;
	box-shadow: 0 0 1.375rem #A6A6A6;
}

p {
	text-align: left;
}

h1 {
	font-size: 2.892em;
	line-height: 1.1em;
	hyphens: none;
	margin: 30px 0;
}

h2 {
	font-size: 1.231em;
	line-height: 1.231em;
	color: #8E99A8;
}

h3 {
	font-size: 1.231em;
	line-height: 1.331em;
	font-weight: normal;
	color: #EE7F00;
}

a.apply {
	width: 15rem;
	line-height: 3.125rem;
	display: block;
	text-align: center;
	background: #fff;
	color: #6c757d;
	border: .062rem solid #EE7F00;
	border-radius: .312rem;
	text-decoration: none;
	position: absolute;
	bottom: 2.2%;
	right: 8.9%;
}

a.apply:hover {
	background-color: #EE7F00;
	color: #000;
}


ul {
	padding-left: 2rem;
}

li {
	padding-bottom: 0.2rem;
	list-style-type: none;
}

li:before {
	content: "\2022";
	color: #EE7F00;
	float: left;
	margin-left: -.937rem;
	font-size: 1.312rem;
}

header {
	padding: 1.5rem 2rem;
}

article {
	padding: 0 2rem;
}

footer {
	padding: 1rem 2rem;
	background-color: #F4F5F7;
	color: #6c757d;
}

section {
	padding: 1rem 1.5rem;
	margin-bottom: 1.5rem;
	border: .062rem solid #A6A6A6;
	box-shadow: .187rem .187rem .25rem #A6A6A6;
	background-color: #F4F5F7;
}

.slider {
	position: relative;
	margin: 0;
}

.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:49.937rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
		padding: 1rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width:43.75rem) {
	h1 {
		text-align: center;
	}
}

@media only screen and (max-width:40rem) {
	header {
		padding: 1.5rem 1rem;
	}

	article {
		padding: 0 1rem;
	}

	footer {
		padding: 1rem;
	}

	ul {
		padding-left: 1rem;
	}

	a.apply:link,
	a.apply:visited {
		position: relative;
		bottom: 0;
		right: 0;
	}
}

@media only screen and (max-width:31.25rem) {
	h1 {
		font-size: 1.56em;
	}

	h2 {
		font-size: 1.1em;
	}

	header img {
		margin: 0 auto;
	}
}