@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800;900&display=swap');

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

a {
	color: #00263E;
}

body {
	background-color: #fff;
}

.container {
	width: 1200px;
}

.header {
	width: 100%;
	text-transform: uppercase;
	font-family: "Source Sans 3", sans-serif;
}

.header__top {
	background-color: #00263E;
	height: 33px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 45px;
	font-size: 0;
}

.header__top a {
	font-size: 12px;
	color: #fff;
	font-weight: 500;
	margin-left: 15px;
}

.header__top a:hover {
	text-decoration: none;
	color: #00263e;
}

.header__main {
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 45px;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	color: #000;
	margin: 0 20px;
	padding: 6px 0;
	font-size: 13px;
	font-weight: 900;
	border-bottom: 1px solid transparent;
	transition: all .3s ease-in-out;
}

.header__nav a:hover {
	opacity: 0.8;
	border-bottom: 1px solid #000;
	text-decoration: none;
}

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

.header__banner {
	height: 240px;
	padding: 70px 0;
	background-image: url(header-bg.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.header__banner h1 {
	text-shadow: 3px 3px 5px #000;
	color: #fff;
	font-size: 55px;
	font-weight: 900;
}

.header__banner .separator {
	background-color: #fff;
	height: 5px;
	width: 100px;
}

.sidebar {
	margin-right: 3rem;
}