/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/barlow-v13-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/barlow-v13-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/inter-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-red-dark: #780E20;
  --color-red-darker: #410913;
  --color-red: #C61A37;
  --color-red-light: rgba(198, 26, 55, 0.1);
  --color-grey: #F7F9F7;
  --color-grey-dark: #9BA19B;
  --color-white: #fff;
  --color-blue: rgba(101, 142, 176, 1);
  --color-blue-light: rgba(243, 249, 252, 1);
  --color-green: rgba(85, 177, 151, 1);
  --color-green-light: rgba(85, 177, 151, 0.1);
  --color-black: rgba(0, 0, 0, 1);
  --wrap-width: 1512px;
  --wrap-padding: 20px;
  --margin-extra: 8rem;
  --radius: 40px;
  --radius-small: 20px;
  --radius-tiny: 6px;
  --font-Bricolage: "Bricolage Grotesque", sans-serif;
  --font-Nunito: "Nunito", sans-serif;
}

@media screen and (max-width: 1000px) {
  :root {
    --wrap-padding: 1rem;
    --radius: 20px;
    --margin-extra: 2rem;
  }
}
header {
  background: var(--color-blue-light);
}

.nav-main {
  padding: 50px 0;
  max-width: var(--wrap-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .nav-main {
    padding: 2rem 0;
  }
}
.nav-main a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: "Inter";
  position: relative;
}
.nav-main a:not(.button):after {
  content: "";
  width: 0;
  height: 1px;
  background: currentcolor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.2s ease-out;
  transform-origin: center;
  transform: translate(-50%, 10px);
  border-radius: 2px;
}
.nav-main a:hover:after {
  width: 80%;
  height: 2px;
}
.nav-main a.button {
  margin-top: 0;
  color: var(--color-white);
}
.nav-main div {
  margin-right: auto;
}
.nav-main div img {
  width: 168px;
  display: block;
}
.nav-main ul {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 50px;
}
@media screen and (max-width: 1100px) {
  .nav-main {
    flex-wrap: wrap;
  }
  .nav-main ul {
    flex-direction: column;
    display: none;
  }
}

.grid-wrap {
  background: var(--bgcolor);
  padding: 90px 20px;
  margin-bottom: 5rem;
  margin-left: -20px;
  margin-right: -20px;
}
.grid-wrap .grid {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .grid-wrap {
    padding: 50px 20px;
  }
}

.grid-wrap + .grid-wrap {
  padding-top: 0;
  margin-top: -5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 0;
  margin-bottom: 5rem;
  max-width: 1728px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: 50px;
  max-width: var(--wrap-width);
}
@media screen and (max-width: 1000px) {
  .grid {
    margin-bottom: 2rem;
    row-gap: 2rem;
    column-gap: 0;
  }
}
.grid.inline {
  margin-bottom: 4rem;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .grid.inline {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .grid.inline {
    margin-bottom: 0;
  }
}
.grid.large-gap {
  gap: 130px;
}
@media screen and (max-width: 1560px) {
  .grid.large-gap {
    gap: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .grid.large-gap {
    gap: 0;
    row-gap: 2rem;
  }
}
.grid.margin-top-true {
  margin-top: var(--margin-extra);
}
.grid.margin-bottom-true {
  margin-bottom: var(--margin-extra);
}
.grid.align-oben {
  align-items: start;
}
.grid.align-unten {
  align-items: end;
}
.grid.align-mitte {
  align-items: center;
}
.grid.theme .column {
  background: var(--theme-secondary);
  border-radius: 40px;
}
.grid.theme .column + .column {
  padding: 80px 130px;
}
.grid.theme .column + .column .blocks {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: flex-start;
}
.grid.bg-color {
  background: var(--theme-secondary);
  border-radius: var(--radius);
  padding: 100px;
}
@media screen and (max-width: 1200px) {
  .grid.bg-color {
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
@media screen and (max-width: 1200px) {
  .grid.bg-color {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 700px) {
  .grid.bg-color {
    padding: 20px;
  }
}
.grid.gradient {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(53, 46, 57, 0.05);
  padding: 145px 100px;
  border-radius: 40px;
}
.grid.gradient:before {
  content: "";
  background: var(--theme-gradient);
  width: 956px;
  height: 956px;
  filter: blur(450px);
  position: absolute;
  right: -300px;
  top: 300px;
  border-radius: 500px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .grid.gradient {
    padding: 45px 20px;
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
.grid.prices .blocks {
  border-radius: var(--radius-tiny);
  background: var(--color-grey);
  padding: 40px 70px;
  border-left: 4px solid var(--color-grey-dark);
}
@media screen and (max-width: 1000px) {
  .grid.prices .blocks {
    padding: 40px 20px;
  }
}
.grid.prices div:nth-child(2) .blocks {
  background: rgba(101, 142, 176, 0.1);
}

[class*=col] {
  grid-column: span var(--span);
}
[class*=col] .blocks > *:first-child {
  margin-top: 0;
}
[class*=col] .blocks > *:last-child:not(h2):not(h3) {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .row {
    column-gap: 1rem;
  }
  [class*=col] {
    grid-column: span 12;
  }
  .col-3 {
    grid-column: span 6;
  }
  .col-4,
  .col-8 {
    grid-column: span 12;
  }
}
@media screen and (max-width: 600px) {
  .col-3,
  .col-4,
  .col-8 {
    grid-column: span 12;
  }
}
.grid.img-above {
  --image-offset: -350px;
  background: var(--theme-secondary);
  border-radius: var(--radius);
  padding: 100px;
  margin-top: calc(var(--image-offset) * -1);
}
@media screen and (max-width: 1200px) {
  .grid.img-above {
    --image-offset: -100px;
    margin-left: calc(var(--wrap-padding) * -1);
    margin-right: calc(var(--wrap-padding) * -1);
  }
}
@media screen and (max-width: 1200px) {
  .grid.img-above {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 700px) {
  .grid.img-above {
    padding: 20px;
  }
}
.grid.img-above figure {
  margin-top: var(--image-offset) !important;
  margin-bottom: 60px;
}
.grid.img-above figure img {
  display: block;
  border-radius: var(--radius);
}
.grid.img-below figure {
  margin-bottom: -150px;
}
@media screen and (max-width: 700px) {
  .grid.img-below figure {
    margin-bottom: 20px;
  }
}
.grid.img-below figure img {
  border-radius: 40px;
}
.grid.img-below h2 {
  margin-inline: 100px;
  background: var(--color-white);
  padding: 60px 300px 0 300px;
  border-radius: 40px 40px 0 0;
  position: relative;
}
@media screen and (max-width: 700px) {
  .grid.img-below h2 {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.grid.img-below p,
.grid.img-below .cta {
  margin-left: 100px;
  margin-right: 100px;
  padding: 0 300px;
}
@media screen and (max-width: 700px) {
  .grid.img-below p,
  .grid.img-below .cta {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

body {
  font-family: sans-serif;
}

a {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
}
a:hover {
  color: var(--color-red-dark);
}

.text-align-center,
.text-center {
  text-align: center;
}

.tagline p {
  margin: 0;
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 10%;
  font-family: "Inter";
}

.tagline + * {
  margin-top: 0.5rem;
}

.blue .tagline p,
.prices .tagline p {
  color: rgb(101, 142, 176);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 3rem;
  line-height: 1;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 1.75rem;
}

h5,
.h5 {
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1000px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.75rem;
  }
  h4,
  .h4 {
    font-size: 1.5rem;
  }
  h5,
  .h5 {
    font-size: 1.25rem;
  }
  h6,
  .h6 {
    font-size: 1.125rem;
  }
}
p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 700px) {
  p {
    font-size: 1rem;
  }
}

.button {
  display: inline-flex;
  background: var(--color-red);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-tiny);
  text-decoration: none;
  font-weight: 700;
  font-family: "Inter";
  transition: all 0.2s ease-out;
  font-size: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 700px) {
  .button {
    font-size: 1rem;
  }
}
.button:hover {
  background: var(--color-red-dark);
}
.button.secondary {
  background: none;
  border: 2px solid var(--color-red);
  color: var(--color-red);
}
.button.secondary:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.hero {
  background: var(--color-blue-light);
}
.hero .hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 50px 0 100px 0;
}
@media screen and (max-width: 1000px) {
  .hero .hero-inner {
    flex-wrap: wrap;
    padding: 30px 0 100px 0;
  }
}
.hero .hero-content {
  width: 40%;
  color: #000;
}
.hero .hero-content h1 {
  background: var(--color-red);
  display: inline-block;
  padding: 10px 1rem;
  border-radius: var(--radius-tiny);
  margin: 0 0 1rem 0;
  font-size: 5.625rem;
  line-height: 100%;
  color: var(--color-white);
}
.hero .hero-content h2 {
  font-weight: 300;
  font-size: 3.5rem;
  margin: 0 0 1rem 0;
  color: var(--color-red);
}
.hero .hero-content p {
  font-size: 1.75rem;
  line-height: 2rem;
  font-family: "Inter";
  font-weight: 400;
}
.hero .hero-image {
  max-width: 750px;
}
.hero .hero-image img {
  border-radius: var(--radius-small);
  margin-bottom: -177px;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .hero .hero-content {
    width: 100%;
  }
  .hero .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero .hero-content h2 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1.25rem;
  }
}

.cards-wrap-normal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.cards-wrap-normal .card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-tiny);
  width: calc(25% - 6rem);
  flex-grow: 1;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1019607843);
}
@media screen and (max-width: 1100px) {
  .cards-wrap-normal .card {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 700px) {
  .cards-wrap-normal .card {
    width: 100%;
  }
}
.cards-wrap-normal .card .content > *:last-child {
  margin-bottom: 0;
}

.card-slider-buttons {
  display: none;
}

.cards-wrap-slider {
  display: flex;
  column-gap: 2rem;
  padding: 100px 0 20px 0;
}
@media screen and (max-width: 700px) {
  .cards-wrap-slider {
    padding: 100px 0 20px 0;
    column-gap: 1rem;
  }
}
.cards-wrap-slider .card {
  width: 360px;
  flex-shrink: 0;
  border-radius: var(--radius-tiny);
  position: relative;
  display: flex;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1019607843);
  transition: transform 0.2s ease-out;
  height: auto;
}
@media screen and (min-width: 1001px) {
  .cards-wrap-slider .card:hover {
    transform: translatey(-10px);
  }
}
.cards-wrap-slider .card.intro {
  box-shadow: none;
  display: block;
}
.cards-wrap-slider .card.intro:hover {
  transform: none;
}
@media screen and (max-width: 700px) {
  .cards-wrap-slider .card {
    width: calc(50vw - 40px);
  }
}
@media screen and (max-width: 700px) {
  .cards-wrap-slider .card {
    width: calc(100vw - 60px);
  }
}
.cards-wrap-slider .card:before {
  z-index: -1;
  filter: blur(1rem);
  opacity: 0.5;
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(var(--angle), #22c1c3, #fdbb2d);
}
.cards-wrap-slider .card .content {
  background: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.cards-wrap-slider .card .content img.card-icon {
  width: 214px;
  align-self: center;
  margin-top: -40%;
  margin-bottom: 1rem;
}
.cards-wrap-slider .card .content .icon-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cards-wrap-slider .card .content .icon-wrap img.card-icon {
  width: 40px;
  margin: 0 auto 1rem auto;
}
.cards-wrap-slider .card .content h2 {
  margin-top: 0;
}
.cards-wrap-slider .card .content h3,
.cards-wrap-slider .card .content .h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin: 0.5rem 0;
}
.cards-wrap-slider .card .content .cta {
  margin-top: auto;
}
.cards-wrap-slider .card .content .cta button {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0;
  border: none;
  display: inline-block;
}
.cards-wrap-slider .card .content .cta button span {
  border: 1px solid;
  background: white;
  display: block;
  padding: 10px;
}
.cards-wrap-slider .card .content:hover .cta {
  scale: 1;
}

.swiper,
.refswiper {
  margin-left: calc(var(--swipePadding) * -1);
  margin-right: calc(var(--swipePadding) * -1);
  padding-left: var(--swipePadding);
  padding-right: var(--swipePadding);
  overflow-x: auto;
  scrollbar-width: none;
}

footer {
  background: var(--color-blue-light);
  padding: 70px 0;
}
footer .footer-inner {
  max-width: var(--wrap-width);
  margin: 0 auto;
}
footer .footer-inner ul {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 70px;
  padding: 0;
}
footer .footer-inner ul li.logo {
  margin-right: auto;
}
footer .footer-inner ul li.logo img {
  width: 168px;
  display: block;
}
footer .footer-inner ul li a {
  color: var(--color-black);
  text-decoration: none;
}
@media screen and (max-width: 1100px) {
  footer .footer-inner ul {
    flex-direction: column;
    row-gap: 1.25rem;
  }
  footer .footer-inner ul li.logo {
    margin-right: unset;
    margin-bottom: 3.75rem;
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
}

form {
  max-width: 1000px;
  margin: 0 auto;
}
form .form-row {
  display: flex;
  width: 100%;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1000px) {
  form .form-row {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
form .form-row .form-col {
  flex-grow: 1;
}
form .form-row label {
  display: block;
  padding: 10px;
  border: 1px solid #E8E6E6;
  border-bottom: none;
  border-radius: var(--radius-tiny) var(--radius-tiny) 0 0;
  font-size: 0.85rem;
}
form .form-row label.check-label {
  border: none;
}
form .form-row label.check-label:has(> input:user-invalid) {
  border: 1px solid var(--color-red);
  background: var(--color-red-light);
  border-radius: var(--radius-tiny);
}
form .form-row label:has(+ input:user-invalid) {
  border-color: var(--color-red);
  background: var(--color-red-light);
}
form .form-row label:has(+ input:user-valid), form .form-row label:has(+ textarea:user-valid) {
  border-color: var(--color-green);
  background: var(--color-green-light);
}
form .form-row label:has(+ input:focus), form .form-row label:has(+ textarea:focus) {
  border-color: var(--color-black);
}
form .form-row input[type=text],
form .form-row input[type=email],
form .form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #E8E6E6;
  border-top: none;
  border-radius: 0 0 var(--radius-tiny) var(--radius-tiny);
  font-size: 1rem;
  margin-top: 0;
}
form .form-row input[type=text]:user-invalid,
form .form-row input[type=email]:user-invalid,
form .form-row textarea:user-invalid {
  border-color: var(--color-red);
  background: url(../img/icon-form-error.svg) no-repeat right 10px bottom 10px var(--color-red-light);
}
form .form-row input[type=text]:user-valid,
form .form-row input[type=email]:user-valid,
form .form-row textarea:user-valid {
  border-color: var(--color-green);
  background: url(../img/icon-form-success.svg) no-repeat right 10px bottom 10px var(--color-green-light);
}
form .form-row input[type=text]:focus,
form .form-row input[type=email]:focus,
form .form-row textarea:focus {
  border-color: var(--color-black);
  outline: none;
}

.referenzen {
  display: flex;
  gap: 80px;
  padding-top: 60px;
}
.referenzen .quote {
  width: 780px;
  max-width: 100%;
  flex-shrink: 0;
}
.referenzen .quote blockquote {
  margin: 0;
  padding: 0;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  border-radius: var(--radius-small);
}
.referenzen .quote blockquote:before {
  content: "";
  font-size: 7.5rem;
  color: var(--color-blue);
  font-weight: 700;
  position: absolute;
  top: -30px;
  left: 60px;
  height: 60px;
  width: 60px;
  background: url(../img/icon-quote.svg) no-repeat center center;
  background-size: contain;
}
.referenzen .quote blockquote:after {
  content: "";
  font-size: 7.5rem;
  color: var(--color-blue);
  font-weight: 700;
  position: absolute;
  right: 60px;
  bottom: -30px;
  height: 110px;
  height: 60px;
  width: 60px;
  background: url(../img/icon-quote.svg) no-repeat center center;
  background-size: contain;
}
.referenzen .quote .client-wrap {
  margin-top: 1.625rem;
  display: flex;
  gap: 20px;
}
.referenzen .quote .client-wrap .client-picture {
  width: 65px;
  aspect-ratio: 1/1;
  background: var(--color-grey);
  border-radius: var(--radius-tiny);
  overflow: hidden;
}
.referenzen .quote .client-wrap .client-picture img {
  width: 100%;
  display: block;
}
.referenzen .quote .client-wrap .client-name p {
  margin: 0;
}
.referenzen .quote .client-wrap .client-name p strong {
  font-size: 1.5rem;
}

table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
}
table thead td {
  vertical-align: bottom;
}
table tr:nth-child(2n) {
  background: var(--color-blue-light);
}
table tr td {
  padding: 10px 26px;
  font-weight: 600;
}
table tr td.headline {
  font-weight: 700;
  font-size: 1.25rem;
}
table tr td:nth-child(2), table tr td:nth-child(3) {
  text-align: center;
}

@media screen and (max-width: 1040px) {
  .rwd-table {
    max-width: 100%;
    overflow-y: auto;
  }
  .rwd-table table tr td {
    padding: 10px;
    font-size: 0.85rem;
  }
  .rwd-table table tr td .tagline p {
    font-size: 0.6rem;
  }
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Barlow";
  scroll-behavior: smooth;
}

.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}

.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

header,
.hero,
main,
footer {
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

figure {
  margin: 0;
}
figure img {
  max-width: 100%;
  border-radius: var(--radius);
}
figure.icon img {
  width: 180px;
  border-radius: 0;
}

@media screen and (min-width: 1001px) {
  .hide-for-desktop {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .hide-for-mobile {
    display: none !important;
  }
}
