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

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

a {
	color: #31b702;
}

html {
	padding: 0 40px;
	background-color: white;
	border-top: 30px solid #252531;
}

body {
	background-color: #f4f4f4;
}

.header {
	width: 100%;
	background-color: white;
	margin-bottom: 40px;
	border-bottom: 30px solid #31b702;
}

.header__main {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	width: 153px;
}

.header__nav {
	font-size: 14px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.header__nav a {
	color: #252531;
	font-weight: 500;
	line-height: 60px;
	padding: 0 20px;
	transition: all .3s ease-in-out;
}

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

.header__nav a:hover,
.header__nav a.active {
	color: #31b702;
	text-decoration: none;
}