:root {
  --color-primary: #eee9dc;
  --color-secondary: #345c00;
  --max-width-1: 100rem;
  --max-width-2: 90rem;
  --max-width-3: 75rem;
  --max-width-4: 42rem;
}

@font-face {
  font-family: "Corbert-Regular";
  src: url("fonts/Corbert-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Esteh";
  src: url("fonts/Esteh.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Corbert-Regular", sans-serif;
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.227), 1.125rem);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

hr {
  border: none;
  border-top: 2px solid var(--color-primary);
  align-self: stretch;
  width: 80%;
  max-width: var(--max-width-4);
}


@media (min-width: 1200px) {
  .hero-image {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    margin-top: 1.5em;
    aspect-ratio: 3570/1200;
    background-image: url("images/mog_WideScreen_HorizontalCenter.png");
    background-size: contain;
  }
}


@media (min-width: 480px) and (max-width: 1200px) {
  .hero-image {
    width: 100%;
    aspect-ratio: 1920/1000;
    background-image: url("images/mog_Tablet_FullWidth_hohe-Aufloesung.png");
    background-size: contain;
  }
}

@media (max-width: 480px) {
  .hero-image {
    width: 100%;
    aspect-ratio: 750/1200;
    background-image: url("images/mog_Mobile_FullWidth_375x600.png");
    background-size: contain;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.header {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-3);
  padding: 0.5rem 2rem;
}

.header__logo-link {
  line-height: 0;
}

.header__logo {
  width: 225px;
  max-width: 100%;
}

.navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.navigation__close {
  display: none;
}

#burger {
  display: none;
}

@media (max-width: 600px) {
  .navigation {
    display: none;
  }

  .navigation__close {
    display: block;
  }

  #burger {
    display: block;
  }
}

.navigation--mobile {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 1rem;
  gap: 0.75rem;
}

.navigation__link {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
}

.text-block {
  width: var(--max-width-4);
  max-width: min(100%, var(--max-width-4));
  text-align: center;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}

.text-block p {
  margin: 0;
}

.text-block p {
  margin: 0;
}

.text-block-left {
  width: var(--max-width-4);
  max-width: min(100%, var(--max-width-4));
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}

.text-block-left p {
  margin: 0;
}

.wide-block {
  width: var(--max-width-2);
  padding: 0 1rem;
  max-width: min(100%, var(--max-width-2));
}

.primary-block {
  background-color: var(--color-primary);
}

.simple-text-block {
  width: var(--max-width-4);
  max-width: min(100%, var(--max-width-4));
}

.double-esteh {
  font-family: "Esteh", sans-serif;
  font-size: 2rem;
}

.text-block__header {
  background-color: var(--color-primary);
  font-family: "Esteh", sans-serif;
  font-size: 2rem;
  display: block;
}

.round-image {
  border-radius: 9999px;
  height: auto;
}

.left-image {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  gap: 2rem;
}

@media (max-width: 768px) {
  .left-image {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.header-banner {
  background-color: var(--color-primary);
  align-self: stretch;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Esteh", sans-serif;
  font-size: clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 3.273), 4rem);
  position: sticky;
  top: 0rem;
  margin-top: -2rem;
}

.banner {
  background-color: var(--color-primary);
  align-self: stretch;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
}

.banner__content {
  font-family: "Esteh", sans-serif;
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 3.273), 4rem);
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;

}

.triple-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .triple-col {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.triple-col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dual-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .dual-col {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.dual-col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ina-bubble>a {
  box-sizing: border-box;
  text-decoration: none !important;
  width: 100%;
  display: block;
  background-color: #eee9dc;
  display: block;
  border-radius: 1.5em;
  padding: 0.5em;
  cursor: pointer;
  text-align: center;
  color: var(--color-secondary);
}

.ina-bubble>a:hover {
  background-color: #ac9353;
}

.underline-link {
  text-decoration: underline;
  color: var(--color-secondary);
}

.normal-list {
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.price-table {
  border-collapse: collapse;
}

.price-table__cell,
.price-table__col-header,
.price-table__row-header {
  background-color: var(--color-primary);
  border: 1px solid black;
  padding: 0.5rem;
}

.price-table__col-header {
  text-align: center;
}

.price-table__row-header {
  text-align: right;
}

.fineprint {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #555555;
  text-align: left;
}

.price-block {
  background-color: var(--color-primary);
}

.footer {
  background-color: var(--color-primary);
  align-self: stretch;
  display: flex;
  justify-content: center;
}

.footer__content {
  width: var(--max-width-3);
  padding: 1rem 2rem;
  max-width: var(--max-width-3);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.footer__column {
  text-align: center;
  line-height: 1.6;
}
