body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.scroll-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.scroll-container section {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.dots {
  z-index: 1;
  list-style: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.dots li a {
  padding: 10px;
  width: 4px;
  height: 5px;
  display: block;
}

.dots li a:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.dots li a.active:before {
  content: "";
  background-color: #FFFFFF;
  width: 14px;
  height: 14px;
  margin-top: -4px;
  left: 7px;
  background-color: white;
  transform: scale(1);
}

.dots-right {
  right: 10px;
}

.dots-left {
  left: 10px;
}

body > main {
  display: block;
}

.frontpage__container {
  max-width: 760px;
  margin: 0 auto;
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.frontpage__mobile-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 10;
  display: none;
  background-position: center;
  background-size: cover;
}

section {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  position: relative;
  min-height: 1000px;
  max-width: 100%;
}

.frontpage__headline {
  font-family: "Aldo";
  color: #ffffff;
  font-size: 92px;
  letter-spacing: -0.054em;
  line-height: 85px;
  margin-bottom: 30px;
  word-break: break-word;
}

.frontpage__content {
  width: calc(100% - 40px);
  color: #ffffff;
  line-height: 34px;
  font-size: 24px;
  letter-spacing: -0.024em;
  margin-bottom: 50px;
}

.frontpage__content a {
  color: #ffffff;
}

.frontpage__links {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
}

.frontpage__links a {
  color: #ffffff;
  margin-right: 25px;
}

.frontpage__links a {
  border-bottom: 4px solid #ffffff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.frontpage__links a span {
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}

.frontpage__links a:hover span {
  position: relative;
  top: -6px;
  transition: all 0.3s ease;
}

.frontpage__arrow {
  cursor: pointer;
  width: 25px;
  height: 35px;
  position: absolute;
  bottom: 30px;
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  animation: bounce 3.6s ease infinite;
}

.frontpage__arrow--white {
  background-image: url("../img/arrow-vit.png");
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  5.55556% {
    transform: translateY(0);
  }
  11.11111% {
    transform: translateY(0);
  }
  22.22222% {
    transform: translateY(-15px);
  }
  27.77778% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-15px);
  }
  44.44444% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#frontpage-section-0 .frontpage__links {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-family: "Roboto Condensed", sans-serif;
}
#frontpage-section-0 .frontpage__links a {
  margin-right: 50px;
  padding-bottom: 5px;
}

@media (max-width: 780px) {
  .frontpage__headline {
    font-size: 65px;
    line-height: 65px;
  }
  .frontpage__content {
    font-size: 18px;
    line-height: 24px;
  }
  .frontpage__links {
    font-size: 30px;
    line-height: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .frontpage__links a {
    margin-right: 0;
    margin-bottom: 30px;
  }
  #frontpage-section-0 .frontpage__links {
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-family: "Roboto Condensed", sans-serif;
  }
  #frontpage-section-0 .frontpage__links a {
    margin-right: 50px;
  }
  section {
    min-height: 770px;
  }
}
@media (max-width: 400px) {
  #frontpage-section-0 .frontpage__links a {
    margin-right: 20px;
  }
}
@media (max-width: 640px) {
  .frontpage__mobile-background {
    display: block;
  }
}
