@font-face {
  font-family: "UND";
  src: url("../fonts/UND-Regular.eot");
  src: url("../fonts/UND-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/UND-Regular.woff2") format("woff2"), url("../fonts/UND-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Asar";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Asar-Regular.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --main-width: 1400px;
  --heading-font: UND;
  --body-font: Asar;
  --heading-size-xs: clamp(16px, 15px + 0.25vw, 18px);
  --heading-size-sm: clamp(18px, 16px + 0.5vw, 22px);
  --heading-size-md: clamp(20px, 16px + 1vw, 28px);
  --heading-size-lg: clamp(24px, 18px + 1.5vw, 36px);
  --heading-size-xl: clamp(28px, 20px + 2vw, 44px);
  --heading-size-ul: clamp(32px, 22px + 2.5vw, 52px);
  --body-size-xs: clamp(12px, 11px + 0.25vw, 14px);
  --body-size-sm: clamp(14px, 13px + 0.25vw, 16px);
  --body-size-md: clamp(16px, 15px + 0.25vw, 18px);
  --body-size-lg: clamp(18px, 17px + 0.25vw, 20px);
  --body-size-xl: clamp(20px, 18px + 0.5vw, 24px);
  --body-size-ul: clamp(28px, 24px + 1vw, 36px);
  --space-navbar: clamp(45px, 42.5px + 0.625vw, 50px);
  --space-xs: clamp(2.5px, 1.25px + 0.3125vw, 5px);
  --space-sm: clamp(5px, 2.5px + 0.625vw, 10px);
  --space-md: clamp(10px, 5px + 1.25vw, 20px);
  --space-lg: clamp(20px, 10px + 2.5vw, 40px);
  --space-xl: clamp(30px, 15px + 3.75vw, 60px);
  --space-ul: clamp(40px, 20px + 5vw, 80px);
  --color-white: #fdfdfd;
  --color-primary: #4473e9;
  --color-secondary: #0c318f;
  --blob-width: clamp(600px, 200px + 100vw, 1400px);
  --blob-width-half: calc(var(--blob-width) / 2);
  --blob-height: calc((var(--blob-width) * 147) / 127);
  --blob-height-half: calc(var(--blob-height) / 2);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  height: 100%;
  background: var(--color-white);
}

h1,
h3,
h4,
h5,
h6,
.text-heading-xs,
.text-heading-sm,
.text-heading-md,
.text-heading-lg,
.text-heading-xl,
.text-heading-ul {
  font-family: var(--heading-font);
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  h1,
  h3,
  h4,
  h5,
  h6,
  .text-heading-xs,
  .text-heading-sm,
  .text-heading-md,
  .text-heading-lg,
  .text-heading-xl,
  .text-heading-ul {
    line-height: 1.2;
  }
}

h1 {
  font-size: var(--heading-size-ul);
}

h2 {
  font-size: var(--body-size-sm);
  font-weight: 400;
}

h3 {
  font-size: var(--heading-size-lg);
}

h4 {
  font-size: var(--heading-size-md);
}

h5 {
  font-size: var(--heading-size-sm);
}

h6 {
  font-size: var(--heading-size-xs);
}

.text-heading-xs {
  font-size: var(--heading-size-xs);
}

.text-heading-sm {
  font-size: var(--heading-size-sm);
}

.text-heading-md {
  font-size: var(--heading-size-md);
}

.text-heading-lg {
  font-size: var(--heading-size-lg);
}

.text-heading-xl {
  font-size: var(--heading-size-xl);
}

.text-heading-ul {
  font-size: var(--heading-size-ul);
}

h2,
.text-body-xs,
.text-body-sm,
.text-body-md,
.text-body-lg,
.text-body-xl,
.text-body-ul {
  font-family: var(--body-font);
}

.text-body-xs {
  font-size: var(--body-size-xs);
}

.text-body-sm {
  font-size: var(--body-size-sm);
}

.text-body-md {
  font-size: var(--body-size-md);
}

.text-body-lg {
  font-size: var(--body-size-lg);
}

.text-body-xl {
  font-size: var(--body-size-xl);
}

.text-body-ul {
  font-size: var(--body-size-ul);
}

p,
ul,
ol,
a {
  font-size: var(--body-size-xl);
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

p {
  margin: 1em 0;
}
p:first-of-type {
  margin-top: unset;
}
p:last-of-type {
  margin-bottom: unset;
}

a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: all 0.1s linear;
}
a:not(.button):not(.big-button):hover {
  color: #0c318f;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

svg {
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

iframe {
  max-width: var(--main-width);
  margin: auto;
}

/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-top {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-bottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes fade-out-top {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes fade-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes fade-out-bottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--color-white);
  z-index: 5;
}
nav .nav-container {
  position: relative;
  width: 100%;
  max-width: var(--main-width);
  margin: auto;
  height: var(--space-navbar);
  padding: var(--space-xs) var(--space-md);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 var(--space-md);
}
nav .nav-container h5,
nav .nav-container p {
  line-height: 1;
  margin-top: 0.3rem;
  white-space: nowrap;
  hyphens: none;
}
nav .nav-container .svg-close,
nav .nav-container .svg-burger {
  display: block;
  stroke: var(--color-primary);
  cursor: pointer;
}
nav .nav-container .svg-close.hidden,
nav .nav-container .svg-burger.hidden {
  display: none;
}

.nav-head {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.nav-head .nav-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: calc(var(--space-navbar) - var(--space-xs) * 2);
}
@media screen and (max-width: 768px) {
  .nav-head .nav-buttons {
    height: calc(var(--space-navbar) - var(--space-sm) * 2);
  }
}
.nav-head .button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  height: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--space-ul);
  transition: all 0.1s linear;
}
.nav-head .button p {
  font-family: var(--heading-font);
  font-size: var(--heading-size-xs);
  color: var(--color-white);
}
.nav-head .button:hover {
  background-color: var(--color-secondary);
}

.nav-body {
  position: absolute;
  top: calc(var(--space-navbar) + var(--space-xs));
  right: 0;
  width: calc(42% - var(--space-md));
  height: 0;
  border-radius: var(--space-md);
  padding: 0 var(--space-md);
  background: var(--color-primary);
  transition: cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.2s;
  overflow: clip;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  text-align: left;
}
.nav-body.expanded {
  height: calc(100dvh - var(--space-navbar) - var(--space-xs) * 2);
  padding: var(--space-lg) var(--space-md);
}
.nav-body hr {
  width: 100%;
  color: var(--color-white);
}
.nav-body ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: safe;
  margin: 1em 0;
}
.nav-body ul p,
.nav-body ul a {
  font-family: var(--heading-font);
  font-size: var(--heading-size-md);
  line-height: 1.2;
  color: var(--color-white);
}
.nav-body ul p.active,
.nav-body ul a.active {
  color: #0c318f;
}
.nav-body ul li:first-child:nth-last-child(n+2) {
  margin-bottom: var(--space-md);
}
.nav-body ul:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 1024px) {
  .nav-body {
    width: calc(100% - var(--space-xs) * 2);
    margin: 0 var(--space-xs);
  }
}

header {
  position: relative;
  padding: 20px;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: unset;
  align-items: end;
  background: var(--color-primary);
}
header .blob-container {
  overflow: visible;
  z-index: 1;
}
header .blob-container svg {
  opacity: 0.05;
}
header svg {
  overflow: visible;
  stroke: unset;
  fill: var(--color-white);
}
header .header-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: clip;
}
header .teeth-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
header .teeth-container svg {
  display: block;
  width: 110%;
  max-height: unset;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -15%);
  opacity: 0.05;
}
header .teeth-container-background svg {
  fill: #4473e9;
}
@media screen and (orientation: portrait) {
  header {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
  }
  header svg:nth-child(2) {
    width: unset;
  }
}
header #lottie svg {
  display: block;
}
@media screen and (orientation: portrait) {
  header #lottie svg {
    transform: translate(102%, 4%) rotate(-90deg) !important;
    transform-origin: 0% 100%;
    width: 99dvh !important;
  }
}
header #lottie * {
  font-family: "UND";
  font-size: 64px;
  fill: #fdfdfd;
}

main {
  padding: 0 var(--space-md);
  margin: auto;
  width: 100%;
  max-width: var(--main-width);
}

section {
  position: relative;
  margin: var(--space-ul) 0;
  display: flex;
  flex-direction: column;
  gap: 0 var(--space-md);
}

.section-vh-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0 var(--space-md);
  height: calc(100dvh - var(--space-navbar) - var(--space-xs) - var(--space-ul));
  min-height: 800px;
}
@media screen and (max-width: 768px) {
  .section-vh-wrapper {
    height: unset;
    min-height: unset;
  }
}

.section-intro .section-vh-wrapper {
  height: calc(100dvh - var(--space-navbar) - var(--space-xs) - var(--space-ul) * 2);
  min-height: 600px;
}
@media screen and (max-width: 768px) {
  .section-intro .section-vh-wrapper {
    justify-content: end;
  }
  .section-intro .section-vh-wrapper .section-image {
    flex: unset;
    order: 2;
    margin-top: var(--space-xl) !important;
    margin-bottom: unset;
  }
}
.section-intro .section-image {
  margin: var(--space-xl) 0;
}
.section-intro .section-image:first-child {
  margin-top: unset;
}
.section-intro .section-image:last-child {
  margin-bottom: unset;
}
.section-intro .section-image:nth-child(2) {
  margin-top: var(--space-xl);
}

.section-preview-services .services-links {
  margin-top: var(--space-xl);
}
.section-preview-services .section-image {
  display: flex;
  justify-content: end;
  align-items: end;
  overflow: visible;
  position: absolute;
  width: calc(40% - var(--space-sm) / 4);
  height: auto;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .section-preview-services .section-image {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .section-preview-services .section-image {
    display: none;
  }
}
.section-preview-services .image-list {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .section-preview-services .image-list .image-container {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .section-preview-services .image-list .image-container.active {
    opacity: 1;
  }
  .section-preview-services .image-list li {
    display: none;
  }
  .section-preview-services .services-links li:hover ~ .section-image .image-list li {
    display: none;
  }
}
@media (hover: none) {
  .section-preview-services .image-list {
    aspect-ratio: unset;
  }
  .section-preview-services .image-list .image-container {
    position: relative;
    opacity: 1;
  }
  .section-preview-services .section-image {
    overflow: visible;
  }
}

.section-preview-about .section-link {
  align-self: center;
}

.section-contact .section-buttons {
  display: flex;
  margin: var(--space-xl) 0;
  gap: var(--space-ul);
  width: 60%;
  align-items: start;
  margin-bottom: unset;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .section-contact .section-buttons {
    width: 80%;
  }
}
@media screen and (max-width: 650px) {
  .section-contact .section-buttons {
    width: 100%;
    flex-direction: column;
    gap: var(--space-lg);
  }
}
.section-contact .section-link {
  margin: unset;
  width: unset;
}
.section-contact .big-button {
  font-family: var(--heading-font);
  font-size: var(--heading-size-md);
  text-align: center;
  padding: 0.8em 1em 0.6em;
  border-radius: var(--space-ul);
  flex-shrink: 0;
  background: #4473e9;
  color: #fdfdfd;
  hyphens: none;
}
.section-contact .big-button:hover {
  background: #0c318f;
}

.section-imprint {
  display: unset;
}
.section-imprint p {
  font-size: var(--body-size-md);
  margin: 1em 0;
}
.section-imprint p:last-child {
  margin-bottom: unset;
}

.section-privacy-policy li:first-child h5 {
  margin-top: unset;
}
.section-privacy-policy h5 {
  margin: 1em 0;
}
.section-privacy-policy p {
  font-size: var(--body-size-md);
  margin: 1em 0;
}

.section-text {
  width: calc(66% - var(--space-sm));
  grid-column: span 7;
}
.section-text.right {
  align-self: end;
}
@media screen and (max-width: 1024px) {
  .section-text {
    grid-column: span 9;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .section-text {
    grid-column: span 12;
    width: 100%;
  }
}
.section-text h1,
.section-text h2,
.section-text h3,
.section-text h4,
.section-text h5,
.section-text h6,
.section-text p,
.section-text ul {
  margin: var(--space-lg) 0;
}
.section-text h1:first-child,
.section-text h2:first-child,
.section-text h3:first-child,
.section-text h4:first-child,
.section-text h5:first-child,
.section-text h6:first-child,
.section-text p:first-child,
.section-text ul:first-child {
  margin-top: unset;
}
.section-text h1:last-child,
.section-text h2:last-child,
.section-text h3:last-child,
.section-text h4:last-child,
.section-text h5:last-child,
.section-text h6:last-child,
.section-text p:last-child,
.section-text ul:last-child {
  margin-bottom: unset;
}
.section-text ul a {
  line-height: 1.2;
  display: inline-block;
}

.section-image {
  overflow: hidden;
  margin: var(--space-xl) 0;
}
.section-image:nth-child(2) {
  margin-top: unset;
}
.section-image:last-child {
  margin-bottom: unset;
}
.section-image .image-container::after {
  left: 0;
}
.section-image.right .image-container {
  justify-content: end;
  text-align: right;
}
.section-image.right .image-container::after {
  right: 0;
}

.section-link {
  width: 30%;
  line-height: 1;
  margin-top: var(--space-ul);
}
.section-link a {
  word-break: unset;
  hyphens: unset;
}
.section-link:first-child {
  margin-top: unset;
}
.section-link:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 1024px) {
  .section-link {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .section-link {
    width: 70%;
  }
}

.section-subheading {
  margin: var(--space-ul) 0;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.image-container::after {
  content: attr(data-copyright);
  position: absolute;
  bottom: 0;
  padding: 1em 2em;
  color: var(--color-white);
  font-size: var(--body-size-xs);
  line-height: 1;
}
.image-container img {
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--space-md);
}
.image-container:hover .img-credits {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .image-container::after {
    padding: 0.8em 1em;
  }
}

.single-image-portrait {
  width: calc(33% - var(--space-sm) / 4);
  height: auto;
}
.single-image-portrait.right {
  align-self: end;
}
.single-image-portrait img {
  width: 100%;
}
@media screen and (max-width: 650px) {
  .single-image-portrait {
    width: 100%;
  }
}

.single-image-landscape {
  width: 66%;
}
.single-image-landscape.right {
  align-self: end;
}
.single-image-landscape img {
  width: 100%;
}
@media screen and (max-width: 650px) {
  .single-image-landscape {
    width: 100%;
  }
}

.single-image-left {
  align-self: start;
}

.single-image-right {
  align-self: end;
}

#praxis .gallery-wrapper {
  margin-top: var(--space-ul);
}

.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gallery-container {
  position: relative;
  width: 100%;
  display: flex;
  gap: var(--space-sm);
  aspect-ratio: 1360/596;
  overflow: hidden;
  height: auto;
}
.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 650px) {
  .gallery-container {
    aspect-ratio: 562/380;
  }
}

.gallery-container .div {
  position: relative;
  height: 100%;
  flex: 1;
}

.gallery-container-portrait {
  aspect-ratio: 1360/596;
}
@media screen and (max-width: 650px) {
  .gallery-container-portrait {
    aspect-ratio: 562/380;
  }
}

.gallery-container-landscape {
  aspect-ratio: 1360/306;
}
@media screen and (max-width: 650px) {
  .gallery-container-landscape {
    aspect-ratio: 1360/417;
  }
}

.gallery-container-left {
  flex-direction: row;
}

.gallery-container-right {
  flex-direction: row-reverse;
}

@media screen and (max-width: 650px) {
  .placeholder-image {
    display: none;
  }
}
.profile-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-ul);
}

.profile-container {
  display: flex;
  align-items: start;
  gap: var(--space-lg);
}
.profile-container.profile-container-wo-image {
  justify-content: center;
}
.profile-container .profile-text {
  margin-top: var(--space-lg);
  max-width: 900px;
}
.profile-container .profile-text p {
  font-size: var(--body-size-xl);
}
.profile-container .image-container {
  flex-shrink: 0;
}
.profile-container:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 650px) {
  .profile-container {
    flex-direction: column !important;
  }
}

.services-section:nth-child(2n) .service-container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .services-section .service-container {
    flex-direction: column-reverse !important;
  }
}

.service-container {
  display: flex;
  align-items: start;
  gap: var(--space-lg);
}
.service-container .image-container {
  flex-shrink: 0;
}
.service-container .service-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.service-container ul {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: var(--space-lg) var(--space-md);
}
.service-container ul::after {
  content: "";
  flex-grow: 1000000000;
}
.service-container ul li {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
  flex-basis: 48%;
  flex-grow: 1;
}
@media screen and (max-width: 650px) {
  .service-container ul li {
    flex-basis: 100%;
  }
  .service-container ul::after {
    content: "";
    flex-grow: unset;
  }
}
@media screen and (max-width: 768px) {
  .service-container {
    flex-direction: column-reverse !important;
  }
  .service-container .image-container {
    width: 100%;
  }
}

.faq-wrapper {
  width: 60%;
  margin: auto;
}
.faq-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
@media screen and (max-width: 650px) {
  .faq-wrapper {
    width: 100%;
  }
}

.faq-block {
  display: flex;
  gap: var(--space-md);
}

.icon-container {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.icon-container svg {
  width: 100%;
  height: 100%;
}

footer {
  min-height: 80vh;
  background: var(--color-primary);
  border-radius: var(--space-lg) var(--space-lg) 0 0;
  margin: auto;
  max-width: var(--main-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: var(--space-xl) var(--space-lg);
  padding-bottom: var(--space-lg);
}
@media screen and (max-width: 1440px) {
  footer {
    width: calc(100% - var(--space-sm) * 2);
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
  }
}
footer h3,
footer h4,
footer h5,
footer a,
footer p {
  color: var(--color-white);
}
footer a:hover {
  color: var(--color-secondary);
}
footer .footer-head h3 {
  text-transform: capitalize;
}
footer .footer-body {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  margin: var(--space-ul) 0;
  gap: var(--space-ul);
}
footer .footer-body div {
  flex-basis: 50%;
}
footer .footer-body div p {
  margin: 1em 0;
}
footer .footer-body div p:first-child {
  margin-top: unset;
}
footer .footer-body div p:last-child {
  margin-bottom: unset;
}
footer .footer-body strong,
footer .footer-body h4 {
  color: white;
}
footer .footer-body strong {
  font-size: inherit;
}
footer .footer-body .opening-hours {
  max-width: 800px;
}
footer .footer-body .footer-illu {
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  footer .footer-body {
    flex-direction: column-reverse;
  }
  footer .footer-body div {
    width: 100%;
  }
  footer .footer-body .footer-illu {
    width: 100%;
    max-width: 500px;
  }
}
footer .footer-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
footer .footer-footer svg {
  width: 50%;
  stroke: unset;
  max-width: 800px;
}
footer .footer-footer .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 1em;
  margin-bottom: -0.5rem;
}
@media screen and (max-width: 860px) {
  footer .footer-footer {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    gap: var(--space-ul);
  }
  footer .footer-footer svg {
    width: 100%;
  }
  footer .footer-footer .footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    flex-wrap: wrap;
    gap: 0.5em;
  }
}

.loader {
  background-color: #fdfdfd;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation-name: none;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  display: none;
}

.section-contact-details h2,
.section-contact-details p {
  word-break: keep-all;
  hyphens: none;
}

.section-contact-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.section-contact-details-wrapper .section-contact-details-element {
  width: 100%;
}
.section-contact-details-wrapper .section-contact-details-element p {
  color: var(--color-primary);
  font-size: var(--body-size-xl);
}
.section-contact-details-wrapper .contact-info p {
  font-size: var(--body-size-xl);
}
.section-contact-details-wrapper .section-contact-details-element:has(.contact-info) {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.section-contact-details-wrapper .opening-hours {
  max-width: 100%;
  background: var(--color-primary);
  border-radius: var(--space-lg);
  padding: var(--space-lg) var(--space-lg);
}
.section-contact-details-wrapper .opening-hours h3,
.section-contact-details-wrapper .opening-hours h4,
.section-contact-details-wrapper .opening-hours h5,
.section-contact-details-wrapper .opening-hours p {
  color: var(--color-white);
}
.section-contact-details-wrapper .opening-hours p {
  max-width: 800px;
  margin: 1em 0;
}
.section-contact-details-wrapper .opening-hours p:first-child {
  margin-top: unset;
}
.section-contact-details-wrapper .opening-hours p:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 1440px) {
  .section-contact-details-wrapper .opening-hours {
    max-width: 100%;
    margin: unset;
  }
}

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob-container-home {
  top: 100dvh;
  height: calc(100% - 100dvh);
}

.blob {
  position: relative;
  z-index: -1;
  background: unset !important;
  aspect-ratio: unset !important;
  width: var(--blob-width);
  overflow: visible;
  stroke: unset;
  fill: #4473e9;
  opacity: 0.05;
}

header .blob {
  opacity: var(--progress);
  width: var(--blob-width);
}
header .blob:nth-of-type(1) {
  top: calc(46% - var(--blob-height-half));
  left: calc(98% - var(--blob-width-half));
}
header .blob:nth-of-type(2) {
  top: calc(-8% - var(--blob-height-half));
  left: calc(34% - var(--blob-width-half));
}
header .blob:nth-of-type(3) {
  top: calc(97% - var(--blob-height-half));
  left: calc(15% - var(--blob-width-half));
}

.section-divider {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-ul);
}
.section-divider h2 {
  white-space: nowrap;
}
.section-divider hr {
  flex-grow: 1;
  height: 1px;
  border-width: 1px;
  border: 1px solid #4473E9;
}

.collapsible .collapsible-content {
  height: 0;
  overflow: hidden;
  transition: 0.2s;
}
.collapsible .collapsible-button {
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.collapsible .collapsible-button:hover {
  color: #0c318f;
}
.collapsible .collapsible-button:hover .arrow-icon {
  stroke: #0c318f;
}
.collapsible .collapsible-button .arrow-icon {
  stroke: #4473e9;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}
.collapsible .collapsible-button .arrow-icon:hover {
  stroke: #0c318f;
}
.collapsible .icon-container:hover,
.collapsible .icon-container:hover ~ div .collapsible-button {
  color: #0c318f;
}
.collapsible .icon-container:hover .arrow-icon {
  stroke: #0c318f;
}

.collapsible.active .collapsible-button svg {
  transform: rotate(180deg);
}

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