/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .top-0 {
    top: calc(var(--spacing) * 0);
  }
  .left-0 {
    left: calc(var(--spacing) * 0);
  }
  .left-3 {
    left: calc(var(--spacing) * 3);
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .flex {
    display: flex;
  }
  .h-full {
    height: 100%;
  }
  .w-45 {
    width: calc(var(--spacing) * 45);
  }
  .w-full {
    width: 100%;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .p-2\.5 {
    padding: calc(var(--spacing) * 2.5);
  }
  .p-5 {
    padding: calc(var(--spacing) * 5);
  }
  .py-5 {
    padding-block: calc(var(--spacing) * 5);
  }
  .py-8 {
    padding-block: calc(var(--spacing) * 8);
  }
  .text-center {
    text-align: center;
  }
  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .md\:w-1\/4 {
    @media (width >= 48rem) {
      width: calc(1/4 * 100%);
    }
  }
  .md\:flex-row {
    @media (width >= 48rem) {
      flex-direction: row;
    }
  }
  .md\:py-0 {
    @media (width >= 48rem) {
      padding-block: calc(var(--spacing) * 0);
    }
  }
  .md\:text-left {
    @media (width >= 48rem) {
      text-align: left;
    }
  }
  .lg\:hidden\! {
    @media (width >= 64rem) {
      display: none !important;
    }
  }
  .lg\:flex-auto {
    @media (width >= 64rem) {
      flex: auto;
    }
  }
}
:root {
  --base: calc( 1vw + 1vh);
  --font-size-custom: 18px;
  --font-family: 'Heebo';
  --font-sicherung: '-apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue';
  --text-color-default: hsl(from #373737 h s l);
  --text-color-white: hsl(from #f5f5f5 h s l);
  --radius-default: 8px;
  --btn-radius-default: 36px;
  --base-color-red: hsl(from #72121b h s l);
  --base-color-95: hsl(from #fce9eb h s l);
  --base-color-90: hsl(from #f8d3d6 h s l);
  --base-color-80: hsl(from #f1a7ae h s l);
  --base-color-70: hsl(from #ea7b85 h s l);
  --base-color-60: hsl(from #e34f5d h s l);
  --base-color-50: hsl(from #dc2334 h s l);
  --base-color-40: hsl(from #b01c2a h s l);
  --base-color-30: hsl(from #84151f h s l);
  --base-color-20: hsl(from #580e15 h s l);
  --base-color-10: hsl(from #2c070a h s l);
  --base-color-grau: hsl(from #f1f4f7 h s l);
  --base-color-white: hsl(from #ffffff h s l);
  --shadow-lg-default: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
  --shadow-sm-default: 0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;
  --shadow-xl-default: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
  --text-shadow-sm-default: 0 4px 6px #0000001a;
  --text-shadow-lg-default: 0 10px 12px #0000001a;
  --text-shadow-xl-default: 0 20px 22px #0000001a;
}
article .post-thumbnail {
  display: none;
}
.important-text {
  clip: rect(1px, 1px, 1px, 1px) !important;
  position: absolute !important;
  display: inline !important;
  width: 0px !important;
  height: 0px !important;
  color: transparent !important;
  background: transparent !important;
  overflow: hidden !important;
  z-index: -1 !important;
  opacity: 0 !important;
}
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 18px;
  font-family: var( --font-family ), var( --font-sicherung );
  color: var(--text-color-default);
}
iframe {
  max-width: 100%;
}
ol, ul {
  list-style: none;
  display: inline-block;
  margin: 0 2rem;
}
input, area, button, select {
  outline: none;
}
figure {
  margin: 0 0 1rem 0;
  padding: 0;
}
.elementor a {
  box-shadow: unset;
}
.elementor-heading-title {
  line-height: unset;
}
.container {
  --container: 1600px;
  margin: 0 auto;
  max-width: min(calc(100% - 40px), var(--container), 1600px);
}
@media screen and ( min-width: 2000px ) {
  .container {
    --container: 1920px;
  }
}
#site-navigation .menu-default-container {
  display: none;
}
@media screen and (min-width: 1024px) {
  #site-navigation .menu-default-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #site-navigation .menu-default-container {
    display: flex;
  }
}
body:is(.admin-bar) header#masthead {
  position: sticky;
  top: 32px;
  z-index: 999;
  background: #fff;
}
body:not(.admin-bar) header#masthead {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}
header#masthead .current-menu-item a {
  text-decoration: underline;
}
.site-branding {
  position: relative;
  left: -12px;
}
header#masthead .main-navigation {
  display: block;
  width: auto;
}
.main-navigation a:not(.menu-toggle) {
  display: block;
  text-decoration: none;
}
#site-navigation a.menu-toggle {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  font-size: 2rem;
}
#site-navigation .menu-default-container.open, #site-navigation ul#primary-menu.opened {
  display: flex;
  flex-direction: column;
}
#site-navigation .menu-default-container.open {
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  top: 100%;
  padding: 20px 10px;
  transition: opacity 0.5s ease-in;
  -webkit-transition: opacity 0.35s ease-in;
  -moz-transition: opacity 0.35s ease-in;
  -ms-transition: opacity 0.35s ease-in;
  -o-transition: opacity 0.35s ease-in;
  opacity: 1;
  @starting-style {
    opacity: 0;
  }
}
.menu-default-container.open #primary-menu a {
  font-size: 26px;
}
@media screen and (min-width: 1025px) {
  #primary-menu li.menu-item a {
    padding-inline: 10px;
    font-size: var(--font-size-custom);
  }
}
.site-footer ul#menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post, .page {
  margin: 0 !important;
}
h1, .h1 {
  font-size: clamp(26px, 4.5vw, 6rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2, .h2 {
  font-size: clamp(24px, 2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h3, .h3 {
  font-size: clamp(22px, 1.75rem, 2rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h4, .h4 {
  font-size: clamp(20px, 1.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h5, .h5 {
  font-size: clamp(18px, 1.25vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h6, .h6 {
  font-size: clamp(16px, 1vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .hero-h2 h2 {
  font-size: clamp(52px, 3vw, 3.3rem);
  line-height: 1.35;
}
body a, body a:hover, body a:focus, body a:active, a:visited {
  text-decoration: none;
  color: var( --text-color-default );
  &:hover {
    text-decoration: underline;
  }
}
.text-color-white {
  color: var(--text-color-white);
}
.is-grau {
  background-color: var(--base-color-grau);
}
#mouse-icon-wrapper {
  animation: bounce 1s infinite;
  position: relative;
  -webkit-animation: bounce 1s infinite;
}
#mouse-icon-wrapper img {
  width: 100%;
  max-width: 72px;
}
.btn-custom a, .btn-custom .elementor-button {
  border-radius: var(--btn-radius-default);
  -webkit-border-radius: var(--btn-radius-default);
  -moz-border-radius: var(--btn-radius-default);
  -ms-border-radius: var(--btn-radius-default);
  -o-border-radius: var(--btn-radius-default);
  background: var(--base-color-red);
  color: var(--text-color-white);
  font-weight: 600;
  font-size: clamp(16px, 1vw, 1.125rem);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  &:hover {
    text-decoration: none !important;
    background-color: var(--base-color-20);
  }
}
@scope (.mitglied-werden-formular) {
  .uacf7-form-wrapper-container .uacf7-row {
    padding-block: 20px;
  }
  .wpcf7-textarea {
    outline: 2px solid var(--base-color-grau);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    height: auto;
    min-height: 100px;
  }
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: inherit;
    border: 0 none;
    border-bottom: 2px solid var(--base-color-grau);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 10px;
    &:focus {
      border-bottom-color: var(--base-color-red);
    }
  }
  input[type="submit"] {
    background-color: var(--base-color-red);
    color: var(--text-color-white);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    &:hover {
      background-color: var(--base-color-20);
    }
  }
  .uacf7-form-wrapper-container {
    container-type: inline-size;
    container-name: mitglied-form-container;
  }
  [for="textarea-886"], [for="ihre_nachricht"] {
    position: relative;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  @container mitglied-form-container (max-width: 768px) {
    .uacf7-row div {
      padding-block: 10px;
    }
  }
}
.shadow-sm-default, .shadow-sm-default :is(a, p) {
  box-shadow: var(--shadow-sm-default);
}
.shadow-lg-default, .shadow-lg-default :is(a, p) {
  box-shadow: var(--shadow-lg-default);
}
.shadow-xl-default, .shadow-xl-default :is(a, p) {
  box-shadow: var(--shadow-xl-default);
}
.text-shadow-sm :is(h1,h2,h3,a,p,span) {
  text-shadow: var(--text-shadow-sm-default);
}
.text-shadow-lg :is(h1,h2,h3,a,p,span) {
  text-shadow: var(--text-shadow-lg-default);
}
.text-shadow-xl :is(h1,h2,h3,a,p,span) {
  text-shadow: var(--text-shadow-xl-default);
}
.is-animated {
  transition: opacity 0.18s ease-in;
  -webkit-transition: opacity 0.18s ease-in;
  -moz-transition: opacity 0.18s ease-in;
  -ms-transition: opacity 0.18s ease-in;
  -o-transition: opacity 0.18s ease-in;
  opacity: 1;
  @starting-style {
    opacity: 0;
  }
}
@media screen and ( min-width: 1025px ) {
  .dashed-right {
    border-right-width: thick;
    border-right-style: dashed;
    border-right-color: #000000;
  }
}
@media screen and ( min-width: 1025px ) {
  .dashed-left {
    border-left-width: thick;
    border-left-style: dashed;
    border-left-color: #000000;
  }
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}
