@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

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

a {
	color: #730E20;
}

body {
	background-color: #fff;
}

.header {
	width: 100%;
	margin-bottom: 20px;
}

.header__nav {
	width: 100%;
	background-color: #f4f4f4;
	padding: 10px;
	display: flex;
	justify-content: flex-end;
}

.header__nav a {
	padding: 10px 17px;
	margin-left: 40px;
	transition: all .3s cubic-bezier(.58, .3, .005, 1);
	line-height: 20px;
	border: 3px solid transparent;
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	color: #555555;
	font-weight: 400px;
}

.header__nav a:hover {
	text-decoration: none;
	border-color: #0d0d0d;
	color: #0d0d0d;
}

.logo__wrapper {
	display: flex;
	position: absolute;
	width: 24.931%;
	padding: 10px;
}

.header__logo {
	width: 72%;
	margin: 0 auto;
}

.main {
	width: 1140px;
	padding: 10px;
}

.header__title {
	max-width: 1140px;
	padding: 110px 10px 0;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
	font-size: 45px;
	color: #730E20;
	line-height: 45px;
	font-weight: 700;
	letter-spacing: 0.8px;
}