
:root {
	--backgroundColor: #19342A;
	--h1Color: #5AE4B9;
	--pColor: #5AE4B9;
	--menuColor: #5AE4B9;
	--menuColorBackground: #19342A;
}


@font-face {
	font-family: 'Heebo';
	src: url(https://27-bet.com/assets/css/Heebo-Regular.ttf);
}

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

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

h1 {
	font-size: 3.5rem;
	color: var(--pColor, #ffffff);
	font-family: 'Heebo Bold', sans-serif;
}
p {
	line-height: 180%;
	font-size: .98rem;
	color: var(--pColor, #ffffff);
}

.colored__text_1_m1_v41 {
	color: #65B741;
}

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

.images_1_m1_v41 {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	justify-content: center;
}

.main__img_1_m1_v41 {
	border: 2px solid #65B741;
}

.main__img_1_m1_v41:hover {
	border: 2px solid var(--pColor, #ffffff);
}
.container {
	max-width: 1240px;
	margin-right: 1rem;
	margin-left: 1rem;
	display: grid;
	gap: 1.5rem;
	text-align: center;
}
.section {
	padding: 4.5rem 0 1rem;
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--backgroundColor, #FF5722);
}

.nav {
	height: 4rem;
	display: flex;
	align-items: center;
}
.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: 5rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.nav__link_1_m1_v41 {
	color: var(--pColor, #ffffff);
	font-size: .9rem;
	transition: color .3s;
	font-family: 'Heebo Bold', sans-serif;
}
.nav__link_1_m1_v41:hover {
	border-bottom: 2px solid var(--pColor, #ffffff);
}
.nav__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}
.show-menu {
	right: 0;
}



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


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

	.main__img_1_m1_v41 {
		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: 1.25rem;
	}
	.header {
	background-color: var(--backgroundColor, #FF5722);
	}

	.images_1_m1_v41 {
		align-items: center;
	}


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




