@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
	background-color: #fff;
}

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

a {
	color: #1381CF;
}

.header-wrapper::after {
	height: 56px;
	content: "";
	display: block;
	background-image: linear-gradient(61deg, #032D63 4.3859649122806985%, #3186CC 45.614035087719294%, #2875B8 72.80701754385964%);
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 113px;
	padding: 1.5rem;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px;
	color: #000;
	letter-spacing: 1.6px;
	border-bottom: 2px solid transparent;
	transition: ease .05s;
	margin-left: 6px;
}

.header__nav a:hover {
	text-decoration: none;
	border-bottom: 2px solid #000;
}