@keyframes float-arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-header-section {
  margin-right: -30px;
  margin-left: -30px;
  margin-bottom: 50px;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-header-wrapper {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
}

.hero-header-content {
  padding: 5rem 30px;
  display: flex;
  align-items: flex-end;
  width: 1600px;
  justify-content: center;
  margin: 0 auto;
  gap: 50px;
}
.hero-header-content p {
  font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: white;
    line-height: 30px;
    max-width: 830px;
    width: 100%;
    margin-right: auto;
}
.hero-header-content svg {
  max-width: 100px;
  width: 100%;
  height: 100px;
  color: white;
  animation: float-arrow 2s ease-in-out infinite;
  transform-origin: center;
}

@media only screen and (max-width: 800px) and (min-width: 550px) {
  .hero-header-content {
    width: 100%;
  }
  .hero-header-content p {
    font-size: 24px;
    line-height: 35px;
  }
  .hero-header-content svg {
    max-width: 70px;
    height: 70px;
    width: 70px;
  }
}
ul.langswitcher_module > li.lang-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.0784313725);
}

body.home .header-nav .nav-link {
  color: white;
}
body.home .header-nav .nav-link:hover {
  color: black !important;
}

.mobile-toggle .bar {
  background: white;
}

.header-actions svg {
  fill: white;
}

@media only screen and (max-width: 549px) {
  .hero-header-content {
    width: 100%;
	      align-items: flex-start;
	flex-direction: column;
  }
  .hero-header-content p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
  }
  .hero-header-content svg {
    max-width: 50px;
    height: 50px;
    width: 50px;
  }
}/*# sourceMappingURL=hero_header.css.map */