@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

body {
	background-color: white;
}

.t-primary-bgcolor {
	background-color: rgb(224, 124, 0);
}

a {
	color: rgb(224, 124, 0);
}

.container{
	width: 1170px;
}

.header-wrapper {
	border-bottom: 10px solid rgb(224, 124, 0);
	margin-bottom: 20px;
}

.header {
	display: flex;
	justify-content: space-between;
/* 	align-items: center; */
	width: 100%;
}

.header__logo {
	max-width: 350px;
	margin-bottom: 7px;
}
.header__nav{
    display: flex;
	align-items: flex-start;
	width: 600px;
	margin-right: 10px;
}
.header__nav a {
	font-family: 'Raleway', serif;
	font-weight: 50;
	font-size: 16px;
	padding: 76px 10px 10px 10px;
	color: black;
	line-height: 24px;
	display: inline-block;
	background-image: url(menu/main-about-contact_icon.png);
	background-repeat: no-repeat;
	background-position: center 14px;
	margin: 0 5px;
    flex: 1;
    text-align: center;
}

.header__nav a:hover {
	color: white;
	text-decoration: none;
	background-color: rgb(224, 124, 0);
}

.header__nav a.projects-icon {
    background-image: url(menu/projects_icon.png);
    background-position: center 24px;
}

.header__nav a.services-icon {
	background-image: url(menu/services_icon.png);
}

.header__nav a.careers-icon {
	background-image: url(menu/careers_icon.png);
}