@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #1D1D1B;
	font-family: "Arial", sans-serif;
	font-size: .937rem;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#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;
}

a.link {
	font-weight: bold;
	font-size: 1.125rem;
}

p {
	margin: 0 0 .875rem;
}

.margin {
	margin: 0;
}

p span {
	white-space: nowrap;
}

h1 {
	color: #F39212;
	font-size: 2rem;
	line-height: 1.2;
	margin: .125rem 0 .312rem;
}

h2 {
	font-size: 1rem;
	color: #F39212;
}

h3 {
	font-size: 1rem;
}

h4 {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: .5rem 1.3rem;
	font-weight: 700;
	background: #F39212;
	transform: rotate(-7deg) skewX(-7deg);
}

ul {
	list-style: none;
	margin: 0 0 .875rem;
	padding: 0;
}

ul li {
	padding-left: 2.187rem;
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -2.187rem;
}

header {
	padding: .937rem 1.25rem;
	display: flex;
	justify-content: flex-end;
}

article {
	padding: .625rem 1.562rem 4rem;
	position: relative;
}

.box {
	padding: .625rem .937rem 0 0;
	position: relative;
}

.section {
	background: #F39212;
	padding: .437rem;
	margin: .875rem 0;
	box-shadow: .187rem .187rem .375rem 0 rgba(0, 0, 0, 0.45);
}

.section p {
	margin: 0;
}

footer {
	background: #D9DBD7;
	padding: .625rem 2.187rem .625rem 1.562rem;
	display: flex;
	justify-content: space-between;
	column-gap: 1rem;
}

footer p {
	margin: 0;
}

.box3 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: .625rem;
}

@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) {

	header {
		justify-content: center;
	}

	article {
		padding: .625rem 1.25rem 5rem;
	}

	footer {
		padding: .625rem 1.25rem;
	}

	h4 {
		bottom: 1rem;
	}
}

@media only screen and (max-width: 43.75rem) {

	footer,
	.box3 {
		flex-direction: column;
	}

	footer p {
		text-align: center;
	}
}

@media only screen and (max-width: 30rem) {
	h1 {
		text-align: center;
	}

	ul li {
		padding-left: 1rem;
	}

	ul li:before {
		margin-left: -1rem;
	}
}