/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}
/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/* =======================
	Variables
	======================= */
/* =======================
	Reset
	======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
:focus:not(:focus-visible) {
  outline: none;
}
:focus:focus-visible {
  outline: 2px solid #62654e;
}
:root {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
hr {
  border: none;
  height: 1px;
  background-color: currentColor;
}
address {
  font-style: normal;
}
th,
td {
  text-align: left;
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/cormorant-garamond-v19-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/cormorant-garamond-v19-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/cormorant-garamond-v19-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/cormorant-garamond-v19-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* great-vibes-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/great-vibes-v19-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* =======================
	Base
	======================= */
:root {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  font-size: clamp(20px, 1.66vw, 24px);
  text-rendering: geometricPrecision;
  scrollbar-gutter: stable;
  text-underline-position: under;
  background: #f6eee1;
  color: #2d2d2d;
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 3rem;
}
h1,
.heading-1,
h2,
.heading-2,
h3,
.heading-3,
.m-progress__sticky-title,
h4,
.heading-4,
h5,
.heading-5 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
}
h1:first-child,
.heading-1:first-child,
h2:first-child,
.heading-2:first-child,
h3:first-child,
.heading-3:first-child,
.m-progress__sticky-title:first-child,
h4:first-child,
.heading-4:first-child,
h5:first-child,
.heading-5:first-child {
  margin-top: 0;
}
h1:last-child,
.heading-1:last-child,
h2:last-child,
.heading-2:last-child,
h3:last-child,
.heading-3:last-child,
.m-progress__sticky-title:last-child,
h4:last-child,
.heading-4:last-child,
h5:last-child,
.heading-5:last-child {
  margin-bottom: 0;
}
h1 + h1, h1 + .heading-1, h1 + h2, h1 + .heading-2, h1 + h3, h1 + .heading-3, h1 + .m-progress__sticky-title, h1 + h4, h1 + .heading-4, h1 + h5, h1 + .heading-5,
.heading-1 + h1,
.heading-1 + .heading-1,
.heading-1 + h2,
.heading-1 + .heading-2,
.heading-1 + h3,
.heading-1 + .heading-3,
.heading-1 + .m-progress__sticky-title,
.heading-1 + h4,
.heading-1 + .heading-4,
.heading-1 + h5,
.heading-1 + .heading-5,
h2 + h1,
h2 + .heading-1,
h2 + h2,
h2 + .heading-2,
h2 + h3,
h2 + .heading-3,
h2 + .m-progress__sticky-title,
h2 + h4,
h2 + .heading-4,
h2 + h5,
h2 + .heading-5,
.heading-2 + h1,
.heading-2 + .heading-1,
.heading-2 + h2,
.heading-2 + .heading-2,
.heading-2 + h3,
.heading-2 + .heading-3,
.heading-2 + .m-progress__sticky-title,
.heading-2 + h4,
.heading-2 + .heading-4,
.heading-2 + h5,
.heading-2 + .heading-5,
h3 + h1,
h3 + .heading-1,
h3 + h2,
h3 + .heading-2,
h3 + h3,
h3 + .heading-3,
h3 + .m-progress__sticky-title,
h3 + h4,
h3 + .heading-4,
h3 + h5,
h3 + .heading-5,
.heading-3 + h1,
.m-progress__sticky-title + h1,
.heading-3 + .heading-1,
.m-progress__sticky-title + .heading-1,
.heading-3 + h2,
.m-progress__sticky-title + h2,
.heading-3 + .heading-2,
.m-progress__sticky-title + .heading-2,
.heading-3 + h3,
.m-progress__sticky-title + h3,
.heading-3 + .heading-3,
.m-progress__sticky-title + .heading-3,
.heading-3 + .m-progress__sticky-title,
.m-progress__sticky-title + .m-progress__sticky-title,
.heading-3 + h4,
.m-progress__sticky-title + h4,
.heading-3 + .heading-4,
.m-progress__sticky-title + .heading-4,
.heading-3 + h5,
.m-progress__sticky-title + h5,
.heading-3 + .heading-5,
.m-progress__sticky-title + .heading-5,
h4 + h1,
h4 + .heading-1,
h4 + h2,
h4 + .heading-2,
h4 + h3,
h4 + .heading-3,
h4 + .m-progress__sticky-title,
h4 + h4,
h4 + .heading-4,
h4 + h5,
h4 + .heading-5,
.heading-4 + h1,
.heading-4 + .heading-1,
.heading-4 + h2,
.heading-4 + .heading-2,
.heading-4 + h3,
.heading-4 + .heading-3,
.heading-4 + .m-progress__sticky-title,
.heading-4 + h4,
.heading-4 + .heading-4,
.heading-4 + h5,
.heading-4 + .heading-5,
h5 + h1,
h5 + .heading-1,
h5 + h2,
h5 + .heading-2,
h5 + h3,
h5 + .heading-3,
h5 + .m-progress__sticky-title,
h5 + h4,
h5 + .heading-4,
h5 + h5,
h5 + .heading-5,
.heading-5 + h1,
.heading-5 + .heading-1,
.heading-5 + h2,
.heading-5 + .heading-2,
.heading-5 + h3,
.heading-5 + .heading-3,
.heading-5 + .m-progress__sticky-title,
.heading-5 + h4,
.heading-5 + .heading-4,
.heading-5 + h5,
.heading-5 + .heading-5 {
  margin-top: 1em;
}
h1,
.heading-1 {
  font-size: 2.5rem;
}
h2,
.heading-2 {
  font-size: 2rem;
}
h3,
.heading-3,
.m-progress__sticky-title {
  font-size: 1.5rem;
}
p,
ul,
ol {
  margin-bottom: 1rem;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
ul,
ol {
  padding-left: 1rem;
}
nav ul,
nav ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
strong,
b {
  font-weight: bold;
}
a {
  color: currentColor;
}
nav a {
  text-decoration: none;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
  border: none;
}
figure {
  font-size: 0;
}
figcaption {
  margin-top: 1rem;
  font-size: 1rem;
}
hr {
  border: none;
  border-bottom: 1px solid;
}
input,
textarea,
select,
button {
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  background-color: transparent;
}
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=password],
input[type=submit],
input[type=time],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #e1d4c7;
  padding: 0.5rem;
  font-size: max(16px, 0.8rem);
  height: 2rem;
  color: #2d2d2d;
  text-align: left;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=submit]::-moz-placeholder, input[type=time]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=password]::placeholder,
input[type=submit]::placeholder,
input[type=time]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
input[type=checkbox],
input[type=radio] {
  margin-right: 0.25rem;
}
textarea {
  height: 7rem;
  resize: vertical;
}
::-webkit-input-placeholder {
  color: currentColor;
}
::-moz-placeholder {
  color: currentColor;
}
:-ms-input-placeholder {
  color: currentColor;
}
:-moz-placeholder {
  color: currentColor;
}
fieldset {
  border: none;
}
button,
input[type=submit],
input[type=file]::file-selector-button,
.m-button {
  text-rendering: geometricPrecision;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  leading-trim: both;
}
/* =======================
	Utilities
	======================= */
.u-grid {
  display: grid;
  gap: 5rem 2.5rem;
}
.u-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .u-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .u-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid__item--2-3 {
  grid-column: span 2;
}
@media screen and (max-width: 840px) {
  .u-grid__item--2-3 {
    grid-column: span 1;
  }
}
.u-limiter {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 11fr) minmax(0, 0.5fr);
  grid-template-areas: ". content .";
}
.u-limiter__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  grid-area: content;
}
.u-section {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.u-section--padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.u-section--padding-bottom {
  padding-bottom: 7rem;
}
.u-center {
  text-align: center;
}
.u-text {
  max-width: 80ch;
}
.u-lead {
  font-weight: 700;
}
.u-big {
  font-size: 1.5rem;
  text-wrap: balance;
}
.u-error {
  font-weight: 700;
  color: #4c4f3b;
}
/* =======================
	Layouts
	======================= */
.l-body {
  overflow-x: clip;
}
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
  padding-top: 3.5rem;
  position: relative;
  background-color: #d1c6b8;
  color: #2d2d2d;
  margin-top: 7rem;
  overflow-x: clip;
}
.l-footer--login {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
}
.l-footer__text {
  text-align: center;
  align-self: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.9;
}
@media screen and (max-width: 840px) {
  .l-footer__text {
    font-size: 1.5rem;
    padding: 0 2rem;
  }
}
.l-footer__line {
  display: block;
}
.l-footer__divider {
  display: block;
  position: relative;
  width: 2.5rem;
  height: 1px;
  margin: 1rem auto;
  background: currentColor;
  opacity: 0.35;
}
.l-footer__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 840px) {
  .l-footer__divider {
    margin: 0.75rem auto;
  }
}
.l-footer .l-footer__silhouette {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .l-footer .l-footer__silhouette {
    width: 200%;
    max-width: 200%;
  }
}
.l-footer .l-footer__silhouette--back {
  color: #e1d4c7;
  transform-origin: 50% 100%;
  transform: translate(-50%, -98%) scaleX(-1) scale(1.35);
}
.l-footer .l-footer__silhouette--front {
  color: #d1c6b8;
  transform: translate(-50%, -98%);
}
/* =======================
	Modules
	======================= */
.m-skip {
  position: absolute;
  z-index: 11;
  padding: 0.25rem;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.m-skip:focus {
  opacity: 1;
  pointer-events: auto;
}
.m-hamburger {
  flex-shrink: 0;
  width: 1rem;
  color: currentColor;
}
.m-hamburger.is-clicked rect {
  transform: scaleX(0);
}
.m-hamburger.is-clicked rect:first-child {
  transform: translateY(0) rotate(45deg);
}
.m-hamburger.is-clicked rect:last-child {
  transform: translateY(0) rotate(-45deg);
}
.m-hamburger svg {
  width: 1.5rem;
  color: currentColor;
}
.m-hamburger rect {
  fill: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}
.m-hamburger rect:not(:first-child):not(:last-child) {
  transform-origin: left;
}
.m-hamburger rect:first-child {
  transform: translateY(-10px);
}
.m-hamburger rect:last-child {
  transform: translateY(10px);
}
.m-nav-bar {
  position: fixed;
  z-index: 10;
  font-size: 1.25rem;
  font-weight: 700;
  bottom: 0.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.25s ease-in-out;
}
@media screen and (max-width: 840px) {
  .m-nav-bar {
    align-items: end;
  }
}
.m-nav-bar__trigger {
  background: #62654e;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  height: 2rem;
  color: white;
  transition: background 0.25s ease-in-out;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.25);
}
@media (hover: hover) {
  .m-nav-bar__trigger:hover {
    background: #4c4f3b;
  }
}
.m-nav-bar.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.m-nav__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #62654e;
  padding: 0 0.5rem;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.25);
}
.m-nav__list {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 840px) {
  .m-nav__list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
.m-nav__list-item {
  display: flex;
  position: relative;
}
.m-nav__list-item-link {
  font-size: 0.8rem;
  padding-block: 0.5rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.25s ease-in-out;
  text-transform: uppercase;
}
.m-nav__list-item-link:hover {
  text-decoration-color: currentColor;
}
.m-accordion {
  border-bottom: 1px solid #f6eee1;
}
.m-accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 840px) {
  .m-accordion__head {
    font-size: 1.25rem;
  }
}
.m-accordion__head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-accordion__icon {
  color: #ffffff;
  flex-shrink: 0;
  width: 1rem;
}
.m-accordion__icon .m-line {
  transition: opacity 0.25s ease-in-out;
}
[open] .m-accordion__icon .m-line {
  opacity: 0;
}
.m-accordion__body {
  padding: 0 0.5rem 1rem;
}
.m-button {
  display: inline-flex;
  justify-content: center;
  background: #62654e;
  text-decoration: none;
  align-items: center;
  color: #ffffff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.m-button:hover {
  background: #4c4f3b;
}
@media screen and (min-width: 840px) {
  .m-button--small {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
}
.m-overlaying-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.m-overlaying-link__parent {
  position: relative;
}
.m-overlaying-link__parent a:not(.m-overlaying-link) {
  position: relative;
  z-index: 2;
}
.m-header-image {
  width: 100%;
}
@media screen and (max-width: 840px) {
  .m-header-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.m-header-image__names {
  position: absolute;
  top: 13%;
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.3rem;
  margin-bottom: 0;
  color: #f6eee1;
}
@media screen and (max-width: 840px) {
  .m-header-image__names {
    top: 16%;
  }
}
.m-header-image__overlay {
  width: 100%;
}
@media screen and (max-width: 840px) {
  .m-header-image__overlay {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.m-header-image__overlay-wrapper {
  position: absolute;
  inset: 0;
  z-index: 12;
}
@media screen and (max-width: 840px) {
  .m-header-image__overlay-wrapper {
    height: 100vh;
    height: 100svh;
  }
}
.m-header-image__date {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  width: 100vw;
  text-align: center;
  font-size: 25vw;
  line-height: 1;
  white-space: nowrap;
  color: #f6eee1;
}
.m-header-image__wrapper {
  z-index: 10;
  position: relative;
  overflow: hidden;
  max-height: 100lvh;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .m-header-image__wrapper {
    height: 100vh;
    height: 100svh;
  }
}
.m-header-image__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 11;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media screen and (max-width: 840px) {
  .m-header-image__wrapper::before {
    height: 50%;
  }
}
.m-header-image__wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 13;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.m-header-image__title {
  font-family: "Great Vibes", cursive;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: -0.5rem;
  text-shadow: 0 0 4rem rgb(0, 0, 0);
}
.m-header-image__headline {
  margin-bottom: 0rem;
  text-align: center;
  margin-top: 0;
  font-size: 3.5rem;
  width: 40rem;
  text-shadow: 0 0 4rem rgb(0, 0, 0);
}
.m-header-image__headline-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.m-header-image__headline-wrapper::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400%;
  height: 400%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}
.m-header-image__sub-headline {
  text-align: center;
  margin-top: 0 !important;
  font-size: 2rem;
  text-shadow: 0 0 4rem rgb(0, 0, 0);
}
.m-silhouette {
  position: relative;
  width: 100%;
  margin-bottom: -2px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .m-silhouette {
    width: 200%;
    max-width: 200%;
    transform: translateX(-25%);
  }
}
.m-silhouette-wrapper {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: #d1c6b8;
  padding-bottom: 1rem;
  transition: transform 0.25s ease-in-out;
}
@media screen and (max-width: 840px) {
  .m-silhouette-wrapper {
    overflow: clip;
  }
}
.m-silhouette-wrapper.is-scrolled {
  transform: translateY(2rem);
}
.m-silhouette-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: currentColor;
  height: 1.5rem;
  z-index: -1;
}
.m-intro {
  position: relative;
  z-index: 1;
}
.m-trauzeugen {
  gap: 0.5rem;
}
.m-trauzeugen__wrapper {
  position: relative;
}
.m-trauzeugen__wrapper .m-big-title__wrapper {
  position: sticky;
  align-self: start;
  top: 3rem;
}
@media screen and (max-width: 840px) {
  .m-trauzeugen__wrapper .m-big-title__wrapper {
    position: relative;
    top: unset;
  }
}
.m-trauzeugen__image {
  flex-shrink: 0;
  width: 13rem;
}
@media screen and (max-width: 840px) {
  .m-trauzeugen__image {
    width: 100%;
  }
}
.m-trauzeugen__name {
  width: 100%;
  margin-bottom: 0;
  word-break: break-word;
  text-wrap: balance;
}
.m-trauzeugen__content {
  width: 100%;
  flex-shrink: 1;
}
.m-trauzeugen__item {
  max-width: 100%;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .m-trauzeugen__item {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.m-trauzeugen__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 840px) {
  .m-trauzeugen__list {
    gap: 2.5rem;
  }
}
.m-trauzeugen__image-wrapper {
  position: relative;
}
.m-trauzeugen__image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.m-trauzeugen__image-container {
  position: relative;
}
.m-trauzeugen__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #e1d4c7;
}
.m-centered__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
.m-centered__title p {
  text-wrap: balance;
  max-width: 35rem;
}
.m-location__image-wrapper {
  gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .m-location__image-wrapper {
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.m-map {
  height: 30rem;
}
.m-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.m-login__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100svh;
}
.m-login__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.m-login__input {
  text-align: center;
}
.m-login__title {
  margin-bottom: 0;
}
.m-time-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}
.m-time-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.m-time-table::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(45, 45, 45, 0.3);
  height: 100%;
}
.m-time-table__entry {
  position: relative;
  height: 4rem;
  width: calc(50% - 5rem);
}
.m-time-table__entry:last-child {
  height: unset;
}
.m-time-table__entry-inner {
  padding: 1.5rem;
  background: #e1d4c7;
}
.m-time-table__entry::before {
  content: "";
  position: absolute;
  top: 3rem;
  width: 5rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.m-time-table__entry:nth-child(odd) {
  right: 0;
  align-self: start;
}
.m-time-table__entry:nth-child(odd) .m-time-table__header {
  flex-direction: row-reverse;
}
.m-time-table__entry:nth-child(odd)::before {
  right: 0;
  transform: translateX(100%) translateY(-50%);
}
.m-time-table__entry:nth-child(even) {
  right: 0;
  align-self: end;
}
.m-time-table__entry:nth-child(even)::before {
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}
.m-time-table__entry .heading-2, .m-time-table__entry .heading-3, .m-time-table__entry .m-progress__sticky-title, .m-time-table__entry h3 {
  margin-bottom: 0;
  margin-top: 0;
}
.m-time-table__icon {
  width: 1rem;
  height: 1rem;
}
.m-form {
  scroll-margin-top: 30rem;
}
.m-form__radio-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  margin: 1rem 0;
}
@media screen and (max-width: 840px) {
  .m-form__radio-wrapper {
    gap: 1rem;
  }
}
.m-form__cloudlfare {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .m-form__cloudlfare {
    justify-content: flex-start;
  }
}
.m-form__spacer {
  padding-left: 1.5rem;
}
.m-form__field {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.m-form__field:has(input[type=checkbox]) {
  padding-left: 1.25rem;
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.m-form__field:has(input[type=checkbox]) label {
  margin: 0;
}
.m-form__field-wrapper:has(input[type=text],
input[type=email],
input[type=file],
input[type=tel],
input[type=date],
textarea) label {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.m-form__field-wrapper:has(input[type=text],
input[type=email],
input[type=file],
input[type=tel],
input[type=date],
textarea):not(:has(:-moz-placeholder)) label {
  opacity: 1;
}
.m-form__field-wrapper:has(input[type=text],
input[type=email],
input[type=file],
input[type=tel],
input[type=date],
textarea):not(:has(:placeholder-shown)) label {
  opacity: 1;
}
.m-form__error {
  color: red;
  font-size: max(0.75rem, 16px);
  margin-bottom: 0.4rem;
}
.m-form__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}
@media screen and (max-width: 840px) {
  .m-form__wrapper {
    gap: 0.5rem;
  }
}
.m-form__wrapper.is-hidden {
  display: none;
}
.m-form__success {
  scroll-margin: 20rem;
}
.m-form__success.is-hidden {
  display: none;
}
.m-form__success h3 {
  margin-bottom: 1rem;
}
.m-form .is-grid-100 {
  grid-column: span 2;
}
.m-form .is-grid-50 {
  grid-column: span 1;
}
@media screen and (max-width: 840px) {
  .m-form .is-grid-50 {
    grid-column: span 2;
  }
}
.m-form__instructions {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.m-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.025;
  transform: scale(1.2);
}
.m-progress {
  height: 500vh;
}
@media screen and (max-width: 840px) {
  .m-progress {
    height: 700vh;
  }
}
.m-progress__mobile-title {
  display: none;
}
@media screen and (max-width: 840px) {
  .m-progress__mobile-title {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}
.m-progress__swiper {
  display: none;
  overflow: visible;
  position: absolute;
  left: 5%;
  top: 53%;
  width: 90%;
}
@media screen and (max-width: 840px) {
  .m-progress__swiper {
    display: flex;
  }
}
.m-progress__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100lvh;
  width: 100%;
  overflow-x: clip;
}
.m-progress__info-wrapper {
  position: absolute;
  flex-wrap: wrap;
  top: 30%;
  right: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  z-index: 9;
}
@media screen and (max-width: 840px) {
  .m-progress__info-wrapper {
    display: none;
  }
}
.m-progress__sticky-title {
  position: absolute;
  top: 10%;
  left: 50%;
  text-align: center;
  width: 100%;
  transform: translateX(-50%);
  margin-top: 0;
}
@media screen and (max-width: 840px) {
  .m-progress__sticky-title {
    display: none;
  }
}
.m-progress__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 1rem;
  flex-shrink: 0;
  background: #ffffff;
  transform-origin: center bottom;
}
@media screen and (max-width: 840px) {
  .m-progress__item {
    font-size: 1.1rem;
  }
}
.m-progress__item-header {
  display: flex;
  font-weight: 700;
  font-size: 1rem;
  gap: 0.5rem;
}
@media screen and (max-width: 840px) {
  .m-progress__item-header {
    font-size: 1.2rem;
  }
}
.m-progress__item--enter {
  transition: opacity 0.55s ease-out, transform 0.55s cubic-bezier(0.33, 1.15, 0.4, 1);
}
.m-progress__item--enter:nth-child(4n+2) {
  transition-delay: 70ms;
}
.m-progress__item--enter:nth-child(4n+3) {
  transition-delay: 140ms;
}
.m-progress__item--enter:nth-child(4n+4) {
  transition-delay: 210ms;
}
.m-progress__item--enter-start {
  opacity: 0;
  transform: translateY(2.5rem) scale(0.7) rotate(-6deg);
}
.m-progress__item--enter-start:nth-child(even) {
  transform: translateY(2.5rem) scale(0.7) rotate(6deg);
}
.m-progress__item--enter-end {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}
.m-progress__item--leave {
  transition: opacity 0.35s ease-in-out, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.m-progress__item--leave-start {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.m-progress__item--leave-end {
  opacity: 0;
  transform: translateY(-0.75rem) scale(0.92);
}
.m-progress__scroll {
  display: none;
  position: absolute;
  bottom: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .m-progress__scroll {
    display: flex;
  }
}
.m-progress__clouds {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.m-progress__clouds--behind {
  z-index: 4;
}
.m-progress__clouds--front {
  z-index: 7;
}
.m-progress__cloud {
  position: absolute;
  will-change: transform;
  filter: drop-shadow(0 8px 20px rgba(45, 45, 45, 0.12)) drop-shadow(0 1px 6px rgba(45, 45, 45, 0.08));
  top: 0;
  width: 50vw;
}
.m-progress__cloud--1 {
  opacity: 0.75;
}
.m-progress__cloud--2 {
  opacity: 0.85;
}
.m-progress__cloud--3 {
  opacity: 1;
}
@media screen and (max-width: 840px) {
  .m-progress__cloud {
    width: 75vw;
  }
}
.m-cable-car__icon {
  flex-shrink: 0;
  transform: translate(-14%, -16.25%);
  width: min(8.5vw, 10rem);
  color: #2d2d2d;
  will-change: top, left;
}
@media screen and (max-width: 840px) {
  .m-cable-car__icon {
    width: max(21vw, 5.5rem);
  }
}
.m-cable-car__icon-wrapper {
  position: absolute;
}
.m-cable-car__wrapper {
  z-index: 6;
  position: absolute;
  overflow: clip;
  inset: 0;
  height: 100vh;
  height: 100lvh;
  width: 100vw;
}
.m-cable-car__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.m-cable-car__line--desktop {
  display: block;
}
@media screen and (max-width: 840px) {
  .m-cable-car__line--desktop {
    display: none;
  }
}
.m-cable-car__line--mobile {
  display: block;
}
@media screen and (min-width: 841px) {
  .m-cable-car__line--mobile {
    display: none;
  }
}
.m-big-title {
  text-transform: uppercase;
  font-size: 5.5rem;
  line-height: 0.9;
  letter-spacing: -0.3rem;
  margin-bottom: 0;
}
@media screen and (max-width: 840px) {
  .m-big-title {
    font-size: 3rem;
    letter-spacing: -0.2rem;
    text-align: center;
  }
}
.m-big-title--small {
  font-size: 2.5rem;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 840px) {
  .m-big-title--small {
    font-size: 2rem;
  }
}
.m-big-title__grid {
  display: grid;
  grid-template-columns: 23rem minmax(0, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 840px) {
  .m-big-title__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.m-big-title__grid.is-small {
  grid-template-columns: 19rem minmax(0, 1fr);
}
@media screen and (max-width: 840px) {
  .m-big-title__grid.is-small {
    grid-template-columns: minmax(0, 1fr);
  }
}
.m-big-title__grid--reverse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23rem;
  gap: 1.5rem;
}
.m-big-title__grid--reverse.is-small {
  grid-template-columns: minmax(0, 1fr) 19rem;
}
.m-big-title__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-big-title__wrapper p {
  text-wrap: balance;
}
@media screen and (max-width: 840px) {
  .m-big-title__wrapper p {
    text-align: center;
  }
}
.m-dates__image-wrapper {
  font-size: 0;
  position: relative;
}
.m-dates__image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.m-dates .m-big-title__wrapper {
  align-self: center;
}
.m-dates__date {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(0.2rem);
  font-size: 25cqw;
  text-align: center;
  color: #f6eee1;
  text-transform: uppercase;
}
.m-dates__text {
  font-size: 1.25rem;
  font-weight: 600;
}
.m-dates__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 840px) {
  .m-dates__content {
    flex-direction: column;
  }
}
.m-dates__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  container-type: inline-size;
}
.m-dates__image {
  width: 100%;
}
.m-cart {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem;
  position: sticky;
  max-height: calc(100vh - 4rem);
  max-height: calc(100svh - 4rem);
  height: -moz-max-content;
  height: max-content;
  top: 2rem;
  overflow-y: auto;
}
@media screen and (max-width: 840px) {
  .m-cart {
    bottom: 0.5rem;
    z-index: 10;
  }
}
.m-cart__mobile-total {
  display: none;
}
@media screen and (max-width: 840px) {
  .m-cart__mobile-total {
    display: inline-block;
    background: #62654e;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    margin-left: 1rem;
  }
}
.m-cart__error {
  font-size: 0.8rem;
  color: #db1414;
}
.m-cart__title {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 840px) {
  .m-cart__title {
    font-size: 1.2rem;
    display: flex;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
}
.m-cart__plus {
  color: #2d2d2d;
  width: 1rem;
}
.open .m-cart__plus .m-line {
  opacity: 0;
}
@media screen and (min-width: 841px) {
  .m-cart__plus {
    display: none;
  }
}
.m-cart__list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  overflow: auto;
}
@media screen and (max-width: 840px) {
  .m-cart__list {
    margin-top: 0.5rem;
  }
}
.m-cart__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #d1c6b8;
}
.m-cart__item span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.m-cart__item b {
  font-size: 1rem;
}
.m-cart__send {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.m-cart__send input {
  background: #f6eee1;
}
.m-cart__remove {
  display: flex;
  flex-shrink: 0;
}
.m-cart__remove-icon {
  color: #2d2d2d;
  width: 1rem;
}
.m-gift-selection__full {
  margin-top: 0.5rem;
}
.m-gift-selection__progress {
  position: relative;
  width: 100%;
  height: 0.125rem;
  background: white;
}
.m-gift-selection__progress-wrapper {
  width: 100%;
}
.m-gift-selection__progress-indicator {
  font-size: 0.8rem;
  transform: translateX(-50%);
  margin-bottom: 0.25rem;
  width: -moz-max-content;
  width: max-content;
  margin-left: var(--progress);
  transition: margin 0.25s ease-in-out;
}
.m-gift-selection__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  max-width: var(--progress);
  transition: max-width 0.25s ease-in-out;
  background: #2d2d2d;
  position: absolute;
  top: 0;
  left: 0;
}
.m-gift-selection__progress-pin {
  display: block;
  height: 300%;
  width: 2px;
  background: #2d2d2d;
  position: absolute;
  top: -100%;
  left: var(--progress);
  transition: left 0.25s ease-in-out;
}
.m-gift-selection__tag {
  display: none;
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  transform-origin: center;
  background: #62654e;
  color: white;
  padding: 0.25rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__tag {
    font-size: 1.2rem;
    padding: 0.5rem 0.75rem;
  }
}
.gifted .m-gift-selection__tag {
  display: block;
}
.m-gift-selection__card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f6eee1;
  transition: opacity 0.25s ease-in-out;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__card {
    flex-direction: column;
  }
}
.m-gift-selection__content {
  height: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  padding-block: 0.5rem;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__content {
    width: 100%;
    padding: 0 2rem;
    text-align: center;
  }
}
.m-gift-selection__stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.m-gift-selection__stats p {
  margin-bottom: 0;
}
.m-gift-selection__actions-wrapper {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.5rem;
}
.m-gift-selection__actions-wrapper.one-col {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .m-gift-selection__actions-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}
.m-gift-selection__input {
  height: 1.65rem;
  padding: 0.25rem !important;
  text-align: center !important;
}
.m-gift-selection__wrapper {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr) 15rem;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}
.m-gift-selection__title {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.m-gift-selection__list {
  display: flex;
  flex-direction: column;
}
.m-gift-selection__placeholder {
  width: 7rem;
  height: 7rem;
  aspect-ratio: 1/1;
  background: white;
}
.m-gift-selection__image {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 11rem;
  }
}
.m-gift-selection__image-wrapper {
  position: relative;
  padding: 0.5rem;
  aspect-ratio: 1/1;
  background: white;
  flex-shrink: 0;
}
.m-gift-selection__container {
  background: #d1c6b8;
}
.m-gift-selection__container .m-big-title__wrapper {
  position: sticky;
  align-self: start;
  top: 3rem;
}
@media screen and (max-width: 840px) {
  .m-gift-selection__container .m-big-title__wrapper {
    position: relative;
    top: unset;
  }
}
.m-countdown {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.m-countdown__wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  background: linear-gradient(180deg, #e1d4c7 0%, #d1c6b8 100%);
  color: #2d2d2d;
}
@media screen and (max-width: 600px) {
  .m-countdown__wrapper {
    padding-top: 2.5rem;
  }
}
.m-countdown__silhouette {
  position: absolute;
  z-index: 0;
  bottom: -2px;
  left: 0;
  width: 100%;
  color: #f7eee2;
  pointer-events: none;
}
@media screen and (max-width: 840px) {
  .m-countdown__silhouette {
    width: 200%;
    max-width: 200%;
    transform: translateX(-25%);
  }
}
.m-countdown__label {
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2d2d2d;
}
.m-countdown__grid {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 840px) {
  .m-countdown__grid {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .m-countdown__grid {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.75rem;
  }
}
.m-countdown__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 840px) {
  .m-countdown__group {
    gap: 0.5rem;
  }
}
.m-countdown__separator {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.4);
  transform: translateY(-0.35rem);
}
@media screen and (max-width: 840px) {
  .m-countdown__separator {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .m-countdown__separator--groups {
    display: none;
  }
}
.m-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 4.5rem;
}
@media screen and (max-width: 840px) {
  .m-countdown__item {
    min-width: 3rem;
  }
}
.m-countdown__number {
  display: inline-block;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.15rem;
  font-weight: 700;
  text-shadow: 0 0.5rem 1.5rem rgba(45, 45, 45, 0.25);
}
@media screen and (max-width: 840px) {
  .m-countdown__number {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 600px) {
  .m-countdown__number {
    font-size: 2.75rem;
  }
}
.m-countdown__unit {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #2d2d2d;
}
.m-info-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 840px) {
  .m-info-blocks {
    grid-template-columns: minmax(0, 1fr);
  }
}
.m-info-blocks__item {
  background: #e1d4c7;
  padding: 2rem;
}
.m-info-blocks__item p {
  margin-bottom: 1rem;
}
.m-info-blocks__item p:last-child {
  margin-bottom: 0;
}
.m-info-blocks__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.m-questions__wrapper {
  background: #d1c6b8;
}
.m-questions__wrapper .m-big-title__wrapper {
  position: sticky;
  align-self: start;
  top: 3rem;
}
@media screen and (max-width: 840px) {
  .m-questions__wrapper .m-big-title__wrapper {
    position: relative;
    top: unset;
  }
}
.m-plus-button {
  display: flex;
  align-items: center;
  background: #62654e;
  color: white;
  justify-content: space-between;
}
.m-plus-button input {
  width: 2rem;
  padding: 0;
  background: #62654e;
  color: white;
}
.m-plus-button button {
  height: 100%;
  color: white;
  padding: 0 1rem;
  font-weight: 700;
  transition: background 0.25s ease-in-out;
}
.m-plus-button button:hover {
  background: #4c4f3b;
}
.m-plus-button__label {
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-self: end;
}
@media screen and (max-width: 840px) {
  .m-plus-button__label {
    text-align: center;
    justify-self: center;
  }
}
.m-galerie__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.m-galerie__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3rem;
}
.m-galerie__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.m-galerie__upload-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #62654e;
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.m-galerie__upload-button:hover {
  background: #4c4f3b;
}
.m-galerie__upload-icon {
  width: 0.9rem;
  height: 0.9rem;
}
.m-galerie__preview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-galerie__preview-item {
  position: relative;
  width: 84px;
  background: #ffffff;
  border: 1px solid #e1d4c7;
  padding: 0.35rem 0.35rem 0.6rem;
  box-shadow: 0 2px 6px rgba(45, 45, 45, 0.15);
  box-sizing: border-box;
}
.m-galerie__preview-thumb {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.m-galerie__preview-remove {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #62654e;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
}
.m-galerie__preview-remove-icon {
  width: 0.5rem;
  height: 0.5rem;
  color: #ffffff;
  transform: rotate(45deg);
}
.m-galerie__upload-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-style: italic;
}
.m-galerie__button-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.m-galerie__spinner {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid rgba(98, 101, 78, 0.25);
  border-top-color: #62654e;
  border-radius: 50%;
  animation: galerie-spin 0.7s linear infinite;
}
.m-galerie__spinner--light {
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
}
.m-galerie__error {
  color: red;
  font-size: max(0.75rem, 16px);
}
.m-galerie__success {
  font-size: max(0.75rem, 16px);
}
.m-galerie__grid {
  position: relative;
}
.m-galerie__item {
  float: left;
  width: 25%;
  padding: 0.375rem;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.m-galerie__item.is-loaded {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 840px) {
  .m-galerie__item {
    width: 50%;
  }
}
.m-galerie__thumb {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease-in-out;
}
.m-galerie__item:hover .m-galerie__thumb {
  opacity: 0.85;
}
@keyframes galerie-spin {
  to {
    transform: rotate(360deg);
  }
}
