/*Added animation to shadow because it flickers without it*/
.header-container {
	animation-name: shadow;
	animation-duration: .5s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	/* filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 1.0)); */
	position: relative;
	z-index: 100;
}
.header {
	position: relative;
	background-color: #FFF;
	height: auto;
	width: 100%;
	margin: 0 auto;
	clip-path: polygon(100% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%, 0 0);
	border-bottom: 4px solid #be0000;
	z-index: 99;
	margin-bottom: 15px;

}

.mobile-bar {
	display: none;
}
.top-bar, .mobile-bar {
	width: 100%;
	background-color: #be0000;
	box-shadow: 0px 1px 4px black;
}

.top-bar span, .mobile-bar span {
	display: inline-block;
	font-size: 18px;
	width: 32.5%;
	color: white;
	text-align: center;
	margin: 5px 0px;
	font-family: 'Heebo', sans-serif;
	text-shadow: 2px 3px 5px #000000;
}

.mobile-bar span {
	font-size: 22px;
}

.top-bar span a, .mobile-bar span a {
	text-decoration: none;
	color: white;
}

.top-bar i, .mobile-bar i {
	padding-bottom: 2px;
}

.header-container img {
	display: block;
	margin: 10px auto;
	width: 18%;
	min-width: 250px;
}

.top-nav ul {
	margin: 0 auto;
	text-align: center;
	padding: 12px 0px;
	background-color: #3d3d3d;
}

.top-nav ul li {
	display: inline-block;
	list-style: none;
	margin: 0px;
}

.top-nav ul li:hover {

}
.top-nav ul li a {
	padding: 14px 15px;
	color: white;
	text-decoration: none;
	font-size: 21px;
	font-family: 'Heebo', sans-serif;
	line-height: 35px;
	text-transform: uppercase;
	background-color: #3d3d3d;
	transition: all .25s;
}

.top-nav ul li a:hover {
	transform: translateY(-3px);
    background-color: #fff;
    color: #3d3d3d;
}

.mobile-nav {
	overflow: hidden;
	background-color: #333;
	position: relative;
}

#mobile-links {
	display: none;
	text-align: center;
	border-top: 4px solid #be0000;
	height: 0px;
	transition: all .5s;
}

.mobile-nav a {
	color: white;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 22px;
	display: block;
	font-family: 'Heebo', sans-serif;
	transition: all .35s;
}

a.icon {
	display: none;
	position: absolute;
    top: 43%;
	right: 28%;
	font-size: 30px;
	color: black;
}

.mobile-nav a:hover {
	background-color: #ddd;
	color: black;
}

.mobile-nav li:hover {
	border-top: 4px solid white;
	border-bottom: 4px solid white;
}

.active {
	background-color: #4CAF50;
	color: white;
}

.mobile-icon-container {
	position: relative;
}



