@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Carlito';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/carlito-v4-latin-regular.eot');
	src: url('../fonts/carlito-v4-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/carlito-v4-latin-regular.woff2') format('woff2'),
		url('../fonts/carlito-v4-latin-regular.woff') format('woff'),
		url('../fonts/carlito-v4-latin-regular.ttf') format('truetype'),
		url('../fonts/carlito-v4-latin-regular.svg#Carlito') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Carlito';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/carlito-v4-latin-700.eot');
	src: url('../fonts/carlito-v4-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/carlito-v4-latin-700.woff2') format('woff2'),
		url('../fonts/carlito-v4-latin-700.woff') format('woff'),
		url('../fonts/carlito-v4-latin-700.ttf') format('truetype'),
		url('../fonts/carlito-v4-latin-700.svg#Carlito') format('svg');
}

:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Carlito", "Arial", sans-serif;
	font-size: 1rem;
	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 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 16px;
}

p span {
	white-space: nowrap;
}

.margin {
	margin: 0 0 3.75rem;
	color: #000;
}

.no-margin {
	margin: 0;
}

h1 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
	color: #000000;
}

h2 {
	margin: 0;
	font-size: 1rem;
	font-weight: normal;
}

h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
}

ul {
	list-style: none;
	margin: 0 0 1rem 1.562rem;
	padding: 0;
}

ul li {
	padding-left: 1.875rem
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.875rem;
	font-size: 1.375em;
	line-height: 1;
	font-family: "Arial", sans-serif;
}

header {
	padding: .625rem 1.25rem 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

article {
	padding: 0 70px;
}

footer {
	padding: 0 5rem 3.75rem;
}

@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;
	}
}

@media only screen and (max-width: 48rem) {

	article,
	footer {
		padding: 0 1.25rem;
	}
}

@media only screen and (max-width: 30rem) {
	header {
		justify-content: center;
		align-items: center;
	}

	.margin {
		margin: 0 0 1rem;
	}

	ul {
		margin: 0 0 1rem
	}

	ul li {
		padding-left: 1rem;
	}

	ul li:before {
		margin-left: -1rem;
	}
}