@charset "utf-8";

/* fira-sans-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/fira-sans-v18-latin-regular.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/fira-sans-v18-latin-regular.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/fira-sans-v18-latin-regular.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/fira-sans-v18-latin-regular.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/fira-sans-v18-latin-regular.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/fira-sans-v18-latin-regular.svg#FiraSans') format('svg');
	/* Legacy iOS */
}

/* fira-sans-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/fira-sans-v18-latin-700.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/fira-sans-v18-latin-700.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/fira-sans-v18-latin-700.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/fira-sans-v18-latin-700.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/fira-sans-v18-latin-700.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/fira-sans-v18-latin-700.svg#FiraSans') format('svg');
	/* Legacy iOS */
}


/* fira-sans-600 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Fira Sans';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/fira-sans-v18-latin-600.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/fira-sans-v18-latin-600.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/fira-sans-v18-latin-600.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/fira-sans-v18-latin-600.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/fira-sans-v18-latin-600.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/fira-sans-v18-latin-600.svg#FiraSans') format('svg');
	/* Legacy iOS */
}


:root {
	font-size: 1rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #707173;
	font-family: "Fira Sans", "Arial", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	background-color: #DEDEDE;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 960px;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.web {
	color: #0000ee;
	text-decoration: underline;
}

p {
	margin: 0 0 1rem;
}

span {
	white-space: nowrap;
}

h1 {
	font-size: 28px;
	color: #0a50a1;
	margin: 0 0 15px;
	line-height: 1.3;

}

h2 {
	font-size: 15px;
	margin-bottom: 0.5rem;
}

h3 {
	color: #0a50a1;
	margin: 0 0 1rem;
	font-size: 18px;
}

h1,
h3,
strong {
	font-weight: 600
}

ul {
	margin: 0 0 1rem 1rem;
}

header {
	padding: 2rem 0 0;
}

article {
	padding: 2rem 3rem 1rem;
}

.flex {
	display: flex;
	align-items: flex-start;
	column-gap: 56px;
	margin: 1rem 0;
}

.blue {
	color: #0a50a1;
}

footer {
	padding: 1rem 0 0.5rem
}

.red_line,
.green_line,
.blue_line {
	height: 0.187rem;
	margin-bottom: 0.1rem;
}

.red_line {
	background-color: red;
}

.green_line {
	background-color: green;
}

.blue_line {
	background-color: #3961e2;
}

a.apply {
	background-color: #3153ac;
	color: #fff;
	padding: 0.5rem 1.5rem;
	font-size: 1.2rem;
}

a.apply:hover {
	background-color: #4067C9;
}

.button {
	display: flex;
	justify-content: center;
	margin: 2rem 0;
}

@media only screen and (max-width: 49.937rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 1rem;
	}

	h1 span {
		white-space: nowrap;
	}

	ul {
		padding-left: 0.937rem;
	}
}

@media only screen and (max-width: 768px) {
	.flex {
		flex-direction: column;
	}

	.no_br {
		display: none;
	}

	.flex {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
	}

	.center img {
		display: block;
		margin: 0 auto 15px;
	}

	.flex section {
		width: 100%;
	}
}

@media only screen and (max-width: 40rem) {

	article,
	footer {
		padding: 1rem;
	}
}

@media only screen and (max-width: 23.437rem) {
	header {
		padding: 0;
	}

	.blau {
		text-align: center;
	}

	.blue {
		margin: 0;
	}

	h1 {
		font-size: 1.25rem;
		text-align: center;
	}

	h3 {
		text-align: center;
	}
}