
/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: #fdfdfd;
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

.menu-wrap {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100%;
	position: relative;
	justify-content: center;
}

.menu__item {
	cursor: default;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 -1px #fdfdfd;
}

.menu__item:last-child {
	box-shadow: 0 1px #fdfdfd, 0 -1px #fdfdfd;
}

.menu__item-link {
	display: block;
	position: relative;
	cursor: pointer;
	text-decoration: none;
}

.menu__item-link:focus,
.menu__item-link:focus-visible {
	color: #fdfdfd;
}

.menu__item-link:focus:not(:focus-visible) {
	color: #fdfdfd;
}
.marquee{
	display: none;
}
@media (min-width: 1250px){
	.marquee {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
		pointer-events: none;
		background: #fdfdfd;
		transform: translate3d(0,101%,0);
	}
}

.marquee__inner-wrap {
	height: 100%;
	width: 100%;
	transform: translate3d(0,-101%,0);
}

.marquee__inner {
	height: 100%;
	width: fit-content;
	align-items: center;
	display: flex;
	position: relative;
	animation: marquee 15s linear infinite;
	will-change: transform;
}

.menu__item-link:hover {
	color: #f3f3f3;
}
@keyframes marquee {
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.menu__item-link,
.marquee span {
	white-space: nowrap;
	font-size: 5vh;
	line-height: 1.1;
	font-weight: 500;
	padding: 1vh 1vw 0;
	text-transform: uppercase;
	color: #fdfdfd;
	font-family: 'SyneBold', sans-serif;
}

.marquee span {
	text-align: center;
	color: #000;
	background-color: #fdfdfd;
	font-weight: 400;
}

.marquee__img {
	width: 15vw;
	height: 70%;
	margin: 0 2vw;
	border-radius: 5vw;
	background-size: cover;
	background-position: 50% 50%;
}

@media (min-width: 1280px) {
	
	.menu__item-link,
	.marquee span {
		font-size: 12vh;
	}

}

@media screen and (min-width: 53em) {
	.frame {
		position: fixed;
		text-align: left;
		z-index: 100;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 1.5rem 2rem 1rem;
		pointer-events: none;
		grid-template-columns: 25% 50% 25%;
		grid-template-rows: auto auto auto;
		
	}
	.menu-wrap {
		height: 100vh;
		background: #000;
	}
}
