@charset "utf-8";


:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	background: url(../images/bg.jpg) no-repeat top #fff;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 2.812rem auto 1.562rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 .625rem .312rem rgba(0, 0, 0, 0.2);
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 1.25rem;
}

h1 {
	font-size: 1.875rem;
	color: #f28435;
	font-weight: 400;
	line-height: 1.2
}

h1 span {
	white-space: nowrap;
}

h1 small {
	font-size: 1.25rem;
}

h2 {
	font-weight: 400;
	font-size: 1.25rem;
	padding: 0 0 .312rem 0;
	color: #f28435;
	line-height: 1.3
}

ul {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0 0 0 .875rem;
}

ul li {
	padding: 0 0 0px .312rem;
	position: relative;
}

ul li:before {
	content: '\00a0';
	position: absolute;
	width: 7px;
	height: 7px;
	left: -.75rem;
	top: .375rem;
	background-color: #f28435;
}

ul ul {
	padding: 0 0 0 35px;
	margin: 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;
	}
}

article {
	padding: 1.875rem 3.125rem;
}



.title {
	border-left: .5rem solid #cccccc;
	padding: .937rem 1.875rem;
	margin-bottom: 1.562rem;
	background: #f4f4f4;
}


a.btn {
	color: #f28435;
}

a.btn:hover {
	text-decoration: underline;
}

a.apply_btn {
	color: #f28435;
	font-size: 1rem;
	background: #cccccc;
	padding: .625rem 1.875rem .625rem 1.875rem;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	display: block;
	width: fit-content;
	margin: 30px auto 25px;
	text-align: center;
	line-height: 1.3;
	border: 1px solid transparent;
}

.apply_btn:hover {
	background: #f4f4f4;
	text-decoration: none;
	border: 1px solid #cccccc;
}

footer {
	padding: 1.875rem 3.125rem;
	background: #f28435;
	color: #fff;
}

footer p {
	margin: 0;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	article {
		padding: 1.25rem;
	}

	footer {
		padding: 1.25rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}


@media only screen and (max-width: 30rem) {
	h1 {
		font-size: 1.625rem;
	}

	h1 small {
		font-size: 1.187rem;
	}

	.title {
		padding: .937rem;
	}

	ul ul {
		padding: 0 0 0 1.562rem;
	}
}