html, body {
	margin: 0;
	padding: 0;

	width: 100%;
	height: 100%;
}

body {
	min-width: 900px;
}

ul {
	list-style-type: unset;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding-inline-start: 0;
}

li {
	display: inline-block;
	text-align: center;
}

li::marker {
	display: none;
}

a {
	text-decoration:none;
	font-size: 14px;
	font-weight: 400;
	color: #222222;
}

a:-webkit-any-link:active {
	color: #222222;
}
a:-webkit-any-link {
	color: #222222;
	cursor: pointer;
	text-decoration: unset;
}

header {
	height: 80px;
	padding-left: 23.95%;
	padding-right: 23.9%;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

main {
	width: 100%;
	overflow-x: hidden;
}

footer {
	width: 100%;
	position: relative;
	top: -4px;
}

footer img {
	display: inline-block;
	width: 100%;
}

.logo {
	display: inline-block;
	width: 121px;
	height: 55px;
}

.nav ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.nav ul li {
	margin-right: 40px;
}
.nav ul li:last-child {
	margin-right: 0;
}

.nav ul li .active {
	font-weight: 500;
	color: #5CB531;
}
