* {
	margin: 0;
	padding: 0;
}

footer {
	position: relative;
	margin-top: 16px;
	height: 128px;
	background: url(../imgs/header/header_texture.jpg) repeat center;
	font-family: "Raleway", sans-serif;
	font-size: 12px;
	color: white;
}

#footer-list {
	position: absolute;
	top:50%;
	width:100%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-align: center;
}

#footer-list > li {
	vertical-align: middle;
	box-sizing: border-box;
	display: inline-block;
	width:calc(100% / 3);
	padding: 0 16px;
}
#footer-list > li:nth-child(n+1) {
	border-right: 1px dotted rgba(255,255,255,0.2);
}

#footer-logo {
	text-align: center;
}

#footer-logo > img {
	height: 64px;
}

#footer-contact {
	text-align: right;
}

@media screen and (max-width: 700px) {
	footer {
		height: 280px;
	}
	#footer-list > li {
		padding: 8px 0;
		text-align: center;
		width: 100%;
		display: block;
	}
	#footer-list > li:nth-child(n+2) {
		border-top: 1px dotted rgba(255,255,255,0.2);
	}
}