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

.t-primary-bgcolor {
	background-color: #e21836
}

a {
	color: #e21836
}

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

.header-wrapper {
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.05);
	border-bottom: 1px solid #f2f2f2;
}

.header__logo img {
	max-height: 40px;
	transition: opacity 200ms ease;
}

.header__logo img:hover {
	opacity: 0.6;
}

.header__nav {
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
}

.header__nav a {
	color: #000000;
	letter-spacing: 0.6px;
	padding: 10px 20px;
	transition: opacity 300ms ease;
}

.header__nav a:last-child {
	padding-right: 0;
}

.header__nav a:hover {
	text-decoration: none;
	opacity: 0.6;
}

.container {
	width: 1120px;
}

body {
	background-color: white;
}

.main {
	padding: 1.5rem 0;
	margin-top: 15px;
}