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

body {
	background-color: white;
}

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

a {
	color: #185a7d;
}

.header {
	width: 100%;
	padding-left: 34.7px;
	box-shadow: 0 2px 6px rgb(0 8 0 / 8%);
	background-color: #f7f7f7;
	justify-content: space-between;
	display: flex;
	padding-bottom: 3px;
}

.header__logo {
	height: 73px;
}

.header__left {
	display: flex;
	align-items: flex-end;
}

.header__nav {
	display: flex;
	margin-left: 98.5px;
}

.header__nav a {
	font-size: 16px;
	line-height: 40px;
	color: #58575b;
	font-family: 'Work Sans', Arial, Helvetica, sans-serif;
	padding: 0 10px;
	font-weight: 600;
}

.header__right {
	display: flex;
	flex-direction: column;
	padding-left: 25px;
	border-left: solid 1px #58575b3d;
	align-items: flex-end;
	margin-top: 14px;
	height: fit-content;
}

.header__right a {
	line-height: 12px;
	color: #58575b;
	font-size: 12px;
	font-family: 'Work Sans', Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
	font-weight: 400;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all .4s ease-in-out;
}

.header__right a:last-of-type {
	padding-bottom: 0;
}

.header__right a div {
	width: 15px;
	height: 2px;
	background-color: #bc2f2c;
	margin-right: 0.5px;
	margin-left: 10px;
}

.header__right a:hover {
	margin-right: -5px;
	margin-left: 5px;
	color: #9f9ead;
}

.header-wrapper::after {
	content: '';
	background-image: url('header-bg.png');
	width: 100%;
	display: block;
	height: 200px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: 50%;
}