@import url("/templates/global.css");
@import url("https://use.typekit.net/nbh8ptr.css");

body {
	background-color: white;
	background-repeat: repeat-x;
	background-attachment: fixed;
}
.t-primary-bgcolor {
	background-color: #e0a700;
}

a {
	color: #e0a700;
}
.header {
	width: 100%;
	display: flex;
	margin-bottom: 50px;
}

.header__contact {
	display: none;
}

.header__nav {
	display: flex;
	justify-content: space-around;
	flex-grow: 1;
	background-color: #363636;
	max-height: 65px;
}

.header__nav a {
	display: inline-block;
	font-family: industry, sans-serif;
	font-weight: 300;
	font-size: 18px;
	letter-spacing: 1px;
	color: white;
	line-height: 65px;
	text-align: center;
	flex-grow: 1;
	transition: background-color ease 0.2s;
}

.header__nav a:not(:last-child) {
	border-right: 3px solid #222;
}

.header__nav a:hover {
	background-color: #222;
	text-decoration: none;
}

.main {
	width: 1100px;
}