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

body {
	background-color: #d4d4d4;
}
.t-primary-bgcolor {
	background-color: #8a0a0b;
}

.container {
	width: 1140px;
}

a {
	color: #860b0b;
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: #443f3f;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.header__logo {
	max-height: 100px;
	margin-top: 5px;
}

.header__nav a {
	color: white;
	font-weight: 500;
	padding-left: 28px;
	font-family: Raleway, sans-serif;
}

.header__nav a:hover {
	text-decoration: none;
	color: #860b0b;
	transition: 0.3s all ease-in-out;
}