@font-face {
    font-family: 'Amyn'; /*a name to be used later*/
    src: url('../fonts/amyn.ttf'); /*URL to font*/
}

body {
	overflow-y: scroll;
	padding-top: 150px; /* Adjust to sum of heights of #logo and #menu */
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 1);
	z-index: 2;
	box-shadow: 0 0 10px black;
}

#logo {
	height: 100px;
	padding: 5px;
	text-align: center;
}

#logo > a {
	display: inline-block;
	height: 100%;
}

#logo > a > img {
	height: 100%;
}

#menu {
	height: 50px;
	font-family: "Amyn", sans-serif;
	font-weight: 900;
}

#menu > #menu_bars {
	text-align: right;
	height: 50px;
	padding: 5px 20px;
	font-size: 30px;
}

#menu > #menu_bars > #menu_bars_btn {
	cursor: pointer;
}

#menu > ul {
	list-style: none;
	padding: 0;
	transition: 0.5s;
	height: 0;
	overflow-y: hidden;
}

#menu > ul > li:first-child {
	border-top: 1px black solid;
}

#menu > ul > li > a {
	display: block;
	width: 100%;
	padding: 10px;
	border-bottom: 1px black solid;
	background-color: #eee;
	text-decoration: none;
	color: inherit;
}

#menu > ul > li > a:hover {
	background-color: #333;
	color: white;
}

#ek-line {
	color: #f39200 !important;
}

#ek-line:hover {
	color: white !important;
}

@media(min-width: 992px) {
	#menu > #menu_bars {
		display: none;
	}

	#menu > ul {
		text-align: center;
		height: 50px;
	}

	#menu > ul > li {
		display: inline-block;
		height: 30px; /* Adjust to height of #menu minus 2*margin of li */
		margin: 10px 2px;
		transition: 0.3s;
		border-radius: 3px;
	}

	#menu > ul > li:first-child {
		border: none;
	}

	#menu > ul > li:hover {
		background-color: rgb(5, 71, 166);
	}

	#menu > ul > li:first-child:hover {
		background-color: rgb(243, 146, 0);
	}

	#menu > ul > li > a {
		height: 30px; /* Adjust to height of #menu minus 2*margin of li */
		padding: 0 10px;
		font-size: 20px;
		transition: 0.1s;
		background-color: transparent;
		border: none;
	}
	
	#menu > ul > li > a:hover {
		background-color: transparent;
	}
}

footer {
	background-color: white;
	padding: 4.5em;
	height: calc(11em + 30px);
	text-align: center;
}

footer > div > a {
	display: inline-block;
	height: 30px;
	padding: 5px 10px;
	margin: 0 10px;
	transition: 0.3s;
	border-radius: 3px;
}

footer > div > a:hover {
	color: white;
	text-decoration: none;
	background-color: rgb(5, 71, 166);
}