#footer {
	background: #fff;
}

.footer-wrapper {
	margin:0 auto;
	padding:0 108px;
	box-sizing: border-box; 

	max-width:1440px;

	display: flex;
	justify-content: space-between;
}

@media (max-width:1200px) {
	.footer-wrapper {
		padding: 0 50px;
	}
}

@media (max-width:768px) {
	.footer-wrapper {
		padding: 0 16px;
		flex-direction: column;
	}
}


.footer-top {
	margin-top: 128px;
	margin-bottom: 32px;
}
.footer-bottom {
	background-color: var(--color-warmbeigegray);
}

#footer ul {
	/* Desktop/Copytext */
	font-family: 'Outfit';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	/* identical to box height, or 26px */
	margin:0.5em 0 0 0;
	padding:0.5em 0 0 0;
	list-style-type: none;
}

#footer ul li {
	margin-bottom: 1em;
}

.footer-top-col {
	flex:0 0 calc(100% / 6 - 4%)
}

.footer-top-col1 {
	flex:0 0 calc(100% / 6 * 2 - 4%)
}

.footer-bottom p {
	margin:1em 0;
}

#footer ul a {
	position: relative;
}

#footer ul a:after {
	content:' ';
	position: absolute;
	left:0;
	width:100%;
	bottom:-1px;
	height: 1px;	
	background: linear-gradient(142.55deg, #F39768 0%, #EF9265 18%, #E3865F 37%, #D07155 56%, #B55446 75%, #932F33 95%, #89242E 100%);
	transition:opacity 0.3s ease;
	opacity: 0;
}

#footer ul a:hover:after {
	opacity: 1;
}