html, body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #080808;
	font-family: "Sofia Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 20px;
}

* {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	vertical-align: top;
	border-spacing: 0;
	border-collapse: collapse;
	list-style: none;
	font-family: "Sofia Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	background: transparent;
}

h1, h2, h3 {
	font-weight: 800;
	color: #146ef5;
}

a {
	color: #146ef5;
}
a:hover {
	color: #1263dd;
}

.wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	padding: 20px;
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: center;
}

.logo {
	font-size: 24px;
	text-decoration: none;
	font-weight: 800;
}

.menu {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 5px 0 0 0;
}
	.menu li a {
		font-size: 18px;
		font-weight: 600;
		color: #080808;
		text-decoration: none;
	}
	.menu li a:hover {
		text-decoration: underline;
	}

.header-title {
	background: #eee;
	text-align: center;
	padding: 20px;
	font-size: 20px;
	font-weight: 600;
	color: #080808;
	text-wrap: balance;
}

.hero {
	background: #146ef5;
	padding: 80px 0;
	color: #fff;
	text-align: center;
}
.home-title {
	font-size: 100px;
	font-family: "Sofia Sans Condensed", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 90px;
	text-wrap: balance;
}
.home-subtitle {
	margin: 10px 0 0 0;
	font-size: 40px;
	text-align: center;
	line-height: 40px;
	text-wrap: balance;
}
.home-subsubtitle {
	margin: 40px 0 0 0;
	font-size: 20px;
	text-align: center;
	line-height: 20px;
	text-wrap: balance;
}
.home-button {
	width: 300px;
	margin: 40px auto 0 auto;
	display: inline-block;
	background: #080808;
	font-size: 22px;
	color: #fff;
	padding: 20px 25px;
	border-radius: 5px;
	text-align: center;
	font-weight: 800;
	line-height: 24px;
	text-decoration: none;
}
.home-button:hover {
	color: #fff;
}
	.home-button .button-subtitle {
		display: block;
		padding: 5px 0 0 0;
		font-size: 16px;
		font-weight: 300;
		line-height: 16px;
	}

main h2 {
	margin: 80px 0 0 0;
}
main h3 {
	margin: 40px 0 0 0;
}
main p {
	margin: 20px 0 0 0;
	line-height: 30px;
}
main ul {
	margin: 20px 0 0 0;
}
main li {
	margin: 20px 0 0 0;
	line-height: 25px;
}
main ol {
	margin: 20px 0 0 20px;
}
main ol li {
	list-style-type: decimal;
	line-height: 30px;
}

.money-back {
	background: #00A36C;
	margin: 80px 0 0 0;
	padding: 1px 0 80px 0;
	color: #fff;
}
	.money-back h2 {
		color: #fff;
	}


.pricing {
	background: #080808;
	margin: 80px 0 0 0;
	padding: 1px 0 80px 0;
	color: #fff;
}
	.pricing h2 {
		font-size: 40px;
		color: #fff;
		text-align: center;
	}
	.pricing p.subtitle {
		text-align: center;
		line-height: 25px;
		text-wrap: balance;
	}
.packages {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin: 40px 0 0 0;
}
	.packages .item {
		border-radius: 10px;
		background: #fff;
		color: #080808;
		padding: 0 40px 40px 40px;
	}
		.packages .item li {
			margin: 15px 0 0 0;
		}
		.packages .item .item-flex {
			display: flex;
			align-items: flex-start;
			flex-direction: row;
			line-height: 24px;
		}
		.packages .item .home-button {
			background: #146ef5;
		}

.testimonial {
	margin: 20px 0 0 0;
}

.contact {
	margin: 80px 0 0 0;
	background: #eee;
	padding: 1px 0 80px 0;
}

footer {
	padding: 40px 0;
	color: #fff;
	background: #080808;
	font-size: 18px;
	text-align: center;
}
	footer ul {
		display: inline-flex;
		flex-direction: row;
		gap: 40px;
	}
		footer ul li a {
			color: #fff;
		}

@media only screen and (max-width: 1000px) {
	.packages {
		grid-template-columns: 1fr;
		justify-items: center;
	}
		.packages .item {
			max-width: 400px;
		}
			.packages .item .home-button {
				width: 100%;
			}
}

@media only screen and (max-width: 600px) {
	.header {
		display: flex;
		flex-direction: column;
		text-align: center;
		gap: 5px;
	}
	.menu {
		display: inline-flex;
	}
	.home-title {
		font-size: 90px;
		line-height: 80px;
	}
	footer ul {
		flex-direction: column;
		gap: 20px;
	}
}