* {
	margin: 0;
	padding: 0;
}

.content-footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #3f434c;
	box-sizing: border-box;
	padding: 12px;
	color: #b3b2b2;
	font-size: 16px;
}
.content-footer a {
	color: #b3b2b2;
	text-decoration: underline;
	cursor: pointer;
}
.content-footer p {
	line-height: 22px;
}
.content-footer div {
	display: flex;
	box-sizing: border-box;
	padding: 5px;
}
.content-footer div p {
	font-weight: 500;
	transition: 300ms;
}
.content-footer div a {
	text-decoration: none;
}
.content-footer div p:hover {
	cursor: pointer;
	text-decoration: underline;
	transition: 300ms;
}
.content-footer div span {
	width: 2px;
	height: 20px;
	background-color: #b3b2b2;
	margin: 0px 10px;
}
.content-footer-logos {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 0px;
}
.content-footer-logos img {
	width: 150px;
	height: 140px;
}
.content-footer-logos img:last-child {
	width: 250px;
	height: 90px;
}
.content-footer-logos img:first-child {
	width: 250px;
	height: 100px;
}
@media (max-width: 750px) {
	.content-footer-logos {
		flex-direction: column;
	}
}
