@charset "utf-8";
/* CSS Document */

/* Small CSS Reset */
html, body {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    font-family: 'Lato', sans-serif;
    background: url('Background.jpg') top center no-repeat #131114;
    color: #fff;
    font-size: 18px;
	letter-spacing: 2px;
}

a {
    color: #cd4835;
    font-weight: 900;
    text-decoration: underline;
}

a:hover {
    color: #ac3e2c;
}

h1, h2, h3, h4 {
    letter-spacing: 5px;
    font-weight: 900;
    text-transform: uppercase;
}

p {
	padding: 0px 20px;
}

.red { 
	color: #cd4835;
}

.container {
    width: 1200px;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 50px;
    text-align: center;
}

.logo {
    width: 800px;
    height: auto;
}

.phone {
    width: 400px;
    height: auto;
}

.email-address {
    padding-top: 25px;
}

.email-address a {
    font-size: 24px;
    background: #cd4835;
    border: 1px solid #ac3e2c;
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
	text-decoration: none;
}

.email-address a:hover {
    background: #ac3e2c;
}

.button {
    font-size: 24px;
    background: #cd4835;
    border: 1px solid #ac3e2c;
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
	text-decoration: none;
}

.button:hover {
    background: #ac3e2c;
    color: #fff;
}

.divider {
    clear: both;
    height: 20px;
    border-top: 1px dotted #555;
    margin: 60px 0 0 0;
}

.row .column-full {
    float: left;
    width: 100%;
}

.row .column-half {
    float: left;
    width: 50%;
}

.row .column-fifth {
    float: left;
    width: 20%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

img.building {
    width: 100%;
	border-radius: 7px;
}

/* Mobile View */
@media only screen and (max-width: 1200px) {
    .container { width: 100%; }
    .row .column-half, .row .column-fifth { float: none; width: 100%; }
    .logo, .phone { width: 80%; height: auto; }
}