/*font-family: 'Yellowtail', cursive;
font-family: 'Indie Flower', cursive;
font-family: 'Pacifico', cursive;*/

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: #000;
  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: #000;
  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);
}



section#slide{
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100vh;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#fixedContainer{
  position: fixed;
  bottom: 0;
}

#fixedSection{
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

#slide h1{
  margin-bottom: 7rem;
}

#slide a{
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

#slide .scroll-cta .fa-chevron-down{
  color: gold;
  font-size: 6rem;
  -webkit-animation: updown 2s ease-in-out alternate infinite;
  animation: updown 2s ease-in-out alternate infinite;
  position: relative;
}

section form{
  color: #fff;
  width: 50%;
  font-size: 18px;
}

section .form-inline .form-group{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 25px
}

section .form-inline .form-group .form-control{
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  font-size: 20px;
}

textarea.form-control{
  font-size: 20px;
}

input[type="submit"]{
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 45px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

input[type="submit"]:hover{
  background-color: #000;
  color: #fff;
}

.form-control{
  border-radius: 0;
  border: 2px solid #000;
}
.form-control:focus{
  outline: none;
  box-shadow: none;
  border-color: #000;
}

@-webkit-keyframes updown {
  0% {
    bottom: 21px;
    height: 12px;
  }
  100% {
    bottom: 70px;
    height: 15px;
  }
}

@keyframes updown {
  0% {
    bottom: 21px;
    height: 12px;
  }
  100% {
    bottom: 70px;
    height: 15px;
  }
}

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

@media only screen and (max-width: 450px){
  section form{
    width: 80%;
  }
}
