html, body { 
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;

}
nav {
  padding:15px;
  color:#FFFFFF;
  width:100%;
  position:fixed;
  z-index: 1;
}

.logo {
  text-transform: uppercase;
  font-size: 22px;
}

.navbar {
  padding:15px;
  margin:0;
}

.navbar li{
  font-size: 20px;
  display:inline;
  margin-right: 20px;
}

.navbar li a, #navbar li:visited, #navbar li.active a{
  border-radius: 5px;
  padding:10px 20px 10px 20px;
    margin-left: 10px;
    text-align: center;
    width: 100px;
  text-decoration: none;
  color:#FFFFFF;
}

.navbar li a:hover{
  background:rgba(0,0,0,0.2);
}

header {
  margin-top: 0px;
  padding-top: 200px;
  width:100%;
  height:800px;
  background:url("../img/bg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.container {
  color: #162227;
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
}

/* Quote button */
.btn-q a{
  font-size: 30px;
  background-color: rgba(0,0,0,0.8);
  border-radius: 5px;
  padding:10px 20px 10px 20px;
    margin-left: 10px;
    text-align: center;
    width: 100px;
  text-decoration: none;
  color:#FFFFFF;
}

.btn-q a:hover {
  background-color:rgba(0,0,0,0.3);
}

.btn-scroll {
  padding:0px;
  margin-top: 0;
}
.btn-scroll img {
  border-radius: 50%;
  width:80px;
  height:80px;
  text-align: center;
  border: solid 3px #FFFFFF;
  -webkit-transition: all 1s ease; 
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease; 
    transition: all 1s ease;
}

.btn-scroll img:hover {
  color:#0C7DD3;
   -webkit-transform:scale(1.25); 
    -moz-transform:scale(1.25);
    -ms-transform:scale(1.25); 
    -o-transform:scale(1.25);
     transform:scale(1.25);
}

#about-page{
  margin:0;
  padding:10px;
  background:url("../img/bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  z-index:0;
}

#about-page {
  padding:100px 70px 70px 70px;
  color: #FFFFFF;
  text-align: left;
  font-size: 50px;
  height:1280px;
}

#about-page h2 {
  text-transform: uppercase;
}

section {
  padding:50px;
  margin:0 auto;
  background:#000000;
}
.section-w {
  color:#FFFFFF;
  background:rgba(0,0,0,0.3);
  margin:0 auto;
  padding:60px;
  text-align: center;
  line-height: 30px;
  font-size: 30px;
}

.section-w a {
  color:#FFF;
}

.item img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item:hover img {
    max-width: 100%;

  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

footer {
  text-align: right;
  padding:13px;
  padding-right: 40px;
  font-size: 20px;
  color:#FFF;
  background:url("../img/bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  z-index:0;
}

footer a {
  padding-right: 20px;
  color:#FFF;
  text-decoration: underline;
}

footer a:hover {
  color:#0C7DD3;
}

/* This adjusts the header if the width is below 800px to account for mobiles */
@media screen and (max-width: 800px) {
.container {
  font-size:40px;
  padding:10px;
}
.navbar li a, #navbar li:visited, #navbar li.active a{ 
  padding:8px;
}
.navbar li{
  margin:0;
}

#about-page {
  padding:100px 30px 30px 30px;
  font-size: 30px;
}
section {
  padding:10px;
}
}

