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

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

a {
	color: #004e02;
}

body {
	background-color: white;
}

.header {
	width: 100%;
	background-color: #004e02;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 60%);
	margin-bottom: 30px;
}

.header__logo {
	width: 145px;
}

.header__nav {
	display: block;
}

.header__nav div {
	justify-content: right;
	display: flex;
}

.header__nav div a {
	color: white;
	font-size: 15px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 600;
	padding: 15px 20px;
	display: inline-block;
	transition: all 0.5s ease-in-out;
}

.header__nav div a:hover {
	text-decoration: none;
	background-color: #006f02;
}