.footer {
	background-color: #f0f1f2;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	color: #444;
	padding: 30px;
	/*border-top: 1px solid black;*/
	transition: ease all .5s;
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: DT-light, Arial, sans-serif;
}

.brands {
	margin-left: auto;
	margin-right: auto;
	max-width: 1185px;
	position: relative;
	width: 90%;
}

ul,
.brand-logo-list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	list-style: none;
	padding-inline-start: 0;
}

.brand-logo-list-image {
	max-width: 100%;
	min-width: 50px;
	object-fit: contain;
}

.footer-menu {
	margin-left: auto;
	margin-right: auto;
	max-width: 1185px;
	position: relative;
	width: 90%;
}


.footer-menu-list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	border-bottom: 1px solid #c8c8c8;
	border-top: 1px solid #c8c8c8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	list-style: none;
	padding: 1rem 0;
}

@media(min-width:992px) {
	.footer-menu-list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 0
	}
}

.footer-menu-link {
	display: inline-block;
	font-size: 16px;
	line-height: 18px;
	line-height: 1rem;
	padding: .5rem 0;
	text-decoration: none;
	color: #444;
}

@media(min-width:992px) {
	.footer-menu-link {
		padding: 1rem
	}
}

.footer-menu-link:hover {
	color: #000
}

.footer-menu-item {
	& a {
		text-decoration: none;
	}
}

@media(min-width:992px) {
	.footer-menu-item+.footer-menu-item {
		margin-left: 1rem
	}
}

@media (max-width: 580px) {
	.footer {
		background-color: white;
	}

	.brands {
		display: none;
	}

}

@media (max-width: 768px) {
	.brand-logo-list {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.brand-logo-listitem {
		width: 33.3333333333%;
	}
}

@media (max-height: 800px) {
	.footer {
		padding: 20px 0;
	}
}