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

body {
	background-color: white;
}


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

a {
	color: #22a1c4;
}

.container {
	width: 1170px;
}

.header {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 0 30px;
	background-color: #0c2074;
}

.header__logo {
	width: 350px;
	margin: 31px 0;
}

.header__nav {
    display: flex;
	flex-grow: 1;
	justify-content: space-between;
	max-width: 920px;
}

.header__nav a {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	border-top: 3px solid transparent;
	color: #ffeb3b;
	text-decoration: none;
	transition: .2s linear;
	white-space: nowrap;
	line-height: 82px;
}

.header__nav a:hover,
.header__nav a.active {
	border-color: #ffeb3b;
}

@media (max-width: 1100px) {
	.header__nav {
		display: none;
	}
}