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

body {
	background-color: white;
}

a {
	color: #38650d;
}

.container {
	width: 1200px;
}

.header {
	height: 187px;
	background-color: white;
	margin-bottom: 20px;
	width: 100%;
	display: flexbox;
	justify-content: end;
}

.header__logo {
	position: absolute;
	left: 7%;
	width: 15%;
	top: 5px;
}

.header__logo img {
	width: 100%;
}

.header__nav {
	padding: 103.5px 24.5px 0 0;
	font-family: Arial, Helvetica, sans-serif;
	width: 1200px;
	margin: 0 auto;
	justify-content: right;
	display: flex;
	flex-wrap: wrap;
}

.header__nav a {
	line-height: 18.67px;
	height: 48.67px;
	padding: 15.34px 15px;
	border-radius: 5px;
	background-color: #0a3498;
	color: white;
	font-weight: 700;
	font-size: 16px;
	margin: 4.5px 10.2px;
	text-decoration: none;
	position: relative;
}

.header__nav a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 0;
	bottom: -4px;
	left: 0;
	background-color: #0a3498;
	transition: all 0.35s ease;
}

.header__nav a:hover::after {
	height: 6px;
	bottom: -10px;
}

@media (max-width: 1199.9px) {
	.header__nav {
		width: 960px;
		padding-left: 130px;
		justify-content: center;
		padding-top: 104.5px;
	}

	.main {
		margin-top: 60px;
	}
}