@charset "utf-8";

:root {
	font-size: 16px;
}

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

body {
	color: #000;
	font-family: "Calibri", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	background: #fff;
}

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

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

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

a.link {
	color: #1d83e8;
}

a.link:hover {
	color: #024e99;
	text-decoration: underline;
}

h1 {
	font-size: 2rem;
	color: #9bcfaf;
	line-height: 1.2;
	margin: 0 0 1rem;
}

h2 {
	font-size: 1.2rem;
	color: #9bcfaf;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	line-height: 1.2;
	display: flex;
	align-items: center;
}

p {
	margin-bottom: 1rem;
}

ul {
	margin: 0 0 1rem 1rem;
}

header {
	border: 2px solid #ebebeb;
	padding: 1.5rem;
}

article section {
	border: 2px solid #ebebeb;
	padding: 1.5rem;
	margin-bottom: 0.5rem;
}

.info {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.info i {
	color: #9bcfaf;
	margin-right: 0.5rem;
}

.info p {
	margin: 0;
	width: 47%;
}

.benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.benefits .item {
	padding: 1.5rem 1rem;
	background-color: #ff8000;
}

.benefits p {
	margin-bottom: 0;
}

h3 img {
	margin-right: 0.25rem;
}

iframe {
	display: block;
	width: 100%;
	height: 28.125rem;
}

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

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

.button {
	display: flex;
	justify-content: end;
	gap: 1rem;
}

a.apply {
	background-color: #000;
	color: #fff;
	padding: 0.5rem 1rem;
}

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

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

	.button {
		justify-content: center;
		padding: 0 1rem .5rem;
	}
}

@media only screen and (max-width: 48rem) {
	.info {
		flex-direction: column;
		gap: 0.25rem;
	}

	.info p {
		width: 100%;
	}
}

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

	article section {
		padding: 1rem;
	}

	.benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 30rem) {
	.benefits {
		grid-template-columns: 1fr;
	}

	.benefits .item {
		width: 100%;
	}
}