:root {
  --main: rgb(95, 39, 145);
  --main_01: rgba(95, 39, 145, 0.1);
  --main_02: rgba(95, 39, 145, 0.2);
  --fg_color: rgb(46, 46, 46);
  --bg_color: rgb(255, 255, 255);
  --font: Merriweather Sans, sans-serif;
  --font_handwritten: Caveat;
}

body {
  color: var(--fg_color);
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 40px;
  box-sizing: border-box;
}
.container.small {
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 30px;
  }
}
@media (max-width: 420px) {
  .container {
    max-width: 420px;
  }
}
.container.container_small {
  max-width: 1200px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .container.container_small {
    max-width: 860px;
  }
}
@media (max-width: 768px) {
  .container.container_small {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .container.container_small {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .sm_center {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .md_center {
    text-align: center;
  }
}

@font-face {
  font-display: swap;
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/merriweather-sans-v28-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/merriweather-sans-v28-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Caveat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/caveat-v23-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/icons.woff2") format("woff2");
}
.ms {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  width: 1em;
  height: 1em;
  min-width: 1em;
  min-height: 1em;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: "Merriweather Sans", sans-serif;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(125% 125% at 50% 10%, rgb(255, 255, 255) 40%, rgb(124, 58, 237) 100%);
  z-index: -1;
}

#main {
  height: 100%;
  margin: 80px 0;
}
@media (max-width: 768px) {
  #main {
    margin: 50px 0;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 40px 0;
  }
}
#header .header_inner .logo_section {
  text-align: center;
}
#header .header_inner .logo_section a {
  display: inline-block;
}
#header .header_inner .logo_section a img {
  width: 340px;
}
@media (max-width: 576px) {
  #header .header_inner .logo_section a img {
    width: 100%;
  }
}
#header .header_inner .nav_section .desktop_nav {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #header .header_inner .nav_section .desktop_nav {
    display: none;
  }
}
#header .header_inner .nav_section .desktop_nav li .nav_link {
  padding: 8px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  color: var(--fg_color);
  background-color: var(--main_01);
}
#header .header_inner .nav_section .desktop_nav li .nav_link:hover {
  color: #ffffff;
  background-color: var(--main);
}
@media (max-width: 992px) {
  #header .header_inner .nav_section .desktop_nav li.nav_item_about {
    display: none;
  }
}
#header .header_inner .nav_section #mobile_trigger_wrapper {
  display: none;
}
@media (max-width: 768px) {
  #header .header_inner .nav_section #mobile_trigger_wrapper {
    display: block;
    margin-top: 20px;
    text-align: center;
  }
  #header .header_inner .nav_section #mobile_trigger_wrapper #mobile_trigger {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    align-items: center;
    padding: 8px 14px;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--fg_color);
    border: none;
    font-family: var(--font);
    background-color: var(--main_01);
  }
}

#intro .intro_wrapper .img_wrapper {
  line-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 30px;
  align-items: center;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #intro .intro_wrapper .img_wrapper {
    grid-template-columns: 1fr;
  }
}
#intro .intro_wrapper .img_wrapper .hexagon-container {
  position: absolute; /* Nimmt ihn aus dem Grid-Flow */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* Hinter dem Bild und Slogan */
}
#intro .intro_wrapper .img_wrapper .hexagon {
  position: absolute;
  width: 60px;
  height: 34.64px;
  background-color: #c8b2da;
  opacity: 0;
}
#intro .intro_wrapper .img_wrapper .hexagon:before, #intro .intro_wrapper .img_wrapper .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
#intro .intro_wrapper .img_wrapper .hexagon:before {
  bottom: 100%;
  border-bottom: 17.32px solid #c8b2da;
}
#intro .intro_wrapper .img_wrapper .hexagon:after {
  top: 100%;
  border-top: 17.32px solid #c8b2da;
}
#intro .intro_wrapper .img_wrapper .hexagon.dark {
  background-color: #9c82b0;
}
#intro .intro_wrapper .img_wrapper .hexagon.dark:before {
  border-bottom-color: #9c82b0;
}
#intro .intro_wrapper .img_wrapper .hexagon.dark:after {
  border-top-color: #9c82b0;
}
#intro .intro_wrapper .img_wrapper .star-svg {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0;
}
#intro .intro_wrapper .img_wrapper .star-svg svg {
  width: 100%;
  height: 100%;
}
@keyframes floatLeft {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(0deg) scale(var(--scale));
  }
  15% {
    opacity: 0.2;
  }
  85% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateX(var(--distance)) rotate(var(--rotation)) scale(var(--scale));
  }
}
#intro .intro_wrapper .img_wrapper .slogan_wrapper {
  line-height: 1;
  font-family: "Caveat";
  color: var(--main);
  position: relative;
  z-index: 1;
}
#intro .intro_wrapper .img_wrapper .slogan_wrapper .content_big {
  font-size: 4.4rem;
}
#intro .intro_wrapper .img_wrapper .slogan_wrapper .content_middle {
  font-size: 3.8rem;
  padding-left: 80px;
}
@media (max-width: 992px) {
  #intro .intro_wrapper .img_wrapper .slogan_wrapper .content_big {
    font-size: 3rem;
  }
  #intro .intro_wrapper .img_wrapper .slogan_wrapper .content_middle {
    padding: 0;
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  #intro .intro_wrapper .img_wrapper .slogan_wrapper {
    line-height: 1.6;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
  }
  #intro .intro_wrapper .img_wrapper .slogan_wrapper .content_big {
    font-size: 2.6rem;
  }
  #intro .intro_wrapper .img_wrapper .slogan_wrapper .content_middle {
    padding: 0;
    font-size: 3rem;
  }
}
#intro .intro_wrapper .img_wrapper img {
  position: relative;
  z-index: 1;
  filter: brightness(1.2) contrast(1.1) saturate(0.9);
  --webkit-filter: brightness(1.2) contrast(1.1) saturate(0.9);
}
@media (max-width: 992px) {
  #intro .intro_wrapper .img_wrapper img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  #intro .intro_wrapper .img_wrapper img {
    width: 100%;
  }
}
#intro .intro_wrapper .content_wrapper {
  border-top: 4px solid rgba(95, 39, 145, 0.4);
  border-radius: 0 0 8px 8px;
  padding: 20px;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.4509803922);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#intro .intro_wrapper .content_wrapper p {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}
#intro .intro_wrapper .content_wrapper p:last-of-type {
  margin: 0;
}
#intro .intro_wrapper .content_wrapper p.handwritten {
  font-family: "Caveat";
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  #intro .intro_wrapper .content_wrapper p.handwritten {
    font-size: 2.1rem;
    margin-top: 40px;
    text-align: center;
    margin-bottom: 20px;
  }
}

#footer .footer_inner {
  padding: 30px 0;
  border-top: 4px solid rgba(255, 255, 255, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  #footer .footer_inner {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    grid-gap: 30px;
    border-top: 4px solid rgba(255, 255, 255, 0.8);
  }
}
#footer .footer_inner .footer_section.section_links a {
  padding: 8px 14px;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  color: var(--fg_color);
  background-color: rgba(255, 255, 255, 0.3);
}
#footer .footer_inner .footer_section.section_links a:hover {
  color: #ffffff;
  background-color: var(--main);
}
#footer .footer_inner .footer_section.section_persons {
  text-align: center;
}
#footer .footer_inner .footer_section.section_persons .title {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
#footer .footer_inner .footer_section.section_persons .person {
  display: block;
}
#footer .footer_inner .footer_section.section_contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .footer_inner .footer_section.section_contact .contact_item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}
#footer .footer_inner .footer_section.section_contact .contact_item .value {
  color: var(--fg_color) !important;
}
#footer .footer_inner .footer_section.section_contact .contact_item .value[x-apple-data-detectors] {
  color: var(--fg_color);
}
@media (max-width: 768px) {
  #footer .footer_inner .footer_section.section_contact .contact_item {
    display: inline-flex;
    justify-content: center;
    padding: 10px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

.home_cards {
  margin-top: 80px;
}
.home_cards .cards_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .home_cards .cards_wrapper {
    grid-template-columns: 1fr;
  }
}
.home_cards .cards_wrapper .card {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.home_cards .cards_wrapper .card .card_title {
  padding: 10px;
  border-radius: 8px;
  background-color: var(--main_01);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
  font-weight: 700;
}
.home_cards .cards_wrapper .card .card_body {
  margin-top: 20px;
}
.home_cards .cards_wrapper .card_work_time .card_body .days_block .days {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home_cards .cards_wrapper .card_work_time .card_body .days_block .days .day_item {
  display: flex;
  gap: 40px;
  align-items: center;
}
.home_cards .cards_wrapper .card_work_time .card_body .days_block .days .day_item .day {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main_01);
  border-radius: 6px;
  min-width: 34px;
}
.home_cards .cards_wrapper .card_work_time .card_body .days_splitter hr {
  border-top: 2px solid var(--main_02);
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  margin: 30px 0;
}
.home_cards .cards_wrapper .card_address .card_body .address_block,
.home_cards .cards_wrapper .card_address .card_body .contact_block {
  line-height: 2;
}
.home_cards .cards_wrapper .card_address .card_body .address_splitter hr {
  border-top: 2px solid var(--main_02);
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  margin: 30px 0;
}
.home_cards .cards_wrapper .card_address .card_body .contact_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home_cards .cards_wrapper .card_address .card_body .contact_block .contact_item {
  display: flex;
  gap: 40px;
  align-items: center;
  color: var(--fg_color) !important;
}
.home_cards .cards_wrapper .card_address .card_body .contact_block .contact_item .ms {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main_01);
  border-radius: 6px;
  min-width: 34px;
}
.home_cards .cards_wrapper .card_address .card_body .route_block a {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  align-items: center;
  color: #ffffff;
  background-color: var(--main);
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
}
.home_cards .cards_wrapper .card_address .card_body .route_block a:hover {
  color: var(--main);
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--main);
}

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