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

:root {
	--primary-color: #A65A29;
	--link-color: #A65A29;
}

body {
	background-color: #FFF;
}

.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 36px 78px;
	margin-bottom: 20px;
}

.main {
	padding: 2rem 0;
	width: 1100px;
}

.header__nav {
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	font-size: 0;
	margin-top: 16px;
}

.header__nav a {
	color: #3c2814;
	padding: 5px 8px;
	margin: 0 10px;
	font-size: 14px;
	border-top: 4px solid transparent;
}

.header__nav .active {
	color: #A65A29;
	border-top: 4px solid #A65A29;
}

.header__nav a:hover {
	text-decoration: none;
	color: #C4977A;
	border-top: 4px solid #C4977A;
}

.sidebar {
	margin-right: 40px;
}