/*
  ICI
  Copyright (C) 2022 by Systemantics, Bureau for Informatics

  Systemantics GmbH
  Hausbroicher Str. 218
  47877 Willich
  GERMANY

  Web:    www.systemantics.net
  Email:  hello@systemantics.net

  Permission granted to use the files associated with this
  website only on your webserver.

  Changes to these files are PROHIBITED due to license restrictions.
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --platform-color-black: #000;
  --platform-color-white: #fff;
  --platform-color-red: #E30000;
  --platform-color-blue: #0063FF;
  --platform-color-green: #00A651;
  --platform-color-purple: #8000C9 ;
}

@font-face {
  font-family: "HB Items";
  src: url("../webfonts/platform/HBItemsWebv1.24-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "HB Items";
  src: url("../webfonts/platform/HBItemsWebv1.24-RegularItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "HB Items";
  src: url("../webfonts/platform/HBItemsWebv1.24-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "HB Items";
  src: url("../webfonts/platform/HBItemsWebv1.24-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: "ABC Solar";
  src: url("../webfonts/platform/ABCSolar-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: light;
}
@font-face {
  font-family: "ABC Solar";
  src: url("../webfonts/platform/ABCSolar-Extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
}
/* Styles */
img {
  display: block;
}

a {
  text-decoration: none;
  color: var(--platform-color-black);
}

em {
  font-style: italic;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
}

.lazyimage {
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
}

:root {
  --platform-space-left: 2.25rem;
  --platform-space-right: 2.25rem;
  --platform-space-top: 5.75rem;
  --platform-space-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  :root {
    --platform-space-left: 1.5rem;
    --platform-space-right: 1.5rem;
    --platform-space-top: 6.75rem;
  }
}

.button {
  cursor: pointer;
  user-select: none;
  border: 0;
  margin: 0;
  padding: 0;
  opacity: 1;
  transition: opacity 50ms ease;
  height: 2.9375rem;
  width: 2.9375rem;
}
.no-touch .button:hover {
  opacity: 0.5;
}

.button--image {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
}

.tippy-box {
  font: bold 2.25rem/1.1112 "ABC Solar", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, min(2.5vw, 3.8vh), 2.25rem);
  letter-spacing: -0.003em;
  font-feature-settings: "ss01", "ss02", "ss09";
  background-color: var(--platform-color-white);
  border-radius: 0;
  color: inherit;
  text-align: center;
  transform: scale(0.9, 1);
}
@media screen and (max-width: 768px) {
  .tippy-box {
    font-size: 1.125rem;
  }
}

.platform {
  background-color: var(--platform-color-black);
  color: var(--platform-color-white);
  transition: background-color 500ms ease;
  min-height: 100dvh;
}

*[data-platformbackground=red] {
  background-color: var(--platform-color-red);
}

*[data-platformbackground=blue] {
  background-color: var(--platform-color-blue);
}

*[data-platformbackground=green] {
  background-color: var(--platform-color-green);
}

*[data-platformbackground=purple] {
  background-color: var(--platform-color-purple);
}

*[data-platformbackground=black] {
  background-color: var(--platform-color-black);
}

.platform--link-red {
  color: var(--platform-color-red);
}

.platform--link-blue {
  color: var(--platform-color-blue);
}

.platform--link-green {
  color: var(--platform-color-green);
}

.platform--link-purple {
  color: var(--platform-color-purple);
}

.platform-header__logo {
  position: fixed;
  top: 2.25rem;
  left: var(--platform-space-left);
  width: 9.5625rem;
  z-index: 99999;
}

.platform-header-menu {
  background-image: url("../elements/platform/platform-hamburger.svg");
  position: fixed;
  top: 2.25rem;
  right: var(--platform-space-right);
  z-index: 100;
}

.platform-header-close {
  background-image: url("../elements/platform/platform-close.svg");
  position: absolute;
  top: 2.25rem;
  right: var(--platform-space-right);
  z-index: 100;
}

.platform-main {
  background-color: var(--platform-color-black);
  border-bottom-left-radius: 7.5rem;
  border-bottom-right-radius: 7.5rem;
  display: flex;
  overflow: hidden;
  min-height: 100dvh;
}

.platform-home,
.platform-related {
  font: bold 5.625rem/0.8889 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, min(6.1vw, 9.2vh), 5.625rem);
  letter-spacing: -0.02em;
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.125rem;
  height: 100dvh;
  padding-left: var(--platform-space-left);
  padding-right: var(--platform-space-right);
  padding-top: var(--platform-space-top);
  padding-bottom: var(--platform-space-bottom);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .platform-home,
.platform-related {
    font-size: 2.25rem;
    line-height: 1;
  }
}

.platform-home__border,
.platform-related__border {
  border-left: 1px solid var(--platform-color-white);
  height: 11.25rem;
}

.platform-home__sections {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 2.4375rem;
  width: 87.3343151694%;
}

.text-animation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.text-animation__word {
  display: flex;
  flex-wrap: wrap;
  transition: color 150ms ease;
}

.text-animation__char {
  transition: color 150ms ease;
}

.text-animation__word--hover {
  color: var(--platform-color-white);
}

.platform-related__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.775147929%;
  row-gap: 1.125rem;
  justify-content: center;
  width: 74.6686303387%;
}

.platform-related-item {
  aspect-ratio: 1/0.7048;
  border-radius: 1.022em;
  display: block;
  position: relative;
  overflow: hidden;
  width: min(32.1499013807%, 34.4vh);
}

.platform-related-item__image {
  display: block;
  height: 100%;
}
.platform-related-item__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.platform-hover {
  position: relative;
}
.no-touch .platform-hover:hover .platform-hover__layer {
  opacity: 1;
}
.no-touch .platform-hover:hover a,
.no-touch .platform-hover:hover .platform-testimonial__image {
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  position: relative;
}
.no-touch .platform-hover:hover a img,
.no-touch .platform-hover:hover .platform-testimonial__image img {
  mix-blend-mode: saturation;
}

.platform-section {
  position: relative;
  width: 100%;
}

.platform-section--open .platform-section__card--first {
  display: none;
}

.platform-section__card {
  border-bottom-left-radius: 7.5rem;
  border-bottom-right-radius: 7.5rem;
  background-color: var(--platform-color-black);
  position: relative;
  padding-left: var(--platform-space-left);
  padding-right: var(--platform-space-right);
  padding-top: var(--platform-space-top);
  padding-bottom: var(--platform-space-bottom);
  height: 100%;
}

.platform-section__card--first {
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  padding-bottom: 2.9375rem;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.platform-section__card--second {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  row-gap: 2.5rem;
}

.platform-section__title {
  font: bold 8.75rem/0.8858 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(5rem, min(9.8vw, 14.5vh), 8.75rem);
  letter-spacing: -0.02em;
  text-align: center;
  width: 87.3343151694%;
}
@media screen and (max-width: 768px) {
  .platform-section__title {
    font-size: 3.375rem;
    line-height: 1;
  }
}

.platform-section__button {
  background-image: url("../elements/platform/platform-arrow-down.svg");
  position: absolute;
  bottom: var(--platform-space-bottom);
  height: 2.9375rem;
  width: 2.9375rem;
}

.platform-section__top-line {
  font: normal 0.875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  position: absolute;
  top: 3.4375rem;
  left: 17.5rem;
  right: 17.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .platform-section__top-line {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}
.platform-section__card:not(.platform-section__card--first) .platform-section__top-line {
  text-transform: uppercase;
}

.platform-section__text {
  font: normal 3.125rem/1.12 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.875rem, min(3.5vw, 5.3vh), 3.125rem);
  letter-spacing: -0.006em;
  text-align: center;
  width: 87.3343151694%;
}
@media screen and (max-width: 768px) {
  .platform-section__text {
    font-size: 1.375rem;
    line-height: 1.09;
  }
}

.splide:not(.is-overflow) .splide__list {
  justify-content: center;
}

.story-slideshow .splide__slide {
  width: 100%;
}

.splide__pagination {
  padding-top: 2.125rem;
  gap: 0.75rem;
}

.splide__pagination__page {
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  padding: 0;
  border: 0;
  transition: opacity 50ms ease;
  opacity: 1;
  height: 0.75rem;
  width: 0.75rem;
}
.no-touch .splide__pagination__page:hover {
  opacity: 0.5;
}
.splide__pagination__page.is-active {
  background-color: var(--platform-color-black);
}

.splide__arrow {
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  background-color: transparent;
  border: 0;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  top: 50%;
  opacity: 1;
  transition: opacity 50ms ease;
  transform: translateY(-50%);
  height: 2.9375rem;
  width: 2.9375rem;
}
.no-touch .splide__arrow:hover {
  opacity: 0.5;
}
.splide.is-overflow .splide__arrow {
  display: block;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow:after {
  content: "";
  display: block;
  background-image: url("../elements/platform/platform-arrow-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
}

.splide__arrow--prev {
  left: -7.0590368238%;
}
.story-slideshow .splide__arrow--prev {
  left: calc(-1 * (2.9375rem + 1.5rem));
}
.splide__arrow--prev:after {
  transform: rotate(90deg);
}

.splide__arrow--next {
  right: -7.0590368238%;
}
.story-slideshow .splide__arrow--next {
  right: calc(-1 * (2.9375rem + 1.5rem));
}
.splide__arrow--next:after {
  transform: rotate(-90deg);
}

.platfrom-section__slideshow {
  position: relative;
  width: 100%;
}
.platfrom-section__slideshow .splide__list {
  gap: 1.1875rem;
}
.platfrom-section__slideshow .splide__slide {
  width: 14.625rem !important;
}

.section-slideshow {
  margin-left: 6.3328424153%;
  width: 87.3343151694%;
}

.section-slideshow-slide {
  aspect-ratio: 1/0.6752;
  border-radius: 3.9375rem;
  overflow: hidden;
}

.section-slideshow-slide__image {
  display: block;
  position: relative;
  height: 100%;
}
.section-slideshow-slide__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.platform-side {
  font: normal 1.75rem/1 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  transform: translateY(-50%);
  right: var(--platform-space-right);
  top: 50%;
  z-index: 100;
}

.platform-side__button {
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--platform-color-white);
  border-radius: 50%;
  color: var(--platform-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 50ms ease;
  opacity: 1;
  height: 3rem;
  width: 3rem;
}
.no-touch .platform-side__button:hover {
  opacity: 0.5;
}

.platform-side__button--disabled {
  pointer-events: none;
  opacity: 0.5;
}

.platform-side__button--related {
  font-size: 3.75rem;
  line-height: 0.1;
  letter-spacing: -0.08em;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-side__button--related span {
  position: absolute;
  transform: translate(-0.04em, -1.25rem);
  top: 50%;
  height: 100%;
  width: 100%;
}

.platform-side__button--actve[data-color=black] {
  background-color: var(--platform-color-black);
}

.platform-story {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.platform-story-slide {
  background-color: var(--platform-color-black);
  border-bottom-left-radius: 7.5rem;
  border-bottom-right-radius: 7.5rem;
  padding-top: var(--platform-space-top);
  padding-left: var(--platform-space-left);
  padding-right: var(--platform-space-right);
  pointer-events: none;
  position: absolute;
  transform: translateY(0);
  transition: transform 500ms ease;
  height: 100%;
  width: 100%;
}
.platform-story-slide:nth-child(20) {
  z-index: 0;
}
.platform-story-slide:nth-child(19) {
  z-index: 1;
}
.platform-story-slide:nth-child(18) {
  z-index: 2;
}
.platform-story-slide:nth-child(17) {
  z-index: 3;
}
.platform-story-slide:nth-child(16) {
  z-index: 4;
}
.platform-story-slide:nth-child(15) {
  z-index: 5;
}
.platform-story-slide:nth-child(14) {
  z-index: 6;
}
.platform-story-slide:nth-child(13) {
  z-index: 7;
}
.platform-story-slide:nth-child(12) {
  z-index: 8;
}
.platform-story-slide:nth-child(11) {
  z-index: 9;
}
.platform-story-slide:nth-child(10) {
  z-index: 10;
}
.platform-story-slide:nth-child(9) {
  z-index: 11;
}
.platform-story-slide:nth-child(8) {
  z-index: 12;
}
.platform-story-slide:nth-child(7) {
  z-index: 13;
}
.platform-story-slide:nth-child(6) {
  z-index: 14;
}
.platform-story-slide:nth-child(5) {
  z-index: 15;
}
.platform-story-slide:nth-child(4) {
  z-index: 16;
}
.platform-story-slide:nth-child(3) {
  z-index: 17;
}
.platform-story-slide:nth-child(2) {
  z-index: 18;
}
.platform-story-slide:nth-child(1) {
  z-index: 19;
}

.platform-story-slide--up {
  transform: translateY(-100%);
}

.platform-story-slide--active {
  pointer-events: all;
}

.platform-story-slide__topline {
  font: normal 0.875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  top: 3.4375rem;
  left: 17.5rem;
  right: 17.5rem;
  text-align: center;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .platform-story-slide__topline {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}
.platform-story-slide__topline:not(.platform-story-slide__topline--first) {
  text-transform: uppercase;
}

.platform-story-slide__topline--first {
  font: bold 2.25rem/1.11 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, min(2.5vw, 3.8vh), 2.25rem);
  letter-spacing: -0.003em;
  top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .platform-story-slide__topline--first {
    font-size: 1.125rem;
  }
}

.platform-story-slide__content {
  height: 100%;
}

.platform-story-quote {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}

.platform-story-quote__text {
  font: normal 3.125rem/1.12 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.875rem, min(3.5vw, 5.3vh), 3.125rem);
  letter-spacing: -0.006em;
  font-weight: normal;
  width: 87.3343151694%;
}
@media screen and (max-width: 768px) {
  .platform-story-quote__text {
    font-size: 1.375rem;
    line-height: 1.09;
  }
}

.platform-story-quote__author {
  font: normal 3.125rem/1.12 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.875rem, min(3.5vw, 5.3vh), 3.125rem);
  letter-spacing: -0.006em;
}
@media screen and (max-width: 768px) {
  .platform-story-quote__author {
    font-size: 1.375rem;
    line-height: 1.09;
  }
}
.platform-story-quote__author a {
  color: var(--platform-color-white);
}

.platform-story-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.platform-story-content-slideshow {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.platform-story-content-slideshow .platform-story-content__text {
  margin-top: auto;
  margin-bottom: auto;
}

.platform-story-teasers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.775147929%;
  row-gap: 1.25rem;
  width: 74.6686303387%;
}

.platform-story-content__text {
  font: bold 2.25rem/1.11 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, min(2.5vw, 3.8vh), 2.25rem);
  letter-spacing: -0.003em;
  text-align: center;
  overflow: hidden;
  width: 74.6686303387%;
}
@media screen and (max-width: 768px) {
  .platform-story-content__text {
    font-size: 1.125rem;
  }
}
.platform-story-content__text a {
  opacity: 1;
  transition: opacity 50ms ease;
}
.no-touch .platform-story-content__text a:hover {
  opacity: 0.5;
}

.platform-hover__layer {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
}
.section-slideshow-slide .platform-hover__layer {
  border-radius: inherit;
}

.platform[data-highlight=red] .platform-story-slide:not(.platform--bg-highlight) .platform-story-content__text a {
  color: var(--platform-color-red);
}
.platform[data-highlight=red] .platform-story-slide:not(.platform--bg-highlight) .splide__pagination__page.is-active {
  background-color: var(--platform-color-red);
}
.platform[data-highlight=red] .platform--text-highlight,
.platform[data-highlight=red] .platform-overlay--testimonial,
.platform[data-highlight=red] .overlay-testimonial__link a {
  color: var(--platform-color-red);
}
.platform[data-highlight=red] .platform--bg-highlight,
.platform[data-highlight=red] .platform-side__button--actve[data-color=hightlight],
.platform[data-highlight=red] .platform-hover__layer {
  background-color: var(--platform-color-red);
}

.platform[data-highlight=blue] .platform-story-slide:not(.platform--bg-highlight) .platform-story-content__text a {
  color: var(--platform-color-blue);
}
.platform[data-highlight=blue] .platform-story-slide:not(.platform--bg-highlight) .splide__pagination__page.is-active {
  background-color: var(--platform-color-blue);
}
.platform[data-highlight=blue] .platform--text-highlight,
.platform[data-highlight=blue] .platform-overlay--testimonial,
.platform[data-highlight=blue] .overlay-testimonial__link a {
  color: var(--platform-color-blue);
}
.platform[data-highlight=blue] .platform--bg-highlight,
.platform[data-highlight=blue] .platform-side__button--actve[data-color=hightlight],
.platform[data-highlight=blue] .platform-hover__layer {
  background-color: var(--platform-color-blue);
}

.platform[data-highlight=green] .platform-story-slide:not(.platform--bg-highlight) .platform-story-content__text a {
  color: var(--platform-color-green);
}
.platform[data-highlight=green] .platform-story-slide:not(.platform--bg-highlight) .splide__pagination__page.is-active {
  background-color: var(--platform-color-green);
}
.platform[data-highlight=green] .platform--text-highlight,
.platform[data-highlight=green] .platform-overlay--testimonial,
.platform[data-highlight=green] .overlay-testimonial__link a {
  color: var(--platform-color-green);
}
.platform[data-highlight=green] .platform--bg-highlight,
.platform[data-highlight=green] .platform-side__button--actve[data-color=hightlight],
.platform[data-highlight=green] .platform-hover__layer {
  background-color: var(--platform-color-green);
}

.platform[data-highlight=purple] .platform-story-slide:not(.platform--bg-highlight) .platform-story-content__text a {
  color: var(--platform-color-purple);
}
.platform[data-highlight=purple] .platform-story-slide:not(.platform--bg-highlight) .splide__pagination__page.is-active {
  background-color: var(--platform-color-purple);
}
.platform[data-highlight=purple] .platform--text-highlight,
.platform[data-highlight=purple] .platform-overlay--testimonial,
.platform[data-highlight=purple] .overlay-testimonial__link a {
  color: var(--platform-color-purple);
}
.platform[data-highlight=purple] .platform--bg-highlight,
.platform[data-highlight=purple] .platform-side__button--actve[data-color=hightlight],
.platform[data-highlight=purple] .platform-hover__layer {
  background-color: var(--platform-color-purple);
}

[data-items="2"] .platform-teaser {
  width: min(49.1124260355%, 52.4vh);
}
[data-items="3"] .platform-teaser {
  width: min(32.1499013807%, 35vh);
}

.platform-teaser--person .platform-teaser__image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto;
  width: 66.667%;
}

.platform-teaser__image {
  display: block;
  aspect-ratio: 1/0.6653;
  overflow: hidden;
  opacity: 1;
  transition: opacity 50ms ease;
}
.no-touch .platform-teaser__image:hover {
  opacity: 0.5;
}
.platform-teaser__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.platform-teaser__caption {
  font: bold 0.875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  text-align: center;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .platform-teaser__caption {
    font-size: 0.75rem;
    line-height: 1.1666;
  }
}

.platform-story-slideshow {
  flex-shrink: 0;
  width: 100%;
}

.story-slideshow {
  margin: 0 auto;
  width: min(49.3372606775%, 64.4vh);
}

.story-slideshow-slide__image {
  position: relative;
  padding-bottom: 66.71%;
}
.story-slideshow-slide__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.story-slideshow-slide__caption {
  font: normal 0.6875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  text-align: center;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .story-slideshow-slide__caption {
    font-size: 0.75rem;
    line-height: 1.1666;
  }
}

.platform-overlay {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
}

.platform-overlay--active {
  display: block;
}

.platform-testimonials {
  display: grid;
  grid-column-gap: 15px;
  grid-template-columns: repeat(10, 1fr);
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  height: 100%;
}

.platform-testimonial {
  cursor: pointer;
  user-select: none;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.platform-testimonial__image {
  height: 100%;
}
.platform-testimonial__image img {
  object-fit: cover;
}

.platform-overlay--testimonial {
  background-color: transparent;
}

.overlay-testimonial {
  background-color: var(--platform-color-white);
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.25rem 1.25rem 0.5rem;
  text-align: center;
  width: 87.3343151694%;
}

.overlay-testimonial--active {
  display: block;
}

.overlay-testimonial__title {
  font: bold 2.25rem/1.1112 "ABC Solar", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, min(2.5vw, 3.8vh), 2.25rem);
  letter-spacing: -0.003em;
  font-feature-settings: "ss01", "ss02", "ss09";
}
@media screen and (max-width: 768px) {
  .overlay-testimonial__title {
    font-size: 1.125rem;
  }
}

.overlay-testimonial__text {
  font: bold 2.25rem/1.11 "HB Items", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, min(2.5vw, 3.8vh), 2.25rem);
  letter-spacing: -0.003em;
}
@media screen and (max-width: 768px) {
  .overlay-testimonial__text {
    font-size: 1.125rem;
  }
}

.overlay-testimonial__link {
  font: normal 0.875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  text-transform: uppercase;
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .overlay-testimonial__link {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

.platform-video {
  width: min(74.5562130178%, 110vh);
}

.platform-video__iframe {
  position: relative;
}
.platform-video__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.platform-video__caption {
  font: normal 0.6875rem/1.142 "ABC Solar", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "ss02", "ss09";
  text-align: center;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .platform-video__caption {
    font-size: 0.75rem;
    line-height: 1.1666;
  }
}

@media screen and (max-width: 768px) {
  .platform-header__logo {
    top: 1.5rem;
    width: 8.4375rem;
  }

  .platform-header-menu,
.platform-header-close {
    top: 1.5rem;
  }

  .platform-home {
    row-gap: 1.875rem;
  }

  .platform-home__border {
    display: none;
  }

  .platform-home__sections {
    row-gap: 1.25rem;
  }

  .platform-home__sections,
.platform-section__title,
.platform-section__text,
.platform-story-teasers,
.platform-story-content__text,
.platform-story-quote__text {
    width: 100%;
  }

  .splide__arrows {
    display: none;
  }

  .platform-section__top-line {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
  }

  .section-slideshow {
    margin-left: 0;
    width: 100%;
  }

  .platfrom-section__slideshow .splide__slide {
    width: 8.5rem !important;
  }

  .section-slideshow-slide {
    border-radius: 1.875rem;
  }

  .platform-side {
    border-bottom-left-radius: 5.625rem;
    border-bottom-right-radius: 5.625rem;
    transform: none;
    top: unset;
    left: 0;
    right: 0;
    bottom: 3.0625rem;
    flex-direction: row;
    justify-content: center;
  }
  .platform-side .js-go-to-slide {
    display: none;
  }

  .platform-story-slide__topline {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
  }

  .platform-story-slide__content {
    padding-bottom: 7.5rem;
  }

  .platform-story-teasers {
    gap: 2.752293578%;
    row-gap: 0.875rem;
  }

  [data-items="2"] .platform-teaser {
    width: 48.623853211%;
  }

  [data-items="3"] .platform-teaser {
    width: 31.501%;
  }

  .platform-story-slideshow {
    margin-top: 0.75rem;
  }

  .story-slideshow {
    width: 70%;
  }

  .splide__pagination {
    padding-top: 0.625rem;
  }

  .platform-related__items {
    row-gap: 0.5625rem;
    width: 100%;
  }

  .platform-related-item {
    border-radius: 1.875rem;
    width: 48.623853211%;
  }

  .platform-testimonials {
    grid-template-columns: repeat(6, 1fr);
    padding-top: 1.875rem;
  }

  [data-platformbackground=black][data-highlight=red] .platform-side__button {
    background-color: var(--platform-color-red);
  }
  [data-platformbackground=black][data-highlight=blue] .platform-side__button {
    background-color: var(--platform-color-blue);
  }
  [data-platformbackground=black][data-highlight=green] .platform-side__button {
    background-color: var(--platform-color-green);
  }
  [data-platformbackground=black][data-highlight=purple] .platform-side__button {
    background-color: var(--platform-color-purple);
  }

  .platform-side__button {
    background-color: var(--platform-color-black);
  }

  .tippy-box {
    display: none !important;
  }
}
