@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/inter-v18-latin-regular.eot');
	src: url('../fonts/inter-v18-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/inter-v18-latin-regular.woff2') format('woff2'),
		url('../fonts/inter-v18-latin-regular.woff') format('woff'),
		url('../fonts/inter-v18-latin-regular.ttf') format('truetype'),
		url('../fonts/inter-v18-latin-regular.svg#Inter') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/inter-v18-latin-700.eot');
	src: url('../fonts/inter-v18-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/inter-v18-latin-700.woff2') format('woff2'),
		url('../fonts/inter-v18-latin-700.woff') format('woff'),
		url('../fonts/inter-v18-latin-700.ttf') format('truetype'),
		url('../fonts/inter-v18-latin-700.svg#Inter') format('svg');
}

:root {
	font-size: 16px;
}

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

body {
	color: #555555;
	font-family: "Inter", "Arial", sans-serif;
	font-size: .937rem;
	line-height: 1.5;
}

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

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid .062rem #555555;
}

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

p {
	margin: 0 0 .625rem;
	hyphens: auto;
}

:is(h1, h2, h3, h4) {
	letter-spacing: 0.4px;
}

h1 {
	font-size: 1.875rem;
	font-weight: 400;
	color: #DA1F3D;
	margin: .625rem 0 1.25rem;
}

h2 {
	font-size: 1.25rem;
	line-height: 1.4;
	margin: 0 0 .625rem;
}

h2 small {
	font-weight: normal;
}

h3 {
	font-size: 1.062rem;
	font-weight: 400;
	margin: 0 0 .625rem;
}

h4 {
	font-size: 1.125rem;
	font-weight: 400;
	margin: 0 0 .625rem;
	line-height: 1.1;
}

h5 {
	background: rgb(244, 244, 244);
	background: linear-gradient(0deg, rgba(244, 244, 244, 1) 0%, rgba(253, 253, 253, 1) 65%);
	width: 9.375rem;
	height: 6.25rem;
	text-align: center;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #D61030;
	font-size: .937rem;
	line-height: 1.4;
	position: absolute;
	bottom: 1.25rem;
	right: 3.125rem;
}

ul {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

ul li {
	padding-left: 1.125rem;
	hyphens: auto;
}

ul li:before {
	content: "+";
	float: left;
	margin-left: -1.125rem;
	color: #DA1F3D;
}

.box ul li {
	padding-bottom: 10px
}

header {
	position: relative;
}

.logo {
	position: absolute;
	right: -.125rem;
	top: 1.25rem;
}

article {
	padding: 0 3.125rem;
}

.flex {
	display: flex;
	justify-content: space-between;
	margin: 1.25rem 0 0
}

.box {
	width: 49%;
}

footer {
	padding: 15px 3.125rem 3.125rem;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}


a.button {
	background: #DA1F3D;
	color: #fff;
	padding: 8px 20px;
	border-radius: 25px;
}

footer i {
	margin-left: 4px;
	font-size: 12px
}

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

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 1rem;
	}
}

@media only screen and (max-width: 768px) {
	article {
		padding: 0 1rem;
	}

	.flex {
		flex-direction: column;
	}

	.box {
		width: 100%;
	}

	footer {
		padding: 0 1rem 16px;
		justify-content: center;
		align-items: center;
	}

	h5 {
		position: static;
	}

	footer p {
		padding: .312rem 1.562rem;
		margin: 0;
	}
}

@media only screen and (max-width: 40.625rem) {
	.logo {
		position: static;
	}

	header {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	h1 {
		text-align: center;
	}
}

@media only screen and (max-width: 30rem) {
	footer {
		flex-direction: column-reverse;
	}

	footer p {
		margin: 0;
	}

	h5 {
		margin: 0 0 .312rem;
	}

	h4 {
		font-size: 1.062rem;
	}
}