/* Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set scroll defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Remove list styles on ul, ol with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links without underline by default */
a {
  text-decoration: none;
  color: inherit;
}

/* Images responsive by default */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove built-in button styles */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Remove animations and transitions for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("/styles/fonts/TrebuchetMSBold/font.woff2") format("woff2"), url("/styles/fonts/TrebuchetMSBold/font.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("/styles/fonts/TrebuchetMSBoldItalic/font.woff2") format("woff2"), url("/styles/fonts/TrebuchetMSBoldItalic/font.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("/styles/fonts/TrebuchetMSRegular/font.woff2") format("woff2"), url("/styles/fonts/TrebuchetMSRegular/font.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("/styles/fonts/TrebuchetMSItalic/font.woff2") format("woff2"), url("/styles/fonts/TrebuchetMSItalic/font.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
html,
body {
  font-family: Trebuchet MS, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #7a8c30;
}
html ::selection,
body ::selection {
  background: #b4c9db;
  color: inherit;
}

body {
  background-color: #2f381e;
  min-height: 100dvh;
}
body main .hero {
  height: 45dvh;
  width: 100%;
  object-fit: cover;
  object-position: right;
}
body main .badge {
  position: absolute;
  top: 45dvh;
  right: 1.3rem;
  transform: translateY(-75%);
  width: 7.5rem;
  height: 7.5rem;
  background: #b4c9db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .badge .badge-text {
  color: #2f381e;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  transform: rotate(-12deg);
  text-align: center;
}
body main #text-container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 55dvh;
}
body main #text-container .title {
  margin-top: 5px;
  width: 82vw;
  font-size: clamp(0rem, 7.75vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
body main #text-container .call-to-action {
  margin-bottom: 1rem;
  width: 70vw;
  font-size: clamp(0rem, 5.5vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
body main #text-container .flex-container {
  margin-top: auto;
}
body main #text-container .flex-container .slogan {
  display: none;
}
body main #text-container .flex-container .button-download {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  width: 100%;
  height: 3.75rem;
  border-radius: 10px;
  background-color: #b4c9db;
  color: #2f381e;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body main #text-container .flex-container .button-download #download-icon-desktop {
  display: none;
}
body main #text-container .flex-container .button-download #download-icon-mobile {
  margin-right: 10px;
}

@media (min-width: 700px) {
  body main .badge {
    right: 2rem;
    transform: translateY(-50%);
    width: 10rem;
    height: 10rem;
  }
  body main .badge .badge-text {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  body main #text-container {
    padding: 2.5rem;
  }
  body main #text-container .title {
    margin-top: 0px;
    font-size: 7.5vw;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.3rem;
  }
  body main #text-container .call-to-action {
    font-size: 4vw;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  body main #text-container .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
  }
  body main #text-container .flex-container .slogan {
    display: block;
  }
  body main #text-container .flex-container .slogan .slogan-text {
    text-align: right;
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
    word-spacing: -0.04em;
  }
  body main #text-container .flex-container .slogan #dots-icon-desktop {
    margin-left: auto;
    margin-bottom: 0.8rem;
  }
  body main #text-container .flex-container .button-download {
    padding: 0 1.5rem;
    width: fit-content;
    height: 4.3rem;
    font-size: 1.75rem;
    border-radius: 15px;
  }
  body main #text-container .flex-container .button-download #download-icon-desktop {
    display: block;
    margin-right: 18px;
  }
  body main #text-container .flex-container .button-download #download-icon-mobile {
    display: none;
  }
}
@media (min-width: 1080px) {
  body main {
    display: flex;
    flex-direction: row;
  }
  body main .hero {
    height: 100vh;
    width: 50vw;
    object-fit: cover;
    object-position: right;
  }
  body main .badge {
    top: 50vh;
    right: 45vw;
    transform: translateY(-50%);
    width: 12.5rem;
    height: 12.5rem;
  }
  body main .badge .badge-text {
    font-size: 2.15rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  body main #text-container {
    padding: 4.4rem;
  }
  body main #text-container .title {
    width: auto;
    font-size: clamp(0rem, 4vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
  }
  body main #text-container .call-to-action {
    width: 35vw;
    font-size: clamp(0rem, 2.25vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: 0em;
    margin-bottom: 1.8rem;
  }
  body main #text-container .flex-container .slogan {
    display: none;
  }
  body main #text-container .flex-container .slogan .slogan-text {
    font-size: 2rem;
    line-height: 1.2;
  }
  body main #text-container .flex-container .slogan #dots-icon-desktop {
    width: 3.75rem;
    margin-left: auto;
    margin-bottom: 0.8rem;
  }
  body main #text-container .flex-container .button-download {
    padding: 0 1.75rem;
    height: 4.5rem;
    font-size: 2rem;
    transition: background-color 0.4s ease, transform 0.4s ease;
  }
  body main #text-container .flex-container .button-download:hover {
    background-color: rgb(145.5405405405, 176.1891891892, 202.4594594595);
    transform: translateY(-4px);
  }
  body main #text-container .flex-container .button-download #download-icon-desktop {
    display: block;
  }
  body main #text-container .flex-container .button-download #download-icon-mobile {
    display: none;
  }
}
@media (min-width: 1720px) {
  body main #text-container .flex-container .slogan {
    display: block;
  }
}
@media (min-width: 2560px) {
  body main .hero {
    height: 100vh;
    width: 63vw;
  }
  body main .badge {
    top: 45vh;
    right: 35vw;
    transform: translateY(-50%);
  }
  body main #text-container {
    padding: 5.6rem;
  }
  body main #text-container .title {
    font-size: 2.75vw;
  }
  body main #text-container .call-to-action {
    width: 25vw;
    font-size: 1.4vw;
    letter-spacing: -0.01em;
  }
  body main #text-container .flex-container .slogan {
    display: block;
  }
}
@media (min-width: 3440px) {
  body main .badge {
    top: 45vh;
    left: 2160px;
    transform: translateX(-50%);
  }
}
#page-downloads {
  background-color: white;
  min-height: auto;
}
#page-downloads main {
  display: block;
  padding: 1.5rem;
}
#page-downloads main .title-download-counter {
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 700;
}
#page-downloads main .download-counter {
  margin-bottom: 2rem;
}
#page-downloads main #counter {
  font-weight: 700;
}
#page-downloads main .button-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3rem;
  border-radius: 10px;
  background-color: #7a8c30;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 700px) {
  #page-downloads main {
    padding: 2.5rem;
  }
  #page-downloads main .download-counter {
    font-size: 1.4rem;
  }
  #page-downloads main .button-back {
    width: fit-content;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1720px) {
  #page-downloads main {
    padding: 4.4rem;
  }
}
@media (min-width: 2560px) {
  #page-downloads main {
    padding: 5.6rem;
  }
}

.page-error main {
  display: block;
  padding: 1.5rem;
}
.page-error main .code-error {
  font-size: clamp(2rem, 35vw, 10rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.page-error main .titel-error {
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-error main p {
  margin-bottom: 2rem;
}
.page-error main .button-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3rem;
  border-radius: 10px;
  background-color: #7a8c30;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 700px) {
  .page-error main {
    padding: 2.5rem;
  }
  .page-error main p {
    width: 70vw;
    font-size: 1.125rem;
  }
  .page-error main .button-back {
    width: fit-content;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1720px) {
  .page-error main {
    padding: 4.4rem;
  }
  .page-error main p {
    width: 60vw;
  }
}
@media (min-width: 2560px) {
  .page-error main {
    padding: 5.6rem;
  }
  .page-error main p {
    width: 30vw;
    font-size: 1.35rem;
  }
}

/*# sourceMappingURL=main.css.map */
