* {
	box-sizing: border-box;
}
body {
	margin: 0%;
	padding: 0%;
	background-color: #f8f8ff;
}
.header {
	width: 100%;
	height: 20%;
	background-color: white; /*whitesmoke;*/
	font-size: 1.2em;
	font-family: "Roboto Regular"; /*sans-serif;*/
	display: inline-block;
	padding-left: 3%;
	padding-right: 3%;
}
@media only screen and (max-width: 560px) {
	.header {
		padding: 0;
	}
}
.fixed-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}
.logo {
	margin: 0%;
	width: 15%;
	height: 100%;
	float: left;
	display: inline-block;
}
.logo:hover {
	cursor: pointer;
}
.logo img {
	max-width: 100%;
	max-height: 100%;
}
#menu-bar-icon {
	display: none;
}
/*.menu-bar {
	margin: 0%;
	width: 85%;
	height: 100%;
	float: right;
	text-align: right;
	padding-right: 10%;
}*/
#menu-bar-close-button {
	display: none;
}
/*.menu-bar ul {
	padding: 3.2%;
	margin: 0%;
}
.menu-bar ul li {
	display: inline;
	margin-right: 1%;
}
.menu-bar ul li:hover {
	text-decoration: underline;
	cursor: pointer;
}
.menu-bar ul li a {
	color: black;
	text-decoration: none;
}*/
.menu-bar {
    display: inline-block;
    width: 85%;
    height: 100%;
    text-align: right;
    float: right;
    margin: 0;
    padding-left: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-right: 2%;
}
.menu-button {
	font-size: 1em;
	display: inline-block;
    text-decoration: none;
    padding: 1%;
    color: gray;
    font-family: sans-serif;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
}
.menu-button:hover {
	border-top: 3px solid orange;
    border-bottom: 3px solid orange;
    color: orange;
}
.highlight-link {
	border-top: 3px solid orange;
    border-bottom: 3px solid orange;
    color: orange;
}
@media only screen and (max-width: 670px) {
	.logo {
		width: 19%;
	}
	.menu-bar {
		width: 81%;
	}
}
@media only screen and (max-width: 560px) {
	.logo {
		width: 100%;
		position: relative;
		padding: 0;
		text-align: center;
	}
	.logo img {
		max-width: 80%;
	}
	#menu-bar-icon {
		position: fixed;
		top: 5px;
		display: block;
		font-size: 1.5em;
		font-weight: bold;
		cursor: pointer;
		z-index: 1;
	}
	.menu-bar {
		width: 0%;
		text-align: center;
		position: fixed;
		top: 0;
		z-index: 1;
		transition: 0.5s;
		overflow-x: hidden;
		background-color: whitesmoke;
	}
	#menu-bar-close-button {
		display: block;
		text-align: right;
		font-size: 1.7em;
	}
	/*.menu-bar ul li {
		display: block;
		transition: 0.3s;
	}
	.menu-bar ul li:hover {
		color: #f2f2f2;
		text-decoration: underline;
		cursor: pointer;
	}*/
	.menu-bar {
		width: 0%;
		text-align: center;
		position: fixed;
		top: 0;
		z-index: 1;
		transition: 0.5s;
		overflow-x: hidden;
		background-color: white;
	}
	.menu-button {
		display: block;
		transition: 0.3s;
	}
}
.section-header {
	/*text-align: center;*/
	margin-left: 2%;
	margin-bottom: 0%;
	font-family: "Roboto Regular"; /*sans-serif, Arial, Helvetica;*/
	padding: 1%;
	text-transform: uppercase;
}
/***************************************************************************************************/
footer {
	background-color: white; /*whitesmoke;*/
	font-family: "Roboto Regular"; /*sans-serif, Arial, Helvetica;*/
	color: black; /*white;*/
	padding: 2%;
	display: grid;
	grid-template-columns: 90% 10%;
	justify-items: start;
}
.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 33%);
	align-items: center;
	justify-items: center;
}
.fa {
	text-decoration: none;
	font-size: 1.5em;
	text-align: center;
	text-decoration: none;
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 100%;
}
.fa:hover {
	color: lightgray;
}
.fa-facebook,
.fa-linkedin,
.fa-instagram {
 	color: black;
}
@media only screen and (max-width: 670px) {
	footer {
		grid-template-columns: none;
		justify-items: center;
	}
}