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

body {
	background-color: white;
}

.container {
	width: 1080px;
}

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

a {
	color: #0038cc;
}

.header {
	width: 100%;
}

.header__main {
	padding: 13px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 106px;
}

.header__logo {
	padding-left: 4.5px;
}

.header__nav a {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	color: black;
	padding-left: 22.7px;
	transition: all 0.4s ease-in-out;
	padding-top: 1px;
}

.header__nav a:hover {
	text-decoration: none;
	color: #4d4d4d;
}

.title__wrapper {
	background-image: url('header-bg.png');
	background-size: cover;
	background-position: 50%;
	padding: 33px 0;
}

.header__title {
	font-size: 70px;
	line-height: 70px;
	padding-bottom: 10px;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	color: white;
	text-align: center;
}

.header__slogan {
	padding: 14px 0 10px;
	line-height: 30px;
	font-size: 30px;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	text-align: center;
	color: white;
}