/* CSS Document */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .6rem 1rem;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	width: 100%;
	position: fixed;
	z-index: 10000;
}
.logo img {
	padding-top: 4px;
	margin: 0 auto;
	height: 40px;
	width: 136px;
}
.nav-menu {
	display: flex;
	gap: 1rem;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.nav-menu li a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	transition: color 0.3s ease;
	padding: 10px;
	border-bottom: 2px solid transparent;
	}
	
.nav-menu li a:hover, .nav-menu li a.active:hover {
	color: #8bc53f;
	border-bottom: 2px solid #8bc53f;
}
.nav-menu li a.active {
	border-bottom: 2px solid #fff;
}
.hamburger {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}
/* Flyout menu */
.flyout {
	display: none;
	position: absolute;
	top: 60px;
	bottom: 0;
	right: 0;
	background-color: #333;
	width: 65%;
	padding: .5rem;
	z-index: 11000;
}
.flyout.open {
	display: block;
}
.flyout ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .1rem;
	padding: 0;
}
.flyout li {
	padding: 4px;
}
.flyout li a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	transition: color 0.3s ease;
	padding: 12px;
	border: 2px solid transparent;
	border-radius: 8px;
	display: block;
}
.flyout li a:hover {
	color: #8bc53f;
	background-color: rgba(0, 0, 0, 0.9);
	border: 2px solid #595959;
}
.flyout li a.active {
	background-color: rgba(0, 0, 0, 0.9);
	border: 2px solid #595959;
}

/* Responsive */
@media (max-width: 768px) {
.nav-menu {
	display: none;
	z-index: 11000;
}
.hamburger {
	display: block;
	margin-right: 36px;
}
}
.slideshow-container img, .slideshow-container img a {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	border: none;
	bottom: 0;
	right: 0;
}
.fade {
	animation-duration: 1s;
	animation-iteration-count: once;
	animation-name: fadeIn;
	animation-timing-function: ease-in-out;
}
@keyframes fadeIn {
0% {
opacity:.05
}
100% {
opacity:.99
}
}


