/**
$max: fontsize for desktop in px
$lineHeight: lineheight for desktop in px
$min: fontsize for mobile in px
$marginTop: factor of the topmargin to the base of 40px on desktop
*/
.mono_hero {
  z-index: 1000;
  width: 100%;
  background: var(--black);
  position: relative;
}
@media (min-width: 768px) {
  .mono_hero {
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .mono_hero {
    max-width: 2000px;
  }
}
.mono_hero__bodytext {
  color: var(--white);
}
.mono_hero__bodytext a {
  color: var(--white);
}
.mono_hero__header {
  width: 100%;
}
@media (min-width: 1024px) {
  .mono_hero__header-image {
    height: 100%;
  }
}
.mono_hero__header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 top;
  max-height: 200px;
}
@media (min-width: 568px) {
  .mono_hero__header-image img {
    max-height: 300px;
  }
}
@media (min-width: 1024px) {
  .mono_hero__header-image img {
    max-height: 600px;
  }
}
.mono_hero__header.mono_hero__header {
  display: flex;
  justify-content: center;
}
.mono_hero__header.mono_hero__header h1 {
  hyphens: auto;
  max-width: 1392px;
  width: 100%;
  font-size: 36px;
  font-size: clamp(1.8rem, calc( 1.0416666667vw   + 1rem), 2.25rem);
  line-height: 120%;
  font-weight: 300;
  color: var(--white) !important;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .mono_hero__header.mono_hero__header h1 {
    font-size: 80px;
    font-size: clamp(4rem, calc( 3.3333333333vw   + 1rem), 5rem);
    line-height: 120%;
  }
}
.mono_hero__header.h2 {
  justify-content: start;
  color: var(--white);
  align-items: center;
  display: flex;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 8px 0;
  font-size: 18px;
  font-size: clamp(0.9rem, calc( 0.1041666667vw   + 1rem), 1.125rem);
  line-height: 120%;
}
@media (min-width: 1024px) {
  .mono_hero__header.h2 {
    padding-left: 0;
    font-size: 24px;
    font-size: clamp(1.2rem, calc( 0.4166666667vw   + 1rem), 1.5rem);
    line-height: 120%;
  }
}
.mono_hero__wrapper {
  max-width: 2000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 15%;
}
@media (min-width: 1024px) {
  .mono_hero__wrapper {
    padding: 0;
    margin-top: 15px;
    min-width: 570px;
    width: 100%;
  }
}
.mono_hero__wrapper-outer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  max-width: 2000px;
}
.mono_hero__wrapper-top {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--grey-light);
  width: 100%;
}
.mono_hero__wrapper-bottom {
  display: flex;
  max-width: 1392px;
  justify-content: space-between;
  flex-direction: column-reverse;
  height: fit-content;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 568px) {
  .mono_hero__wrapper-bottom {
    padding-right: 0;
    flex-direction: row-reverse;
    margin-bottom: 0;
    width: 100%;
  }
}
.mono_hero__wrapper-bottom-button {
  background: var(--blue);
  text-decoration: none;
  padding: 14px 0;
  max-width: 210px;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: background 300ms;
}
@media (min-width: 568px) {
  .mono_hero__wrapper-bottom-button {
    padding: 24px 0;
  }
}
@media (min-width: 1024px) {
  .mono_hero__wrapper-bottom-button {
    padding: 24px 0;
    max-width: 260px;
  }
}
.mono_hero__wrapper-bottom-button:hover {
  cursor: pointer;
  background: var(--black-light);
}
.mono_hero__wrapper-bottom-button-text {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-size: clamp(0.9rem, calc( 0.1041666667vw   + 1rem), 1.125rem);
  line-height: 120%;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .mono_hero__wrapper-bottom-button-text {
    font-size: 24px;
    font-size: clamp(1.2rem, calc( 0.4166666667vw   + 1rem), 1.5rem);
    line-height: 120%;
  }
}
@media (min-width: 1024px) {
  .mono_hero__wrapper-mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .mono_hero__wrapper-mobile {
    padding: 20px 0;
  }
}
.mono_hero__header.mono_container {
  padding: 0;
}