.menu__burger{
	font-family: "TT Lakes", sans-serif;
	color: #1B1C21;
	font-weight: 500;
	width: 320px;
	height: 100%;
	box-shadow: 15px 0 50px 0 #0E185033;
	position: fixed;
	overflow-y: auto;
	background-color: #FFFFFF;
}

/* Скрываем scrollbar для Chrome, Safari и Opera */
.menu__burger::-webkit-scrollbar {
  display: none;
}
 
/* Скрываем scrollbar для IE, Edge и Firefox */
.menu__burger {
  -ms-overflow-style: none;  /* IE и Edge */
  scrollbar-width: none;  /* Firefox */
}

button{
	background-color: transparent;
	color: #1B1C21;
}

/* Верхнее меню */
header{
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.upper-menu{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.upper-menu__right{
	display: flex;
	align-items: center;
	gap: 15px;
}

.upper-menu__left{
	position: relative;
	left: 70px;

}
/* Основное меню */
.menu{
	display: flex;
	flex-direction: column;
	padding-left: 20px;
	gap: 30px;
	margin-bottom: 40px;
}

a {
	color: #1B1C21;
	text-decoration: none;
}

.menu__list--active{
	display: flex;
	align-items: center;
	color: #7E7E82;
}

.menu__list--active::before{
	content: "";
	position: absolute;
	left: 0;
	width: 4px;
	height: 32px;
	background-color: #41F6D7;
	border-radius: 0px 10px 10px 0px;
}

/* Футер */
footer{
	padding-left: 20px;
}
.contacts{
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.contacts__buttons{
	display: flex;
	gap: 15px;
}

.contacts__number{
	font-weight: 700;
	font-size: 24px;
}

.language__list{
	display: flex;
	gap: 10px;
	padding-bottom: 10px;
}

.language__link--active{
	color: #7E7E82;
}

/* Ховеры */
/* !!! для почты и телефона сделать так чтобы окрывалась почта и телефон */
.logo:hover, .icon:hover, .contacts__email:hover, .contacts__number:hover {
	transform: scale(1.1);
	transition: 0.2s;
}

.menu__list:hover{
		color: #7E7E82;
}

.menu__list:hover::before{
	content: "";
	position: absolute;
	left: 0;
	width: 4px;
	height: 32px;
	background-color: #41F6D7;
	border-radius: 0px 10px 10px 0px;
}

.language__link:hover{
	color: #7E7E82;
}