@font-face {
  font-family: "Iris Circular TT";
  src: url("IrisCircular-Light.woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Iris Circular TT";
  src: url("IrisCircular-Medium.woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Iris Circular TT";
  src: url("IrisCircular-BlackItalic.woff");
  font-weight: 600;
  font-style: normal;
}
:root {
  --main-accent-color: #FF2F4F;
  --main-accent-color-darker: #ce1e38;
  --secondary-accent-color: #6E3DE7;
  --secondary-accent-color-darker: #5429bf;
  --secondary-accent-color-light: #E1DBF9;
  --main-dark-color: #242424;
  --light-accent-color: #F3F7F9;
}

body {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0;
  background-color: #fff;
  font-family: "Iris Circular TT", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, p {
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 600;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 28px;
  font-style: italic;
}
h2:not(:only-child) {
  margin-bottom: 20px;
}

h4.card-title {
  font-size: 25px;
  font-weight: 600;
}

span.highlight {
  color: var(--main-accent-color);
}

.bg-light {
  background-color: var(--light-accent-color);
}

.floating {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  margin: 0;
}
.floating a.button.primary {
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
  margin: 0;
}
.floating a:hover {
  box-shadow: rgba(100, 100, 111, 0.9) 0px 7px 29px 0px;
}

.logo {
  position: absolute;
  left: 150px;
  top: 20px;
}
.logo img {
  width: 77px;
}
.logo.logowithlinks {
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  align-items: flex-start;
}
@media only screen and (max-width: 900px) {
  .logo.logowithlinks {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .logo.logowithlinks > img {
    margin-top: 20px;
  }
}
.logo.logowithlinks .logowithlinks-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.logo.logowithlinks .logowithlinks-right .sticky-get-in-touch {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #6E3DE7;
  padding: 6px 12px;
  font-weight: 300;
  font-size: 16px;
  font-weight: bold;
}
.logo.logowithlinks .logowithlinks-right .mobile-icons {
  display: none;
}
@media only screen and (max-width: 900px) {
  .logo.logowithlinks .logowithlinks-right {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .logo.logowithlinks .logowithlinks-right .mobile-icons {
    position: fixed;
    right: 20px;
    top: 30px;
  }
  .logo.logowithlinks .logowithlinks-right .mobile-links {
    display: none;
  }
  .logo.logowithlinks .logowithlinks-right .mobile-icons-icons {
    display: none;
    width: 20px;
    height: auto;
  }
  .logo.logowithlinks .logowithlinks-right:not(.mobile-icons-active) .hamburger {
    display: block;
  }
  .logo.logowithlinks .logowithlinks-right.mobile-icons-active {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .logo.logowithlinks .logowithlinks-right.mobile-icons-active .close {
    display: block;
  }
  .logo.logowithlinks .logowithlinks-right.mobile-icons-active .mobile-links {
    display: block;
  }
  .logo.logowithlinks .logowithlinks-right .mobile-icons {
    display: block;
  }
}
.logo.logowithlinks img {
  height: auto;
  flex: 0;
}
.logo.logowithlinks a.link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.logo.logowithlinks a.link:hover {
  color: #fff;
  opacity: 0.7;
}
.logo.center {
  position: relative;
  left: 0;
  top: 0;
}

header {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  background-color: var(--main-dark-color);
  background-image: url(./header_bg.png);
  background-size: 45vw;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 40px 30px;
}
header.carousel {
  background-image: none;
  height: 412px;
  padding: 0;
}
header.carousel .logos {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
header.carousel .logos .logo-left,
header.carousel .logos .logo-right {
  max-height: 60px;
  max-width: 50%;
  object-fit: contain;
}
header.carousel .carousel-item {
  position: relative;
}
header.carousel img.picture {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
header.carousel img.backdrop {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(20px);
}
header.carousel button,
header.carousel .carousel-indicators,
header.carousel .carousel-indicators button {
  z-index: 6;
}
header.carousel .text {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 40px 30px;
  z-index: 12;
}
header.carousel .carousel-control-prev,
header.carousel .carousel-control-next {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 99;
}
header.carousel.carousel-casestudy {
  height: auto;
}
header.carousel.carousel-casestudy img.picture {
  object-fit: unset;
}
header.carousel.carousel-casestudy .text {
  background: none;
}

.maintext {
  max-width: 700px;
  width: auto;
  font-style: italic;
  margin: auto;
  font-weight: 900;
  max-width: 300px;
  pointer-events: none;
}

section.module {
  padding: 40px 30px;
  text-align: center;
}
section.module p {
  font-size: 23px;
  font-weight: 200;
}
section.module p:not(:last-of-type) {
  margin-bottom: 20px;
}
section.module h1, section.module img {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
section.module.light {
  background-color: var(--light-accent-color);
}
section.module.dark {
  background-color: var(--main-dark-color);
  color: #fff;
}
section.module.video {
  padding: 0;
}
section.module.video.video-mb {
  margin-bottom: 68px;
}
section.module.insightseries.insightseries-bg {
  background-color: var(--light-accent-color);
}
section.module.insightseries h2 {
  margin-bottom: 32px;
}
section.module.insightseries > p {
  margin-bottom: 0;
}
section.module.insightseries .card-container .card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: transparent;
  flex: auto;
  padding: 0;
  margin: 60px 0 0 0;
  gap: 57px;
}
section.module.insightseries .card-container .card .card-left img {
  width: 324px;
}
section.module.insightseries .card-container .card .card-right {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 36px 0 0 0;
}
section.module.module-whitecenteredtext h2 {
  margin-bottom: 15px;
}
section.module.module-whitecenteredtext h2 + p {
  margin-bottom: 10px;
}
section.module.module-blackcenteredtext {
  background: #000 url("/assets/dark-theme-grid-bg.png") no-repeat 0 0;
  background-size: auto 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
section.module.module-blackcenteredtext h2, section.module.module-blackcenteredtext h2 + p {
  margin: 0;
}
section.module.module-blackcenteredtext .link.primary {
  color: #fff;
  text-decoration: none;
  border: thin solid #fff;
  padding: 22px;
  min-width: 279px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  section.module.module-blackcenteredtext {
    background-image: url("/assets/dark-theme-grid-bg-mobile.png");
    background-size: auto auto;
    background-position: bottom left;
  }
}
section.module.participation-approach p {
  margin-bottom: 50px;
}
section.module.maturity-test {
  border-top: 1px solid #D9D9D9;
  padding: 0;
}
section.module.maturity-test > h2 {
  color: var(--main-accent-color);
  padding: 0 20px;
}
section.module.maturity-test > p {
  padding: 0 20px;
}
section.module.maturity-test .legend {
  color: #6F6757;
  padding: 0;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 20px 0 0;
}
section.module.maturity-test .legend li {
  list-style: none;
  font-weight: 100;
  border-right: 1px solid #6F6757;
  margin-right: 20px;
  padding-right: 20px;
}
section.module.maturity-test .legend li:last-child {
  border-right: none;
}
section.module.maturity-test .legend li .number {
  font-weight: 400;
}
section.module.maturity-test .questionnaire {
  border-top: 1px solid #f3f7f9;
  margin-top: 40px;
  padding-top: 20px;
}
section.module.maturity-test fieldset {
  font-size: 16px;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 8fr;
  grid-template-areas: "number description" "answers answers";
  border: 0;
  column-gap: 20px;
  row-gap: 20px;
  padding: 20px;
}
section.module.maturity-test fieldset div {
  font-size: 16px;
  font-weight: 100;
  text-align: start;
  width: 100%;
}
section.module.maturity-test fieldset div:nth-child(1) {
  grid-area: number;
  text-align: end;
}
section.module.maturity-test fieldset div:nth-child(2) {
  grid-area: description;
}
section.module.maturity-test fieldset:nth-child(even) {
  background: #F3F7F9;
}
section.module.maturity-test fieldset:nth-child(odd) {
  background: #fff;
}
section.module.maturity-test fieldset .answers {
  color: var(--secondary-accent-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-area: answers;
  font-weight: 400;
}
section.module.maturity-test fieldset .answers input {
  appearance: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  outline: 2px solid var(--secondary-accent-color);
  border: 0;
  margin-top: 0;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
section.module.maturity-test fieldset .answers input:hover {
  background-color: var(--secondary-accent-color-light);
}
section.module.maturity-test fieldset .answers input:checked {
  background-color: var(--secondary-accent-color);
  border: 4px solid #fff;
}
section.module.maturity-test fieldset .answers input:user-invalid, section.module.maturity-test fieldset .answers input:user-invalid + label {
  border-color: var(--main-accent-color);
  outline-color: var(--main-accent-color);
  color: var(--main-accent-color);
}
section.module.maturity-test fieldset .answers label {
  padding: 0 10px;
  margin-right: 10px;
}
section.module.maturity-test fieldset .answers label:last-of-type {
  margin-right: 0;
  padding-right: 0;
}
section.module.test-results-score {
  display: none;
}
section.module.test-results-score p {
  font-family: "Iris Circular TT";
  font-weight: 300;
  font-size: 24px;
  max-width: 785px;
  margin: 0;
  padding: 0;
}
section.module.test-results-score p.score, section.module.test-results-score p.average {
  color: #000;
  font-size: 24px;
  font-weight: bold;
}
section.module.test-results-score p.description {
  margin-top: 30px;
}
section.module.test-results h2 {
  margin: 70px 0;
}
section.module.test-results .form-wrapper {
  margin-top: 40px;
  border-top: 1px solid #D9D9D9;
  background: #F3F7F9;
  padding: 0 30px 40px;
  width: 100%;
}
section.module.test-results .form-wrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 500px;
}
section.module.test-results .form-wrapper form label {
  text-align: start;
  width: 100%;
}
section.module.test-results .form-wrapper form input:not([type=submit]) {
  height: 50px;
  width: 100%;
  border: 0;
  font-size: 20px;
  font-family: "Iris Circular TT";
  margin: 8px 0 32px;
  color: #000;
  background-color: #fff;
}
section.module.test-results .form-wrapper .button {
  margin-top: 20px;
  width: auto;
}
section.module.compact.confirmation-screen-donwloadpdf {
  display: none !important;
}
section.module.compact.confirmation-screen-donwloadpdf.show-flex {
  display: flex !important;
}
section.module.module-homepage-cases > h2 {
  font-weight: bold;
  font-style: normal;
}
@media only screen and (min-width: 900px) {
  section.module.module-homepage-cases {
    padding: 55px 114px;
  }
}
section.module.module-other-keyprojects > h2 {
  font-weight: bold;
  font-style: normal;
}
@media only screen and (min-width: 900px) {
  section.module.module-other-keyprojects {
    padding: 55px 114px;
  }
}

a.button,
input.button {
  display: inline-block;
  width: auto;
  font-weight: 900;
  padding: 20px 25px;
  font-style: italic;
  text-decoration: none;
  margin-top: 40px;
  text-align: center;
  outline: 0;
  box-shadow: 0;
  border: 0;
  cursor: pointer;
}

a.button.primary,
input.button.primary {
  background-color: var(--secondary-accent-color);
  color: #fff;
  transition: all 0.2s ease-in-out;
}
a.button.primary:hover,
input.button.primary:hover {
  background-color: var(--secondary-accent-color-darker);
}

a.button.primary.light {
  background-color: var(--secondary-accent-color-light);
  color: #000;
  transition: all 0.2s ease-in-out;
}
a.button.primary.light:hover {
  background-color: var(--secondary-accent-color);
  color: #fff;
}

a.button.primary.light-ghost {
  border: 2px solid #6E3CE7;
  background: transparent;
  opacity: 1;
  padding: 19px 40px;
  line-height: 1;
  font-style: normal;
  color: #6E3CE7;
  font-size: 20px;
}

a.link.primary {
  color: var(--secondary-accent-color);
  fill: var(--secondary-accent-color);
  padding: 0;
  text-decoration: underline;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
a.link.primary:hover {
  color: var(--secondary-accent-color-darker);
  fill: var(--secondary-accent-color-darker);
}

a.link.main {
  color: var(--main-accent-color);
  fill: var(--main-accent-color);
  padding: 0;
  text-decoration: underline;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
a.link.main:hover {
  color: var(--main-accent-color-darker);
  fill: var(--main-accent-color-darker);
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

section.module .card-container + p {
  font-size: 12px;
  margin-top: 20px;
}
section.module h2 + p {
  font-size: 24px;
  margin-bottom: 40px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: auto;
  background: transparent;
  border: none;
}
.card:has(.card-img-container) {
  gap: 20px;
}
.card.callout {
  max-width: 300px;
  width: auto;
}
.card.callout img {
  max-width: 90px;
}
@media only screen and (min-width: 900px) {
  .card.callout img {
    height: 80px;
    width: auto;
  }
}
.card.callout span.highlight {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #000;
}
.card.colorbg {
  text-align: left;
  padding: 32px;
  background-color: #fff;
  width: 100%;
  flex: auto;
}
.card.colorbg a.button {
  margin-top: 0;
}
.card.colorbg a.link.primary {
  text-align: center;
}
.card.colorbg p.card-introtext {
  font-size: 22px;
  font-weight: 200;
  text-align: center;
}

.card-img-container {
  position: relative;
  display: block;
  overflow: hidden;
}
.card-img-container img {
  max-width: none;
}
.card-img-container .label-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10px;
  width: 100%;
  position: absolute;
  height: 110px;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 17.67%, rgba(67, 67, 67, 0.53) 49.67%, rgba(196, 196, 196, 0) 99.6%);
}
.card-img-container .label-container h4 {
  width: 100%;
  bottom: 10px;
  color: #fff;
}

ul.card-core-kpi {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
}

.reinforcement {
  display: block;
  font-size: 25px;
  font-weight: 600;
  margin: auto;
  margin-top: 40px;
}

.infocontent {
  display: block;
  width: 50%;
  margin: auto;
  font-size: 24px;
  line-height: 36px;
}

section.module.leadgen {
  background: #242424 url("/assets/dark-theme-grid-bg-form.png") no-repeat bottom right;
  background-size: 419px auto;
  color: #fff;
  padding: 85px 30px 66px 30px;
  position: relative;
}
section.module.leadgen > * {
  z-index: 2;
  position: relative;
}

.leadgenform {
  color: #fff;
  display: block;
  text-align: left;
  margin: auto;
}
.leadgenform form {
  display: flex;
  flex-direction: column;
}
.leadgenform label {
  font-weight: 200;
}
.leadgenform .hs-form__legal-consent__row:not(:has(label)) {
  font-weight: 200;
}
.leadgenform .hs-form__legal-consent__row:has(label) label {
  font-weight: 200;
}
.leadgenform input {
  width: 100%;
  border: 0;
  height: 50px;
  font-size: 20px;
  font-family: "Iris Circular TT";
  margin-top: 8px;
  margin-bottom: 32px;
  color: #000;
  background-color: #fff;
}
.leadgenform input[type=submit],
.leadgenform .button.submit {
  background-color: var(--secondary-accent-color);
  color: #fff;
  font-family: "Iris Circular TT";
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  padding: 16px;
  width: auto;
  margin: 50px auto 0;
  min-width: 195px;
  transition: all 0.2s ease-in-out;
}
.leadgenform input[type=submit]:hover,
.leadgenform .button.submit:hover {
  background-color: var(--secondary-accent-color-darker);
}
.leadgenform input[type=submit]:hover,
.leadgenform .button.submit:hover {
  background-color: var(--secondary-accent-color-darker);
}

.hs-form__legal-consent label {
  display: block;
}
.hs-form__legal-consent a {
  color: var(--secondary-accent-color);
}

.hs-form__legal-consent__row {
  padding: 0 0 20px 0;
}

.hs-form__legal-consent label input {
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
  float: left;
}
.hs-form__legal-consent label span.hs-form__field__label__required {
  display: inline;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
}
footer .slogans {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
}
footer .slogans .footer-first {
  color: var(--main-accent-color);
  font-weight: 200;
  text-align: right;
}
footer .slogans .footer-first .highlight {
  font-weight: bold;
}
footer .slogans .footer-second {
  color: var(--main-dark-color);
  font-weight: bold;
  font-style: italic;
}
footer .copyright {
  color: #6F6757;
  text-align: center;
  font-weight: 300;
}

section.module.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  top: 0;
  background: #fff;
  position: sticky;
  padding: 20px;
  text-align: left;
  z-index: 10;
}
section.module.nav a.link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  width: fit-content;
}
section.module.nav a.link.backhome {
  color: #A9A9A9;
}
section.module.nav a.button,
section.module.nav input.button {
  margin-top: 0;
  padding: 15px 20px;
  font-size: 15px;
}
section.module.nav a.link.main {
  text-decoration: none;
}
section.module.nav a.link.primary {
  text-decoration: none;
  font-style: italic;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 0 50%;
}
.breadcrumbs .parent {
  font-weight: 200;
  color: #A9A9A9;
  text-decoration: none;
}

section.module.side-by-side.compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
section.module.side-by-side.compact > div:first-child {
  flex: 1 0 33%;
  max-width: 500px;
}
section.module.side-by-side.compact .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.module.side-by-side.compact .text h3 {
  color: #FF2F4F;
  font-style: normal;
  font-size: 24px;
  font-weight: bold;
}
section.module.side-by-side.compact .text p {
  font-weight: 200;
  margin: 0;
}
section.module.side-by-side.compact .text a {
  color: var(--secondary-accent-color);
  border-bottom: 2px solid var(--secondary-accent-color);
  text-decoration: none;
}
section.module.side-by-side.compact .text svg,
section.module.side-by-side.compact .text path {
  fill: var(--secondary-accent-color);
  stroke: var(--secondary-accent-color);
}
section.module.side-by-side.compact .text a:hover,
section.module.side-by-side.compact .text a:hover svg,
section.module.side-by-side.compact .text a:hover path {
  color: var(--secondary-accent-color-darker);
  fill: var(--secondary-accent-color-darker);
  stroke: var(--secondary-accent-color-darker);
  border-color: var(--secondary-accent-color-darker);
}
section.module.side-by-side.compact .text h2 {
  font-style: normal;
  font-size: 32px;
  margin: 0;
  font-weight: bold;
}
section.module.side-by-side.compact .text .country {
  font-size: 16px;
  color: #b3b3b3;
  margin: 0;
}
section.module.side-by-side.compact .text a.button.primary.light-ghost {
  margin-top: 0;
  font-size: 20px;
}
section.module.side-by-side.compact .text .note {
  font-size: 15px;
  line-height: 1.2;
}
section.module.side-by-side.compact.compact-client > div:first-child {
  flex: 1;
  max-width: none;
}
section.module.side-by-side.compact.compact-client .text .headline .eyebrow {
  display: flex;
  gap: 20px;
  line-height: 1;
  vertical-align: bottom;
  font-size: 20px;
}
section.module.side-by-side.compact.compact-client .text .headline .eyebrow b {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
section.module.side-by-side.compact.compact-client .text .headline h2 {
  margin: 20px 0 0 0;
}
section.module.side-by-side.compact.compact-client .text .headline h3 {
  font-style: normal;
  font-size: 30px;
  margin: 20px 0 0 0;
  font-weight: normal;
  color: #FF2F4F;
}

section.module.hero-image {
  padding: 0;
  height: 350px;
}
section.module.hero-image img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

section.module.share {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: end;
  gap: 20px;
  background: #FF2F4F;
}
section.module.share p {
  font-weight: bold;
  flex: 1 0 50%;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
section.module.share .share-btns {
  flex: 1 0 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
section.module.share .share-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
section.module.share .share-btns a:hover svg {
  fill: var(--secondary-accent-color-darker);
}
section.module.share svg {
  width: 48px;
  height: 48px;
}

section.module.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
section.module.gallery h2 {
  flex: 1 0 100%;
}
section.module.gallery .label {
  color: #ffffff;
  position: absolute;
  bottom: 0;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 17.67%, rgba(67, 67, 67, 0.53) 49.67%, rgba(196, 196, 196, 0) 99.6%);
}
section.module.gallery a.image {
  overflow: hidden;
  max-height: 500px;
  aspect-ratio: 1/1;
  position: relative;
}
section.module.gallery a.image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  background: transparent;
  opacity: 0.5;
}
section.module.gallery a.image:hover::before {
  background: var(--main-accent-color);
}
section.module.gallery .image {
  flex: 1 0 250px;
  max-width: 500px;
  position: relative;
}
section.module.gallery .image img {
  object-fit: contain;
  background-color: var(--light-accent-color);
  height: 100%;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  z-index: -1;
  position: relative;
}
section.module.gallery a.image:hover img {
  transform: scale(1.2);
}
section.module.gallery.gallery-v2 {
  gap: 27px;
}
@media only screen and (min-width: 900px) {
  section.module.gallery.gallery-fullwidth {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }
  section.module.gallery.gallery-fullwidth .image {
    flex: 1 0 49%;
  }
}

.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  padding: 50px 20px;
  color: #fff;
}
.sticky-bar.stuck .scroll-to-top {
  display: inline-block;
}
.sticky-bar .sticky-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-bar .sticky-left a {
  text-decoration: none;
  color: #fff;
  margin-right: 0;
  font-weight: 300;
  padding: 24px 29px;
  min-width: 181px;
  text-align: center;
  border: thin solid #fff;
  line-height: 1;
}
.sticky-bar .sticky-left .sticky-button {
  display: inline-block;
  margin-right: 20px;
  padding: 6px 12px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
.sticky-bar .scroll-to-top {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.sticky-bar .sticky-get-in-touch {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #6E3DE7;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 16px;
}

.owl-carousel .owl-stage-outer .owl-stage {
  align-items: center;
  gap: 50px;
  display: flex;
}

@media only screen and (max-width: 900px) {
  .logo.logowithlinks {
    padding: 0 20px;
  }
  .sticky-bar {
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-items: flex-end;
  }
  .sticky-bar .sticky-left {
    display: flex;
    flex-direction: column;
  }
  section.module.insightseries .card-container .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 500px) {
  h1, h2, h3, h4, h5, p {
    max-width: 500px;
    margin: 0 auto;
  }
  .leadgenform {
    max-width: 500px;
  }
}
@media only screen and (min-width: 900px) {
  .floating a.button.primary {
    font-size: 24px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 40px;
  }
  h2:not(:only-child) {
    margin-bottom: 40px;
  }
  h4.card-title {
    font-size: 20px;
  }
  h1, h2, h3, h4, h5, p {
    margin: 0 auto;
    max-width: none;
  }
  header {
    background-size: contain;
    padding: 80px 120px;
    gap: 40px;
  }
  header .logo img {
    max-width: 90px;
  }
  header .maintext {
    max-width: 700px;
  }
  header.carousel {
    height: 600px;
  }
  header.carousel .logos .logo-left,
  header.carousel .logos .logo-right {
    max-height: 90px;
  }
  .carousel-indicators {
    display: flex;
  }
  section.module {
    padding: 55px 150px;
    margin: 0 auto;
  }
  section.module.maturity-test {
    padding: 70px 0;
  }
  section.module.maturity-test > p {
    padding: 0 50px;
  }
  .maturity-test .questionnaire {
    margin-top: 70px;
  }
  section.module.test-results h2 {
    margin: 70px 0;
  }
  section.module.test-results .form-wrapper {
    margin-top: 70px;
    padding: 0 0 70px;
  }
  section.module.test-results .button {
    margin-top: 50px;
  }
  .maturity-test .legend {
    margin-top: 20px;
    font-size: 14px;
  }
  .maturity-test fieldset {
    grid-template-columns: 1fr 4fr 4fr;
    grid-template-rows: 1fr;
    grid-template-areas: "number description answers";
    row-gap: 0;
  }
  section.module:not(:has(.card-container)) a.button,
  section.module:not(:has(.card-container)) input.button {
    font-size: 24px;
  }
  section.module p {
    font-size: 32px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .maturity-test fieldset p {
    font-size: 16px;
  }
  section.module .card-container + p.reference {
    font-size: 12px;
    margin: 20px auto;
  }
  .module.module-owl-carousel {
    padding-left: 0;
    padding-right: 0;
  }
  a.button {
    font-size: 16px;
    padding: 20px 25px;
    margin-top: 50px;
  }
  .card-container {
    align-items: stretch;
    flex-direction: row;
    margin: 0 auto;
    justify-content: center;
  }
  section.module .card-container + p {
    font-size: 24px;
    margin-top: 40px;
  }
  section.module h2 + p {
    font-size: 24px;
    margin-bottom: 70px;
  }
  .card {
    flex: 1 0;
    height: 100%;
    justify-content: space-between;
  }
  .card.callout img {
    height: 80px;
    width: auto;
  }
  .card:only-child {
    align-self: center;
    flex: 0 0 33%;
  }
  section.module .card.colorbg:only-child > img {
    min-width: 240px;
    max-width: 240px;
    max-height: none;
  }
  .card p.card-introtext {
    flex: 1 0;
    min-height: 132px;
    font-size: 22px;
  }
  .card.colorbg {
    gap: 20px;
  }
  .card.colorbg:only-of-type {
    min-width: 80%;
  }
  .card.colorbg p.card-introtext,
  .card.colorbg .highlight,
  .card.colorbg .card-title {
    text-align: left;
    margin: 0;
    width: 100%;
  }
  .card.callout span.highlight {
    font-size: 48px;
  }
  a.link.primary {
    text-align: left;
  }
  .card-img-container {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
    flex: 1 0;
    width: 100%;
  }
  .card-img-container .label-container {
    width: 100%;
    height: 110px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 17.67%, rgba(67, 67, 67, 0.53) 49.67%, rgba(196, 196, 196, 0) 99.6%);
  }
  ul.card-core-kpi {
    padding: 0;
    list-style: none;
    font-weight: bold;
    flex: 1 0;
  }
  .reinforcement {
    font-size: 20px;
    max-width: 521px;
    margin-top: 50px;
  }
  .infocontent {
    display: block;
    width: 50%;
    margin: auto;
    font-size: 24px;
    line-height: 36px;
  }
  section.module.leadgen {
    width: 100%;
  }
  section.module.leadgen h2 {
    margin-bottom: 50px;
    max-width: 800px;
  }
  section.module.leadgen.leadgendownloadform h2 {
    margin-bottom: 20px;
    max-width: 800px;
  }
  section.module.leadgen.leadgendownloadform h3 {
    margin-bottom: 50px;
    max-width: 800px;
  }
  section.module.leadgen.leadgendownloadform #thank-you-message .btn-primary {
    background-color: #6E3DE7;
    color: #fff;
    border: none;
    padding: 20px 20px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all ease 250ms;
    font-family: "Iris Circular TT";
    text-decoration: none;
    display: inline-block;
    margin: 20px 0 0;
    font-weight: 600;
  }
  section.module.leadgen.leadgendownloadform #thank-you-message .btn-primary:hover {
    background-color: #5429bf;
  }
  section.module.leadgen .leadgenform {
    max-width: 510px;
  }
  .leadgenform input[type=submit]:hover {
    cursor: pointer;
  }
  footer {
    padding: 48px;
  }
  footer .slogans {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    gap: 16px;
    font-size: 24px;
  }
  footer .slogans .footer-first {
    color: var(--main-accent-color);
    text-align: right;
  }
  footer .slogans .footer-second {
    color: var(--main-dark-color);
    font-weight: bold;
    font-style: italic;
  }
  section.module.side-by-side.compact {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  section.module.side-by-side.compact .image {
    flex: 1 0 250px;
  }
  section.module.side-by-side.compact .text h4 {
    margin: 0;
  }
  section.module.side-by-side.compact .text p {
    font-size: 22px;
  }
  section.module.nav {
    padding: 20px 150px;
    text-align: left;
  }
  section.module.nav a.link {
    font-size: 18px;
  }
  section.module.nav a.button {
    font-size: 18px;
  }
  section.module.gallery {
    max-width: 1440px;
  }
  section.module.gallery .image {
    max-width: 1440px;
  }
}
@media only screen and (min-width: 1200px) {
  .card p.card-introtext {
    flex: 1 0;
    min-height: 100px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1500px) {
  section.module.gallery .image {
    min-width: 400px;
  }
}
/*******************************************
 * SCOPED STYLES: prefix with .section-form-tabs
 *******************************************/
.section-form-tabs {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
}
.section-form-tabs .multi-step-form-container {
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 5px;
  background: #F3F7F9;
}
.section-form-tabs .tabs {
  display: flex;
  border-bottom: 8px solid #FFD9DF;
  margin-bottom: 1rem;
  background: #fff;
}
.section-form-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  cursor: pointer;
  font-weight: bold;
  color: #666;
}
.section-form-tabs .tab.active {
  color: #000;
  position: relative;
}
.section-form-tabs .tab.active::after {
  content: "";
  height: 8px;
  width: 100%;
  left: 0;
  bottom: -8px;
  background: #FF2F4F;
  position: absolute;
}
.section-form-tabs .step-panel {
  display: none;
  padding: 0 20px 61px 20px;
}
.section-form-tabs .step-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-form-tabs .step-panel h2 {
  margin-top: 0;
}
.section-form-tabs .step-panel.step-pane--response {
  padding-bottom: 52px;
}
.section-form-tabs .step-panel.step-pane--response h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 31px 0 32px 0;
  font-style: normal;
}
.section-form-tabs .step-panel.step-pane--response .donwload-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 0 40px 0;
  font-family: "Iris Circular TT";
  font-weight: 300;
  font-size: 24px;
  max-width: 785px;
  text-align: center;
}
.section-form-tabs .step-panel .step-panel__content {
  background: #fff;
  padding: 37px 58px;
  margin: 0 0 56px 0;
  width: 100%;
  font-size: 24px;
  line-height: 1.2;
  font-family: "Iris Circular TT";
  font-weight: 300;
}
.section-form-tabs .step-panel .step-panel__content .persona {
  display: none;
}
.section-form-tabs .step-panel .step-panel__content .persona.active {
  display: block;
}
.section-form-tabs .step-panel .step-panel__content .persona h3 {
  margin: 0 0 10px 0;
  font-size: 28px;
  line-height: 1.2;
  font-family: "Iris Circular TT";
  font-weight: bold;
}
.section-form-tabs .step-panel .step-panel__content .persona h4 {
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.2;
  font-family: "Iris Circular TT";
  font-weight: bold;
}
.section-form-tabs .step-panel.step-panel--form {
  padding: 0 20px 20px 20px;
}
.section-form-tabs .btn-primary {
  background-color: #6E3DE7;
  color: #fff;
  border: none;
  padding: 20px 20px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: all ease 250ms;
  font-family: "Iris Circular TT";
  text-decoration: none;
  font-weight: 600;
}
.section-form-tabs .btn-primary:hover {
  background-color: #5429bf;
}
.section-form-tabs .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.section-form-tabs .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.section-form-tabs .form-group input[type=text],
.section-form-tabs .form-group input[type=email],
.section-form-tabs .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.section-form-tabs .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-form-tabs section.module.maturity-test {
  border-top: 0;
  padding: 0;
}
.section-form-tabs section.module.maturity-test h2 {
  color: #000;
  padding: 0;
  margin: 55px 0 31px 0;
  font-size: 24px;
  font-weight: bold;
  font-style: normal;
}
.section-form-tabs section.module.maturity-test .text {
  font-family: "Iris Circular TT";
  font-weight: 300;
  font-size: 24px;
  max-width: 785px;
  margin: 0 auto;
}
.section-form-tabs section.module.maturity-test .details p {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  font-style: normal;
}
@media (max-width: 600px) {
  .section-form-tabs .tabs {
    flex-direction: column;
  }
  .section-form-tabs .tab {
    border-bottom: 1px solid #ddd;
  }
}

/*# sourceMappingURL=style.css.map */
