@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/lato-v23-latin-regular.eot');
	src: url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), url('../fonts/lato-v23-latin-regular.woff') format('woff'), url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat-v25-latin-regular.eot');
	src: local(''), url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #7f4633;
	font: 1rem/1.5em 'Trebuchet MS', Arial, sans-serif;
	background: #fafafa;
	font-weight: 600;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
}

header {
	padding: 2rem;
}

span {
	white-space: nowrap
}

.text_style {
	text-transform: uppercase;
	margin: 0 0 6px
}

article {
	padding: 1rem 2rem 0;
}

article p {
	margin: 1rem 0;
}

article .flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	margin: 0 0 2rem;
}

article .flex .address :is(p, h4) {
	font-style: normal;
}

article .flex .address img {
	margin-top: 1rem;
}

article .flex .address p {
	display: flex;
	gap: .4rem;
	align-items: center;
}

article :is(h1, h2, h3, h4, h5, h6) {
	font-family: "Lato", Arial sans-serif;
	text-transform: uppercase
}

article h4 {
	color: #ef7d00;
	font-size: 1rem;
}

article h1 {
	color: #ef7d00;
	font-size: 2.6rem;
	margin: 1rem 0 2rem;
	line-height: 1.3;
}

article :is(p, ul) {
	hyphens: auto;
}

article ul {
	margin: 1rem 0 2rem 1.3rem;
	list-style: none;
}

article ul li:before {
	content: "\2022";
	color: #ef7d00;
	float: left;
	margin: 0 0 0 -20px;
}

article h2 {
	color: #ef7d00;
	font-size: 1.125rem;
	font-weight: 400;
	text-transform: uppercase;
}

article section {
	background: #fffbf8;
	margin: 0 -2rem;
	padding: 2rem;
}

article section .benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 2rem;
}

article section .benefits .item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

article section .benefits .item img {
	width: 5rem;
}

article section .benefits .item p {
	text-align: center;
}

article h5 {
	font-size: 2.2rem;
	line-height: 120%;
	color: #ef7d00;
	margin: 2rem 0 1.5rem;
	text-transform: uppercase
}

article section .col-3 {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

article section .col-3 .whitebox {
	background: #fff;
	padding: 1rem;
	box-shadow: 4px 10px 15px rgb(0 0 0 / 6%);
	width: 33%;
}

h6 {
	font-size: 1rem;
	color: #ef7d00;
	text-transform: uppercase
}

article section .col-3 .whitebox p {
	font-size: 15px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

article a.mail {
	color: #ef7d00;
}

:is(article, footer) a.btn {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	text-align: center;
	background: #3cdf00;
	border: solid 1px #3cdf00;
	padding: .5rem 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-style: normal;
	text-transform: uppercase;
	font-weight: bold;
}

:is(article, footer) a.btn .fa-solid {
	font-size: 20px;
	margin: 0 0 0 15px;
}

:is(article, footer) a.btn:hover {
	color: #3cdf00;
	background: transparent;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	background: #fffbf8;
	padding: 2rem 0;
}

@media only screen and (max-width: 799px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	article h1 {
		font-size: 2rem;
	}

	br {
		display: none
	}

	section h5:first-of-type {
		text-align: center
	}
}

@media only screen and (max-width: 775px) {
	header {
		display: flex;
		justify-content: center;
	}

	article .flex {
		flex-direction: column;
		align-items: center;
	}

	article .flex .address p {
		display: flex;
		justify-content: center;
	}

	article .flex .address :is(p, h4) {
		text-align: center;
	}

	article .flex .address img {
		margin: 1rem auto;
	}
}

@media only screen and (max-width: 768px) {
	article section .col-3 {
		flex-direction: column;
	}

	article section .col-3 .whitebox {
		width: 100%;
	}

	article h1 {
		font-size: 1.8rem;
	}

	article h5 {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 480px) {
	header {
		padding: 1.5rem;
	}

	article {
		padding: 1rem 1rem 0;
	}
}
