.navbar {
	height: 6em;
	display: flex;
	align-items: center;
	padding: 0px 20px;
	z-index: 6;
}

.logo a {
	text-decoration: none;
	color: #fff;
	font-size: 1.5rem;
}

.menu {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-evenly;
}

.menu a {
	text-decoration: none;
	color: inherit;
	margin: 0 10px;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	margin-left: auto;
}

.bar {
	width: 30px;
	height: 2px;
	background-color: var(--secondary-color);
	margin: 3px 0;
	transition: all 0.4s ease;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
	.navbar.active {
		height: 100vh;
		flex-direction: column;
		z-index: 6;
	}

	.menu {
		display: none;
		flex-direction: column;
		width: 100%;
	}

	.menu.active {
		display: flex;
		width: 80%;
		position: absolute;
		transform: translate(0%, 50%);
		z-index: 999;
	}
	
	.menu a {
		padding: 30px 20px;
		text-align: center;
		width: 100%;
		border-top: 1px solid #444;
	}

	.hamburger {
		display: flex;
		padding: 0 3vw;
		z-index: 7;
	}

	.hamburger.active {
		position: relative;
		height: 6em;
		justify-content: center;
		align-items: center;
	}

	/* Transform the hamburger into an 'X' icon */
	.hamburger.active .bar:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 7px);
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -7px);

	}
}

.block-header {
	padding: 0;
}

.block-index {
	position: absolute;
	width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	transition: 0.6s ease;
}

.link-header, .link-footer {
	color: inherit;
}
.font-header-footer {
	font-family: Didact Gothic;
}

.link-header:hover, .link-footer:hover {
	color: #F1EADA;
}

.link-header-index, .link-header-index:hover {
	color: #F1EADA;
}

footer {
	height: 180px;
	float: left;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	align-items: center;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 10px 0;
	}
}

.back-to-top-button-container {
	margin: 0 auto;
	max-width: fit-content;
	border-bottom: 10px;
}

#back-to-top-btn {
	border: none;
	outline: none;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	padding: 10px;
	transition: background-color 0.5s ease;
}

#back-to-top-btn:hover {
	background-color: #303031;
}

@media screen and (max-width: 768px) {
	#back-to-top-btn {
		/* visibility: hidden; */
		clear: both;
	}
}

.contact-info {
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 10px 0px;
}

.wrapper {
	margin: 0 auto;
	max-width: fit-content;
	font-size: 16px;
	z-index: 4;
}

.wrapper.link-footer:link, .wrapper.link-footer:visited {
	text-decoration: none;
}