@font-face {
	font-family: 'Gotham-Book';
	src: url('fonts/Gotham-Book.eot');
	src: url('fonts/Gotham-Book.eot') format('embedded-opentype'),
		 url('fonts/Gotham-Book.woff2') format('woff2'),
		 url('fonts/Gotham-Book.woff') format('woff'),
		 url('fonts/Gotham-Book.ttf') format('truetype');
}

@font-face {
	font-family: 'Gotham-Bold';
	src: url('fonts/Gotham-Bold.eot');
	src: url('fonts/Gotham-Bold.eot') format('embedded-opentype'),
		 url('fonts/Gotham-Bold.woff2') format('woff2'),
		 url('fonts/Gotham-Bold.woff') format('woff'),
		 url('fonts/Gotham-Bold.ttf') format('truetype');
}

body,html {
	font-family: 'Gotham-Book', sans-serif;
}

body {
	width: 1000px;
	margin: 0 auto;
	padding: 16px 24px 40px 16px;
}

.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.top-logo img {
	width: 220px;
}

.top-datos {
	width: 310px;
}

.top-datos p {
	margin-bottom: 20px;
	font-family: 'Gotham-Bold', sans-serif;
	color: #666;
}

.top-datos a:not(.btn) {
	display: block;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
	margin-bottom: 10px;
	text-decoration: none;
	color: #666;
}

.top-datos a:not(.btn):last-of-type {
	border-bottom: none;
}

.top-datos a:not(.btn):nth-of-type(2),
.top-datos a:not(.btn):nth-of-type(3) {
	font-family: 'Gotham-Bold', sans-serif;
}

.top-datos .btn {
	display: block;
	background: #b2121c;
	color: #fff;
	text-decoration: none;
	padding: 16px 20px;
	text-align: center;
	font-family: 'Gotham-Bold', sans-serif;
	border-radius: 5px;
}

.body img {
	width: 100%;
	display: block;
}

.footer-logos {
	margin-top: 30px;
}

.footer-logos img {
	display: block;
	width: 600px;
	margin: 0 auto;
}

@media (min-width: 640px) and (max-width: 1032px) {

	body {
		width: 600px;
	}

	.top-logo img {
		width: 200px;
	}

	.top-datos {
		width: 270px;
	}

	.footer-logos img {
		width: 480px;
	}

}

@media (max-width: 640px) {

	body {
		width: auto;
	}

	.top {
		display: block;
	}

	.top-logo img {
		display: block;
		margin: 0 auto;
	}

	.top-datos {
		width: auto;
		margin-top:40px;
	}

	.footer-logos img {
		width: 90%;
	}
}