nav.top-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 45px;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2000000;
}

nav.top-nav .hamburger{
  position: absolute;
  top: 20px;
  right: 20px;
}

nav.top-nav .logo a.btn{
  color: #fff;
  padding: 0px 2px;
  position: absolute;
  font-size: 36px;
  font-weight: 500;
  top: -28px;
  z-index: 5;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

nav.top-nav .logo a:hover{
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 2px;
}

nav.top-nav .links{
  position: absolute;
  width:100vw;
  top:-10px;
  margin-left: -45px;
}

nav.top-nav .links ul{
  list-style-type: none;
  margin-left: 45px;
  margin-right: 45px;
}

nav.top-nav .links ul li{
  display: inline;
  padding: 20px;
  font-size: 2rem;
  letter-spacing: 8px;
}

nav.top-nav .links ul li a{
  color: #fff;
}

nav.top-nav .links ul li a:hover{
  text-decoration: line-through;
}

nav.top-nav .links ul li a.on-page{
  color: rgba(255,255,255,.6);
  text-decoration: line-through;
}
nav.top-nav .links ul li a.on-page:hover{
  color: rgba(255,255,255,.6);
  text-decoration: line-through;
}

nav.top-nav #fade-nav{
  position: absolute;
}

.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #fff;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

#hamburger-6.is-active{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2){
  width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  -o-transform: translateY(13px);
  transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(90deg);
  -ms-transform: translateY(-13px) rotate(90deg);
  -o-transform: translateY(-13px) rotate(90deg);
  transform: translateY(-13px) rotate(90deg);
}

header{
  height: 100%;
  position: relative;
}

header img{
  width: 100%;
  min-height: 400px;
}

.tint{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.banner-text{
  width: 100%;
  position: absolute;
  color: #fff;
  text-align: center;
  top: 50%;
  margin-top: -150px;
}

.banner-text h1{
  font-size: 6rem;
  font-family: "Pacifico", cursive;
}

.banner-text p{
  font-size: 4rem;
  font-family: 'Lato', sans-serif;
  margin-top: 20px;
}

.banner-text p:nth-of-type(2){
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

.banner-text hr{
  width: 20%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

section{
  padding: 4rem;
}

.heading{
  font-family: 'Oswald', sans-serif;
}

.blurb{
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
}

.blurb a{
  color: rgb(180,160,29);
}

.blurb a:hover{
  text-decoration: none;
  color: gold;
}

.about-pic-cont img{
  width: 100%;
}


footer{
  background: #000;
  padding: 6em;
}

footer .social a{
  color: #fff;
}

@media only screen and (max-width: 1020px){

  header img{
    min-height: 283px;
  }
  .banner-text{
    margin-top: -85px;
  }

  .banner-text h1{
    font-size: 4rem;
  }
  .banner-text p{
    font-size: 3rem;
  }
}

@media (max-width: 827px) {
  .full-top-nav{
    height: 100%;
  }
  nav.top-nav .links ul li{
    display: block;
    font-size: 3rem;
    padding: 3px;
  }
}
