@charset "utf-8";

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

body {
	color: #444;
	font-family: "Arial", sans-serif;
	font-size: 16px;
	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 #B3B3B3;
}

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

a.link {
	color: #ed7100;
	text-decoration: underline;
}

article p {
	padding-bottom: 1rem;
}

span {
	white-space: nowrap;
}

h1 {
	font-size: 30px;
	line-height: 1.2;
	padding: 1.5rem 0 .75rem;
}

h2 {
	font-size: 1.5rem;
	line-height: 1.1;
	padding: 0 0 .75rem;
	color: #4d4d4d;
}

ul {
	list-style: none;
	padding-bottom: 1.5rem;
}

ul li {
	padding: 0 0 0 1.25rem;
}

ul li:before {
	content: "\25A0";
	float: left;
	margin-left: -1.25rem;
	color: #ed7100;
	line-height: 1.2;
}

section {
	padding: 1.5rem 30px;
}

section > :last-child {
	padding-bottom: 0;
}

.gray {
	background-color: #b3b3b3;
	color: #fff;
}

.gray h2 {
	color: #fff;
}

.info {
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
}

.info p {
	padding-bottom: .2rem;
	letter-spacing: -0.2px;
	font-size: 15px
}

.info i {
	margin-right: .3rem;
}

.benefits {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: .75rem;
}

.benefit {
	flex: 0 0 48%;
	display: flex;
	gap: .625rem;
}

.benefit i {
	font-size: 1.5rem;
}

.benefit p {
	padding-bottom: .75rem;
}

.person {
	display: flex;
	align-items: center;
	gap: 1.25rem 1.875rem;
	padding: 1rem 0;
}

.person p {
	padding-bottom: 0;
}

.button a {
	min-width: 200px;
	text-align: center;
	padding: 10px 25px;
	background-color: #afca0b;
	font-weight: 700;
	color: #444;
	border-radius: 4px;
	border: 1px solid #9ab20a;
	display: inline-block;
	transition: all ease-in-out .2s;
}

.button a:hover {
	background-color: #859a08;
	border-color: #687807;
}

header {
	display: flex;
	padding: 1.25rem 4.375rem;
}

.figure {
	padding: 0 30px;
border-top: 1px solid #b3b3b3;
}

footer {
	padding: 2.5rem;
	display: flex;
	justify-content: flex-end;
}

@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;
	}

	h1 {
		font-size: 30px;
		padding-top: .75rem;
	}

	h2 {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 688px) {
	section {
		padding: 1.25rem 1rem;
	}

	header,
	footer {
		justify-content: center;
		padding: 1.25rem 1rem;
	}

	.figure {
		padding: 0 16px;
	}

	ul {
		padding-bottom: 1.25rem;
	}
}

@media only screen and (max-width: 560px) {
	.benefit {
		flex: 100%;
	}

	.person {
		flex-direction: column;
		text-align: center;
	}

	.center {
		text-align: center;
	}

	h1 {
		text-align: center;
		padding: 0  0 10px;
	}

	.info {
		justify-content: center;
		align-items: center;
	}

	.info p {
		text-align: center;
	}
	.benefit p{
		padding-bottom: 7px
	}

}