footer{
	color: #fff;
	background-color: #303030;
	border-top: 7px solid #292929;
}
.footer__logo {
	width: 260px;
	height: 180px;
}

.footer__logo > img {
	position: relative;
	top: 15px;
	max-width: 100%;
}

.footer__nav {
	width: 550px;
	font-size: 1.6em;
}

.footer__nav > li {
	display: inline-block;
}
.footer__nav > li:nth-child(1){
	width: 120px;
}
.footer__nav > li:nth-child(2){
	width: 200px;
}
.footer__nav > li:nth-child(3){
	width: 160px;
}
.footer__nav > li > a {
	color: #fff;
	display: block;
	margin: 20px 0;
	text-decoration: none;
	position: relative;
}
.footer__nav > li > a::after{
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	left: 0;
	bottom: -1px;
	background-color: #fff;
	display: block;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.footer__nav > li > a:hover::after{
	width: 100%;
}

.subscribe {
	width: 260px;
}

.subscribe > p {
	font-size: 1.6em;
	padding-bottom: 20px;
	line-height: 1.3;
}

.subscribe > form {
	border: 1px solid #fff;
	height: 30px;
	position: relative;
}

.subscribe > form > input{
	background-color: transparent;
	outline: 0;
	border: 0;
	height: 30px;
	position: absolute;
}

.subscribe > form > input[type="email"] {
	padding-left: 10px;
	left: 0;
	top: 0;
	color: #fff;
}
.subscribe > form > input[type="submit"]{
	width: 30px;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center; 
	background-image: url('../img/icon-more-small.png');
}
.footer__bottom{
	border-top: 1px solid #454545;
	padding: 30px 0;
	font-size: 1.4em;
}
.footer__bottom a{
	text-decoration: none;
	color: #fff;
	display: block;
}