
:root {
	--backgroundColor: #063B4D;
	--h1Color: #9FE761;
	--pColor: #9FE761;
	--menuColor: #9FE761;
	--menuColorBackground: #063B4D;
}






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

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

h1 {
	font-size: 2.5rem;
	color: var(--h1Color, #ffffff);
}
p {
	line-height: 2;
	font-size: .9rem;
	color: var(--pColor, #ffffff);
}

.colored__text_1_m1_v17 {
	color: #65B741;
}

ul {
	list-style: none;
}
a {
	text-decoration: none;
}
.main__img_1_m1_v17 {
	border: 8px dotted #65B741;
}
.container {
	max-width: 1240px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
	display: grid;
	gap: 1,5rem;
	text-align: center;
}
.section {
	padding: 4.5rem 0 3rem;
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--menuColorBackground, #FF5722);
}

.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;
		backdrop-filter: blur(50px);
		-webkit-backdrop-filter: blur(50px);
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		transition: right .3s;
	  } 
}
.nav__list {
	padding: 4rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.nav__link_1_m1_v17 {
	color: var(--menuColor, #ffffff);
	font-size: 1rem;
	transition: color .2s;
}
.nav__link_1_m1_v17:hover {
	border-bottom: 8px solid #65B741;
}
.nav__close {
	position: absolute;
	top: 1.5rem;
	right: 1rem;
	cursor: pointer;
}
.show-menu {
	right: 0;
}

.card_1_m1_v17 {
	display: grid;
	gap: 1.5rem;
}


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


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


}
@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: 1.5rem;
		justify-content: space-evenly;
	}
	.header {
	background-color: var(--menuColorBackground, #FF5722);
	border-bottom: 2px dotted #65B741;
	}

	.card_1_m1_v17 {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}



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





