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

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

a {
	color: #fdb10f;
}

body {
	background-color: #fff;
}

.container {
	width: 1100px;
}

.header-wrapper {
	background-color: #76212D;
}

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

.header__logo img {
	max-width: 50px;
}

.header__logo {
	transition: .5s all ease-in-out;
}

.header__logo:hover {
	opacity: 0.8;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: #fff;
	padding: 0 15px;
	transition: all .4s ease;
}

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

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