/* **********************/
/* ****** Footer menu******/
/* **********************/
footer {
	background-color: #333;
	padding: 60px 0;
	color: #fff;
}

footer .menu {
	display: flex;
}

footer .menu a {
	color: #fff;
	padding: 15px;
	font-size: 14px;
	text-transform: uppercase;
	transition: color 0.5s;
}

footer .menu a:hover {
	color: #fff;
}

footer ul {
	list-style: none;
}

footer .menu-footer-menu-container,
footer .menu {
	height: 100%;
	padding-left: 0px;
	padding-right: 0px;
}

footer .menu {
	align-items: center;
	justify-content: flex-end;
}

footer .copyright {
	padding: 15px;
	color: #fff;
	font-size: 14px;
}

footer .align-footer-menu {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

footer .copyright a {
	color: #fff;
	transition: color 0.5s;
}

footer .copyright a:hover {
	color: #ddd;
}

.footer-logo {
	width: 100%;
}

@media screen and (max-width:991px) {
	footer .menu-footer-menu-container {
		display: none;
	}
}

@media screen and (max-width:767px) {
	.footer-logo {
		margin: auto;
		margin-bottom: 30px;
		width: 30%;
		display: block;
	}

	.copyright {
		text-align: center;
	}

	.align-footer-menu {
		align-items: center !important;
	}
}