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

body {
	background-color: white;
	padding: 0 50px;
}

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

a {
	color: #026e57;
}

.header {
	width: 100%;
	padding: 20px 40px;
	display: flex;
	position: relative;
	justify-content: center;
}

.main {
	padding: 70px 40px 0;
	width: 100%;
	max-width: 1480px;
}

.logo__wrapper {
	position: absolute;
	left: 40px;
	top: 20px;
	height: 100px;
	display: flex;
	align-items: center;
	z-index: -1;
}

.header__logo {
	width: 350px;
}

.header__nav {
	display: flex;
}

.header__nav a {
	line-height: 100px;
	letter-spacing: -.6px;
	transition: all 0.2s ease-in-out;
	font-size: 16.5px;
	font-family: 'Work Sans', sans-serif;
	padding: 0 22px;
	color: #b2b2b2;
}

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

.header__facebook {
	height: 36px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 40px;
	top: 52px;
	color: #e5c3a1;
	background-color: #1f1f1f;
	border-radius: 18px;
	transition: all 0.1s ease-in-out;
	font-size: 16px;
}

.header__facebook:hover {
	color: #e5c3a1;
	background-color: #4c4c4c;
	text-decoration: none;
}

@media (max-width: 1199.9px) {
	body {
		padding: 0 30px;
	}
}