@font-face {
    font-family: "bartkey";
    src: url(../fonts/BARTKEY.ttf);
    src: url(../fonts/BARTKEY.otf);
    font-weight: 400;
}

:root {
	color-scheme: only light;
  }

a:hover {
	text-decoration: none !important;
	color: #ef7a25 !important;
	/* Inherit the color from the parent element */
	cursor: pointer;
	/* Change the cursor to a pointer */
}

.panologo {
	position: absolute;
	/* top:0.2%; */
	width: 10%;
	left: 5%;
	height: auto;
}

.navB {
	position: relative;
	display: grid;
	top:5%;
	font-family: bartkey !important;
}


.main-logo img {
	display: block;
	width: 10%;
	height: auto;
	margin-top: -2%;
	top: 28px;
	left: 5%;
	position: absolute;
	z-index: 104;
}
.cd-logo img {
	display: block;
	width: 10%;
	height: auto;
	margin-top: -2%;
	top: 28px;
	left: 5%;
	position: absolute;
	z-index: 104;
}


.nav-container {
	position: fixed;
	cursor: pointer;
	z-index: 1000;
	display: inline-block;
	top: 5%;
	right: 5%;
	width: 30px;
	height: 20px;
	font-family: bartkey !important;
}

body::-webkit-scrollbar {
	display: none;
}

.bars {
	position: absolute;
	width: 30px;
	height: 4px;
	z-index: 1000;
	border: 1px solid #00000090;
	border-radius: 1rem;
	background: white;
}

.bars::before,
.bars::after {
	content: '';
	position: absolute;
	width: 30px;
	z-index: 1000;
	height: 4px;
	border: 1px solid #00000090;
	border-radius: 1rem;
	background: white;
	/* background: #000; */
}

.bars::before {
	margin-top: 9px;

	z-index: 1000;
}

.bars::after {
	z-index: 1000;
	margin-top: 18px;
}



nav {
	position: fixed;
	top: 0%;
	width: 100%;
	height: 30px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.87);
	display: flex;
	justify-content: center;
	align-items: center;
	right: -200vw;
}


nav ul {
	list-style: none;
	z-index: 1000;
}

nav ul li {
	margin: 50px 0;
	z-index: 1000;
}

nav ul li a {
	color: #ef7a25;
    text-shadow: .1em .1em 0 hsl(0, 0%, 0%);
	font-size: 2em;
	z-index: 1000;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	opacity: 0;
	pointer-events: none;
}

nav ul li a:after {
	content: '';

	z-index: 1000;
	width: 100%;
	position: absolute;
	height: 3px;
	border-radius: 5px;
	background: #2596be;
	bottom: -10px;
	left: 0;
	transform-origin: left;
	transition: transform .1s ease;
	transform: scaleX(0);
}


nav ul li a:hover:after {
	transform: scaleX(1);
	z-index: 1000;
}

nav .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 6%;

	z-index: 1000;
	right: 5%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

nav .panoLogo {
	position: absolute;
	top: 5%;
	z-index: 1000;
	left: 5%;
	opacity: 0;
	pointer-events: none;
	color: #fff;
	font-size: 2em;
}

nav .close div::before,
nav .close div::after {
	content: '';

	z-index: 1000;
	position: absolute;
	width: 30px;
	height: 4px;
	background: #fff;
	transition: background .1s ease;
}

nav .close div::before {
	transform: rotate(-45deg);

	z-index: 1000;

}

nav .close div::after {
	transform: rotate(45deg);

	z-index: 1000;
}

nav .close:hover div::before,
nav .close:hover div::after {

	z-index: 1000;
	background: rgb(209, 3, 3);
}

@media (max-width: 992px) {
	h1 {

		z-index: 1000;
		font-size: 25px;
	}

	.cd-logo img {
		width: 30%;
		margin-top: -6%;
	}

	.main-logo img {
		width: 30%;
		margin-top: -6%;
	}

	.panologo {
		width: 30%;
		top: 0.5%;
		left: 5%;
		height: auto;
	}

}