@import url("/templates/global.css");
@font-face {
	font-family: proxima-nova;
	src: url('proxima-nova');
}

body {
	background-color: white;
}

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

a {
	color: #ff0022;
}

.header {
	width: 100%;
	padding: 20px;
	background-color: #212121;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 29px;
}

.header__logo {
	height: 100px;
}

.header__nav {
	font-size: 16px;
	display: flex;
}

.header__nav a {
	padding: 0 15.55px;
	line-height: 32.5px;
	font-size: 13px;
	color: #ffffffe6;
	letter-spacing: 2px;
	font-family: proxima-nova, sans-serif;
	transition: all 200ms ease-in-out;
}

.header__nav a:nth-of-type(3) {
	color: white;
}

.header__nav a:last-of-type {
	padding-right: 0;
}

.header__nav a:hover {
	text-decoration: none;
	opacity: 0.7;
}