/* Footer menu */
footer#footer {
	font-family: "roman", sans-serif;
	display: flex;
	flex-direction: column;
}

footer#footer .menu {
	background-color: #f8f8f8;
	padding: 64px 0;
}

footer#footer .wrapper {
	padding: 0 16px;
}

footer#footer .menu .wrapper {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin: 0 auto;
}

footer#footer .menu .wrapper nav {
	display: flex;
	flex-direction: column;
}

footer#footer .menu .wrapper nav h3 {
	color: #333;
	font-size: 14px;
	font-weight: 900;
	line-height: 24px;
	margin-bottom: 16px;
}

footer#footer .menu .wrapper nav div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

footer#footer .menu .wrapper nav div a {
	color: #1a5632;
	font-size: 14px;
	font-weight: 350;
	line-height: 20px;
	width: fit-content;
}

/* Footer social */
footer#footer .social {
	background-color: #6ec491;
	padding: 40px 0;
}

footer#footer .social .wrapper {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
}

footer#footer .social .wrapper .logo img {
	height: 64px;
	width: auto;
}

footer#footer .social .wrapper .icons {
	display: flex;
	gap: 16px;
}

footer#footer .social .wrapper .icons a {
	align-items: center;
	background-color: #b9eacc;
	border-radius: 12px;
	display: flex;
	height: 48px;
	justify-content: center;
	width: 48px;
}

footer#footer .social .wrapper .icons a img,
footer#footer .social .wrapper .icons a svg {
	height: 24px;
	object-fit: contain;
	width: 24px;
}

/* Footer copyright */
footer#footer .copyright {
	background-color: #1a1a1a;
	padding: 20px 0;
}

footer#footer .copyright .wrapper {
	color: #fff;
	font-size: 14px;
	display: flex;
	line-height: 20px;
	margin: 0 auto;
}

footer#footer .copyright .wrapper nav {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}

footer#footer .copyright .wrapper nav a {
	color: #fff;
}

@media screen and (min-width: 768px) {
	footer#footer .wrapper {
		padding: 0 24px;
	}

	footer#footer .menu .wrapper {
		flex-direction: row;
	}

	footer#footer .menu .wrapper nav {
		width: calc(25% - 96px / 3);
	}

	footer#footer .social .wrapper {
		flex-direction: row;
		justify-content: space-between;
	}

	footer#footer .copyright .wrapper nav {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
	}
}

@media screen and (min-width: 1024px) {
	footer#footer .wrapper {
		padding: 0 32px;
		max-width: 1344px;
	}
}

@media screen and (min-width: 1920px) {
	footer#footer .menu .wrapper nav h3 {
		font-size: 16px;
	}
}