@import url('https://fonts.googleapis.com/css?family=Open+Sans:700');

body {
	background-color: #f2f2f2;
}

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

a {
	color: #0074a8;
}

.header {
	width: 100%;
}

.main {
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.header__top {
	content: '';
	height: 25px;
	background-color: #222222;
	box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
	position: relative;
	z-index: 2;
}

.header__main {
	width: 100%;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	height: 84px;
	display: flex;
	justify-content: space-between;
	padding: 0 35.8px;
	position: relative;
	z-index: 1;
	background-color: white;
}

.header__logo {
	margin-top: -1px;
}

.header__nav {
	display: flex;
}

.header__nav a {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 19px;
	color: #3a557c;
	height: 83px;
	line-height: 83px;
	padding: 0 30px;
	transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.header__nav a:hover {
	background-color: #3a557c;
	color: white;
}

.header__image {
	content: '';
	background-image: url('header-bg.png');
	background-size: cover;
	background-position: center;
	height: 150px;
}