@font-face {
  font-family: "LT Univers";
  src: url("/fonts/ltunivers-420-condregular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
}

@font-face {
  font-family: "LT Univers";
  src: url("/fonts/ltunivers-620-condbold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-stretch: condensed;
}

@font-face {
  font-family: "LT Univers";
  src: url("/fonts/ltunivers-720-condheavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: "LT Univers", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

:root {
  --umb-block-grid--grid-columns: 1;
  --umb-block-grid--item-column-span: 1;
  --umb-block-grid--item-row-span: 1;
  --umb-block-grid--column-gap: 30px;
  --umb-block-grid--row-gap: 15px;
  --umb-block-grid--area-grid-columns: 1;
  --umb-block-grid--areas-column-gap: 30px;
  --umb-block-grid--areas-row-gap: 15px;
  --umb-block-grid--area-column-span: 1;
  --umb-block-grid--area-row-span: 0;
  --color-1: #e8308a;
  --color-2: #074ea1;
  --color-3: #00a0e2;
}

.umb-block-grid__layout-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1),
      minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(0px, min-content);

  -moz-column-gap: var(--umb-block-grid--column-gap, 0);

  column-gap: var(--umb-block-grid--column-gap, 0);
  row-gap: var(--umb-block-grid--row-gap, 0);
}

.umb-block-grid__layout-item {
  position: relative;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(calc(var(--umb-block-grid--item-column-span, 1) * 3),
      var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--item-row-span, 1);
}

.umb-block-grid__area-container,
.umb-block-grid__block--view::part(area-container) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns,
        var(--umb-block-grid--grid-columns, 1)),
      minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);

  -moz-column-gap: var(--umb-block-grid--areas-column-gap, 0);

  column-gap: var(--umb-block-grid--areas-column-gap, 0);
  row-gap: var(--umb-block-grid--areas-row-gap, 0);
}

.umb-block-grid__area {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(calc(var(--umb-block-grid--area-column-span, 1) * 3),
      var(--umb-block-grid--area-grid-columns));
  grid-row: span var(--umb-block-grid--area-row-span, 1);
}

@media (min-width: 1024px) {
  .umb-block-grid__layout-item {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1),
        var(--umb-block-grid--grid-columns));
  }

  .umb-block-grid__area {
    grid-column-end: span min(var(--umb-block-grid--area-column-span, 1),
        var(--umb-block-grid--area-grid-columns));
  }
}

body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1275px;
  padding: 0 15px;
  margin: 0 auto;
}

.container .container {
  padding: 0;
}

.container.limited {
  max-width: 700px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.accordeon {
  background: #e5e5e5;
  margin-bottom: 0px;
  margin-top: 0px;
  position: relative;
  box-shadow: #b3b3b321 0 0 20px;
}

.btn {
  cursor: pointer;
  background: var(--color-1);
  color: white;
  font-family: "LT Univers", sans-serif;
  border: none;
  font-size: 25px;
  padding: 10px 20px;
  font-weight: 800;
  transition: 200ms ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}

.btn:hover {
  background: var(--color-2);
}

.container>div:last-child>.btn:last-child {
  margin-top: 20px;
}

.accordeon>div {
  overflow: hidden;
}

.accordeon>div:first-child {
  cursor: pointer;
}

.accordeon>div:first-child h3 {
  margin-bottom: 0;
}

.accordeon>div:last-child {
  background: white;
  border: 2px solid #0000000d;
  border-top: none;
}

.accordeon .unlock-form {
  transition: 500ms ease;
  padding-top: 20px;
}

.accordeon .unlock-form[data-unlocked] {
  height: 0;
  padding-top: 0px;
  overflow: hidden;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery>* {
  display: block;
  overflow: hidden;
  transition: 300ms ease;
  max-width: 300px;
  aspect-ratio: 1/1;
}

.gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 300ms all;
}

.gallery a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 5px #00000077;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s ease;
}

.gallery-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c7;
  z-index: 100;
  opacity: 0;
  transition: 500ms ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  max-width: initial;
}

.gallery-viewer img {
  object-fit: contain;
  max-height: 100%;
  max-width: 100vw;
}

.gallery-viewer.open {
  opacity: 1;
  pointer-events: initial;
}

.gallery-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
}

.gallery-controls button {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 3px #000000a6;
  padding: 15px;
  transition: 300ms ease;
}

.gallery-controls button:hover {
  background: #ffffff06;
  backdrop-filter: blur(5px);
}

button.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #e30613;
}

.icon-state {
  position: absolute;
  right: 15px;
  top: 15px;
}

.icon-state i,
.lock {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  transition: 300ms ease;
}

.lock {
  top: 15px;
  right: 50px;
}

.icon-state.open .openAccordeon,
.icon-state .closedAccordeon {
  /* transform: rotateX(180deg); */
  opacity: 1;
}

.icon-state .openAccordeon,
.icon-state.open .closedAccordeon {
  /* transform: rotateX(0deg); */
  opacity: 0;
}

section {
  padding: 50px 0;
}

.colorWhite {
  color: white;
}

.colorBlack {
  color: black;
}

figure {
  margin: 0;
}

h1 {
  margin: 0;
  font-size: 60px;
  line-height: 1;
}

h2 {
  font-size: 45px;
  margin: 0;
  line-height: 1;
}

h3 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
}

h1 {
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 20px;
}

h3,
h4 {
  margin: 0;
  margin-bottom: 10px;
}

.richText p,
.richText ul,
.richText ol {
  margin: 0;
  margin-bottom: 10px;
}

.richText h1 {
  margin-top: 40px;
}

.richText h2 {
  margin-top: 30px;
}

.richText h3 {
  margin-top: 20px;
}

h1:last-child,
h2:last-child,
h3:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0px;
}

.richText h1:first-child,
.richText h2:first-child,
.richText h3:first-child {
  margin-top: 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
}

.track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-reverse 30s linear infinite;
}

.track.reverse {
  animation: scroll 30s linear infinite;
}

.track>span {
  display: inline-block;
  margin: 0 12px;
  font-size: 120px;
  font-weight: 900;
  margin-right: 100px;
}

@keyframes scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes scroll-reverse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.noPadTop {
  padding-top: 0px;
}

.noPadBottom {
  padding-bottom: 0px;
}

.richText.colored {
  padding: 15px;
}

input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  font-size: 20px;
  font-family: "LT Univers";
  font-weight: 900;
  border: 0;
  margin-bottom: 20px;
}

textarea {
  font-family: "LT Univers";
  font-size: 20px;
  font-weight: 900;
}

label>span {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
}

label:last-child input,
.umb-block-grid__layout-item:last-child>.accordeon,
.umb-block-grid__layout-item:last-child>.gallery {
  margin-bottom: 0px;
}

img.preview {
  cursor: pointer;
}

ul {
  margin: 0;
  padding-left: 10px;
}

.posts {
  display: flex;
  justify-content: flex-start;
  container-type: inline-size;
  gap: 30px;
  flex-wrap: wrap;
}

.posts>* {
  width: calc(33% - 17px);

  @container (max-width:1000px) {
    width: calc(50% - 15px);
  }

  @container (max-width:700px) {
    width: 100%;
  }
}

.posts article {
  background: var(--color-2);
  color: white;
  height: 100%;
  transition: 100ms ease;
  position: relative;
}

.posts article:hover {
  background: var(--color-1);
}

article .article-description {
  padding: 20px;
}

ul li::marker {
  content: "\e13a";
  font-family: "Phosphor" !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  color: var(--color-2);
  font-size: 15px;
}

ul li {
  padding-left: 5px;
}

.umbraco-form input,
.umbraco-form textarea,
fieldset {
  border: 1px solid #f1f1f1;
  box-shadow: #b3b3b321 0 0 20px;
  border-radius: 10px;
  padding: 15px 10px;
  background: white;
  color: black;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.umbraco-form label,
.umbraco-form fieldset,
.umbraco-form textarea {
  margin-bottom: 20px;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: fit-content;
}

legend,
.umbraco-form form>label>span {
  border: 1px solid #f1f1f1;
  padding: 5px 10px;
  border-radius: 10px;
  background: white;
  display: inline-block;
  box-shadow: #b3b3b321 0 0 20px;
  color: black;
}

.umbraco-form form>label {
  margin-bottom: 5px;
  display: block;
}

.umbraco-form form>label>span {
  margin-bottom: -10px;
  margin-left: 10px;
  font-weight: 500;
}

label:has(input[name="Check"]) {
  display: none;
}

#submissionText {
  background: #dfdea1;
  padding: 20px;
  color: #000;
}

.mobile {
  display: none;
}

.umbraco-form.colored {
  padding: 15px;
}

.swiperButtons .swiper-button-next,
.swiperButtons .swiper-button-prev {
  color: var(--color-1);
  padding: 15px;
  border-radius: 35px;
  background: #ffffff57;
  backdrop-filter: blur(5px);
  width: 35px;
  height: 35px;
  transition: 300ms cubic-bezier(.68, -0.55, .27, 1.55);
  border: 1px solid #ffffff75;
}

.swiperButtons .swiper-button-next:hover,
.swiperButtons .swiper-button-prev:hover {
  width: 55px;
  backdrop-filter: blur(10px);
}


.swiperButtons .swiper-button-next::after,
.swiperButtons .swiper-button-prev::after {
  font-size: 35px;
}

.swiper article>div:last-child {
  padding: 15px;
}

.eye-catcher {
  background-size: cover;
}

.btn:hover {
  color: white
}

.call-to-action {
  padding: 50px 0;
}

.call-to-action .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  container-type: inline-size;
  flex-wrap: wrap;
}

.call-to-action .container>* {
  width: calc(50% - 20px);

  @container (max-width:700px) {
    width: 1000px;
  }
}

.call-to-action .container>div:first-child {
  text-align: center;
}

.call-to-action .container>div:first-child i {
  font-size: 120px;
}

.noPadTop {
  padding-top: 0;
}

.noPadBottom {
  padding-bottom: 0;
}

.onlyContent header, .onlyContent footer{
 display: none;
}

.parole.nein {
  background-color: var(--color-1);
}

.parole.undecided {
  background-color: var(--color-3);
}

@media screen and (max-width: 800px) {
  .mobile {
    display: block;
  }

  .swiperButtons {
    display: none;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }
}

@media screen and (max-width: 900px) {
  .track>span {
    font-size: 60px;
  }
}
