
:root {
	--backgroundColor: #F16840;
	--h1Color: #361854;
	--pColor: #361854;
	--menuColor: #361854;
	--menuColorBackground: #F16840;
}



@font-face {
	font-family: 'MavenPro';
	src: url(./MavenPro-Regular.ttf);
}

@font-face {
	font-family: 'MavenPro Bold';
	src: url(./MavenPro-Bold.ttf);
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font-family: 'MavenPro', sans-serif;
	background-color: var(--backgroundColor, #FF5722);
	color: var(--pColor, #ffffff);
}

h1 {
	font-size: 2rem;
	color: #65B741;
	font-family: 'MavenPro Bold', sans-serif;
}
p {
	line-height: 200%;
	font-size: .98rem;
}

ul {
	list-style: none;
}
a {
	text-decoration: none;
}

.images_1_m1_v47 {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.container {
	max-width: 1240px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
	display: grid;
	gap: 2rem;
}
.section {
	padding: 5rem 0 1rem;
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--menuColorBackground, #FF5722);
	border-bottom: 1px solid #65B741;
}

.nav {
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: end;
}
.nav__toggle {
	cursor: pointer;
}
@media screen and (max-width: 1023px) {
	.nav__menu {
		position: fixed;
		background-color: var(--menuColorBackground, #FF5722);
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		transition: right .3s;
	  } 
}
.nav__list {
	padding: 4rem 4rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.nav__link_1_m1_v47 {
	color: var(--pColor, #ffffff);
	font-size: 1rem;
	transition: color .4s;
	font-family: 'MavenPro Bold', sans-serif;
}
.nav__link_1_m1_v47:hover {
	border-bottom: 1px solid #65B741;
}
.nav__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	cursor: pointer;
}
.show-menu {
	right: 0;
}

hr {
	width: 100%;
	border: 1px solid #65B741;
}


@media screen and(max-width: 340px) {
	.container {
		margin-left: 1rem;
		margin-right: 1rem;
	}


}
@media screen and (min-width: 768px) {

	.main__img_1_m1_v47 {
		width: 300px;
	}

}
@media screen and (min-width: 1023px) {
	.nav__menu {
		width: initial;
		margin: 0 auto;
	}
	.nav__toggle, .nav__close {
		display: none;
	}
	.nav__list {
		flex-direction: row;
		padding: 0;
		align-items: center;
		column-gap: .75rem;
	}
	.header {
	background-color: var(--menuColorBackground, #FF5722);
	}

	.images_1_m1_v47 {
		align-items: center;
	}

	h1 {
		font-size: 5rem;
	}


}
@media screen and (min-width: 1150px) {
	.container {
		margin-left: auto;
		margin-right: auto;
	}
}



