@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
}

nav {
  position: relative;
  right: 0;
  top: 0;
  z-index: 4;
  overflow: hidden;
}

.nav__button {
  width: 36px;
  height: 36px;
  position: fixed;
  right: 20px;
  top: 20px;
  background: rgba(255, 255, 255, 0.25);
  border: 0px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  display: block;
  cursor: pointer;
}

.nav__button:hover {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav__button:hover .burger__line {
  background: rgba(255, 255, 255, 0.25);
}

.nav__button .burger__line {
  width: 12px;
  height: 2px;
  left: 34%;
  background: white;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.nav__button .burger__top {
  position: absolute;
  top: 32%;
}

.nav__button .burger__middle {
  position: absolute;
  top: 46%;
}

.nav__button .burger__bottom {
  position: absolute;
  bottom: 32%;
}

.nav__button--off {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  background: none;
  cursor: pointer;
}

.nav__button--off:hover {
  border: none;
}

.nav__button--off:hover .burger__line {
  background: white;
}

.nav__button--off .burger__line {
  width: 15px;
  height: 4px;
  left: 34%;
  background: rgba(255, 255, 255, 0.75);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.nav__button--off .burger__top {
  position: absolute;
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav__button--off .burger__bottom {
  position: absolute;
  bottom: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav__content {
  width: 20vw;
  height: 100vh;
  padding: 4% 2%;
  position: fixed;
  right: -25%;
  top: 0;
  z-index: 2;
  background: #f64242;
  -webkit-transition: .6s right;
  transition: .6s right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav__content .nav__link {
  line-height: 51px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
}

.nav__content .nav__link:nth-child(3) {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav__checkbox {
  position: absolute;
  right: -100vw;
  top: 0;
}

.nav__checkbox:checked + .nav__background--off {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}

.nav__checkbox:checked + .nav__background--off + .nav__content {
  right: 0%;
}

section {
  height: 100vh;
  padding: 20px 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

section:before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  opacity: 0.45;
  display: block;
  content: "";
  z-index: 1;
}

.inner {
  width: 65em;
  height: auto;
  margin: auto;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  text-align: center;
  z-index: 2;
  -webkit-transition: 1.25s opacity ease .3s;
  transition: 1.25s opacity ease .3s;
}

.inner header h2 {
  font-size: 2rem;
  color: #fff;
  line-height: 0;
  margin: 0;
}

.inner header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
}

.inner .content {
  color: rgba(255, 255, 255, 0.75);
}

.inner .content p {
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 100;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.inner .button {
  height: 42px;
  padding: 12px 20px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  -webkit-transition: .6s;
  transition: .6s;
}

.inner .button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.section--visible {
  opacity: 1;
}

.arrow {
  width: 48px;
  height: 48px;
  position: relative;
  left: 50%;
  bottom: -80px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  border-radius: 22px;
  -webkit-transition: 0s linear 0s;
  transition: 0s linear 0s;
}

.arrow:before {
  width: 30%;
  height: 3px;
  background: white;
  content: "";
  position: absolute;
  left: 45%;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arrow:after {
  width: 30%;
  height: 3px;
  background: white;
  content: "";
  position: absolute;
  left: 28%;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.arrow:hover:before, .arrow:hover:after {
  background: rgba(255, 255, 255, 0.75);
}

.arrow--visible {
  -webkit-transition: 0.75s bottom ease-out 2s;
  transition: 0.75s bottom ease-out 2s;
  opacity: 1;
  bottom: 20px;
}

#banner {
  text-align: center;
  background: url("../images/banner.jpg") no-repeat fixed center/cover;
}

#banner .inner {
  background: none;
  opacity: 1;
}

#banner .inner h1 {
  margin: auto;
  z-index: 2;
  font-size: 7rem;
  font-family: 'Lobster';
  color: rgba(255, 255, 255, 0.75);
}

#one {
  background: url("../images/banner2.jpg") no-repeat fixed center/cover;
}

#two {
  background: url("../images/banner5.jpg") no-repeat fixed center/cover;
}

#three {
  background: url("../images/banner4.jpg") no-repeat fixed center/cover;
}

#four {
  background: url("../images/banner3.jpg") no-repeat fixed center/cover;
}

#footer {
  height: 100vh;
  background: #f64242;
  display: block;
  z-index: 40;
}

#footer form {
  text-align: left;
}

#footer .inner {
  color: white;
  background: none;
  text-align: center;
  opacity: 1;
}

#footer .inner h2 {
  font-size: 2rem;
  text-transform: uppercase;
}

#footer .field {
  width: 100%;
  margin-bottom: 30px;
}

#footer .field label {
  line-height: 35px;
  display: block;
  text-align: left;
  font-weight: 300;
}

#footer .half {
  width: 48%;
  display: inline-block;
}

#footer .second {
  margin-left: 3.5%;
}

#footer input, #footer textarea {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.075);
  border: 1px groove rgba(255, 255, 255, 0.5);
  outline: 0;
  border-radius: 4px;
}

#footer input:focus, #footer textarea:focus {
  outline: 0;
  padding: 11px 15px;
  border: 2px inset white;
}

#footer input::-webkit-input-placeholder, #footer textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: Arial, Helvetica, sans-serif;
}

#footer input:-ms-input-placeholder, #footer textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: Arial, Helvetica, sans-serif;
}

#footer input::-ms-input-placeholder, #footer textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: Arial, Helvetica, sans-serif;
}

#footer input::placeholder, #footer textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: Arial, Helvetica, sans-serif;
}

#footer textarea {
  padding: 15px;
  height: 168px;
}

#footer .button {
  width: 153px;
  margin-right: auto;
  background: none;
}

#footer .button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.credits {
  position: fixed;
  left: 20px;
  top: 30px;
  z-index: 2;
  font-size: 1.25em;
  color: white;
  text-decoration: none;
}

.credits span {
  font-size: .8em;
  font-weight: 300;
}
/*# sourceMappingURL=styles.css.map */