.header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  min-height: 90rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header::after {
  content: '';
  display: block;
  position: absolute;
  width: inherit;
  height: inherit;
  min-height: inherit;
  background: white;
  mix-blend-mode: multiply;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.89958)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.89958) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
}

.header h1 {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  text-align: center;
}

.header h1 small {
  font-size: 0.4em;
}

.header._destination {
  height: 85vh;
  min-height: 80rem;
}

.home_container {
  position: relative;
  z-index: 2;
  margin: auto;
  padding-top: 10rem;
}

.home_container hr {
  width: 14rem;
  background: #fff;
  border-color: #fff;
  margin: 4rem auto;
  border: none;
  height: 1px;
}

.header_container {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 7rem;
}

.container._gallery_btn {
  margin-top: auto;
  margin-bottom: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}

.gallery_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
  gap: 1em;
  border-radius: 1.2rem;
  -webkit-transition: background 0.6s , color 0.2s, padding 0.6s;
  transition: background 0.6s , color 0.2s, padding 0.6s;
  padding: 0.6em 0em;
}

.gallery_button span.material-icons {
  font-size: 3.6rem;
}

.gallery_button:hover {
  color: #444242;
  background: #fff;
  padding: 0.6em 1em;
}

.home_subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 53rem;
  margin: auto;
  color: #fff;
  text-align: center;
}

.mouse_icon {
  font-size: 0.8rem;
  width: 4.3em;
  height: 7em;
  border: solid 2px #fff;
  border-radius: 3em;
  margin: auto;
  position: relative;
}

.mouse_icon::after {
  content: '';
  position: absolute;
  top: 70%;
  left: 50%;
  width: 0.6em;
  height: 0.6em;
  border-radius: 100%;
  background: #fff;
  -webkit-transform: translateX(-50%) translateY(0%);
          transform: translateX(-50%) translateY(0%);
  -webkit-animation-name: scroller;
          animation-name: scroller;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (max-width: 1200px) {
  .container._gallery_btn {
    max-width: 30rem;
    margin-left: 0;
  }
}

@-webkit-keyframes scroller {
  0% {
    -webkit-transform: translateX(-50%) translateY(0%);
            transform: translateX(-50%) translateY(0%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-300%);
            transform: translateX(-50%) translateY(-300%);
  }
}

@keyframes scroller {
  0% {
    -webkit-transform: translateX(-50%) translateY(0%);
            transform: translateX(-50%) translateY(0%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-300%);
            transform: translateX(-50%) translateY(-300%);
  }
}
/*# sourceMappingURL=headers.css.map */