@import url("/templates/global.css");
@font-face {
	font-family: Avenir;
	src: url('fonts/AvenirLTStd-Heavy.woff2');
}

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

a {
	color: #547e7b;
}

body {
	background-color: #fff;
}

.header {
	width: 100%;
	margin-bottom: 20px;
}

.header__main {
	width: 100%;
	background-color: #790100;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 1px 1px 3px #000;
	position: relative;
	z-index: 2;
}

.header__nav {
	width: 400px;
}

.header__nav.nav-right {
	text-align: left;
	padding-left: 31px;
}

.header__nav.nav-left {
	text-align: right;
	padding-right: 31px;
}

.header__nav a {
	color: white;
	line-height: 36px;
	height: 36px;
	padding: 0 14.4px;
	font-family: Avenir, sans-serif;
	font-size: 14.4px;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.header__nav a::after {
	width: 0;
	content: '';
	position: absolute;
	bottom: 5px;
	left: 14.4px;
	transition: all 200ms ease-in-out;
	height: 1px;
	background-color: white;
}

.header__nav a:hover::after {
	width: 36px;
}

.header__logo {
	width: 45px;
	margin-bottom: 8px;
}

.title__wrapper {
	width: 100%;
	background-image: url('header-bg.png');
	background-size: cover;
	height: 200px;
	display: flex;
}

.header__title {
	margin: 60px 0;
	width: 100%;
	text-align: center;
	line-height: 80px;
	background-color: rgba(162, 116, 0, 0.4);
	color: white;
	font-size: 53px;
	font-family: Avenir, sans-serif;
}