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

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

a {
	color: #457c9d;
}

body {
	background-color: #fff;
}

.header-wrapper::before {
	height: 20px;
	display: block;
	content: "";
	background-color: #1D3658;
	box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}

.header-wrapper {
	background-color: #fff;
	border-bottom: 66px solid #e59a38;
}

.header__logo img {
	padding: 10px 0 14px;
}

.header__nav {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	margin-bottom: -66px;
	font-size: 0;
}

.header__nav a {
	padding: 20px 8px 16px;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	color: #1c395d;
	border-bottom: 5px solid transparent;
	flex-grow: 1;
	text-align: center;
}

.header__nav a:hover {
	text-decoration: none;
	border-bottom: 5px solid #1d3557;
}

.main {
	padding: 2rem 0;
}

.sidebar {
	margin-right: 2rem;
}