@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

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

a {
	color: #0071ce;
}

.header {
	width: 100%;
	background-color: #0C2340;
}

.header__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 104px;
}

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

.header__main__nav {
	display: flex;
}

.header__main__nav a {
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	padding: 10px 15px;
	justify-self: center;
}

.header__main__nav a:hover {
	border-radius: 4px;
	text-decoration: none;
	background-color: #fff3
}

.header__nav {
	background-color: #fff;
	border-bottom: 5px solid #0c2340;
}

.header__nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	height: 40px;
}

.header__nav__inner a {
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	color: #0c2340;
	font-size: 12px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	padding: 0 13px;
}

.header__nav__inner a:hover {
	text-decoration: none;
	background-color: #c8c9c7;
}

.main {
	width: 1110px;
}
.header__main,
.header__nav__inner {
	max-width: 1110px;
	margin: auto;
}