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

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

a {
	color: #cd181e;
}

body {
	background-color: #fff;
}

.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1vw 3vw;
}

.header__logo img {
	max-height: 42px;
}

.header__nav {
	font-family: "Poppins", sans-serif;
	font-size: 0;
}

.header__nav a {
	margin-left: 1.8vw;
	font-size: 17.6px;
	color: #000;
}

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

.contact-button {
	padding: 6px 15px;
	color: #fff!important;
    background-color: #cd181e;
	transition: .1s opacity linear;
}

.contact-button:hover {
	opacity: .8;
}

.main {
	width: 1100px;
	padding: 3em;
}

.sidebar {
	margin-right: 3em;
}