@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;300;400&display=swap');

::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Roboto Mono', monospace;
  overflow: hidden !important;
  color: #fff;
  background-color: #333;
}

.wrapper {
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
}

.section {
  display: flex;
  flex-shrink: 0;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100vw;
  font-size: 30px;
}
.section img {
  height: 100vh;
}

.section--text {
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 100%;
  z-index: 99;
  color: #000;
  font-size: 200px;
  opacity: 0.5;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.navi {
  padding: 15px 25px;
  cursor: pointer;
  z-index: 4;
  opacity: 1;
  font-size: 42px;
  border: 0;
  border-radius: 50%;
}

.navi--prev {
  left: 2.188rem;
}

.navi--next {
  right: 2.188rem;
}

.logo {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 1079;
}

.monogram {
  position: fixed;
  top: 35px;
  right: 50px;
  cursor: pointer;
  animation: shake .95s cubic-bezier(.02,.27,.99,.97) both;
}

.menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1080;
  top: 0;
  right: 0;
  background-color: #311325;
  overflow-x: hidden;
  transition: 0.5s;
  color: #fedea5;
}

.menu.opened {
  width: 500px;
}

@media only screen and (max-width: 768px) {
  .menu.opened {
    width: 100%;
  }
}

.form-control {
  background: transparent;
  color: #fedea5;
  border: 0;
  border-color: #fedea5;
  border-bottom: 1px solid;
  border-radius: 0;
}

.form-control:focus {
  background: transparent;
  color: #fedea5;
  border: 0;
  border-color: #fedea5;
  border-bottom: 1px solid;
  border-radius: 0;
  outline: none !important;
}

.btn-primary {
  background: transparent;
  color: #fedea5;
  border-color: #fedea5;
  font-weight: 300;
}

.btn-primary:hover {
  background: black;
  border-color: black;
}

.btn:active,
.btn:focus {
  color: #666;
  background-color: black;
  border-color: black;
}

.btn:active:focus {
  box-shadow: none;
}


a#close-nav {
  color: white;
  text-decoration: none;
  font-size: 42px;
}

#form-phase-2,
#form-phase-3,
#form-phase-4 {
  display: none;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.controls {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 100%;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: #fff;
  border: 1.1px solid #fff;
}
input[type=range]::-webkit-slider-thumb {
  border: 1px solid #fff;
  height: 20px;
  width: 1px;
  background: #fff;
  -webkit-appearance: none;
  margin-top: -10px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #fff;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 4.4px;
  background: #000;
  border: 1.1px solid #fff;
}
input[type=range]::-moz-range-thumb {
  border: 2.5px solid #fff;
  height: 18px;
  width: 9px;
  background: #fff;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 4.4px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #fff;
  border: 1.1px solid #fff;
}
input[type=range]::-ms-fill-upper {
  background: #000;
  border: 1.1px solid #fff;
}
input[type=range]::-ms-thumb {
  border: 2.5px solid #fff;
  height: 18px;
  width: 9px;
  background: #fff;
  height: 4.4px;
}


.background-cover, .slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide {
  height: 100vh;
}