@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: 16px;
	line-height: 1.5;
	background: #EFEFEF
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	position: relative;
	max-width: 970px;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ccc;
}

h1 {
	text-align: center;
	font-size: 35px;
	line-height: 1.3;
	background-color: #fff;
	box-shadow: 0px 8px 30px -12px #97999b;
	color: #41a547;
	padding: 20px 6.875rem;
	transform: translate(0, -50%);
}

h2 {
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.2;
	color: #41a547;
	margin: 0 0 1.875rem;
}

h3 {
	font-size: 19px;
	margin-bottom: 5px;
}

:is(a:link, a:visited, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 1.25rem;
}

span {
	white-space: nowrap
}

.green {
	color: #41a547
}

hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	margin: 1rem 0;
	border-top: 0.063rem solid #41a547;
}

ul {
	list-style: none;
	margin: 0 0 1.875rem;
	padding: 0;
}

ul li {
	padding-left: 1.125rem
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.125rem;
	font-size: 1.375rem;
	line-height: 1;
}

header {
	position: relative;
}

.logo {
	position: absolute;
	top: 1rem;
	right: 1rem
}

article {
	padding: 0 2.625rem .625rem
}

.button {
	display: flex;
	margin: 1rem 0;
}

a.apply {
	padding: 0.7rem 2rem;
	background: #41a547;
	color: #fff;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 1rem;
	text-align: center
}

a.apply:hover {
	background: #41a547
}

footer {
	padding: 0 2.625rem 2.625rem;
}

@media only screen and (max-width: 969px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}

	.container {
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 .625rem;
	}

	article {
		padding: 0 1rem .625rem
	}

	h1 {
		font-size: 1.5rem;
	}
	
	footer {
		padding: 0 1rem 1rem;
	}

}

@media only screen and (max-width: 850px) {

	h1 {
		transform: translate(0, 0);
		padding: .625rem;
		margin-bottom: 1rem;
	}

	h2 {
		font-size: 1.25rem;
	}
	h3 {
		font-size: 1,15rem;
	}

	header {
		padding: 1rem 0
	}

	.logo {
		position: static;
		margin: 0 auto 1rem
	}

	a.apply {
		padding: 1rem;
		text-align: center;
		width: 100%
	}

}

@media only screen and (max-width: 500px) {
	#wrapper {
		padding: .5rem;
	}
}