/*-----------------------------
		GENERAL
-----------------------------*/


@font-face {
  font-family: 'PP Neue Montreal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../../fonts/PPNeueMontreal-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'PP Neue Montreal';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../../fonts/PPNeueMontreal-Medium.woff2) format('woff2');
}

:root {
  --fontSize: 18px;
  --wrapper: 1400px;
  --gutter: 3rem;
  --textColor: #0a2426;
  --black: #0a2426;
  --color1: #0a2426;
  --color2: #0a2426;
  --trueBlack: #000000;
  --lightGrey: #f5f5f5;
  --baseFont: 'PP Neue Montreal', sans-serif;
  --titleFont: 'PP Neue Montreal', sans-serif;
  --borderRadius: 2em;
  --boxShadow: 0 0 10px 2px rgba(0,0,0,0.125);
  --lightBoxShadow: 0 0 20px 1px rgba(0,0,0,0.05);
  --veryLightBoxShadow: 0 0 10px 1px rgba(0,0,0,0.035);
  --headerHeight: 78px;
}
@media screen and (max-width: 1300px) {
  :root {
    --gutter: 2.5rem;
  }
}
@media screen and (max-width: 1100px) {
  :root {
    --fontSize: 17px;
    --headerHeight: 78px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --fontSize: 16px;
    --headerHeight: 78px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --fontSize:14px;
    --headerHeight: 68px;
    --gutter: 2rem;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --headerHeight: 68px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --gutter: 1.5rem;
  }
}

html {
  overflow-x: clip;
  max-width: 100vw;
}
body {
  color: var(--textColor);
  font-family: var(--baseFont);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  font-size: var(--fontSize);
  background-color: #fff;
  overflow-x: clip;
  max-width: 100vw;
}
body:not(.header-light) {
  padding-top: var(--headerHeight);
}
main {
	max-width: 100vw;
}





/*******************
	helpers
*******************/

.black { color: var(--black); }
.color1 { color: var(--color1); }
.color2 { color: var(--color2); }
.bg-color1 { background-color: var(--color1); color: #fff; }
.bg-color2 { background-color: var(--color2); color: #fff; }

@keyframes mw-gradient-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes mw-gradient-flow-h {
  0%   { background-position: 50% 0%; }
  50%  { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}



.square-wrapper {
  position: relative;
}
.square-wrapper::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.slider-nav a {
  --s: 5em;
  --sarrow: calc(var(--s) * 0.2);
  position: relative;
  width: calc(var(--s) * 0.7);
  height: calc(var(--s) * 0.3);
  background-image: none;
  background-color: transparent;
}
.slider-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--sarrow);
  height: var(--sarrow);
  margin-top: calc(var(--sarrow) * -0.5);
  margin-left: calc(var(--sarrow) * -0.5);
  transform: rotate(45deg);
  background-image: url(../../img/arrow.svg);
  background-size: 70% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-nav a:hover {
  background-color: var(--color1);
}
.slider-nav a:hover::after {
  background-image: url(../../img/arrow-white.svg);
}

.text.colorOnStrong strong {
  color: var(--color1);
}
.text.hilightedStrong strong {
  color: var(--color1);
  font-size: 1.2em;
}

.ps-heading_cta {
  --g: 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  text-align: left;
  width: calc(100% + (var(--g) * 2));
  margin: calc(var(--g) * -1);
}
.ps-heading_cta > * {
  padding: var(--g);
}
.ps-heading_cta > .heading {
  flex: 1;
}
.ps-heading_cta > .cta {
  flex: 0 0 25em;
}
@media screen and (max-width: 1100px) {
  .ps-heading_cta > .heading,
  .ps-heading_cta > .cta { flex: 0 0 50%; }
}


.ps-menu ul {
  list-style-type: none;
  line-height: 1.35em;
}
.ps-menu ul > li:not(:last-child) {
  margin-bottom: 0.125em;
}
.ps-menu a:hover {
  text-decoration: underline;
}
.ps-menu.tags ul > li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0 !important;
}
.ps-menu.tags a {
  display: inline-block;
  padding: 0.65em 1em 0.775em 1em;
  border-radius: 9999px;
  border: currentColor 1px solid;
  line-height: 1em;
  opacity: 0.65;
}
.ps-menu.tags a:hover,
.ps-menu.tags .current-menu-item a {
  text-decoration: none;
  opacity: 1;
}

a.icon-rs {
  --s: 2em;
  width: var(--s);
  height: var(--s);
  display: inline-block;
  vertical-align: middle;
  margin-left: calc(var(--s) * 0.1);
  margin-right: calc(var(--s) * 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
a.icon-rs.in {
  background-image: url(../../img/icon-in.svg);
}
a.icon-rs.ig {
  background-image: url(../../img/icon-ig.svg);
}

.cover-image {
  position: relative;
  border-radius: var(--borderRadius);
  overflow: clip;
}
.cover-image::after {
  content: '';
  display: block;
}
.cover-image.panoramic::after {
  padding-bottom: 40%;
}
.cover-image.large::after {
  padding-bottom: 65%;
}
.cover-image.square::after {
  padding-bottom: 100%;
}
.cover-image.portrait::after {
  padding-bottom: 135%;
}

.swiper-variable .swiper-slide {
  max-width: fit-content;
}
.swiper-visible {
  overflow: visible;
}
.swiper-nav {
  --s: 1.5em;
  margin: 0 0 1em 1em;
  display: flex;
}
.swiper-nav > * {
  margin-right: 1em;
  text-align: left;
}
.swiper-nav > a {
  width: var(--s);
  height: var(--s);
  background-image: url(../../img/rarr.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.swiper-nav > *:first-child {
  transform: scaleX(-1);
}
.swiper-nav > *.swiper-button-disabled {
  opacity: 0.2;
}

.the-form.alt input[type="submit"] {
  padding: 0.875px 1.5em;
  font-size: 0.89em;
  height: 3.3125em;
  font-weight: 500;
  background-color: #0a2426;
  color: #f5f5f5;
  border: #0a2426 1px solid;
  border-radius: 0.25em;
}
.the-form.alt input[type="submit"]:hover {
  background: linear-gradient(270deg, #ffa718 0%, #aa9066 100%);
  border-color: #0a2426;
  color: var(--black);
}


/*******************
  HEADER & FOOTER
*******************/

/*******************
	  PAGES LAYOUTS
*******************/


.single-layout {
  margin: calc(var(--gutter) * 2) 0;
}
.single-layout .meta {
  margin-top: 1.5em;
}
.single-layout .page-content {
  position: relative;
  margin-top: 2em;
  padding-top: 4em;
}
.single-layout .page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10em;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%);
}
.single-layout.w-sidebar {
  --w: 20em;
  --g: 2em;
  position: relative;
}
.single-layout.w-sidebar .sidebar {
  position: absolute;
  top: 0;
  width: calc(var(--w) - var(--g));
  min-height: 100%;
}
.single-layout.w-sidebar.onTheRight {
  padding-right: var(--w);
}
.single-layout.w-sidebar.onTheLeft {
  padding-left: var(--w);
}
.single-layout.w-sidebar.onTheRight .sidebar {
  right: 0;
  padding-left: var(--g);
  border-left: var(--color1) 1px solid;
}
.single-layout.w-sidebar.onTheLeft .sidebar {
  left: 0;
  padding-right: var(--g);
  border-right: var(--color1) 1px solid;
}
@media screen and (max-width: 1200px) {
  .single-layout.w-sidebar {
    --w: 16em;
    --g: 1.5em;
  }
}
@media screen and (max-width: 950px) {
  .single-layout.w-sidebar {
    --w: 14em;
    --g: 1em;
  }
}
@media screen and (max-width: 800px) {
  .single-layout.w-sidebar {
    padding: 0 !important;
  }
  .single-layout.w-sidebar .sidebar {
    position: relative !important;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 4em;
    border: none !important;
    padding: 0 !important;
    width: 100%;
    max-width: 30em;
  }
}

.stickIf.yes {
  position: sticky;
  top: 50px;
}

.mw-hero-intro {
  position: relative;
  height: 1400px;
  max-height: 100vh;
}
@media screen and (max-height: 800px) {
  .mw-hero-intro {
    min-height: 100vh;
    min-height: 100svh;
  }
}
.mw-hero-intro > .content {
  position: absolute;
  bottom: var(--gutter);
  left: 0;
  width: 100%;
}

.mw-home-hero {
  background: #025b6e;
}
.mw-home-hero .mw-hero-intro {
  min-height: 850px;
  overflow: clip;
}

.mw-home-hero .mw-hero-intro > .ill .video-bg {
  filter: saturate(0.95) contrast(1.05);
}
.mw-home-hero .mw-hero-intro > .content {
  z-index: 2;
  bottom: 46px;
  color: #f5f5f5;
}

.mw-home-benefits {
  background: #f5f5f5;
  padding: 30px 0 15px;
}


.ps-blocks {
  --g: 2em;
}
.ps-blocks.blocks-light > *:not(:last-child) {
  border-right: rgba(0,0,0,0.15) 1px solid;
}

.mw-home-metrics {
  background: #f5f5f5;
  padding: 0 0 60px;
}
.mw-home-product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(280px, auto));
  gap: 24px;
}
.mw-home-product-grid > :nth-child(1) { grid-column: 1 / span 3; grid-row: 1; }
.mw-home-product-grid > :nth-child(2) { grid-column: 4 / span 5; grid-row: 1; }
.mw-home-product-grid > :nth-child(3) { grid-column: 9 / span 4; grid-row: 1 / span 2; }
.mw-home-product-grid > :nth-child(4) { grid-column: 1 / span 5; grid-row: 2; }
.mw-home-product-grid > :nth-child(5) { grid-column: 6 / span 3; grid-row: 2; }

.mw-num-ill {
  position: relative;
  border-radius: 0.5rem;
  overflow: clip;
}
.mw-home-product-grid .mw-num-ill img {
  left: -10%;
  width: 200%;
  max-width: 200%;
  transition: 1s;
}
.mw-home-product-grid .mw-num-ill:hover img {
  left: -90%;
}

.box-number {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  overflow: hidden;
  border-radius: 0.5rem;
  min-height: 25vw;
  transition: color 0.4s;
}
/* hover gradient via pseudo-element (background-image can't be transitioned directly) */
.box-number::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background-image: linear-gradient(180deg, #025b6e 0%, #2a93b3 50%, #d1d2cc 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.box-number:hover::before { opacity: 1; }
.box-number > * { position: relative; z-index: 1; }
.box-number .box-label {
  flex-shrink: 0;
  font-size: 1.5em;
  line-height: 1.1em;
  letter-spacing: 0.03em;
  color: #0a2426;
  font-weight: 400;
  font-family: var(--baseFont);
  margin: 0 auto auto 0;
  transition: color 0.4s;
}
.box-number:hover .box-label { color: #f5f5f5; }
.box-number .number {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: 0;
  color: #0a2426;
  font-weight: 400;
  font-family: var(--baseFont);
  margin: auto auto 0 0;
  transition: color 0.4s;
}
.box-number:hover .number { color: #f5f5f5; }
.box-number .box-legend {
  flex-shrink: 0;
  font-size: 1.5em;
  line-height: 1.25em;
  letter-spacing: 0.03em;
  color: #f5f5f5;
  font-weight: 400;
  font-family: var(--baseFont);
  opacity: 0;
  margin: auto auto 0 0;
  max-height: 0;
  padding-bottom: 1em;
  transition: opacity 0.4s 0.2s, max-height 0.8s ;
}
.box-number:hover .box-legend { opacity: 1; max-height: 6rem; }



@media screen and (max-width: 1100px) {
  .mw-home-product-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .mw-home-product-grid > :nth-child(1) { grid-column: 1 / span 2; }
  .mw-home-product-grid > :nth-child(2) { grid-column: 3 / span 3; }
  .mw-home-product-grid > :nth-child(3) { grid-column: 6 / span 3; }
  .mw-home-product-grid > :nth-child(4) { grid-column: 1 / span 3; }
  .mw-home-product-grid > :nth-child(5) { grid-column: 4 / span 2; }
}

@media screen and (max-width: 750px) {
  .mw-home-hero .mw-hero-intro {
    min-height: 680px;
  }
  .mw-home-hero .mw-hero-intro::after {
    top: 43%;
  }
  .mw-home-hero .mw-hero-intro > .content {
    bottom: 36px;
  }
  .mw-home-product-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .box-number { min-height: 45vw }
  .mw-home-product-grid > :nth-child(1) { grid-column: 1; grid-row: auto; }
  .mw-home-product-grid > :nth-child(2) { grid-column: 2; grid-row: auto; }
  .mw-home-product-grid > :nth-child(3) { grid-column: 1 / span 2; grid-row: auto; min-height: 300px; }
  .mw-home-product-grid > :nth-child(4) { grid-column: 1; grid-row: auto; }
  .mw-home-product-grid > :nth-child(5) { grid-column: 2; grid-row: auto; }
  .box-number .number { font-size: clamp(2.5rem, 10vw, 4rem); }
}
@media screen and (max-width: 900px) {
  .mw-home-benefits .mw-benefits-columns > div {
    flex: 0 0 100%;
    padding: 1em;
  }
  .ps-blocks.blocks-light > *:not(:last-child) {
    border-bottom: rgba(0,0,0,0.15) 1px solid;
    border-right: none;
  }
}

/* =====================================
   USE-CASE SECTION
===================================== */
.mw-home-usecases {
  background: #f5f5f5;
  padding-bottom: 80px;
}
.mw-usecases-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  box-sizing: border-box;
}
.mw-usecases-nav {
  flex: 0 0 289px;
  width: 289px;
  text-align: left;
}
.mw-usecases-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mw-usecases-nav li {
  border-top: 1px solid rgba(10, 36, 38, 0.2);
  padding: 24px 0;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}
.mw-usecases-nav li.active,
.mw-usecases-nav li:hover {
  opacity: 1;
}
.mw-usecases-nav li a {
  font-size: 1em;
  line-height: 1.56;
  color: #0a2426;
  letter-spacing: 0.03em;
  font-family: var(--baseFont);
}
.mw-usecases-slider {
  flex: 1;
  min-height: 500px;
  overflow: hidden;
}
.mw-usecases-slider .swiper,
.mw-usecases-slider .mw-home-slider {
  height: 100%;
  width: 140%;
}
.mw-usecases-slider .swiper-wrapper {
  height: 100%;
}
.mw-usecases-slider .swiper-slide {
  height: 100%;
}
/*.mw-usecases-slider .swiper-slide {
  width: 60%;
  transition: 0.75s;
}
.mw-usecases-slider .swiper-slide:not(.swiper-slide-active) {
  width: 40%;
  transition: 0.75s 1s;
}*/
.mw-usecases-slider .swiper-slide {
  width: 50%;
}
.mw-usecases-slider .swiper-slide .square-wrapper img {
  position: absolute;
  top: auto;
  bottom: 0;
  border-radius: 0.5rem;
  transition: 0.75s;
}
.mw-usecases-slider .swiper-slide.swiper-slide-next .square-wrapper img {
  width: 40%;
  height: 40%;
  cursor: pointer;
}
.mw-usecases-slider .swiper-slide.swiper-slide-prev .square-wrapper img {
  width: 40%;
  height: 40%;
  margin-left: 60%;
}

/* =====================================
   INFRASTRUCTURE SECTION
===================================== */
.mw-home-infra {
  overflow: hidden;
}
.mw-home-infra .mw-infra-layout {
  position: relative;
  min-height: 56.25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mw-home-infra .ill {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mw-home-infra .ill video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mw-infra-title {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 80px var(--gutter) 80px;
  background: linear-gradient(180deg, #f5f5f5 0%, rgba(243, 243, 243, 0) 100%);
  box-sizing: border-box;
}
.mw-infra-pretitle {
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #0a2426;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--baseFont);
  font-weight: 400;
}
.mw-infra-title .title.big p {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 400;
  color: #0a2426;
}
.mw-infra-steps {
  position: relative;
  margin-top: 1em;
}
.mw-infra-step-1,
.mw-infra-step-2 {
  transition: opacity 0.8s ease, filter 0.8s ease;
}
.mw-infra-step-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}
.mw-infra-step-1 {
  opacity: 1;
  filter: blur(0px);
}
.mw-infra-steps.mw-infra-morphed .mw-infra-step-1 {
  opacity: 0;
  filter: blur(10px);
}
.mw-infra-steps.mw-infra-morphed .mw-infra-step-2 {
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
  margin-top: 0 !important;
}
.mw-infra-card {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  width: 329px;
  z-index: 1;
  text-align: left;
}
.mw-infra-card p {
  font-size: 16px;
  line-height: 1.56;
  color: #0a2426;
  margin-bottom: 16px;
}
.mw-infra-card p:last-child {
  margin-bottom: 0;
}


/* =====================================
   QUOTE SECTION
===================================== */
.mw-home-quote {
  background: linear-gradient(180deg, #d5d4ca 0%, #2a93b3 50%, #025b6e 100%);
  background-size: 100% 200%;
  min-height: 738px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mw-gradient-flow-h 8s ease infinite;
}
.mw-quote-inner {
  max-width: 1010px;
  margin: 0 auto;
  padding: 120px var(--gutter);
  text-align: center;
  color: #f5f5f5;
}
.mw-quote-inner .title.big > * {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.1;
}

/* =====================================
   TEAM HERO SECTION
===================================== */
.mw-home-team-hero {
  position: relative;
  min-height: 1018px;
  overflow: hidden;
}
.mw-team-hero-ill {
  position: absolute;
  inset: 0;
}
.mw-team-hero-ill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mw-team-overlay {
  position: absolute;
  inset: 0;
  height: 50%;
  background: linear-gradient(180deg, #0a2426 0%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.mw-team-hero-content {
  position: absolute;
  top: var(--gutter);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffff;
}


/* =====================================
   TEAM TEXT SECTION
===================================== */
.mw-home-team-text {
  background: #ffffff;
  padding: calc(var(--gutter) * 1.5) 0;
}

/* =====================================
   ECOSYSTEM / LOGOS SECTION
===================================== */
.mw-home-ecosystem {
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-home-ecosystem .logos-slider-layout {
  padding: 40px 0;
  overflow: hidden;
}
.mw-home-ecosystem .swiper-slide {
  width: auto !important;
}
.mw-home-ecosystem .swiper-slide img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.3s, filter 0.3s;
}
.mw-home-ecosystem .swiper-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* =====================================
   NEWS SECTION
===================================== */
.mw-home-news {
  background: #ffffff;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.mw-news-grid {
  display: flex;
}
.mw-news-card {
  flex: 1;
  border-right: 1px solid rgba(10, 36, 38, 0.2);
  padding: 21px 40px 21px 0;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  min-height: 280px;
}
.mw-news-card:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.mw-news-date {
  font-size: 1em;
  line-height: 1.56;
  color: #0a2426;
  opacity: 0.5;
  font-family: var(--baseFont);
}
.mw-news-title {
  font-size: 1em;
  line-height: 1.56;
  color: #0a2426;
  flex: 1;
  font-family: var(--baseFont);
}
.mw-news-card .btn {
  align-self: flex-start;
}

/* =====================================
   RESPONSIVE — ADDITIONAL SECTIONS
===================================== */
@media screen and (max-width: 1100px) {
  .mw-usecases-layout { gap: 40px; }
  .mw-usecases-nav { flex: 0 0 220px; width: 220px; }
}
@media screen and (max-width: 1000px) {
  .mw-home-infra {
    background: #f0f0f2;
  }
  .mw-home-infra .mw-infra-layout {
    margin-bottom: 4em;
  }
  .mw-infra-card {
    bottom: -2.5em;
    width: calc(100% - (var(--gutter) * 2));
    max-width: 575px;
    padding: 1em;
  }
}
@media screen and (max-width: 900px) {
  .mw-team-cols > * { flex: 0 0 100%; padding: 1em 0; }
  .mw-home-team-hero { min-height: 110vw; }
}
@media screen and (max-width: 750px) {
  .mw-usecases-layout { flex-direction: column; }
  .mw-usecases-nav { width: 100%; flex: none; }
  .mw-usecases-slider { min-height: 200px; width: 100%; margin-top: -2em; }
  .mw-home-infra .mw-infra-layout { padding-bottom: 0; margin-bottom: 10em; }
  .mw-infra-title { padding: var(--gutter); }
  .mw-infra-card { bottom: -8.5em; }
  .mw-quote-text { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .mw-team-hero-content { width: calc(100% - var(--gutter) * 2); }
  .mw-mission-block { padding: 40px 24px; }
  .mw-news-grid { flex-direction: column; }
  .mw-news-card { border-right: none; border-bottom: 1px solid rgba(10, 36, 38, 0.2); padding: 21px 0; margin-right: 0; min-height: 150px; }
  .mw-news-card:last-child { border-bottom: none; }
}
@media screen and (max-width: 500px) {
  .mw-home-infra .mw-infra-layout { padding-bottom: 20em; margin-bottom: 10em; }
}

/* =====================================
   PRODUCT PAGE
===================================== */

.mw-product-hero {
  background: #bbc6c6;
  width: 100vw;
  overflow-x: clip;
}
.mw-product-hero .mw-hero-intro {
  min-height: 10px;
  max-height: 200vh;
  height: auto;
}
.mw-product-hero video {
  width: 100%;
  display: block;
}
.mw-product-hero .mw-hero-intro > .content {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: calc(50% + 0.5em + 2vw);
  width: calc(50% - 0.5em - 2vw);
  transform: translateY(-50%);
}

@media screen and (max-width: 900px) {
  .mw-product-hero .mw-hero-intro {
    height: auto;
    min-height: auto;
    padding-bottom: var(--gutter);
    margin-top: var(--gutter);
  }
  .mw-product-hero .mw-hero-intro video {
    transform: scale(1.125);
    transform-origin: top left;
  }
  .mw-product-hero .mw-hero-intro > .content {
    left: calc(60% + 1em);
    width: calc(40% - 1em);
  }
}
@media screen and (max-width: 650px) {
  .mw-product-hero .mw-hero-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .mw-product-hero .mw-hero-intro > * {
    display: flex !important;
    flex: 0 0 100% !important;
  }
  .mw-product-hero .mw-hero-intro > .content {
    width: 100% !important;
    left: 0 !important;
    position: static !important;
    transform: translateY(1em);
  }
  .mw-product-hero .mw-hero-intro > .content .ps-content {
    text-align: center !important;
  }
}

.mw-product-stats {
  position: relative;
  background: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-product-stats > .mw-bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 64px 64px;
  background: linear-gradient(0deg, #FF6E34 -24.09%, #FFB43C -16.97%, #bbc6c6 -6.84%);
}
.mw-product-stats > .mw-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, #FF6E34 -5.81%, #FFB43C 3.85%, #BBC7C7 20.64%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.mw-product-stats.action > .mw-bg::after {
  opacity: 1;
}
.product-stats-layout > .ill {
  position: relative;
}
.product-stats-layout > .ill img {
  transition: opacity 0.8s ease;
}
.mw-product-stats.action .product-stats-layout > .ill img {
  opacity: 0;
}
.product-stats-layout > .ill::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../../temp/product-stats.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.mw-product-stats.action .product-stats-layout > .ill::after {
  opacity: 1;
}
.product-stats-layout {
  --g: 2em;
}
.product-stats-layout > .ill {
  flex: 0 0 60%;
  text-align: left;
}
.product-stats-layout > .ill img {
  display: block;
  width: 100%;
  height: auto;
}
.product-stats-layout > .content {
  flex: 0 0 40%;
}
.product-stats {
  list-style-type: none;
}
.product-stats > li {
  position: relative;
  padding: 0.75rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.product-stats > li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.product-stats .legend {
  text-align: left;
  font-size: 1.33em;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
}
.product-stats .number {
  font-size: 6em;
  text-align: right;
  padding-left: 0.5rem;
}

.mw-product-stats > .wrapper {
  z-index: 2;
  color: #fff;
}

@media screen and (max-width: 1300px) {
  .product-stats .number { font-size:4.5em }
}
@media screen and (max-width: 900px) and (min-width: 751px) {
  .product-stats-layout > .ill { flex: 0 0 70%; }
  .product-stats-layout > .content { flex: 0 0 30%; }
  .product-stats > li { flex-wrap: wrap; }
  .product-stats .legend {
    flex: 0 0 100%;
    padding-right: 0;
    position: relative;
    top: -0.5em;
  }
  .product-stats .number {
    flex: 0 0 100%;
    font-size:3.5em;
  }
}
@media screen and (max-width: 750px) {
  .product-stats-layout > .ill { flex: 0 0 100%; order: 2; }
  .product-stats-layout > .content { flex: 0 0 100%; order: 1; }
  .product-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .product-stats > * {
    flex: 0 0 calc(50% - 1rem);
    font-size: 0.9em;
  }
}
@media screen and (max-width: 550px) {
  .product-stats .number { font-size: 3.5em; }
}
@media screen and (max-width: 450px) {
  .product-stats { gap: 0; }
  .product-stats > * {
    flex: 0 0 100%;
  }
}

.mw-product-intro {
  background: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-product-split {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
/*.mw-product-split-left {
  flex: 0 0 50%;
}
.mw-product-split-right {
  flex: 1;
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: clip;
}
.mw-product-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}*/

.mw-product-intro > .wrapper:first-child {
  z-index: 3;
}

.mw-product-grid {
  align-items: center;
}
.mw-product-grid .ill {
  z-index: 1;
  position: relative;
  flex: 0 0 40%;
  text-align: right;
}
.mw-product-grid .ill video {
  display: block;
  width: 100%;
  transform: scale(1.5) translateX(20%);
  transform-origin: right center;
}
.mw-product-grid .content {
  z-index: 2;
  position: relative;
  flex: 0 0 60%;
}
.mw-product-grid .content .ps-content {
  container-type: inline-size;
}
.mw-product-grid .title > * {
  font-size: calc(4.5rem + 5.5vw);
}

@media screen and (max-width: 750px) {
  .mw-product-grid > * { flex: 0 0 100% !important; }
  .mw-product-grid .content .ps-content { text-align: center !important; }
  .mw-product-grid .ill video {
    transform: scale(1.0);
  }
}

.mw-product-features {
  z-index: 2;
  background: #f5f5f5;
  padding: 0 0 80px;
}
.mw-product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.mw-product-card {
  position: relative;
  background: #ffffff;
  border-radius: 0.45em;
  padding: 1.85em;
  display: flex;
  flex-direction: column;
  gap: 0.66em;
  text-align: left;
  min-height: 25vw;
  overflow: clip;
  transition: 0.4s;
}
.mw-product-card.tall {
  grid-row: span 2;
}
.mw-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  inset: 0;
  background: linear-gradient(180deg, #025B6E 0%, #2A93B3 100%);
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 0.45em;
  z-index: 0;
}
.mw-product-card:hover::before {
  opacity: 1;
  height: 100%;
}
.mw-product-card > * {
  position: relative;
  z-index: 1;
}
.mw-product-card-label {
  font-size: 1.33em;
  color: #0a2426;
  line-height: 1.05;
  margin: 0 0 0 0;
  transition: 0.4s;
}
.mw-product-card-text {
  font-size: 0.89em;
  color: rgba(10, 36, 38, 0.7);
  line-height: 1.56;
  margin: 0 0 0 0;
  transition: 0.4s;
}
.mw-product-card:hover .mw-product-card-label, .mw-product-card:hover .mw-product-card-text {
  color: #fff;
}
.mw-product-card-ill {
  position: absolute;
  bottom: 1.85em;
  left: 1.85em;
  opacity: 1;
  transition: 0.4s;
}
.mw-product-card-ill img {
  display: block;
  width: 10em;
}
.mw-product-card:hover .mw-product-card-ill {
  opacity: 0;
}
.mw-product-card-detail {
  color: #fff;
  padding: 0 1em;
  font-size: 0.89em;
  margin: 0 0 0 0;
  max-height: 100%;
  opacity: 1;
  transition: max-height 0.2s opacity 0.4s;
}
.mw-product-card:not(:hover) .mw-product-card-detail {
  max-height: 0;
  opacity: 0;
  transition: all 0.2s;
}
@media screen and (min-width: 1101px) {
  .mw-product-card.tall .mw-product-card-detail {
    margin: 0 0 0 0;
  }
}

.mw-product-video-section {
  position: relative;
}
.mw-product-video-section video {
  display: block;
  width: 100%;
}
.mw-product-video-section .content {
  position: absolute;
  top: var(--gutter);
  left: 0;
  width: 100%;
}

@media screen and (max-width: 750px) {
  .mw-product-video-section .content { top: 0; }
}
@media screen and (max-width: 550px) {
  .mw-product-video-section {
    padding-top: 6em;
    background: #f4f4f4;
  }
  .mw-product-video-section .content { top: -3em; }
}

.mw-product-software {
  background: #C7C7C7;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-software-screen-grid {
}
.mw-software-screen-grid > .content {
  flex: 0 0 40%;
}
.mw-software-screen-grid > .ill {
  flex: 0 0 60%;
}
.mw-software-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 24px;
  max-width: 320px;
  text-align: left;
}
.mw-software-cols {
  margin-top: var(--gutter);
  text-align: left;
  --g: 2em;
}
.mw-software-cols > * {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.mw-software-cols > *:not(:first-child) {
  border-left: rgba(0,0,0,0.2) 1px solid;
}
.mw-software-cols .text strong {
  display: inline-block;
  padding-bottom: 0.25em;
}

@media screen and (max-width: 700px) {
  .mw-software-screen-grid { align-items: center; }
  .mw-software-screen-grid > * { flex: 0 0 50% !important; }
  .mw-software-cols { gap: 0.5em; }
  .mw-software-cols > * { flex: 0 0 calc(50% - 0.5em); }
  .mw-software-cols > :not(:first-child) { border-left: none; }
  .mw-software-cols > :nth-child(even) { border-left: rgba(0,0,0,0.2) 1px solid }
  .mw-software-cols > :nth-child(2) { border-left: rgba(0,0,0,0.2) 1px solid }
  .mw-software-cols > :nth-child(-n+2) { margin-bottom: 1em; }
}
@media screen and (max-width: 550px) {
  .mw-software-screen-grid > * { flex: 0 0 100% !important; }
  .mw-software-cols { gap: 0; }
  .mw-software-cols > * { flex: 0 0 100%; }
  .mw-software-cols > :nth-child(even) { border-left: none; }
  .mw-software-cols > :nth-child(2) { none; }
  .mw-software-cols > :nth-child(-n+2) { margin-bottom: 0; }
  .mw-software-cols > :not(:first-child) { margin-top: 2em; }
  .mw-product-software .ps-content .spacer + .spacer { display: none; }
}
.mw-product-service {
  background: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-service-layout {
  align-items: center;
}
.mw-service-layout > * {
  z-index: 1;
  position: relative;
  flex: 0 0 50%;
}
.mw-service-layout > .ill img {
  width:100%;
  display:block;
  transform: scale(0.75) translateX(-10%);
}
.mw-service-items {
  z-index: 2;
  position: relative;
  --g: 0;
}
.mw-service-items::before {
  content: '';
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 5.75em;
  height: 1px;
  background: rgba(0,0,0,0.2);
}
.mw-service-items > * {
  flex: 0 0 100%;
}
.mw-service-item {
  position: relative;
  text-align: left;
  padding: 1.5em 0 1.5em 7.25em;
}
.mw-service-item .text > :not(:last-child) {
  margin-bottom: 0.75rem;
}
.mw-service-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5.75em;
  height: 1px;
  background: rgba(0,0,0,0.2);
}
.mw-service-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,0.2);
}
.mw-service-items .mw-service-item:first-child::after {
  height: 50%;
  top: 50%;
}
.mw-service-items .mw-service-item:last-child::after {
  height: 50%;
}

@media screen and (max-width: 750px) {
  .mw-service-layout > * { flex: 0 0 100%; }
  .mw-service-layout > .ill img { transform: scale(0.75); }
  .mw-service-items::before {
    top: auto;
    bottom: 100%;
    right: calc(50% - 1px);
    width: 1px;
    height: 5.75em;
  }
  .mw-service-items > * {
    flex: 0 0 50%;
  }
  .mw-service-items > :nth-child(even) {
    padding: 1.5em 0 1.5em 4em;
  }
  .mw-service-items > :nth-child(odd) {
    text-align: right;
    padding: 1.5em 4em 1.5em 0;
  }
  .mw-service-items > :nth-child(odd)::before {
    top: 50%;
    left: auto;
    right: 0;
  }
  .mw-service-items > :nth-child(odd)::after {
    display: none;
  }
  .mw-service-item::before {
    width: 3em;
  }
}

.mw-product-usecases {
  background: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0;
}
.mw-usecases-grid {
  --g: 0.66em;
}
.mw-usecase-card {
  position: relative;
}
.mw-usecase-card .ill {
  position: relative;
  border-radius: 0.5rem;
  overflow: clip;
}
.mw-usecase-card .ill::after {
  content: '';
  display: block;
  padding-bottom: 125%;
}
.mw-usecase-card .label {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: rgba(0,0,0,0.2) 1px solid;
  text-align: left;
  line-height: 1.2em;
}

@media screen and (max-width: 1100px) {
  .mw-product-features-grid { grid-template-columns: repeat(2, 1fr); }
  .mw-product-card { min-height: 40vw; }
  .mw-product-card.tall { grid-row: span 1; }
  .mw-software-cols { grid-template-columns: repeat(2, 1fr); }
  .mw-usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .mw-product-grid .title > * {
    font-size: calc(3.5rem + 3.5vw);
  }
}
@media screen and (max-width: 750px) {
  .mw-product-split { flex-direction: column; gap: 40px; }
  .mw-product-split-left { flex: none; width: 100%; }
  .mw-product-card { min-height: 45vw; }
  .mw-product-features-grid { grid-template-columns: 1fr; }
  .mw-software-cols { grid-template-columns: 1fr; }
  .mw-service-layout { grid-template-columns: 1fr; gap: 40px; }
  .mw-service-items { grid-template-columns: 1fr; }
  .mw-usecases-grid { grid-template-columns: 1fr; }
  .mw-software-screen-wrap { min-height: auto; flex-direction: column; }
  .mw-software-screen-wrap img { width: 100%; }
  .mw-software-card { position: static; transform: none; max-width: 100%; }
  .mw-usecases-grid > * {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 500px) {
  .mw-product-card { min-height: 60vw; }
}


/* =====================================
   TEAM PAGE
===================================== */

.mw-team-hero .mw-hero-intro::after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.mw-team-hero .mw-hero-intro .ill {
  z-index: 1;
}
.mw-team-hero .mw-hero-intro .content {
  z-index: 3;
  color: #fff;
}
.mw-hiring {
  background: rgba(0,0,0,0.2);
  color: #fff;
  padding: 80px var(--gutter);
}
@media screen and (max-height: 1000px) {
  .mw-hiring {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 850px) {
  .genesis-grid > * { --g: 1em !important; flex: 0 0 100%; }
}
@media screen and (max-width: 550px) {
  .mw-hiring {
    min-height: 50vh;
    padding: 40px var(--gutter);
  }
  .mw-hiring .ps-content .spacer + .spacer { display: none; }
  .mw-hiring > .spacer { display: none; }
}


.mw-values {
  background: linear-gradient(180deg, #d5d4ca 0%, #2a93b3 50%, #025b6e 100%);
  color: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0 calc(var(--gutter) * 2) 0;
}
.mw-values-grid {
--g: 1.5em;
  text-align: left;
}
.mw-value-icon {
  margin-bottom: 2rem;
}
.mw-value-icon img {
  display: block;
  width: 8em;
  height: 8em;
  object-fit: contain;
  object-position: top left;
}
.mw-values-grid .text > *:not(:last-child) {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 900px) {
  .mw-values-grid > * {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 500px) {
  .mw-values-grid > * {
    flex: 0 0 100%;
    max-width: 350px;
  }
}

@media screen and (max-width: 600px) {
  .mw-team-hero .mw-hero-intro {
    min-height: 110vw;
    height: auto;
  }
  .mw-team-hero .mw-hero-intro .title.big {
    font-size: 0.75em;
  }
}

/* =====================================
   NEWS LIST PAGE
===================================== */

.mw-news-list-page {
  background: #ffffff;
  padding: calc(var(--gutter) * 1.5) 0;
}

.mw-news-list-card {
  border-bottom: 1px solid rgba(10, 36, 38, 0.2);
  padding: 2rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.mw-news-list-card > *:not(:last-child) {
  margin-top: 0.25em !important;
}
.mw-news-list-thumb {
  position: relative;
  background: #D9D9D9;
}
.mw-news-list-thumb::after {
  content: '';
  display: block;
  padding-bottom: 37%;
}
.mw-news-list-card .buttons {
  padding-top: 1.5em;
}


/* =====================================
   NEWS SINGLE PAGE
===================================== */

.mw-article-hero {
  position: relative;
  height: calc(1em + 40vw);
  max-height: 625px;
  overflow: hidden;
  background: #0a2426;
}
.mw-article-hero.no-image {
  background: #fff;
  height: 5vw;
  min-height: var(--headerHeight);
  max-height: 425px;
}
.mw-article-hero-img {
  position: absolute;
  inset: 0;
}
.mw-article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.mw-article-content {
  padding: calc(var(--gutter) * 1.5) 0;
  background: #ffffff;
}
.mw-article-inner {
  max-width: 684px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mw-article-image-wrap {
  border-radius: 8px;
  overflow: clip;
  margin-bottom: 8px;
}
.mw-article-image-wrap img {
  width: 100%;
  display: block;
}
.mw-article-caption,
.wp-element-caption {
  font-size: 0.95em;
  margin-bottom: 40px;
  text-align: left;
  color: currentColor;
  display: block;
  opacity: 1;
  line-height: 1.2em;
}
.mw-article-body p {
  font-size: 1em;
  line-height: 1.56;
  color: #0a2426;
  margin-bottom: 24px;
}
.mw-article-body p:last-child {
  margin-bottom: 0;
}
.mw-article-related {
  background: #f5f5f5;
  padding: calc(var(--gutter) * 1.5) 0;
}


/* =====================================
   CONTACT PAGE
===================================== */

.mw-contact {
  background: #f5f5f5;
  padding: 112px 0;
}
.mw-contact-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.mw-contact-pretitle {
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #0a2426;
  margin-bottom: 24px;
}
.mw-contact-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 400;
  font-family: var(--titleFont);
  color: #0a2426;
  margin-bottom: 48px;
}
.mw-contact-intro {
  font-size: 1em;
  line-height: 1.56;
  letter-spacing: 0.03em;
  color: #0a2426;
  margin-bottom: 24px;
}
.mw-contact-fields-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.mw-contact-field {
  flex: 1;
}
.mw-contact-field input,
.mw-contact-field textarea {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--baseFont);
  font-size: 1em;
  line-height: 1.33em;
  color: #0a2426;
  outline: none;
  transition: box-shadow 0.2s;
}
.mw-contact-field input:focus,
.mw-contact-field textarea:focus {
  box-shadow: 0 0 0 2px var(--color1);
}
.mw-contact-field input::placeholder,
.mw-contact-field textarea::placeholder {
  color: #a2aeb2;
}
.mw-contact-field textarea {
  height: 154px;
  resize: vertical;
}
.mw-contact-checkbox-row {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.mw-contact-checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color1);
  cursor: pointer;
}
.mw-contact-checkbox-row label {
  font-size: 0.78em;
  line-height: 1.7em;
  letter-spacing: 0.03em;
  color: #0a2426;
  cursor: pointer;
}
.mw-contact-submit {
  display: flex;
  justify-content: flex-end;
}
.mw-contact-submit .btn.black {
  padding: 0.875px 1.5em;
  font-size: 0.89em;
  height: 3.3125em;
}

@media screen and (max-width: 600px) {
  .mw-contact-fields-row { flex-direction: column; }
}

/* Personio */

.mw-open-positions {
  padding: 1em 0;
  border-bottom: 1px solid #D8D8D8;
  background: #F5F5F5;
}

.personioposition {
  margin-bottom: var(--gutter);
}
.personioposition header {
  position: static !important;
  transform: none !important;
}
.personio-positions li {
  list-style-type: none;
}
.personio-positions li h2 {
  font-size: 1em;
  margin-bottom: 1em;
}
article.personioposition {
  border-top: 1px solid rgba(10, 36, 38, 0.20);
  padding: 2rem 0;
}
article.personioposition h3 {
  font-size: 1em;
  margin-bottom: 1em;
}
article.personioposition h3 a:not(:hover) {
  text-decoration: none;
}
article.personioposition header + div {
  opacity: 0.5;
  font-size: 0.89em;
}
article.personioposition .action {
  margin-top: 1em;
}
article.personioposition .action a.btn {
  text-decoration: none;
  font-size: 1em;
}