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

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

a {
	color: #76BD1D;
}

body {
	background-color: #fff;
}

.container {
	width: 1140px;
}

.header-wrapper {
	background-color: #333;
	padding: 10px 15px 20px;
	margin-bottom: 2rem;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}
.header__logo img {
	max-width: 335px;
}

.header__nav {
	font-size: 0;
	font-family: "Montserrat", sans-serif;
	padding-top: 15px;
}

.header__nav a {
	text-transform: uppercase;
	color: #fff;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 300;
	transition: all .3s ease;
	letter-spacing: 0.7px;
}

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

.main {
	padding: 3rem 0;
}

.main::before {
	display: block;
	content: "";
	width: 66px;
	height: 2px;
	background-color:#76BD1D;
	position: absolute;
	top: 0;
	left: calc(50% - 33px);
}

.sidebar {
	margin-right: 3rem;
}