* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

/*ANCHOR - Fonts*/
@font-face {
  font-family: "consolas_regular";
  src: url(/fonts/open_sans/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "open_sans_bold";
  src: url(/fonts/open_sans/OpenSans-Bold.ttf);
}
@font-face {
  font-family: "petit_formal_script";
  src: url(/fonts/Petit_Formal_Script/PetitFormalScript-Regular.ttf);
}
@font-face {
  font-family: "playfairdisplay_bold_italic";
  src: url(/fonts/playfair_display/PlayfairDisplay-BoldItalic.ttf);
}

/*ANCHOR - Variablen*/
:root {
  /* Fonts */
  --open_sans_regular: consolas_regular;
  --open_sans_bold: open_sans_bold;

  --playfairdisplay_bold: petit_formal_script;
  --playfairdisplay_bold_italic: petit_formal_script;

  /*button Color*/
  --green_color: #2ecc71;
  --red_color: #e74c3c;
  --transition-duration: 0.5s;

  /* Farben für Light Mode*/
  --background-color-light: #ebe2de;
  --text-color-light: #2c1b18;
  --accent-color-light: #472621;
  --secondary-color-light: #f1f1f1;
  --border-color-light: #0018f1;
  --link-color-light: #007bff;
  --text-field-light: #e9e9e9c9;
  --ctatext-color-light: #ebebeb;
  --light_mode_background_color_opacity: rgba(235, 226, 222, 0.8);

  /* Farben für Dark Mode */
  --background-color-dark: rgb(54, 29, 25);
  --text-color-dark: #e0e0e0;
  --accent-color-dark: #e9c3b2;
  --secondary-color-dark: #444444;
  --border-color-dark: #d4af37;
  --link-color-dark: #e74c3c;
  --text-field-dark: #e0e0e0;
  --ctatext-color-dark: #1c1c1c;
  --dark_mode_background_color_opacity: rgba(54, 29, 25, 0.5);
}

body.light-mode {
  --background-color: var(--background-color-light);
  --text-color: var(--text-color-light);
  --accent-color: var(--accent-color-light);
  --secondary-color: var(--secondary-color-light);
  --border-color: var(--border-color-light);
  --link-color: var(--link-color-light);
  --text-field-color: var(--text-field-light);
  --cta-text-color: var(--ctatext-color-light);
  --header-opacity: var(--light_mode_background_color_opacity);
}

body.dark-mode {
  --background-color: var(--background-color-dark);
  --text-color: var(--text-color-dark);
  --accent-color: var(--accent-color-dark);
  --secondary-color: var(--secondary-color-dark);
  --border-color: var(--border-color-dark);
  --link-color: var(--link-color-dark);
  --text-field-color: var(--text-field-dark);
  --cta-text-color: var(--ctatext-color-dark);
  --header-opacity: var(--dark_mode_background_color_opacity);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  -webkit-transition: background-color 0.5s, color 0.5s;
  -o-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  font-family: var(--open_sans_regular);
}

.accent {
  color: var(--accent-color);
}

.secondary {
  background-color: var(--secondary-color);
}

a {
  color: var(--link-color);
}

a:hover {
  color: var(--accent-color);
}

.a_datenschutz {
  color: var(--accent-color);
}

.mobile_header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0 0.6rem 0.6rem;
  background-color: var(--header-opacity);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-bottom: 2px solid var(--accent-color);
  z-index: 1;
}

.logo {
  position: relative;
  top: 2px;
}

.logo a img {
  max-width: 20rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Mobile drop down menü*/

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: none;
  padding: 10px 20px;
}

.burger {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 34px;
  height: 24px;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* Entfernt das Highlighting auf Mobilgeräten */
}

.burger div {
  width: 34px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--background-color);
  position: absolute;
  top: 78px;
  right: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 1rem 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0.5rem 1rem;
  margin: 0;
  width: 100%;
  border-right: 2px solid var(--accent-color);
}

.nav-menu li {
  text-align: center;
  padding: 15px 0;
}

.nav-menu li:first-child {
  border-top: none;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
}

.nav_contact {
  background-color: var(--green_color);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  color: #1c1c1c !important;
}

.burger.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
  -ms-transform: rotate(-45deg) translate(-6px, 5px);
  transform: rotate(-45deg) translate(-6px, 5px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-6px, -5px);
  -ms-transform: rotate(45deg) translate(-6px, -5px);
  transform: rotate(45deg) translate(-6px, -5px);
}

.nav-menu.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Hervorhebung der Artiven Navigationspunkte*/
nav ul li a {
  border-bottom: 3px solid transparent; /* Standard: kein border-bottom */
  -webkit-transition: border-bottom 0.3s ease;
  -o-transition: border-bottom 0.3s ease;
  transition: border-bottom 0.3s ease; /* Weicher Übergang */
}

nav ul li a.active {
  border-bottom: 3px solid var(--accent-color); /* Farbe des border-bottom bei aktivem Link */
}

/* Fortschritsbalken fue die Mobilversion*/
.progress-container {
  position: fixed;
  top: 60px; /* Unter der Navigation */
  width: 100%;

  height: 5px;
  z-index: 9;
}

.progress-bar {
  height: 5px;
  background-color: var(--accent-color);
  width: 0%;
}

/*ANCHOR - Social Media Icons*/
.socialmedia_next_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 1rem 0;
}

.nav_socialmedia_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 43px;
  margin-top: -20px;
}

.socialmedia_icon_widht {
  width: 36px;
}

/* Stile Dark/Light mode umschalter */
.toggle-container {
  top: 20px;
  right: 20px;
  rotate: 90deg;
  margin-top: 20px;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* Entfernt das Highlighting auf Mobilgeräten */
}

.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 36px;
  background-color: var(--text-color);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color var(--transition-duration);
  -o-transition: background-color var(--transition-duration);
  transition: background-color var(--transition-duration);
}

.inner-circle {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 28px;
  height: 28px;
  background-color: var(--background-color);
  border-radius: 50%;
  -webkit-transition: -webkit-transform var(--transition-duration);
  transition: -webkit-transform var(--transition-duration);
  -o-transition: transform var(--transition-duration);
  transition: transform var(--transition-duration);
  transition: transform var(--transition-duration),
    -webkit-transform var(--transition-duration);
  z-index: 2;
}

.icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity var(--transition-duration);
  -o-transition: opacity var(--transition-duration);
  transition: opacity var(--transition-duration);
  width: 100%;
  height: 100%;
}

.sun {
  opacity: 1;
  z-index: 1;
  top: 0;
  left: -16px;
  fill: var(--background-color);
}

.moon {
  opacity: 1;
  z-index: 1;
  top: 0;
  left: 15px;
  stroke: var(--background-color);
  rotate: 180deg;
  fill: none;
}

.toggle-checkbox:checked + .toggle-label .inner-circle {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.toggle-checkbox:checked + .toggle-label .sun {
  opacity: 1;
}

.toggle-checkbox:checked + .toggle-label .moon {
  opacity: 0;
}

/*ANCHOR - Farb Umschalter*/
body.light-mode {
  --background-color: var(--background-color-light);
  --text-color: var(--text-color-light);
  --accent-color: var(--accent-color-light);
  --secondary-color: var(--secondary-color-light);
  --border-color: var(--border-color-light);
  --link-color: var(--link-color-light);
}

body.dark-mode {
  --background-color: var(--background-color-dark);
  --text-color: var(--text-color-dark);
  --accent-color: var(--accent-color-dark);
  --secondary-color: var(--secondary-color-dark);
  --border-color: var(--border-color-dark);
  --link-color: var(--link-color-dark);
}

/* Verhindert das blaue Aufblinken beim Anklicken des Schalters */
.toggle-label:focus,
.toggle-label:active,
.inner-circle:focus,
.inner-circle:active,
.toggle-checkbox:focus,
.toggle-checkbox:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Entfernt alle Fokuseffekte bei der Eingabe */
* {
}

/* Spezifische Stile für die Checkbox */
.toggle-checkbox {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none; /* Entfernt das Standard-Aussehen von Checkboxes in WebKit-Browsern */
  -moz-appearance: none;
  appearance: none; /* Entfernt das Standard-Aussehen von Checkboxes */
  background: none; /* Entfernt den Hintergrund der Checkbox */
}

/* Mobile drop down menü ENDE*/

.hidden {
  display: none;
}

main {
  width: 100%;
}

/*ANCHOR - accent-line */
.accent_line svg {
  width: 20%;
  height: auto;
  fill: var(--accent-color);
}

.hero_section_lines {
  position: relative;
  z-index: -5;
  margin-top: -6rem;
}

.line_right {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.left_and_right_lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*ANCHOR - Hero Section 0*/
.hero_section_0 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  min-height: 53.125rem;
  max-width: 33.125rem;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 0;
}

.picture_hero_section {
  width: 90%;
  border-radius: 30px;
  border: 2px solid var(--accent-color);
}

.hero_sectiton_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 90%;
  text-align: center;
  gap: 1.5rem;
}

/*ANCHOR - h1 h2 h3 h4 p Headlines*/
h1 {
  font-family: var(--playfairdisplay_bold);
  color: var(--accent-color);
  font-size: 32px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;

  max-width: 90%;
  margin: auto;
  word-wrap: break-word; /* Erlaubt das responsive Umbrechen */
  text-align: center; /* Zentriert den Text */
}

/*H1 Animation*/
.h1_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; /* Zentriert den Text innerhalb des Containers */
}

.word {
  display: inline-block; /* Behandelt jedes Wort als eine Einheit */
  white-space: nowrap; /* Verhindert den Umbruch innerhalb eines Wortes */
}

.letter {
  display: inline-block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease,
    -webkit-transform 0.5s ease;
  opacity: 0;
}

.hover-effect {
  -webkit-transform: translateY(-10px) rotateY(90deg);
  transform: translateY(-10px) rotateY(90deg);
  opacity: 1;
}

h2 {
  font-family: var(--playfairdisplay_bold_italic);
  color: var(--accent-color);
  font-size: 24px;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
  max-width: 90%;
}

h3 {
  font-family: var(--playfairdisplay_bold);
  color: var(--accent-color);
  font-size: 32px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;

  text-align: center;
}

h4 {
  font-family: var(--playfairdisplay_bold_italic);
  color: var(--accent-color);
  font-size: 24px;
}

p {
  width: 90%;
  font-family: var(--open_sans_regular);
  color: var(--text-color);
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hero_section_p {
  margin: auto;
  width: 100%;
  font-family: var(--open_sans_regular);
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 217%; /* 34.72px */
  letter-spacing: 0.32px;
}

/* Langsames einblenden der Hero Section Bilder*/
.time_shift {
  opacity: 0; /* Element ist initial unsichtbar */
  -webkit-transition: opacity 2s ease-in-out;
  -o-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out; /* Langsames Einblenden über 2 Sekunden */
  visibility: visible; /* Sichtbar, auch wenn es transparent ist */
}

.time_shift.hidden {
  visibility: hidden; /* Unsichtbar und nimmt keinen Platz ein */
}

.time_shift.visible {
  opacity: 1; /* Sichtbar, wenn die Klasse 'visible' hinzugefügt wird */
}

/* Langsames einblenden der Hero Section div*/
.time_shift_slow {
  opacity: 0; /* Das Element ist initial unsichtbar */
  -webkit-transition: opacity 2s ease-in-out;
  -o-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out; /* Langsames Einblenden über 3 Sekunden */
}

.time_shift_slow.visible {
  opacity: 1; /* Sichtbar, wenn die Klasse 'visible' hinzugefügt wird */
}

/* Langsames einblenden der Hero Section p*/
.time_shift_p {
  opacity: 0; /* Das Element ist initial unsichtbar */
  -webkit-transition: opacity 2s ease-in-out;
  -o-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out; /* Langsames Einblenden über 3 Sekunden */
}

.time_shift_p.visible {
  opacity: 1; /* Sichtbar, wenn die Klasse 'visible' hinzugefügt wird */
}

/*ANCHOR - CTA-Button */
/*Code fuer CTA umgebenes a Element*/
.cta_link {
  text-decoration: none;
}

.color_border {
  position: relative;
}

.color_border:before {
  content: "";
  background: -o-linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -webkit-animation: glowing 20s linear infinite;
  animation: glowing 20s linear infinite;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: 50px;
}

.color_border:active {
  color: #000;
}

.color_border:active:after {
  background: transparent;
}

.color_border:hover:before {
  opacity: 0;
}

.color_border:before {
  opacity: 1;
}

.color_border:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0;
  top: 0;
  border-radius: 10px;
}

@-webkit-keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*Code Fuer CTA Button-Tag*/
.cta {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  border: 3px solid var(--accent-color);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: var(--green_color);
  text-shadow: 1px 1px 4px var(--text-color);
  -webkit-box-shadow: inset -1px -1px 10px var(--background-color-dark);
  box-shadow: inset -1px -1px 10px var(--background-color-dark);
  color: var(--cta-text-color);
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
  z-index: 1;

  cursor: pointer;
  position: relative;
  z-index: 0;
}

.cta:before {
  content: "";
  background: -o-linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -webkit-animation: glowing 20s linear infinite;
  animation: glowing 20s linear infinite;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border-radius: 50px;
}

.cta:active {
  color: #000;
}

.cta:active:after {
  background: transparent;
}

.cta:hover:before {
  opacity: 1;
}

.cta:before {
  opacity: 0;
}

.cta:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.cta:hover {
  color: var(--cta-text-color);
}

.anker_point {
  position: relative;
  width: 10px;
  height: 10px;
  top: -8rem;
}

/*ANCHOR - Section 1 */
.section_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 33.125rem;
  margin: auto;
}

.section_1_gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}

.section_1_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.img_regular_size {
  width: 90%;
  border-radius: 30px;
  border: 2px solid var(--accent-color);
  margin: 1rem 0;
}

.section_text_responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

/*ANCHOR - Section 2 */
.section_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.section_2_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  width: 100%;
  width: 90%;
  max-width: 30.125rem;
  margin: auto;
  padding-top: 0.3rem;
  padding-bottom: 1.5rem;
  border: 4px solid var(--accent-color);
  border-radius: 40px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--accent-color)),
    color-stop(56.5%, rgba(0, 0, 0, 0))
  );
  background-image: -o-linear-gradient(
    top,
    var(--accent-color) 0%,
    rgba(0, 0, 0, 0) 56.5%
  );
  background-image: linear-gradient(
    180deg,
    var(--accent-color) 0%,
    rgba(0, 0, 0, 0) 56.5%
  );
  -webkit-box-shadow: 0px 10px 4px 0px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0px 10px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.section_2_card p {
  margin-top: 1rem;
}

/*ANCHOR - Section 3 */
.section_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 33.125rem;
  margin: auto;
}

/*ANCHOR - Section 4 */
.section_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 33.125rem;
  margin: auto;
}

.section_4_gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}

.section_4_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*ANCHOR - Section 5 with CTA */
.section_5_with_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  max-width: 33.125rem;
  margin: auto;
}

.section_5_cta_div {
  width: 90%;
  text-align: center;
}

/*ANCHOR - Contact Form */
.section_contact_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 33.125rem;
  margin: auto;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.h3_contact_form {
  text-align: center;
  padding-bottom: 2rem;
}

.cta_section_vier_ueberschrift {
  @media screen and (max-width: 722px) {
    font-size: 24px;
  }
}

.red_star {
  color: var(--red_color);
}

.contact-form-container {
  width: 100%;
  max-width: 33.125rem;
  padding: 20px;
  background-color: var(--background-color);
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-group {
  margin: auto;
  width: 100%;
  margin-bottom: 15px;
}

label {
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 3px solid var(--accent-color);
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 30.125rem;
  background-color: var(--text-field-color);
}

.label_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

input[type="checkbox"] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 3px solid var(--accent-color);
  border-radius: 6px;
  background-color: var(--text-field-color);
  outline: none;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  -o-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  z-index: 0;
}

input[type="checkbox"]:checked {
  border-color: var(--green_color);
  background-color: var(--green_color);
}

input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  width: 10px;
  height: 5px;
  border: solid white;
  border-width: 0 0 3px 3px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  display: none;
}

input[type="checkbox"]:checked::after {
  display: block;
}

button {
  display: block;
  margin: 1rem auto 0;
  padding: 5px 25px;
  border: none;
  border-radius: 6px;
  background-color: var(--green_color);
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

button:hover {
  background-color: #218838;
}

/*ANCHOR - Newsletter */
.section_newsletter {
  /* Display: none entfernen um Newsletter sichtbar zu machen*/
  display: none;
  /*display: flex;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 33.125rem;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.newsletter-form-container {
  width: 90%;
}

.h2_newsletter {
  font-family: var(--playfairdisplay_bold);
  font-style: normal;
}

/*ANCHOR - Footer */
footer {
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  gap: 2rem;
  padding: 1.5rem 1rem 0;
}

.footer_icon_gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_social_media_icon {
  text-decoration: none;
}

.footer_link a {
  color: var(--text-color);
}

.footer_p {
  text-align: center;
}

/*ANCHOR - Impressum - Datenschutz Seiten*/
.main_impressum_datenschutz {
  height: 100vh;
}

.data_imp_section {
  width: 90%;
  max-width: 50rem;
  margin: auto;
  padding-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_impressum_datenschutz {
  position: relative;
  bottom: 0;
}

/* Cookie Banner */
/* Grundlegendes Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-top: 2px solid var(--accent-color);
  z-index: 1000;
  display: none;
}

.cookie-banner p {
  color: #d5d5d5;
  margin: 0 0 10px 0;
  font-size: 14px;
  text-align: center;
  margin: auto;
  padding-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.datenschutz_link_cookie_banner {
  color: #e74c3c;
}

.cookie-banner button {
  padding: 1rem;
  margin: 0;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.cookie-banner button#customize-cookies {
  background-color: #f9a825;
}

.cookie-banner button:hover {
  opacity: 0.9;
}

/* Cookie-Einstellungen Modal */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 35rem;
  transform: translate(-50%, -50%);
  background-color: var(--background-color);
  padding: 1.5rem 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0px 0px 10px var(--text-color) inset;
  z-index: 1001;
  border: 2px solid var(--accent-color);
}

.cookie-settings-content h2 {
  margin-bottom: 10px;
}

.cookie-settings-content label {
  display: block;
  margin-bottom: 10px;
}

.cookie-settings-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.cookie-settings-buttons button {
  padding: 10px 20px;
  cursor: pointer;
}

#decline-cookies {
  background-color: #f9a825;
}

/* Footer Cokie Link */
#cookie-settings-link {
  color: var(--text-color);
  text-decoration: underline;
  cursor: pointer;
}

#cookie-settings-link:hover {
  text-decoration: none;
}
/* Cookie Banner ende */

@media (max-height: 890px) {
  .hero_section_0 {
    padding-top: 2rem;
  }
}

/*ANCHOR - Tablett Media Queries*/

@media (min-width: 720px) {
  @media (max-height: 1055px) {
    .hero_section_0 {
      max-height: 500px;
      padding-top: 14rem;
    }
  }
  p {
    font-size: 18px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero_section_p {
    font-size: 18px;
  }

  .mobile_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }

  .logo a img {
    padding-top: 1rem;
    width: 35rem;
    max-width: 28rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .navbar {
    padding: 0 0 0.4rem 0;
  }

  .burger {
    display: none;
  }

  .nav_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }

  .nav-menu {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    position: static;

    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .nav-menu ul {
    padding: 0;
    margin: 0;
    border-right: 0;
  }

  .nav-menu li {
    text-align: center;
    padding: 0;
  }

  .nav_contact {
    padding: 0.1rem 0.8rem;
  }

  /* Scrool-Fortschritsbalken*/
  .progress-container {
    display: none;
  }

  /* Social Media Icons*/
  .nav_socialmedia_icons {
    position: absolute;
    top: 12rem;
    right: 1rem;
  }

  .accent_line svg {
    width: 20%;
    max-width: 12rem;
    height: auto;
  }

  /*Footer-Tablet*/
  .footer_icon_gap {
    display: none;
  }

  .to_top_button {
    position: absolute;
    right: 2.26rem;
  }

  .text_shrink {
    font-size: 16px;
  }
}

/*ANCHOR - Desktop Media Queries*/
@media (min-width: 1190px) {
  main {
    padding-top: 0;
  }
  p {
    font-size: 18px;
  }

  .hero_section_p {
    width: 100%;
    font-size: 22px;
  }

  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 32px;
  }

  .logo {
    top: 0;
  }

  .logo a img {
    padding-top: 0.5rem;
  }

  .mobile_header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .navbar {
    padding: 0;
  }

  .hero_section_0 {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(12vw - 80px);
    padding-top: 0;
    max-height: none;
  }

  .picture_hero_section {
    min-width: 90%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hero_sectiton_text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    min-width: 30rem;
    width: 100%;
    gap: 2.5rem;
  }

  .accent_line svg {
    width: 20%;
    max-width: 10rem;
    height: auto;
  }

  .section_1 {
    width: 100%;
    max-width: 80%;
  }

  .section_1_div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6rem;
  }

  .img_regular_size {
    max-width: 26rem;
  }

  .section_text_responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section_2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 6rem;
  }

  .section_2_card {
    margin: 0;
  }

  .section_3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    max-width: 80%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6rem;
  }

  .section_4 {
    width: 100%;
    max-width: 80%;
  }
  .section_4_div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .order {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 1500px) {
  .hero_sectiton_text {
    min-width: 40rem;
  }

  .hero_section_0 {
    gap: 12rem;
  }
}
