@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

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

a {
	color: #cf1b39;
}

.header {
	display: flex;
	justify-content: space-between;
	height: 104px;
}

.header-wrapper {
	background-color: #fff;
}

.header__logo {
	padding: 20px 0;
}

.header__logo img {
	max-height: 63px;
}

.header__nav {
	align-self: flex-end;
	font-family: "PT Sans", sans-serif;
	font-size: 0;
	border-top: 1px solid #9fcae8;
	padding-top: 9px;
	margin-bottom: 18px;
	letter-spacing: 1px;
}

.header__nav a {
	font-size: 16px;
	color: #174895;
	padding: 6px 20px 7px;
	letter-spacing: 1.6px;
	position: relative;
	z-index: 10;
}

.header__nav a:not(:first-child):before {
	content: '|';
    position: absolute;
    font-size: 14px;
    font-size: .9333333333rem;
    left: -2px;
    top: 10px;
    line-height: 1em;
    color: #c5dff1;
    z-index: 1;
}

.header__nav a:hover {
	color: #fff;
	background-color: #174895;
	text-decoration: none;
}

body {
    background-image: url(body__bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}