.site-header {
  border-radius: 21px;
  padding: 1rem;
  background: rgba(216, 73, 147, 0.95);
  top: 22px;
  left: 22px;
  right: 22px;
}

body:not(.mobile-menu) .site-header .main-navigation ul {
  gap: 2rem;
  justify-content: flex-end;
  padding-right: 3rem;
}
body:not(.mobile-menu) .site-header .main-navigation ul a::after {
  content: "";
  display: block;
  height: 3px;
  background-color: var(--Body-light, #fffbf6);
  position: absolute;
  bottom: 4px;
  left: 8px;
  right: 8px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body:not(.mobile-menu) .site-header .main-navigation ul .current-menu-item a::after,
body:not(.mobile-menu) .site-header .main-navigation ul a:hover::after {
  opacity: 1;
}
body:not(.mobile-menu) .site-header .main-navigation a {
  display: inline-block;
  position: relative;
}
body:not(.mobile-menu) .site-header .main-navigation a span {
  color: var(--Body-light, #fffbf6);
  /* Desktop/Headings/H6 */
  font-family: var(--Font-Family-Title, Jost);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.18px;
  text-transform: uppercase;
}

.mobile-menu .site-header.nav-open {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}
.mobile-menu .site-header.nav-open .main-navigation {
  background-repeat: repeat-x;
  background-size: 100% auto;
  background-position-y: bottom;
  padding: 5rem 21px 3rem;
  gap: 4rem;
}
.mobile-menu .site-header.nav-open .main-navigation a span {
  color: var(--Body-light, #fffbf6);
  /* Headings/Mobil/H4__Mobil */
  font-family: var(--Font-Family-Title, Jost);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.hover_block {
  position: relative;
}
.hover_block:is(:hover, :focus-visible) .hover_block_content, .hover_block:is(:hover, :focus-visible) .hover_block_title {
  transform: translateY(0);
  z-index: 2;
}
.hover_block::before {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hover_block:is(:hover, :focus-visible) {
  /** overlay */
}
.hover_block:is(:hover, :focus-visible)::before {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .hover_block .hover_block_content,
  .hover_block .hover_block_title {
    transform: translateY(0);
    z-index: 2;
  }
  .hover_block::before {
    opacity: 1;
  }
}

body:not(.elementor-editor-active) [bg-video] {
  position: relative;
}
body:not(.elementor-editor-active) [bg-video] * {
  position: relative;
  z-index: 2;
}
body:not(.elementor-editor-active) .bg-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}

.arrow_link::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M20 20H15V8.53516L4.85742 18.6777L1.32227 15.1426L11.4648 5H0V0H20V20Z" fill="%2300847F"/></svg>');
  display: inline-block;
  margin-left: 0.3em;
  transition: transform 0.3s ease;
}
.arrow_link:hover::after {
  transform: translateX(10px);
}

.expanding_block .expanding_block_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.expanding_block.expanded .expanding_block_content {
  max-height: 1000px; /* Adjust as needed */
}
.expanding_block .expanding_block_button {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.expanding_block .expanding_block_button::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33" fill="none"><rect x="15.5" y="4" width="2" height="25" fill="%2300847F"/><rect x="29" y="15.5" width="2" height="25" transform="rotate(90 29 15.5)" fill="%2300847F"/></svg>');
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
  width: 33px;
  height: 33px;
}
.expanding_block.expanded .expanding_block_button::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33" fill="none"><rect x="4" y="17.5" width="2" height="25" transform="rotate(-90 4 17.5)" fill="%2300847F"/><rect x="29" y="15.5" width="2" height="25" transform="rotate(90 29 15.5)" fill="%2300847F"/></svg>');
}

input[type=checkbox] {
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

body form input,
body form textarea {
  width: 100%;
  border-radius: 8px !important;
  background-color: #fef7eb;
}
body form input::-moz-placeholder, body form textarea::-moz-placeholder {
  color: var(--Typography-Body-Dark, #463c41);
  font-family: var(--Font-Family-Body, Merriweather);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.14px;
}
body form input::placeholder,
body form textarea::placeholder {
  color: var(--Typography-Body-Dark, #463c41);
  font-family: var(--Font-Family-Body, Merriweather);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.14px;
}
body form textarea {
  border-radius: 8px !important;
  padding: 21px 16px;
}
body form input[type=checkbox] {
  display: none !important;
}
body form input[type=checkbox] + label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
body form input[type=checkbox] + label::before {
  /**
    --forms-checkbox-box: url(https://dev.spajder.io/eden/wp-content/uploads/2026/03/check.svg);
  --forms-checkbox-check: url(https://dev.spajder.io/eden/wp-content/uploads/2026/03/checked.svg);
    */
  content: var(--forms-checkbox-box);
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 1em;
}
body form input[type=checkbox]:checked + label::before {
  content: var(--forms-checkbox-check);
}
body form .elementor-field-type-upload input {
  display: none;
}
body form .elementor-field-type-upload label {
  display: inline-block;
  padding: 0.5em 1em !important;
  border: 1px solid var(--Primary, #569A96);
  color: #569A96;
  border-radius: 4px;
  cursor: pointer;
}
body form .elementor-field-type-upload + .elementor-field-type-submit {
  margin-top: 2em;
}/*# sourceMappingURL=style.css.map */