@font-face {
	font-family: "alternate-gothic-no-2-d";
	src: url(alternate-gothic-no-2-d.woff2);
}

.t-primary-bgcolor {
	background-color: #ad1600;
}

body {
	background-color: white;
}

a {
	color: #ad1600;
}

.header-wrapper {
	height: 200px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url('banner.jpg');
	background-size: cover;
	background-position: center;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 100px;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.74);
}

.header__logo img {
	max-width: 150px;
}

.header__nav a {
	margin: 0 25px;
	color: #333333;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 300;
	font-family: "alternate-gothic-no-2-d", sans-serif;
	transition: .4s;
}

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

.header__nav a:last-child {
	margin-right: 0;
}

.header__nav a:first-child {
	margin-left: 0;
}

@media screen and (max-width: 1178px) {
	.header {
		padding: 0 15px;
	}
}