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


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

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

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

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	font-family: 'Cinzel', sans-serif;
	background-color: var(--backgroundColor, #FF5722);
	color: var(--pColor, #ffffff);
}

h1 {
	font-size: 2.84rem;
	font-family: 'Cinzel Bold', sans-serif;
	color: var(--backgroundColor, #FF5722);
	background-color: var(--pColor, #ffffff);
	border: .84px solid #65B741;
	border-radius: .84rem;
	box-shadow: 0px .84px .84px #65B741;
}

p {
	line-height: 184%;
	font-size: 1.084rem;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.container {
	max-width: 1240px;
	margin-right: 1.84rem;
	margin-left: 1.84rem;
	display: grid;
	gap: 1.84rem;
	text-align: center;
}

.section {
	padding: 4.84rem 0 1rem;
}

.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 84;
	background-color: var(--menuColor, #ffffff);
}

.nav {
	height: 3.84rem;
	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(--menuColor, #ffffff);
		top: 0;
		right: -100%;
		width: 100%;
		transition: right .4s;
	  } 
}

.nav__list {
	padding: 4.84rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .84rem;
}

.nav__link_1_m1_v84 {
	color: var(--menuColorBackground, #FF5722);
	font-size: .84rem;
	transition: color .4s;
	font-family: 'Cinzel Bold', sans-serif;
	border-radius: .84rem;
	padding: .084rem;
}

.nav__link_1_m1_v84:hover {
	border-top: .84px solid var(--menuColorBackground, #FF5722);
	box-shadow: .84px .84px .84px var(--menuColorBackground, #ffffff);
}

.nav__close {
	position: absolute;
	top: 1.84rem;
	right: 1.84rem;
	cursor: pointer;
}

.show-menu {
	right: 0;
}

.images_1_m1_v84 {
	display: flex;
	flex-wrap: wrap;
	gap: 2.84rem;
	justify-content: center;
}

.main__img_1_m1_v84 {
	border: .84px solid #65B741;
	border-radius: .84rem;
}

.main__img_1_m1_v84:hover {
	box-shadow: 0px .84px .84px #65B741;
}

.colored__text_1_m1_v84 {
	color: #65B741;
	font-family: 'Cinzel Bold', sans-serif;
}


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


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

	.main__img_1_m1_v84 {
		width: 384px;
	}

}
@media screen and (min-width: 1023px) {
	.nav__menu {
		width: initial;
		margin: 0 auto;
	}

	.nav__toggle, 
	.nav__close {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: .84rem;
		box-shadow: none;
	}

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



