@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

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

body {
	background-color: white;
}

a {
	color: #E91620;
}

.container {
	width: 1100px;
}

.header {
	width: 100%;
}

.header__main {
	width: 1140px;
	margin: 0 auto;
	display: flex;
}

.header__main a {
	margin: 43.5px 0px 25px 5px;
}

.header__nav {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: #bd1f27;
}

.header__nav a {
	color: white;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	padding: 0 30px;
	font-weight: 700;
	transition: 0.3s ease-in-out;
}

.header__nav a:hover {
	text-decoration: none;
	background-color: #2B4D95;
}

.header__logo {
	display: flex;
	width: 165px;
	height: 143px;
	background-image: url('masthead.svg');
	background-size: fill;
}

.header__logo:hover {
	background-position: top right;
}