* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

header {
	width: 100%;
	height: 150px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 2;
	overflow: hidden;
	transition: 500ms;
	background-color: #ffffff;
}
header.active {
	height: 130px;
	position: fixed;
	border-bottom: 2px solid #a33017;
	box-shadow: 5px 5px 15px 5px #d3d3d3ad;
	transition: 500ms;
	z-index: 4;
}
header img {
	width: 170px;
	margin-left: 10px;
	transition: 500ms;
	user-select: none;
}
header.active img {
	width: 150px;
	transition: 500ms;
	user-select: none;
}
header ul {
	width: 60%;
	display: flex;
	justify-content: space-evenly;
	list-style: none;
}
header ul a {
	text-decoration: none;
	user-select: none;
}
header ul li {
	font-size: 18px;
	color: #706f6f;
	transition: 350ms;
	user-select: none;
}
header ul li:hover {
	cursor: pointer;
	color: #a33017;
	transition: 350ms;
}

.toggle-box {
	user-select: none;
	width: 70px;
	height: 70px;
	background: none;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0 0 0 25px;
	display: none;
	z-index: 6;
}
.toggle-button {
	position: absolute;
	top: 50px;
	right: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 30px;
	height: 23px;
	z-index: 6;
	position: fixed;
	display: none;
}
.toggle-button .bareins {
	height: 4px;
	width: 100%;
	background-color: #a33017;
	border-radius: 100px;
	transition: 500ms;
}

.toggle-button .bareins.active {
	position: absolute;
	transform: rotate(45deg);
	background-color: #ffffff;
}

.toggle-button .barzwei {
	height: 4px;
	width: 100%;
	background-color: #a33017;
	border-radius: 100px;
}
.toggle-button .barzwei.active {
	display: none;
}
.toggle-button .bardrei {
	height: 4px;
	width: 100%;
	background-color: #a33017;
	border-radius: 100px;
	transition: 500ms;
}
.toggle-button .bardrei.active {
	position: absolute;
	transform: rotate(-45deg);
	background-color: #ffffff;
}

.responsive-menu-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 4;
	background-color: #0000008a;
	display: none;
}
.responsive-menu-shadow.active {
	display: none;
}
.responsive-menu {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 320px;
	height: 100vh;
	background-color: #a33017;
	z-index: 5;
	box-sizing: border-box;
	padding-top: 80px;
	overflow-y: scroll;
	position: fixed;
	display: none;
}
.responsive-menu ul {
	list-style: none;
	width: 100%;
}
.responsive-menu ul li {
	box-sizing: border-box;
	padding: 25px;
	width: 100%;
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
}
.responsive-menu ul li:hover {
	background-color: #ffffff;
	color: #a33017;
}
.responsive-menu ul a {
	text-decoration: none;
}

@media (max-width: 1450px) {
	header ul {
		width: 70%;
	}
}
@media (max-width: 1250px) {
	header ul {
		width: 80%;
	}
}
@media (max-width: 1100px) {
	header {
		height: 120px;
	}
	header.active {
		height: 120px;
	}
	header img {
		width: 120px;
	}
	header.active img {
		width: 130px;
	}
	header ul {
		display: none;
	}
	.toggle-box {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
	}
	.toggle-button {
		display: flex;
	}
	.responsive-menu {
		display: block;
		transform: translateX(100%);
		transition: 350ms;
	}
	.responsive-menu.active {
		transform: translateX(0%);
		transition: 350ms;
	}
	.responsive-menu-shadow.active {
		display: block;
	}
}

@media (max-height: 680px) {
	header {
		height: 120px;
	}
	header.active {
		height: 120px;
	}
	header img {
		width: 120px;
	}
	header.active img {
		width: 130px;
	}
	.toggle-button {
		top: 45px;
	}
}

@media (max-width: 450px) {
	.responsive-menu {
		width: 100%;
	}
}
