@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,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 {
	height: 83px;
}

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

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

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

a.contact-button {
	border-radius: 100px;
    padding: 25px 40px;
	color: #fff!important;
    background-color: #cd181e;
	transition: .1s opacity linear;
	margin-left: 1.5vw;
}

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

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

.sidebar {
	margin-right: 3em;
}