@font-face {
	font-family: 'KelsonSansRu';
	src: url('/fonts/KelsonSansRU-Normal.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

.menu-wrap{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.toggler{
	position: absolute;
	top: 4rem;
	left: 4rem;
	width: 120px;
	height: 60px;
	z-index: 3;
	opacity: 0;
	cursor: pointer;
}

.hamburger{
	position: absolute;
	top: 4rem;
	left: 4rem;
	width: 90px;
	height: 50px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 8px;
	background-color: rgb(255, 255, 255, 0.1);
	
}

.hamburger>div{
	margin-top: -7px;
	position: absolute;
	width: 60%;
	height: 2px;
	border-radius: 1.5px;
	background-color: #000000;
	transition: .4s;
}

/* .hamburger>div:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 1.5px;
	background-color: #ffffff;
	top: -10px;
	left: 0;
	transition: .4s;
} */

.hamburger>div:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 1.5px;
	background-color: #000000;
	top: 10px;
	left: 0;
	transition: .4s;
}

.toggler:checked + .hamburger>div{
	transform: rotate(135deg);
}

.toggler:checked:hover + .hamburger>div{
	transform: rotate(225deg);
}

.toggler:checked + .hamburger>div:before, .toggler:checked + .hamburger>div:after{
	top: 0;
	transform: rotate(90deg);
}

.menu{
	position: fixed;
	top: -100vh;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 1);
	
}

.menu > div{
	padding-top: 40%;
    position: absolute;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    height: 200%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease;
	color: #fff;
	top: 100%;
	left: 50%;
}

.top img{
	width: 20vw;
	display: flex;
	position: relative;
	
}

.middle {
	display: flex;
	flex-direction: row;
	display: flex;
	justify-content: space-between;
	gap: 5vw;
	padding-bottom: 3vw;
}
.middle > div > h3{
	font-family: 'KelsonSansRu', sans-serif;
	padding-bottom: 2px;
	margin-bottom: 1vw;
	border-bottom-width: 1px;
	border-bottom-color: #fff;
	border-bottom-style: solid;
	text-align: center;
	font-size: 2vw;
	cursor: default;
}
.middle > div > h3:hover {
	border-bottom-width: 0px;
	transform: scaleX(1);
	transform-origin: top left;
    transition: transform 0.8s ease;
}
.middle > div > h3::before {
	content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fdfdfd;
  transform: scaleX(0);
  transition: transform 0.8s ease;
  }
  
  .middle > div > h3:hover::before {
	transform: scaleX(1);
  }





/* .menu > div > div{
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: .6s;
} */

.middle > div > div > ul > li{
	list-style: none;
	padding-bottom: 0.7vw;
	
}

.middle > div > div > ul > li > a{
	text-decoration: none;
	color: #fff;
	font-weight: 550;
	text-transform: uppercase;
	transition: .3s;
	font-size: .9rem;
	display: inline-block;
	letter-spacing: 1px;
}
.middle > div > div > ul > li > a:hover {
	transform: scaleX(1);
	transform-origin: top left;
    transition: transform 0.3s ease;
}
.middle > div > div > ul > li >a::before {
	content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fdfdfd;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
  }
  
  .middle > div > div > ul > li >a:hover::before {
	transform: scaleX(1);
  }



.foot{
	display: flex;
	justify-content: space-between;
	gap: 11vw;

}
.foot1 {
	display: flex;
	flex-direction: row;
	gap: 2vw;
	color: #fff44f;
} 
.foot1 > div {
	display: flex;
	flex-direction: column;
	gap:1vw ;
	cursor: default;
}
.foot2 {
	display: flex;
	flex-direction: column;
	gap: 1vw;
	cursor: default;
}
.foot3 {
	margin-top: 1vw;
}
.foot3 > a {
	text-decoration: none;
}
.foot3 > a > .icon {
	text-decoration: none;
	color: #ffffff; /* Default color */
    transition: color 0.3s ease;
}
.foot3 > a > .icon{
	font-size: 20px;
}
.foot3 > a > .icon:hover {
    color: #fff44f; 
}


/* .menu > div > div > ul > li > a:hover{
	color: #fff44f;
} */

.toggler:checked ~ .menu{
	visibility: visible;
}

.toggler:checked ~ .menu > div{
	transform: translateX(-50%) translateY(-50%);
}

.toggler:checked ~ .menu > div > div{
	opacity: 1;
}


@media (max-width: 760px) {




	.toggler{
		top: 1rem;
		left: 1rem;
		width: 80px;
		height: 60px;
		
	}
	
	.hamburger{
	
		top: 1rem;
		left: 1rem;
		width: 80px;
		height: 60px;
		
		
	}
	
	.hamburger>div{
		position: absolute;
		width: 60%;
		height: 2px;
		border-radius: 1.5px;
		background-color: #000000;
		transition: .4s;
	}

	.top img{
		width: 50vw;		
	}
	.middle {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 0vw;
		width: 100%;
		height: 60vh;
		
	}
	.middle > div > h3:hover {
		border-bottom-width: 1px;
		transform: none;
		transition: none;
	}
	
	  
	  .middle > div > h3:hover::before {
		transform: none;
	  }
	.middle > div > h3::before {
		content: "";
	  position: absolute;
	  display: none;
	  width: 100%;
	  height: 1px;
	  bottom: 0;
	  left: 0;
	  background-color: #fdfdfd;
	  transform: none;
	  transition: none;
	  }
	.middle > div > h3{
		padding-bottom: 12px;
		margin-bottom: 3vw;
		padding-left: 3vw;
		border-bottom-width: 1px;
		border-bottom-color: #7e7d7d;
		border-bottom-style: solid;
		text-align: start;
		font-size: 5vw;
		cursor: pointer;
	}


	.menu > div{
		position: absolute;
		transform: translateX(-50%) translateY(-360%);
		width: 100%;
		height: 110vh;
		background-color: rgba(0, 0, 0, 1);
		display: flex;
		gap: 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: none;
		color: #fff;
		top: 60%;
		left: 50%;
		margin-top: 0vh;
		padding-top: 0;
	}
	
	.menu{
		overflow-y: scroll;
		top: 0;
		display: none;
		
	}
	.toggler:checked ~ .menu{
		visibility: visible;
		display: block;
		
	}
	.middle > div > div > ul{
		display: none;
		padding-bottom: 2vh;
		padding-left: 5vw;
	}
	.middle > div > div > ul > li > a{
		display: flex;
		justify-content: start;
		align-items: start;
		font-size: 1rem;
		padding: 9px;
		letter-spacing: 1px;
	}
	.foot2 {
		display: none;
	}
	.foot3 > a > .icon {
		display: none;
	}
	.foot{
		position: relative;
		bottom: 0 !important;
		padding-top: 20vh;
		
		gap: 0vw;
	
	}
	.foot1 {
		bottom: 0 !important;
		margin-top: 0vh;
		margin-bottom: 0;
		padding-bottom: 0;
		display: flex;
		flex-direction: row;
		gap: 8vw;
		color: #fff44f;
	}

}