/* Background video styles */
.background-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-out;
  z-index: 2;
}

.background-video-wrapper.loaded .background-video {
  opacity: 1;
}

.background-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/content/dam/pan/en_US/includes/igw/device-security/images/bgnd-cover.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 3;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Section-specific cover opacity */
body[data-current-section="hero"] .background-cover {
  opacity: 0.3;
}

body[data-current-section="device-landscape"] .background-cover {
  opacity: 0.7;
}

body[data-current-section="coverage-gaps"] .background-cover {
  opacity: 0.6;
}

body[data-current-section="vulnerabilities"] .background-cover {
  opacity: 0;
}

body[data-current-section="eol-software"] .background-cover {
  opacity: 0.5;
}

body[data-current-section="iot-risks"] .background-cover {
  opacity: 1;
}

body[data-current-section="key-takeaways"] .background-cover {
  opacity: 0.5;
}

body[data-current-section="next-steps"] .background-cover {
  opacity: 0.4;
}

/* Report cover image styling */
.report-cover-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure content is above the background video */
.content-section {
  position: relative;
  z-index: 10;
}

/* Side Navigation */
.side-navigation {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.nav-item {
  position: relative;
  height: 32px;
  width: 32px;
  border-radius: 9999px;
  border: 2px solid #191407;
  background-color: #191407;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

.nav-item .nav-number {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-item .nav-label {
  white-space: nowrap;
  width: 0;
  opacity: 0;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(8px);
}

.nav-item:hover {
  width: auto;
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  padding-right: 16px;
  transition: all 0.5s ease-out;
  border-radius: 9999px;
}

.nav-item:hover .nav-label {
  width: auto;
  opacity: 1;
  margin-left: 8px;
  margin-right: 8px;
  transform: translateX(0);
}

.nav-item.active {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.nav-cta {
  margin-top: 32px;
  padding: 16px;
  background: linear-gradient(180deg, var(--gradient-top), var(--black));
  border-bottom: 2px solid var(--yellow);
  border-radius: 8px;
  display: inline-block;
  width: 100px;
  min-width: max-content;
  text-align: left;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 203, 5, 0.6);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow));
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-animation 3s linear infinite;
  pointer-events: none;
}

@keyframes border-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.nav-cta-text {
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.nav-cta-text span {
  display: block;
}

.nav-cta-text span:first-child {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.nav-cta-text {
  color: var(--yellow);
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .side-navigation {
    display: none;
  }
}

/* Scroll Animations */
@keyframes slide-in-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-on-scroll {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.animate-on-scroll.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Circular Progress Stats */
.stat-circle-wrapper {
  position: relative;
  width: 230px;
  height: 230px;
}

.stat-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-circle-bg {
  fill: none;
  stroke: var(--grey);
  stroke-width: 10;
}

.stat-circle-progress {
  fill: none;
  stroke: var(--orange);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-circle-progress.animate {
  stroke-dashoffset: 0;
}

.stat-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-percent {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

/* Stack logo and text in riskblock */
.riskblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Section-specific video background */
.section-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#vulnerabilities .section-video-bg {
  opacity: 1;
}

.section-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Marketo form container */
.marketo-block {
  width: 100%;
  padding: 20px;
}

/* Glitch effect for EOL logos */
@keyframes glitch {
  0% { opacity: 1; }
  5% { opacity: 0.7; }
  10% { opacity: 1; }
  12% { opacity: 0.65; }
  15% { opacity: 0.9; }
  18% { opacity: 0.75; }
  20% { opacity: 1; }
  23% { opacity: 0.8; }
  25% { opacity: 0.7; }
  28% { opacity: 0.85; }
  30% { opacity: 1; }
  33% { opacity: 0.7; }
  35% { opacity: 0.9; }
  38% { opacity: 0.75; }
  40% { opacity: 1; }
  43% { opacity: 0.65; }
  45% { opacity: 0.8; }
  48% { opacity: 0.85; }
  50% { opacity: 1; }
  53% { opacity: 0.7; }
  55% { opacity: 0.9; }
  58% { opacity: 0.75; }
  60% { opacity: 1; }
  63% { opacity: 0.8; }
  65% { opacity: 0.7; }
  68% { opacity: 0.85; }
  70% { opacity: 1; }
  73% { opacity: 0.65; }
  75% { opacity: 0.9; }
  78% { opacity: 0.75; }
  80% { opacity: 1; }
  83% { opacity: 0.8; }
  85% { opacity: 0.7; }
  88% { opacity: 0.85; }
  90% { opacity: 1; }
  93% { opacity: 0.75; }
  95% { opacity: 0.9; }
  98% { opacity: 0.8; }
  100% { opacity: 1; }
}

.riskblock img.glitch-animate {
  animation: glitch 1.2s ease-in-out;
}

/* Font faces moved to end of file to avoid duplicates */

/* Animated CTA Button (from quantum-security) */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px 2px rgba(255, 203, 5, 0.5);
    opacity: 0.5;
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 203, 5, 0.8);
    opacity: 0.8;
  }
}

.cta-button-card {
  position: relative;
  z-index: 1;
  border-radius: 0.6rem;
  padding: 16px;
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  background: 
    linear-gradient(to bottom, black, transparent),
    linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
    url('/content/dam/pan/en_US/includes/igw/device-security/images/cta-bgnd.svg'),
    linear-gradient(to bottom, #000000, #191407);
  background-size: 100% 100%, 100% 100%, 500% 500%, 100% 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  isolation: isolate;
}

.cta-button-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  background: rgba(255, 203, 5, 0.1);
  border-radius: 0.6rem;
  filter: blur(8px);
  animation: pulse-glow 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cta-button-card:hover {
  transform: translateY(4px) scale(1.05);
}

.cta-button-card:hover::before {
  box-shadow: 0 0 25px 8px rgba(255, 203, 5, 0.9);
  opacity: 1;
  transform: translateY(-2px);
}

/* CTA Button Positioning */
.nav-cta-wrapper {
  display: block;
  margin-top: 32px;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  left: 0;
}

/* Mobile CTA - hidden on desktop, fixed at bottom left on mobile */
.mobile-cta-wrapper {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 40;
}

@media (max-width: 1024px) {
  .nav-cta-wrapper {
    display: none;
  }
  
  .mobile-cta-wrapper {
    display: block;
  }
  
  .mobile-cta-wrapper a {
    display: inline-block;
    text-decoration: none;
  }
}

:root {
  --black: #000;
  --white: #fcfcfc;
  --yellow: #ffcb05;
  --gradient-top: #191407;
  --grey: #2d2d2d;
  --orange: #fa582d;
  --yellowMarketo: #d18713;
  --hoves: "TT Hoves", Arial, sans-serif;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'TT Hoves', Arial, sans-serif;
  font-size: 22px;
  line-height: 150%;
}

h1 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 56px;
  font-weight: 500;
  line-height: 115%;
}

h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 45px;
  font-weight: 500;
  line-height: 120%;
}

p {
  margin-bottom: 20px;
}

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

.logoblock {
  text-align: center;
  background-image: linear-gradient(#000, #0000);
  padding-top: 13px;
  padding-bottom: 13px;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section {
  padding-top: 100px;
  min-height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
}

#next-steps {
  position: relative;
}

#next-steps::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('/content/dam/pan/en_US/includes/igw/device-security/images/cta-bgnd.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

body[data-current-section="next-steps"] #next-steps::before {
  opacity: 1;
}

.top-copy {
  width: 50%;
}

.top-copy.wide {
  width: 60%;
}

.top-copy.full {
  width: 100%;
}

.report-cover-image {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-small-title {
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 24px;
}

.heading {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
}

.text-yellow {
  color: var(--yellow);
}

.scroll-block {
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  text-decoration: none;
  display: flex;
}

.scroll-block-text {
  padding-left: 10px;
}

.end-title {
  font-size: 56px;
}

.marketo-block {
  background-color: #ffffff1a;
  border-radius: 10px;
  padding: 60px;
}

.card-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-top: 60px;
}

.card-grid.two {
  grid-template-columns: 1fr 1fr;
}

.card {
  border-bottom: 1px solid var(--yellow);
  background-image: url('/content/dam/pan/en_US/includes/igw/device-security/images/strata-bg-2.svg'), linear-gradient(180deg, var(--gradient-top), var(--black));
  text-align: center;
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 300%, auto;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.cardMarketo {
  border-right: 1px solid var(--yellow);
  background-image: url('/content/dam/pan/en_US/includes/igw/device-security/images/strata-bg-2.svg'), linear-gradient(90deg, var(--yellow), var(--yellowMarketo));
  text-align: center;
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 300%, auto;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.card.big-card {
  background-image: url('/content/dam/pan/en_US/includes/igw/device-security/images/strata-bg-2.svg'), linear-gradient(180deg, var(--gradient-top), var(--black));
  background-position: 80% 100%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 200%, auto;
  padding: 45px;
}

.card.lg-text {
  background-position: -7% 100%, 0 0;
  padding: 55px 75px 90px 55px;
  font-size: 27px;
  line-height: 150%;
  overflow: hidden;
}

.icon-set1 {
  width: 75px;
  height: 55px;
  margin-bottom: 20px;
}

.icon-set6 {
  width: 75px;
  height: 64px;
  margin-bottom: 20px;
}

.hand-indicator {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.card:hover .hand-indicator {
  opacity: 1;
}

.grid4060 {
  text-align: left;
  grid-template-columns: .75fr 1fr;
  place-items: center stretch;
  align-items: center;
}

.text-left {
  text-align: left;
}

.two-column-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 60px;
  margin-top: 40px;
  margin-bottom: 60px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .two-column-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.iot-stat-block {
  display: contents;
}

.iot-stat-intro {
  font-size: 22px;
  line-height: 150%;
}

.iot-stat-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: center;
}

.iot-stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  width: 120px;
  text-align: left;
}

.iot-stat-number::after {
  content: '%';
}

.iot-stat-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iot-stat-label {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.iot-stat-bar-container {
  width: 100%;
  height: 8px;
  background-color: var(--grey);
  border-radius: 4px;
  overflow: hidden;
}

.iot-stat-bar {
  height: 100%;
  width: 0%;
  background-color: var(--orange);
  border-radius: 4px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 767px) {
  .iot-stat-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .iot-stat-number {
    font-size: 32px;
  }
}

.sec3grid {
  grid-row-gap: 42px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-top: 40px;
}

.sect3block {
  text-align: center;
}

.sect3block h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #fcfcfc;
}

.iconandbar {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.sidebar {
  background-color: var(--grey);
  border-radius: 20px;
  width: 15px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
  transform: translate(70px);
}

.sidebarinner {
  background-color: var(--yellow);
  border-radius: 20px;
  width: 100%;
  height: 0%;
  position: absolute;
  inset: auto 0% 0%;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.5s ease;
}

.sidebarinner.highlight {
  background-color: var(--orange);
  animation: glowPulse 2s ease-in-out infinite;
}

.sect3block.highlight-text h3 {
  color: var(--yellow);
  transition: color 0.5s ease;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(250, 88, 45, 0.4),
                0 0 20px rgba(250, 88, 45, 0.3),
                0 0 30px rgba(250, 88, 45, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(250, 88, 45, 0.8),
                0 0 30px rgba(250, 88, 45, 0.6),
                0 0 40px rgba(250, 88, 45, 0.4);
  }
}

.riskblock {
  text-align: center;
}

.card-grid3 {
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 60px;
}

.card-inset {
  background-color: var(--yellow);
  color: var(--black);
  text-align: left;
  border-radius: 15px;
  padding: 44px;
  font-size: 20px;
  line-height: 140%;
  position: absolute;
  inset: auto 0% 0%;
  transform: translate(0, 100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-inset {
  transform: translate(0, 0);
}

.text-block {
  color: var(--black);
}

.riv-block {
  text-align: center;
  padding-top: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#iot-risks-canvas {
  width: 100%;
  height: auto;
  max-width: 1200px;
  aspect-ratio: 1200 / 477;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) and (max-width: 1530px) {
  .content-contain {
    padding-left: 75px;
  }
}

@media screen and (max-width: 1200px) {
  #iot-risks-canvas {
    max-width: 100%;
  }
}

/* Tablet Landscape - 1024px and below */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 38px;
  }
  
  .top-copy {
    width: 70%;
  }
  
  .top-copy.wide {
    width: 80%;
  }
  
  .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  
  .card-grid3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .sec3grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

/* Tablet Portrait - 768px and below */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .section-small-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .top-copy,
  .top-copy.wide {
    width: 100%;
  }
  
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .card-grid.two {
    grid-template-columns: 1fr;
  }
  
  .card-grid3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .sec3grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .card {
    padding: 40px 30px;
  }
  
  .content-section {
    padding: 60px 20px;
  }
  
  .w-layout-blockcontainer {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .report-cover-image {
    max-width: 300px;
    margin: 20px 0;
  }
  
  .riv-block {
    padding-top: 40px;
  }
  
  /* Stack CTA section columns */
  #next-steps .w-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Stack circle number cards */
  .grid4060 {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    place-items: center center;
  }
}

/* Mobile - 480px and below */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
    line-height: 120%;
  }
  
  h2 {
    font-size: 26px;
    line-height: 120%;
  }
  
  .section-small-title {
    font-size: 16px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .sec3grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .content-section {
    padding: 40px 15px;
  }
  
  .w-layout-blockcontainer {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .logoblock {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .scroll-block-text {
    font-size: 14px;
  }
  
  .report-cover-image {
    max-width: 250px;
  }
  
  .iot-stat-intro {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .iot-stat-number {
    font-size: 48px;
  }
  
  .iot-stat-label {
    font-size: 14px;
  }
}

#w-node-_15b43181-46c0-d503-a32b-af5d185f5846-99025071, #w-node-ee25a28e-257f-ffbe-2b5c-2a51a936f2c1-99025071, #w-node-_02ec2092-4af4-cdad-bafd-072ce8cc5dcb-99025071, #w-node-d6601d15-aca7-ad7f-0f1e-33caae09a69e-99025071, #w-node-_4b2939e4-cc66-1e21-8788-437c983b98c1-99025071, #w-node-f8406c12-d42a-81b0-891f-dd64b5b6fc02-99025071, #w-node-f8406c12-d42a-81b0-891f-dd64b5b6fc06-99025071 {
  align-self: stretch;
}

#w-node-_276292ca-886e-dcea-e774-07fa6bdac2ef-99025071, #w-node-_695b2f8c-f66e-ab12-5746-d9b2870337ef-99025071, #w-node-_01ea427d-346b-a61a-b790-c16cb956e6aa-99025071, #w-node-c8127085-66f8-a076-edc4-1777752935fb-99025071, #w-node-_7394e141-443c-3412-4882-7d3e5315bb72-99025071, #w-node-b624e75e-795c-d0c8-5156-f22f0e06315a-99025071, #w-node-_6c3c5abd-c5fc-76f3-46f0-32968ec2a75e-99025071, #w-node-_4cd376da-9fac-2518-a7dd-84341894c9a5-99025071, #w-node-ac8f3f80-67e9-0605-dae6-c143d069bcd0-99025071, #w-node-c78b71b4-c3d4-f1ab-551a-b0b3f6cd4986-99025071 {
  justify-self: center;
}

#w-node-_561b54fc-04de-ffc5-e702-7144ccd17945-99025071 {
  align-self: stretch;
}

#w-node-_3f10dc10-299a-b49f-dc73-c5b06f0f960e-99025071 {
  align-self: center;
}

#w-node-_561b54fc-04de-ffc5-e702-7144ccd1794a-99025071 {
  align-self: stretch;
}

#w-node-_3d19acb3-42da-0b97-8763-6736adb26d66-99025071 {
  align-self: center;
}

#w-node-_381e2b51-17df-61e6-04e7-dafac6244bfb-99025071, #w-node-_9558d50f-491c-28da-3d9c-39995bea759e-99025071, #w-node-a1e26e43-7cd3-827c-44c2-2fd056345b5e-99025071, #w-node-bdfd81ef-a710-c425-1601-a43cbcb609c5-99025071, #w-node-_117c1355-baa2-0d02-191d-fb9fdf28ddd8-99025071 {
  align-self: stretch;
}


@font-face {
  font-family: 'TT Hoves';
  src: url('/etc/clientlibs/clean/dependencies/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;
}
@font-face {
  font-family: 'TT Hoves';
  src: url('/etc/clientlibs/clean/dependencies/fonts/tthoves/TT-Hoves-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}