 @charset "utf-8";
/* CSS Document */
html, body {
	font-family: 'Raleway', sans-serif;
	text-align: center;
	margin: 0;
}

* {
	box-sizing: border-box;
}

header {
	width: 100%;
	position: fixed;
	justify-content: center;
	padding: 0;
	margin: 0;
	z-index: 1;
}

nav {
	width: 100%;
	background: black;
	display: flex;
	padding: 0;
	justify-content: center;
	text-align: right;
}

nav ul {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: right;
	display: inline-block;
}

nav ul li {
	list-style: none;
	display: inline-block;
	padding: 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	padding: 0;
}

nav ul li a:hover {
	color: #808080;	
}

.toggle {
	width: 100%;
	padding: 10px 20px;
	background: black;
	text-align: right;
	box-sizing: border-box;
	color: white;
	font-size: 30px;
	display: none;
}

@media screen and (max-width: 700px) {
	.toggle {
		display: block;
		position: absolute;
	}
	nav ul {
		width: 100%;
		display: none;
	}
	nav ul li {
		display: block;
		text-align: right;
	}
	.active {
		display: block;
	}
}

.container {
	padding-top: 50px;
	background-color: #1A1A1A;
	width: 100%;
}

.title {
	width: 100%;
	height: auto;
	min-height: 30vh;
	min-width: 100%;
	background-image: url("../images/atm-hero.jpg");
	background-position: center bottom;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}

.title h1 {
	font-size: 65px;
	color: white;
	margin: auto;
}

.iframe-container {
	overflow: hidden;
	padding-top: 56.25%;
	margin: 0 auto;
	position: relative;
	display: block;
	width: 100%;
	max-width: 1280px;
}

.iframe-container iframe {
	border: 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.description {
	width: 100%;
	max-width: 1280px;
	height: auto;
	margin: 0 auto;
	text-align: left; 
	margin-bottom: -35px;
}

.description p {
	color: white;
	font-size: 15px;
	font-family: 'Roboto Slab', serif;
	margin-left: 10px;
	margin-right: 10px;
}

.back h5 {
	color: white;
	font-size: 15px;
	padding-bottom: 25px;
	text-align: center;
}

.back a {
	color: white;
}

.back a:hover {
	color: #808080;
}

#footer {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 0;
	padding-bottom: 10px;
}

.footer-container {
	padding: 5px;
	width: 98%;
}

.social-links {
	align-content: center;
	margin: auto;
	transform: translate(-10px,0);
}

.social-links li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
}

.social-img {
	margin: 10px;
	width: 20px;
	height: auto;
}

.fb-img {
	margin-left: 5px;
}

.copyright {
	font-size: 15px;
	color: gray;
	font-family: 'Roboto Slab', serif;
	text-align: center;
	margin: 0;
	padding: 0;
}

