:root {
  --yellow: #ffcb06;
  --grey: #404040;
  --white: white;
  --black: #000;
  --brown: #5a3408;
  --yellowtransparent: #ffcb064d;
  --corner10: 10px;
  --corner3: 3px;
  --blue: #00c0e8;
  --orange: #fa582d;
  --tt-hoves: tt-hoves, Arial, sans-serif;
}

html {
  scroll-snap-type: y mandatory;
}

.content-section {
  scroll-snap-align: start;
}

body {
  line-height: 140%;
  background-color: var(--brown);
  color: var(--white);
  font-family: tt-hoves, Arial, sans-serif;
  /* font-size: 1.5rem; */
  font-weight: 500;
  line-height: 150%;
  overflow-x: hidden;
  width: 100%;
}

h1 {
  color: var(--yellow);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 140%;
}

h2 {
  color: var(--yellow);
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%;
}

h3 {
  color: var(--yellow);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 140%;
}

p {
  margin-bottom: 20px;
}

.background {
  background-image: url('../images/video-still.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.background-cover {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #0003, var(--black) 100%, var(--black));
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.5s ease-out;
}

.background-cover2 {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  pointer-events: none;
  height: 90px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
}

.content-contain {
  z-index: 3;
  width: 85%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.content-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.content-text {
  flex: 1;
  padding: 2rem;
  box-sizing: border-box;
}

.content-section.fifty-wide {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .content-section.fifty-wide {
    width: 50%;
  }
}

.content-text.slide-text {
  align-items: center;
  display: flex;
}

.content-image {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.content-image.computer {
  background-image: url('../images/computer-sml.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.computer-screen-image {
  width: 70%;
  max-width: 370px;
  height: auto;
  position: relative;
  top: -5px; /* Slight adjustment to center in the screen */
}

@media screen and (max-width: 767px) {
  .computer-screen-image {
    width: 65%;
    top: -3px;
  }
}

.logo-block{
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
  text-align: center;
  white-space: nowrap;
  position: fixed;
  z-index: 100;
}

.logo-pan {
  z-index: 100;
  cursor: pointer;
  width: 154px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
}

.logo-seimens {
  z-index: 100;
  cursor: pointer;
  width: 117px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
}

.logo {
  display: inline-block;
}

.intro-title {
  font-family: Tt Hoves, Arial, sans-serif;
  font-size: 1.3rem;
}

.scrolllink {
  color: var(--white);
  font-size: 1.7rem;
  text-decoration: none;
  display: inline-block;
}

.scrolllink:hover {
  color: var(--yellow);
}

.title-center {
  text-align: center;
  margin-bottom: 10px;
}

.slider {
  z-index: 1;
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.mask {
  height: auto;
  width: 100%;
}

.w-slide {
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.w-slide.active {
  opacity: 1;
  display: block;
}

.left-arrow, .right-arrow {
  color: var(--yellow);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.w-icon-slider-left, .w-icon-slider-right {
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  width: 15px;
  height: 15px;
  display: block;
}

.w-icon-slider-left {
  transform: rotate(-45deg);
}

.w-icon-slider-right {
  transform: rotate(135deg);
}

.slider-nav-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}

.slider-nav-dot {
  width: 15px;
  height: 15px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease-out;
}

.slider-nav-dot:hover {
  transform: scale(1.1);
}

.slider-nav-dot.active::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--yellow);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
  line-height: 150%;
  display: flex;
}

.flex-col-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.panel-block {
  border-style: solid;
  border-width: 1px 1px 4px;
  border-color: var(--yellowtransparent) var(--yellowtransparent) var(--yellow);
  border-radius: var(--corner10);
  background-image: linear-gradient(162deg, var(--grey), var(--black));
  text-align: center;
  flex: 1;
  padding: 30px 30px 40px;
  font-size: 1.3rem;
  line-height: 130%;
  box-shadow: 0 8px 30px #0000004d;
}

.panel-icon {
  width: 70px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.stat-number {
  color: var(--yellow);
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 4rem;
}

.stat-line-wrapper {
  width: 150px; /* Fixed width for the wrapper */
  height: 2px;
  margin: 5px auto 15px auto;
  overflow: hidden; /* Hide the overflowing line */
  position: relative;
  background-color: var(--black);
}
.stat-number-line {
  height: 2px;
  background-color: #ffcc00;
  width: 0;
  margin: 0;
  max-width: 150px;
  transition: width 1s ease-out;
}
.stat-line {
  width: 0; /* Start with 0 width */
  height: 2px;
  background-color: var(--yellow);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 4s cubic-bezier(0.16, 1, 0.3, 1); /* Same dramatic ease-out as stats */
}
/* When parent panel-block is visible, animate the line */
.panel-block.visible .stat-line {
  width: 100%; /* Animate to full width */
}

.panel-small {
  border-style: solid;
  border-width: 1px 1px 3px;
  border-color: var(--yellowtransparent) var(--yellowtransparent) var(--yellow);
  border-radius: var(--corner10);
  color: var(--white);
  cursor: pointer;
  background-image: linear-gradient(145deg, #141414, #27241a);
  flex: 1;
  margin-bottom: 5px;
  padding: 40px;
  font-size: 1rem;
  line-height: 130%;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 30px #0000004d;
}

.panel-small.adres {
  padding: 20px;
}

.pscontent {
  font-size:1rem;
  line-height: 110%;
}

.flex3-col-left {
  flex: .25;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.flex3-col-left img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.flex3-col-center {
  flex: .25;
  font-size: 1.4rem;
}

.flex3-col-right {
  flex: 1;
  display: flex;
  grid-column-gap: 10px;
}

.tagtitle {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
}

.learnmore {
  color: var(--yellow);
  background-image: url('../images/arrow-right.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-left: 20px;
  font-size: 1.2rem;
  margin-bottom:0px;
}


.cta-button {
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 50px;
  padding: 8px 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all 0.2s ease-out;
  font-size: 1rem;
}

.flex-col-2 {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  display: flex;
}

.flex-col {
  flex-flow: row;
  flex: 1;
  display: flex;
}

.flex-col-links {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.icon-product {
  flex: 0 auto;
}

.product-text {
  flex: 1;
}

.extras {
  padding-top: 20px;
  font-size: 1.25rem;
  line-height: 130%;
}

.extras-text {
  margin-bottom: 20px;
}

.bar-back {
  border-radius: var(--corner10);
  background-color: var(--grey);
  width: 100%;
  height: 40px;
}

.bar-inner {
  background-color: var(--blue);
  width: 0%;
  height: 100%;
  transition: width 1.5s ease-out;
  border-radius: var(--corner10);
}

.extras-num {
  padding-top: 20px;
  font-family: Tt Hoves, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.added-info {
  border-top: 1px solid var(--yellow);
  margin-top: 20px;
  padding-top: 20px;
}

.added-info-link {
  color: var(--yellow);
  background-image: url('../images/scroll-arrow.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 30px;
  text-decoration: none;
}

.navigation {
  z-index: 100;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  display: flex;
  position: fixed;
  inset: 0% auto 0% 0%;
}

.nav-link {
  z-index: 100;
  background-color: var(--grey);
  cursor: pointer;
  width: 8px;
  height: 30px;
  margin-bottom: 10px;
  position: relative;
  transition: width 0.2s ease-out, background-color 0.2s ease-out;
  border-radius: var(--corner3);
}

.nav-link:hover {
  background-color: var(--yellow);
  width: 15px;
}

.nav-link:hover .nav-text {
  display: block;
  opacity: 1;
  transform: translate(20px);
}

.nav-link.active {
  background-color: var(--yellow);
  width: 15px;
}

.nav-link.visited {
  background-color: var(--yellow);
}

.nav-link.w--current {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 130%;
  text-decoration: none;
}

.nav-text {
  z-index: 99;
  border-radius: var(--corner10);
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--yellow);
  padding: 3px 10px;
  font-size: 1.1rem;
  line-height: 130%;
  text-decoration: none;
  display: block;
  position: absolute;
  opacity: 0;
  transform: translate(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  top: 0;
  left: 100%;
  white-space: nowrap;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mouse {
  margin-right: 10px;
}

.extras-num {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}

.animation-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 5/4;
  overflow: hidden;
}

.static-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

.static-fallback.hidden {
  display: none;
}

.rive-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 100%;
}

.rive-animation.active {
  opacity: 1;
}

.slide-animation-container {
  position: relative;
  width: 65%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  padding-top: 5px;
  aspect-ratio: 340/210;
  transform: translateY(-24px); /* Slight upward adjustment to better center in the computer screen */
}

.slide-animation-container .static-fallback {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.slide-animation-container .static-fallback.hidden {
  opacity: 0;
}

.slide-animation-container .rive-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide-animation-container .rive-animation.active {
  opacity: 1;
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .content-text {
    margin: 0;
  }
  .panel-block {
    padding: 20px 20px 40px;
  }
  .stat-number {
    font-size: 4rem;
    line-height: 4rem;
  }
  .flex-col-3 {
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  html {
    scroll-snap-type: none;
  }

  .content-contain {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .content-section {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 100px;
    display: block;
  }

  .slider {
    height: auto;
    display: block;
  }

  .slide-content {
    flex-flow: column;
    display: block;
  }

  .content-text {
    padding: 1rem;
  }

  .flex-col-3 {
    flex-flow: column;
  }

  .panel-block {
    flex: 0 auto;
    padding: 30px;
  }

  .flex3-col-left {
    text-align: center;
  }
  .flex3-col-right {
    flex-flow: column;
  }

  .stat-number {
    font-size: 4.5rem;
  }

  .cta-button {
    margin-bottom: 60px;
  }

  .flex-col-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .added-info {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .animation-container {
    max-height: 300px;
    aspect-ratio: 5 / 4;
    width: 100%;
    overflow: hidden;
  }
  html {
    scroll-snap-type: none;
  }
  .content-section {
    scroll-snap-align: none;
  }
  h2 {
    font-size: 2rem;
    line-height: 140%;
  }
  p {
    font-size: 1.25rem;
    line-height: 130%;
  }
  .content-contain {
    width: 90%;
  }
  .intro-title {
    font-size: 1rem;
  }
  .left-arrow {
    font-size: 1.4rem;
    transform: translate(-20px);
  }
  .right-arrow {
    font-size: 1.4rem;
    transform: translate(20px);
  }
  .slide-content {
    display: flex;
  }
  .stat-number {
    font-size: 3rem;
  }
  .cta-button {
    text-align: center;
    display: block;
  }
  .heading {
    font-size: 2rem;
  }
  .paragraph {
    font-size: 1.25rem;
  }
  .heading-2 {
    font-size: 2rem;
    line-height: 140%;
  }
  .navigation {
    display: none;
  }
  .slide-content {
    flex-flow: column;
    display: block;
  }
  .content-text {
    padding: 0 !important;
  }
  .flex-col-3 {
    flex-flow: column;
  }
  .tagtitle {
    font-size: 1.3rem;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.5rem;
    line-height: 130%;
  }
  p {
    font-size: 1.2rem;
    line-height: 120%;
  }
  .scrolllink {
    font-size: 1.25rem;
  }
  .panel-block {
    padding: 20px;
  }
  .flex-col-links {
    flex-flow: column;
  }
  .extras-num, .heading {
    font-size: 1.5rem;
  }
  .paragraph {
    font-size: 1.2rem;
    line-height: 130%;
  }
  .heading-2 {
    font-size: 1.5rem;
  }
  .navigation {
    display: none;
  }
}

@font-face {
  font-family: 'tt-hoves';
  src: url('/etc/clientlibs/clean/dependencies/fonts/tthoves/TTHoves-Regular_optimized.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'tt-hoves';
  src: url('/etc/clientlibs/clean/dependencies/fonts/tthoves/TTHoves-Medium_optimized.woff2') format('woff2'), url('/etc/clientlibs/pan/fonts/tthoves/TT-Hoves-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'tt-hoves';
  src: url('/etc/clientlibs/clean/dependencies/fonts/tthoves/TT-Hoves-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Link hover animation */
a:not(.nav-link):not(.logo):not(.w-slider-arrow-left):not(.w-slider-arrow-right):not(.scrolllink):not(.cta-button) {
  position: relative;
  transition: transform 200ms ease-out;
  display: inline-block;
}

a:not(.nav-link):not(.logo):not(.w-slider-arrow-left):not(.w-slider-arrow-right):not(.scrolllink):not(.cta-button):hover {
  transform: translateY(-5px);
}

/* Mouse icon animation */
@keyframes mouseIconBounce {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(10px);
  }
  15% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll img {
  position: relative;
  animation: mouseIconBounce 3s ease-out infinite;
}

/* Mobile-specific class that can be added to content-text */
.mobile-no-padding {
  padding: 0 !important;
}