<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #5e767B;
	font-family: 'Arial', sans-serif;
	font-size: 0.938rem;
	line-height: 1.5rem;
	background: #ebebeb;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: transparent;
}

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

h1 {
	font-size: 1.8rem;
	line-height: 120%;
	margin: 1rem 0;
	color: #990000;
}

h2 {
	font-size: 1.4rem;
	line-height: 120%;
	margin: 0 0 1.5rem;
	color: #990000;
}

h3 {
	font-size: 1.2rem;
	color: #990000;
}

h4 {
	font-size: 1.2rem;
	margin-bottom: .5rem;
}

ul {
	margin: .5rem 0 0 1rem;
	list-style-type: square;
}

ul li::marker {
	color: #990000;
}

.center {
	text-align: center;
}

header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	background: #fff;
	padding: 2rem 2rem 1rem;
	margin-bottom: .5rem;
}
header &gt; div {width: 62%;
}
.info {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.info :is(.fas, .far) {
	margin-right: 0.625rem;
}

article p {
	margin: .5rem 0;
}

section {
	background: #fff;
	margin: 0 0 .5rem;
	padding: 1rem 1.5rem;
}

.flex {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 2rem;
}

.flex :is(figure, aside) {
	margin: 0;
}

.button {
	display: flex;
	justify-content: center;
	margin: 1.5rem 0 .5rem;
}

.button a.apply {
	color: #fff;
	background: #990000;
	font-size: 1.1rem;
	text-align: center;
	border: solid 2px #990000;
	padding: .7rem 2rem;
	width: 14.375rem;
	border-radius: 0.625rem;
}

a.apply:hover {
	background: #fff;
	color: #990000;
}

.section {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1.5rem;
	width: 50%;
}

.fa-solid {
	font-size: 3.2rem;
}

.details p {
	margin: 0;
}

.iframe-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.link {
	color: #990000;
	font-weight: 700;
}

footer {
	background: #fff;
	padding: 1rem;
	margin-top: .5rem;
}

footer p {
	text-align: center;
}

@media only screen and (max-width: 799px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		hyphens: auto;
	}

	a.link {
		white-space: pre-wrap;
		-ms-word-break: break-all;
		word-break: break-all;
		word-break: break-word;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 768px) {
	header {
		justify-content: center;
		flex-direction: column-reverse;
		align-items: center;
	}

	header h2 {
		text-align: center;
	}
    header &gt; div {width: 100%}
	.info {
		align-items: center;
	}

	:is(.flex, .section) {
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 1rem;
	}

	.section {
		width: 100%;
	}

	.details :is(h4, p) {
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	header {
		padding: 1rem 1rem .5rem;
	}

	section {
		padding: 1rem;
	}

	footer {
		padding: 1rem 0;
	}
}
</pre></body></html>