#footer {
	color: var(--light-color);
	padding-bottom: 20px;
	padding-top: 20px;
	margin-top: 50px;
	position: relative;
	background-image: url(../images/header-1.png);
	background-size: cover;
	background-position: center center;
}
#footer .shape-pink-left {
	position: absolute;
	right: 30%;
	top: 0;
	bottom: 0;
	width: 85%;
	min-width: 800px;
	background: var(--primary-color);
	border-radius: 120% 120% 0% 0% / 220% 220% 0% 0%;
}
#footer .shape-green-center {
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	width: calc(((1190px / 3) * 2) + ((100% - 1190px) / 2));
	min-width: 600px;
	background: var(--secondary-color);
	border-radius: 90% 130% 0% 0% / 200% 0% 0% 0%;
	mix-blend-mode: multiply;
}
#footer .shape-yellow-right {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: calc((1190px / 3) + ((100% - 1190px) / 2) + 30px);
	background: var(--tertiary-color);
	mix-blend-mode: multiply;
}
@media screen and (max-width: 1190px) {
	#footer .shape-pink-left {
	}
	#footer .shape-green-center {
		width: 70%;
		right: 20px;
		border-radius: 100% 100% 0% 0% / 200% 0% 0% 0%;
	}
	#footer .shape-yellow-right {
		width: calc(35% + 20px);
	}
}
@media screen and (max-width: 37.5em) {	
	#footer .shape-green-center {
		right: 10px;
	}
	#footer .shape-yellow-right {
		width: calc(35% + 10px);
	}
}

#footer .shape-blue-left {
	content: '';
	position: absolute;
	pointer-events: none;
	bottom: 0;
	left: 0;
	width: 280px;
	z-index: 0;
}

.footer-content h3, .footer-content p, .footer-content a, ul#legal-links-menu li a {
	color: var(--light-color);
}

.footer-content {
	display: flex;
	padding-top: 20px;
	gap: 20px;
	position: relative;
}
.footer-content .shape-yellow {
	position: absolute;
	transform: translateY(-100%) rotate(180deg);
	top: 0px;
	right: 100px;
	width: 70px;
	height: auto;
	z-index: -1;
}
.footer-content .shape-blue {
	position: absolute;
	transform: scale(1, -1);
	top: 0;
	right: 0px;
	width: 100px;
	height: auto;
}
.footer-content > div {
	flex-grow: 1;
	flex-basis: 0;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 37.5em) {
	.footer-content {
		flex-direction: column;
	}
}

ul#quick-links-menu {
	margin: 0;
	padding-left: 16px;
}
.footer-legal {
	padding: 20px 0;
	position: relative;
	z-index: 2;
}

ul#legal-links-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 20px;
}
ul#legal-links-menu li a {
	display: inline-block;
}