* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  /*outline: 1px solid red;*/
}

html {
  scroll-behavior: smooth;
  background-color: #e6e9e8;
}

/*ANCHOR - Fonts*/
@font-face {
  font-family: "h_ueberschrift_bold";
  src: url("/fonts/Charm/Charm-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "desktop_headline_charm_bold";
  src: url("/fonts/Charm/Charm-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "desktop_headline_charm_regular";
  src: url("/fonts/Charm/Charm-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "desktop_nav_inter_regular";
  src: url("/fonts/Inter/Inter_18pt-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "desktop_nav_inter_bold";
  src: url("/fonts/Inter/Inter_18pt-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "desktop_paragraph_lora_regular";
  src: url("/fonts/Lora/Lora-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "mobil_roboto_regular";
  src: url("/fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

:root {
  /* Fonts */
  --desktop_headline_charm_bold: desktop_headline_charm_bold;
  --desktop_headline_charm_regular: desktop_headline_charm_regular;

  --desktop_nav_inter_regular: desktop_nav_inter_regular;
  --desktop_nav_inter_bold: desktop_nav_inter_bold;

  --desktop_paragraph_lora_regular: desktop_paragraph_lora_regular;

  --mobil_roboto_regular: mobil_roboto_regular;

  --green_background_color: #f0fff0;
  --green_stroke_color: #74ad74;
}

/*ANCHOR - Mobil-Version*/

body {
  font-family: var(--mobil_roboto_regular);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.65;
  color: #000;
  text-align: center;
  margin: 0;
  padding: 0 1rem;
  position: relative; /* wichtig für pseudo-elements */
  z-index: 0;
}

/* Hintergrundbild als eigenes Element */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100dvh;
  height: 100vh; /* Fallback */
  background-image: url("/img/background_img_feet_and_hands.jpg");
  background-size: cover;
  background-position: 40% center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: translateZ(0);
  will-change: transform;
}

/* Aufhellungs-Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

/* To Top Button*/
#toTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: var(--green_background_color, #3a7c5e); /* fallback */
  color: var(--green_stroke_color, #74ad74); /* fallback */
  border: none;
  border-radius: 50%;
  padding: 1rem 1.2rem;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#toTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/*ANCHOR - Navigation Mobile*/
.mobile_header {
  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;

  padding: 1rem;
  background-color: var(--green_background_color);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-bottom: 2px solid var(--green_stroke_color);
  z-index: 1;

  width: auto;
  margin-left: calc(-1rem); /* gleicht Padding aus, falls nötig */
  margin-right: calc(-1rem); /* gleicht Padding aus, falls nötig */
}

.logo {
  position: relative;
  top: 2px;
}

.logo a img {
  max-width: 6rem;
  width: 100%;
  height: auto;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

/* Mobile drop down menü*/
.tablet_fixed_top_header_aside {
  display: none;
}

.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;
  margin-right: -1rem;
}

.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: black;
  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(--green_background_color);
  position: absolute;
  top: 70px;
  right: 56px;
  border: 2px solid var(--green_stroke_color);
  border-radius: 20px 0px 20px 20px;
  padding: 0;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.nav-menu ul {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
  width: 100%;
  border-right: 2px solid var(--accent-color);
}

.nav-menu li {
  text-align: center;
  padding: 2rem 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 - Main Inhalt*/
main {
  margin: auto;
  max-width: 80rem;
}

.margin_top {
  margin-top: 2rem;
}

.margin_bottom {
  margin-bottom: 2rem;
}

.margin_bottom_aktuelles {
  margin-bottom: 2.5rem;
}

.margin_sections {
  margin: 4rem 0;
}

.margin_section_ueber_uns {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/*Bilder Allgemein*/
img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  max-width: 30rem;
  max-height: 30rem;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.bild_2_max_height {
  width: 20rem;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 2rem;
}

.h1_style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h1_headline {
  font-family: h_ueberschrift_bold;
  font-size: 2.5rem;
}

.h1_strich {
  display: none;
}

.h1_subheadline {
  font-family: var(--desktop_headline_charm_bold);
  font-size: 1.25rem;
}

h2 {
  font-family: var(--desktop_headline_charm_bold);
  word-wrap: break-word;
}

.margin_top_bottom_h2_aktuelles {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.h2_big_text {
  font-size: 2.5rem;
}

.left_text_order {
  text-align: left;
}

.hero_section {
  padding-top: 2rem;
}

.aktuelles_section {
  background-color: var(--green_background_color);
  width: 100vw;
  padding-top: 1rem;
  padding-bottom: 0;
  width: auto;
  margin-left: calc(-1rem); /* gleicht Padding aus, falls nötig */
  margin-right: calc(-1rem); /* gleicht Padding aus, falls nötig */
  border-top: 1px solid var(--green_stroke_color);
  border-bottom: 1px solid var(--green_stroke_color);
}

.aktuelles_text {
  padding: 0 1rem;
}

.font_lora_regular {
  font-family: var(--desktop_paragraph_lora_regular);
}

.font_size_2rem {
  font-size: 2rem;
}

.container_behandlungen_und_preise {
  background-color: var(--green_background_color);
  border-left: 1px solid var(--green_stroke_color);
  border-right: 1px solid var(--green_stroke_color);
  padding: 1.5rem;
}

.effekt_leiste_behandlung_preis {
  display: none;
}

.effekt_leiste_behandlung_preis_mobil_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1.5rem;
  background-color: #f0fff0;
  border-radius: 20px 20px 0px 0px;
  border-top: 1px solid var(--green_stroke_color);
  border-right: 1px solid var(--green_stroke_color);
  border-left: 1px solid var(--green_stroke_color);
}

.effekt_leiste_behandlung_preis_mobil_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1.5rem;
  margin-bottom: 1px;
  background-color: #f0fff0;
  border-radius: 0px 0px 20px 20px;
  border-bottom: 1px solid var(--green_stroke_color);
  border-right: 1px solid var(--green_stroke_color);
  border-left: 1px solid var(--green_stroke_color);
}

.card_desktop {
  display: none;
}

.fullwidth-border {
  border-top: 1px solid green;
  width: auto;
  margin-left: calc(-1rem); /* gleicht Padding aus, falls nötig */
  margin-right: calc(-1rem); /* gleicht Padding aus, falls nötig */
}

footer {
  background-color: var(--green_background_color);
  border-top: 1px solid green;
  width: auto;
  margin-left: calc(-1rem); /* gleicht Padding aus, falls nötig */
  margin-right: calc(-1rem); /* gleicht Padding aus, falls nötig */
  padding-bottom: 2rem;
  padding-top: 2rem;
  line-height: 2.5rem;
  font-family: var(--mobil_roboto_regular);
  margin-top: 6rem;
}

.footer_logo {
  max-width: 12rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
  border-radius: 0;
}

.small_border_aktzent_rechtliches {
  border: 2px solid var(--green_stroke_color);
  max-width: 7.25rem;
  margin: 0.6rem auto;
}

.small_border_aktzent_studio {
  border: 2px solid var(--green_stroke_color);
  max-width: 4rem;
  margin: 0.6rem auto;
}

.link_color {
  color: black;
  text-decoration: none;
}

.copyright_styles {
  background-color: var(--green_background_color);
  border-top: 1px solid green;
  width: auto;
  margin-left: calc(-1rem); /* gleicht Padding aus, falls nötig */
  margin-right: calc(-1rem); /* gleicht Padding aus, falls nötig */
  font-family: var(--mobil_roboto_regular);
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

/*vorher im inline css geschribene klassen*/
.span_style {
  font-weight: 600;
}

.color_blue {
  color: #007bff;
}

.p_style_coolie_banner {
  color: #666;
  margin-bottom: 0;
}

.blocksatz {
  text-align: justify;
  hyphens: auto;
}

/* ANCHOR - Tablet ab 768px */
@media (min-width: 768px) {
  .blocksatz {
    hyphens: none;
  }

  img {
    max-width: 30rem;
    max-height: 30rem;
    height: auto;
    width: 100%;
  }

  #ueber_uns,
  #aktuelles_,
  #anfahrt,
  #behandlungen_und_preise {
    scroll-margin-top: 10rem;
  }

  .h1_subheadline {
    font-family: var(--desktop_headline_charm_bold);
    font-size: 1.8rem;
  }

  body {
    padding-left: 3rem;
    padding-right: 3rem;
    margin-top: 9rem;
  }

  /*ANCHOR - Tablet Navigation*/
  .container_aside_fixed_header_tablet_desktop {
    position: fixed;
    top: 0;
    left: 0;

    background-color: var(--green_background_color);
    border-bottom: 1px solid var(--green_stroke_color);

    width: 100vw;
    margin-left: calc(-50vw + 50%);

    padding-left: 3rem;
    padding-right: 3rem;
    z-index: 1000;
  }

  .tablet_fixed_top_header_aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 90rem;
    margin: auto;
  }

  .tablet_fixed_top_header_aside img {
    max-width: 10rem;
    margin-left: 4.2rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }

  .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;

    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 0.4rem;

    border: none;
    background: -o-radial-gradient(
      50% 50%,
      50% 50%,
      #f0fff0 29.81%,
      #74ad74 100%
    );
    background: radial-gradient(
      50% 50% at 50% 50%,
      #f0fff0 29.81%,
      #74ad74 100%
    );
  }

  .logo {
    display: none;
  }

  .desktop_none {
    display: none;
  }

  .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;
    -webkit-box-shadow: none;
    box-shadow: none;
    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;
  }

  .max-width {
    max-width: 40rem;
    margin: auto;
  }

  .aktuelles_section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .margin_tablet {
    margin: 4rem 0;
  }

  footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    margin-top: 6rem;
  }

  .copyright_styles {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .text_area_widht {
    min-width: 28rem;
    max-width: 30rem;
  }
}

/*ANCHOR - Desktop ab 1200px*/
@media (min-width: 1200px) {
  body {
    font-family: var(--desktop_paragraph_lora_regular);
    font-size: 1.25rem;
    line-height: 1.65;
    color: #000000;
    width: 100%;
    overflow-x: hidden;
  }

  main {
    max-width: 90rem;
  }

  .max-width {
    max-width: 80rem;
    margin: auto;
  }

  /*ANCHOR - Desktop Navigation*/
  .logo {
    top: 0;
  }

  .logo a img {
    padding-top: 0.5rem;
  }

  .mobile_header {
    font-family: var(--desktop_nav_inter_regular);
    -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;
    height: 3.5rem;
  }

  .navbar {
    padding: 0;
  }

  .h1_style {
    display: inline;
  }

  .h1_headline {
    font-size: 2.8rem;
    display: inline;
  }

  .desktop_headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin-top: 4rem;
  }

  .h1_strich {
    display: inline;
  }

  .h1_subheadline {
    font-family: var(--desktop_headline_charm_regular);
    font-weight: lighter;
    font-size: 2.8rem;
  }

  .bild_1_max_width {
    max-width: 38rem;
    height: auto;
  }

  .bild_2_max_height {
    max-height: 34rem;
    width: auto;
    margin-right: 6rem;
  }

  .margin_bottom {
    margin-bottom: 2rem;
  }

  .bild_haus {
    max-width: 46rem;
    height: auto;
    margin-bottom: 0;
  }

  .margin_top {
    margin-top: 0;
  }

  /*ANCHOR - Section Über uns*/
  .flex_container_ueber_uns_abschnitt_1 {
    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;
    gap: 8rem;
    margin-bottom: 6rem;
  }

  .margin_section_ueber_uns {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .ueber_uns_abschnitt_1_text {
    max-width: 46rem;
  }

  .flex_container_ueber_uns_abschnitt_2 {
    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;
    gap: 12rem;
  }

  .ueber_uns_abschnitt_2_text {
    max-width: 40rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order_minus_1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .aktuelles_max_width {
    max-width: 48rem;
    margin: auto;
  }

  .aktuelles_section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding-bottom: 1.5rem;
    padding-top: 2rem;
  }

  /*ANCHOR - Anfahrt Section*/
  .anfahrt_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .anfahrt_text_container_max_width {
    max-width: 43.5rem;
  }

  .margin_desktop {
    margin: 4rem 0;
  }

  .effekt_leiste_behandlung_preis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: var(--desktop_paragraph_lora_regular);
    font-weight: 900;
    font-size: 1.65rem;
    height: 5rem;
    margin: auto;

    border-radius: 20px 20px 0px 0px;
    border-top: 1px solid #74ad74;
    border-right: 1px solid #74ad74;
    border-left: 1px solid #74ad74;
    background: var(
      --Grner-Verlauf-Radial,
      radial-gradient(50% 50% at 50% 50%, #f0fff0 29.81%, #74ad74 100%)
    );
  }

  .effekt_leiste_behandlung_preis_bottom {
    width: 100%;
    height: 1.5rem;
    background-color: #f0fff0;
    border-radius: 0px 0px 20px 20px;
    border-bottom: 1px solid var(--green_stroke_color);
    border-left: 1px solid var(--green_stroke_color);
    border-right: 1px solid var(--green_stroke_color);
  }

  .font_lora_regular {
    font-size: 1.6rem;
  }

  .paragrapf_behandlung {
    margin-right: -13.5rem;
  }

  .preis_effekt_leiste {
    padding-right: 7.5rem;
    text-shadow: white 0px 0px 20px;
  }

  .card_mobil {
    display: none;
  }

  .effekt_leiste_behandlung_preis_mobil_bottom {
    display: none;
  }

  .effekt_leiste_behandlung_preis_mobil_top {
    display: none;
  }

  .card_desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 2rem;
  }

  .card_desktop_text {
    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: 30rem;
    margin-left: -8rem;
    gap: 1rem;
  }

  .card_desktop_img {
    margin-left: -4rem;
    max-width: 16rem;
    height: auto;
  }

  .card_desktop_price {
    margin-right: -4rem;
  }

  .container_behandlungen_und_preise {
    margin: auto;
    padding-top: 0;
  }

  .footer_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: auto;
    max-width: 100rem;
    text-align: start;
  }

  .footer_logo {
    max-width: 16rem;
    padding-top: 2rem;
  }

  .small_border_aktzent_rechtliches {
    margin: 0.6rem 0;
  }

  .small_border_aktzent_studio {
    margin: 0.6rem 0;
  }
}

@media (min-width: 1490px) {
  .h2_ueber_uns {
    text-align: start;
  }
}

@media (max-width: 1500px) {
  .fixed_to_top_1500px {
    align-self: flex-start;
  }
}
