@font-face {
  font-family: Korolev;
  src: url('../fonts/Korolev-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Korolevcondensed;
  src: url('../fonts/KorolevCondensed-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.body {
  background-color: var(--white);
  color: var(--black);
  height: 100vh;
  overflow: hidden;
}

.card-back-a {
  z-index: 0;
  backface-visibility: hidden;
  background-color: #fff;
  width: 430px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.card_pattern-a {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0;
  background-repeat: repeat;
  background-size: cover;
  flex: 0 auto;
  width: 90px;
}

.card_info {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  padding: 24px 32px 32px 40px;
  display: flex;
}

.company {
  margin-top: 12px;
  margin-bottom: 0;
  font-family: rufina-stencil;
}

.text {
  font-family: aktiv-grotesk;
  font-size: 13px;
  line-height: 20px;
}

.text.cc-bold {
  font-weight: 700;
}

.card-front-a {
  z-index: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #f5ede2;
  justify-content: center;
  align-items: center;
  width: 430px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 11px 11px 40px #171f1a80;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 60px 60px;
  grid-template-columns: 60px 60px;
}

.logo_triangle1 {
  border: 30px solid #0000;
  border-color: #f5b790 #0000 #0000 #f5b790;
}

.logo_triangle2 {
  border: 30px solid #0000;
  border-color: #ee544e #0000 #0000 #ee544e;
}

.logo_shape {
  background-color: #f8b542;
  border-color: #ec9c84 #0000 #0000 #ec9c84;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 60px;
  height: 60px;
}

.card-a {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.card-a:hover {
  z-index: 1;
}

.card_pattern-b {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: -30px;
  background-repeat: repeat;
  background-size: cover;
  flex: 0 auto;
  width: 90px;
}

.card_pattern-c {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: -60px;
  background-repeat: repeat;
  background-size: cover;
  flex: 0 auto;
  width: 90px;
}

.card-b {
  transform-style: preserve-3d;
  width: 430px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.card-front-b {
  z-index: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #475d51;
  justify-content: center;
  align-items: center;
  width: 430px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 11px 11px 40px #171f1a80;
}

.card-back-b {
  z-index: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #fff;
  width: 430px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
  box-shadow: 11px 11px 40px #171f1a80;
}

.grid-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template: ". . . . ."
                 ". . . . ."
                 ". . . . ."
                 ". . . . ."
                 ". . . . ."
                 / 1fr 1fr 1fr 1fr 1fr;
  width: 100vw;
  height: 100vh;
  inset: 0%;
}

.section {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template: ". . . ." 240px
                 ". . . ."
                 ". . . ."
                 ". . . ."
                 / 1fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  margin-top: -5%;
  margin-left: -5%;
  display: grid;
  transform: rotate(-9deg);
}

.div-block {
  height: 240px;
}

.card_pattern-d {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 -30px;
  background-repeat: repeat;
  background-size: 120px 100%;
  flex: 0 auto;
  width: 90px;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.25fr;
  width: 100%;
  height: 100%;
}

.container {
  background-color: #f2eeeb;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.image {
  width: 100%;
  height: 100%;
  display: block;
}

.image.mobile {
  display: none;
}

.heading {
  margin-top: 50%;
  font-family: Korolev, sans-serif;
  font-size: 80px;
  line-height: 100%;
}

.container-2 {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0% 0% 0% 50%;
  display: flex;
}

.text-span {
  padding-right: 5px;
}

.text-span-2 {
  padding-right: 3px;
}

.image-2 {
  width: 80%;
  max-width: 50%;
  margin-top: 0%;
  padding-left: 0;
}

.container-3 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 90%;
  margin-top: 5%;
  margin-left: 0;
  display: flex;
}

.heading-2 {
  text-align: right;
  width: 50%;
  max-width: 50%;
  height: auto;
  min-height: auto;
  margin-top: 30px;
  margin-left: 0;
  padding-top: 0;
  font-family: Dosis, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.heading-2.oben {
  margin-top: 0;
}

.container-4 {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  height: 10%;
  margin-bottom: 5%;
  margin-left: 0;
  margin-right: 0%;
  padding-right: 50%;
  display: flex;
}

.image-3 {
  width: 200px;
  max-width: 200px;
  height: 100%;
  margin-bottom: 0%;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-right: 0%;
}

.text-span-3 {
  font-family: Dosis, sans-serif;
  font-size: 100%;
  font-weight: 200;
}

.text-span-4 {
  font-size: 100%;
  font-weight: 200;
}

.text-span-5 {
  border-bottom: 1px solid #000;
  width: auto;
  min-width: auto;
  font-size: 100%;
  font-weight: 200;
  text-decoration: none;
}

.text-span-5:hover {
  border-bottom-style: none;
  text-decoration: none;
}

.text-span-6 {
  border-bottom: 1px solid #000;
  font-size: 100%;
  font-weight: 200;
  text-decoration: none;
}

.text-span-6:hover {
  border-bottom-style: none;
  text-decoration: none;
}

.link, .link-2 {
  color: var(--black);
  text-decoration: none;
}

.paragraph {
  width: 50%;
  max-width: 50%;
}

.link-block {
  max-width: none;
  height: auto;
  margin-bottom: 5%;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-right: 0%;
}

.text-block {
  color: var(--black);
  text-transform: none;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
  font-family: Dosis, sans-serif;
  font-size: 100%;
  font-weight: 200;
  line-height: 25px;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-decoration-thickness: 0;
  display: flex;
}

.link-block-2 {
  color: var(--black);
  text-underline-offset: 9px;
  flex: 0 auto;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-right: 8%;
  font-family: Dosis, sans-serif;
  font-size: 28px;
  font-weight: 200;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  display: block;
}

.body-2 {
  justify-content: center;
  align-items: center;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  display: flex;
  overflow: hidden;
}

.container-5 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 70svw;
  min-width: 70svw;
  max-width: 70svw;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.heading-3 {
  width: 50%;
  max-width: 50%;
  margin-top: 60px;
  margin-bottom: 0;
  font-family: Dosis, sans-serif;
  font-size: 33.6px;
  font-weight: 200;
  text-decoration: none;
}

@media screen and (min-width: 1440px) {
  .container-3 {
    height: 80%;
  }

  .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-block {
    font-size: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .container-2 {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .image-2 {
    width: 50%;
  }

  .container-4 {
    margin-bottom: 5%;
  }

  .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-block {
    font-size: 100%;
  }

  .container-6 {
    text-align: left;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }

  .heading-3 {
    font-family: Dosis, sans-serif;
  }
}

@media screen and (max-width: 991px) {
  .section {
    margin-left: -68%;
  }

  .grid-3 {
    grid-template-rows: 40% 60%;
    grid-template-columns: 1fr;
  }

  .container {
    max-width: 100%;
  }

  .image {
    display: none;
  }

  .image.mobile {
    display: block;
  }

  .container-2 {
    margin-bottom: 0%;
    margin-left: 0%;
  }

  .image-2 {
    width: 50%;
  }

  .container-3 {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: -10%;
  }

  .heading-2 {
    font-size: 20px;
    line-height: 160%;
  }

  .container-4 {
    flex-flow: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 50%;
    max-width: 50%;
    height: 35%;
    margin-bottom: 5%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .image-3 {
    width: 150px;
    max-width: 150px;
    height: auto;
    margin-bottom: 0%;
    padding: 0%;
  }

  .link-block {
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
    max-width: none;
    height: auto;
    margin-bottom: 5%;
    margin-left: 2.5%;
    padding-top: 0%;
    padding-bottom: 0%;
    padding-right: 0%;
    display: flex;
  }

  .text-block {
    color: var(--black);
    text-decoration: none;
    -webkit-text-decoration-color: var(--black);
    text-decoration-color: var(--black);
    margin: 0%;
    font-size: 100%;
    font-weight: 200;
  }

  .link-block-2 {
    text-underline-offset: 6px;
    margin-top: 0%;
    margin-bottom: 5%;
    margin-right: 2.5%;
    font-size: 20px;
    text-decoration-color: #000;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .body {
    height: 100%;
  }

  .section {
    margin-left: -111%;
  }

  .grid-3 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1.25fr;
  }

  .image-2 {
    width: 35%;
    max-width: 50%;
    margin-left: 35%;
  }

  .container-3 {
    margin-top: 0%;
  }

  .heading-2 {
    width: 70%;
    max-width: 70%;
    margin-top: 30px;
    font-size: 14px;
  }

  .container-4 {
    justify-content: flex-end;
    align-items: flex-end;
    width: 70%;
    max-width: 70%;
    height: 10%;
    margin: 5% auto 0%;
  }

  .image-3 {
    width: 100px;
    max-width: 100px;
    padding-right: 0%;
  }

  .text-span-3, .text-span-4, .text-span-5, .text-span-6 {
    font-size: 120%;
  }

  .link-block {
    padding-right: 0%;
  }

  .text-block {
    font-size: 120%;
  }

  .link-block-2 {
    margin-right: 5%;
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .section {
    margin-left: -271%;
  }

  .grid-3 {
    grid-template-rows: 40% 60%;
    grid-template-columns: 1fr;
    height: 100vh;
  }

  .container {
    padding-top: 0%;
  }

  .image.mobile {
    object-fit: contain;
    object-position: 50% 100%;
  }

  .container-2 {
    justify-content: flex-start;
    align-items: center;
  }

  .image-2 {
    width: 60%;
    max-width: 60%;
    margin-left: 0%;
  }

  .container-3 {
    justify-content: flex-start;
    align-items: center;
    height: 70%;
    margin-top: -40%;
  }

  .heading-2 {
    width: 60%;
    max-width: 60%;
    margin-top: 30px;
    font-size: 14px;
  }

  .container-4 {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    margin: 30% 20% 5%;
  }

  .image-3 {
    width: 110px;
    max-width: none;
    height: auto;
    padding-bottom: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .link-block {
    justify-content: flex-start;
    align-items: flex-end;
    width: 50%;
    height: auto;
    margin-bottom: 0%;
    margin-left: 2.5%;
    margin-right: 0%;
    padding: 0%;
  }

  .text-block {
    text-align: right;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: 120%;
    font-weight: 200;
    text-decoration: underline;
  }

  .link-block-2 {
    text-align: right;
    width: 50%;
    margin-top: 0%;
    margin-bottom: 0%;
    margin-right: 2.5%;
    font-size: 14px;
  }
}

#w-node-_9a723606-0e9e-7d33-df40-30e9c5f4ecb2-8df79436 {
  justify-self: center;
}


@font-face {
  font-family: 'Korolev';
  src: url('../fonts/Korolev-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Korolevcondensed';
  src: url('../fonts/KorolevCondensed-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}