@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&family=Source+Sans+Pro&display=swap');

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

body {
	background-color: #FFF;
}

a {
	color: #006dd2;
}

.header {
	width: 100%;
}

.header__topbar {
	width: 100%;
	background-color: #0a0442;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 15px;
}

.topbar__contact {
	display: flex;
	width: 60%;
}

.topbar__contact a {
	font-family: 'Source Sans Pro', sans-serif;
	color: #d0d0d0;
	font-size: 15px;
	line-height: 15px;
	width: calc(100% / 3);
	text-align: center;
	text-decoration: none;
}

.topbar__contact a i {
	font-size: 10px;
	margin-right: 10px;
	width: 10px;
	text-align: center;
}

.topbar__hours {
	font-family: 'Source Sans Pro', sans-serif;
	color: #d0d0d0;
	font-size: 15px;
	line-height: 15px;
	display: flex;
	align-items: center;
}

.topbar__hours i {
	font-size: 10px;
	margin-right: 10px;
	width: 10px;
	text-align: center;
}

.header__main {
	width: 100%;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo__wrapper {
	display: flex;
	width: 25%;
}

.header__logo {
	width: 100%;
}

.header__nav {
	display: flex;
	align-items: center;
}

.header__nav a {
	font-family: 'Source Sans Pro', sans-serif;
	color: #006dd2;
	font-size: 16px;
	font-weight: 400;
	padding: 0 24px;
	line-height: 44.67px;
	text-decoration: none;
	height: 44.67px;
}

.header__nav a:last-of-type {
	line-height: 90px;
	padding: 0 19px 0 20px;
	color: white;
	background-color: #0a0442;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	height: 90px;
}

@media (min-width: 1400px) {
	.header__topbar {
		padding: 5px calc(50% - 685px);
	}

	.header__main {
		padding: 0 calc(50% - 685px);
	}
}

@media (max-width: 1200px) {
	.topbar__contact a {
		font-size: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.topbar__hours {
		font-size: 12px;
	}

	.header__topbar {
		height: 34px;
		padding-bottom: 6px;
	}

	.topbar__contact a i {
		font-size: 15px;
		width: 15px;
	}

	.topbar__hours i {
		font-size: 15px;
		width: 15px;
	}

	.header__nav a:not(:last-of-type) {
		font-size: 12px;
	}
}