@charset "UTF-8";
.hero-page__container {
  width: 100vw;
  height: 120vh;
  padding-bottom: 10.7rem;
  margin: 0 auto;
  position: relative
}
@media(min-width: 40rem) and (max-width: 48em) {
	.hero-page__container {
  height: 90vh;
	}
} 
@media(max-width: 37.5em) {
  .hero-page__container {
    height: 100vh;
  }
}
.main-logo {
  position: absolute;
  width: 300px;
  height: auto;
  top: 2rem;
  left: 2rem;
  z-index: 10
}
@media(min-width: 37.5em) and (max-width: 90em){
  .main-logo {
	width: 200px;
    top: 1rem;
    left: 1rem;
  }
}

@media(max-width: 37.5em){
  .main-logo {
    width: 100px;
    top: 0;
    left: 0;
  }
}
.hero-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden
}
@media(max-width: 37.5em) {
  .hero-image {
    width: auto;
    object-fit: contain;

  }
}
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 0;
  height: 0;
  transition: transform 1s ease;
}
.image:hover .overlay {
  transform: scale(1)
}
.hero-title {
  width: 35%;
  height: auto;
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 10
}
@media(min-width: 37.5em) and (max-width: 48em) {
  .hero-title {
    width: 65%;
    top: 50%;
  }
}
@media(max-width: 37.5em) {
  .hero-title {
    width: 100%;
    top: 40%;
	right: 0;
  }
}
.hero-scrolldown {
  position: absolute;
  bottom: 30%;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
  font-family: 'Nunito', sans-serif;
  font-weight: 1000;
  font-size: 1rem
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@media(max-width: 37.5em) {
	.hero-scrolldown {
 	top: 96%;

	}
}
.hero-scrolldown span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.hero-scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #fff;
  transform: skewX(-31deg);
}
.hero-scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 120px;
  background: #fff;
}