/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
/* scss/grids/_grid-columns.scss */
.g-grid {
  max-width: 1636px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.g-grid > .frame {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .g-grid { /* min-width: 992px */
    grid-template-columns: repeat(2, 1fr);
  }
  .g-grid.-tipps > div:first-child {
    order: 2;
  }
}
.g-grid.-cols3 {
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 992px) {
  .g-grid.-cols3 { /* min-width: 1200px */
    grid-template-columns: repeat(3, 1fr);
  }
}
.g-grid.-cols4 {
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 992px) {
  .g-grid.-cols4 { /* min-width: 992px */
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .g-grid.-cols4 { /* min-width: 1440px */
    grid-template-columns: repeat(4, 1fr);
  }
}
.g-grid.-cols6 {
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 992px) {
  .g-grid.-cols6 { /* min-width: 992px */
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .g-grid.-cols6 { /* min-width: 992px */
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .g-grid.-cols6 { /* min-width: 1440px */
    grid-template-columns: repeat(6, 1fr);
  }
}

.g-flexbox {
  --gap: 2rem;
  max-width: 1636px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--gap);
}
.g-flexbox.-centered {
  justify-content: center;
}
.g-flexbox.-space-between {
  justify-content: space-between;
}
.g-flexbox > div {
  width: 100%;
  margin-bottom: 0;
}
.g-flexbox > div.grid__placeholder {
  display: none;
}
@media only screen and (min-width: 992px) {
  .g-flexbox { /* min-width: 992px */ }
  .g-flexbox > div {
    width: calc(50% - var(--gap) / 2);
  }
  .g-flexbox > div.grid__placeholder {
    display: block;
  }
  .g-flexbox.-tipps > div:first-child {
    order: 2;
  }
}
@media only screen and (min-width: 992px) {
  .g-flexbox.-cols3 > div { /* min-width: 1200px */
    width: calc(33% - var(--gap) * 2 / 3);
  }
}
@media only screen and (min-width: 992px) {
  .g-flexbox.-cols4 > div { /* min-width: 992px */
    width: calc(50% - var(--gap) / 2);
  }
}
@media only screen and (min-width: 1440px) {
  .g-flexbox.-cols4 > div { /* min-width: 1440px */
    width: calc(25% - var(--gap) * 3 / 4);
  }
}

/*# sourceMappingURL=grid-columns.css.map */