/*
COLOR Scheme
Button: #8c8c8c
Background: black
Background2: #272727
Blue-BG: #006beb
*/

:root {
  --bg: #0c0f14;
  --panel: #11161d;
  --text: #e7ecf3;
  --muted: #96a0af;
  --brand: #4cc2ff; /* Akzentfarbe */
  --line: #223247; /* Verbindungs-Linie */
  --ring: #173452; /* Ring um Kreise */
  --ink: #e8ecf7;
  --card: #121931;
  --edge: #31406b;
  --blue-1: #263a7a;
  --blue-2: #1f3270;
  --blue-3: #192b66;
  --blue-4: #0a1338;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

body {
  all: unset;
  background-color: black;
  color: white;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body.lock-scroll {
  height: 100vh;
  overflow: hidden;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  height: 100px;
  width: 100%;
  background-color: black;
  z-index: 10;
  box-shadow: 0px 5px 15px 0px rgba(128, 128, 128, 0.452);
}

header a {
  all: unset;
  width: 33%;
  cursor: pointer;
}

main {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

h1 {
  color: white;
}

h2,
p {
  color: white;
}

.logo {
  height: 50px;
  width: auto;
  padding: 22px;
}

@media (min-width: 600px) {
  .logo {
    height: 75px;
    width: auto;
    padding: 5px;
  }
}

/* Cloud to Hardware Overview */

.overlay {
  position: absolute;
  top: 0px; /* space from top */
  left: 0px; /* space from left */
  color: #fff;

  padding: 0x 0px;
  line-height: 1;
}

.bg-blur {
  position: absolute;
  top: 0;
  left: -25%;
  width: 100%;
  height: 100%;

  color: #fff;
  line-height: 1;

  background: radial-gradient(
    circle,
    rgba(9, 9, 9, 0.9) 0%,
    rgba(9, 9, 9, 0.7) 40%,
    rgba(9, 9, 9, 0.2) 70%,
    rgba(9, 9, 9, 0) 100% /* edges */
  );
}

/* Make the intro overlay fill the viewport and sit on top */
.overlay.reveal-stage {
  /*inset: 0;
  display: grid;
  place-items: center;
  background: transparent;  keeps your design; change if you want a backdrop */
  transition: opacity 400ms ease;
}

/* Fade out when done */
.overlay.reveal-stage.done {
  pointer-events: none;
}

.sdv {
  max-width: 1100px;
  margin: 5px auto;
  padding: 5px;
  position: relative;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.card {
  position: relative;
  padding: 5px 60px 5px 60px;
  /*background: var(--card);
  border-bottom: 2px solid var(--edge);
  /*box-shadow: 0 3px 12px rgba(0, 150, 255, 0.7);*/

  border-image: linear-gradient(
      to right,
      rgba(0, 150, 255, 0.05) 0%,
      rgba(84, 184, 255, 0.7) 50%,
      rgba(0, 150, 255, 0.05) 100%
    )
    1;
  border-width: 2px;
  border-style: solid;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;

  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(30px);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
}

.card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card h3 {
  margin: 2px 0 4px 0;
  text-shadow: 2px 2px 2px black;
  font-size: 12px;
}

.card p {
  margin: 0;
  font-size: 8px;
  color: white;
  text-shadow: 2px 2px 2px black;
}

.card .icon {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  display: grid;
  place-items: center;
}

.card .icon svg {
  height: 25px;
  width: 25px;
  fill: #fff;
}

/*
.tone-1 {
  background: #c3cdff;
}
.tone-2 {
  background: #4c6aff;
}
.tone-3 {
  background: #021a9e;
}
.tone-4 {
  background: #01126a;
}
*/
.card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.img-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.img-card img {
  display: block; /* removes inline-gap */
  width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: opacity 200ms linear !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (min-width: 400px) {
  .list {
    gap: 5px;
  }
  .card {
    padding: 10px 60px 10px 60px;
  }
}

@media (min-width: 600px) {
  .overlay {
    top: 30px;
    left: 30px;
  }
}

@media (min-width: 900px) {
  .bg-blur {
    left: -50%;
  }
  .list {
    gap: 15px;
  }

  .overlay {
    top: 50px; /* space from top */
    left: 50px; /* space from right */
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .card .icon svg {
    height: 50px;
    width: 50px;
  }

  .card .icon {
    height: 70px;
    width: 70px;
    border-radius: 35px;
  }

  .card {
    padding: 18px 80px 18px 80px;
  }
}

@media (min-width: 1200px) {
  .bg-blur {
    left: -50%;
  }
  .list {
    gap: 30px;
  }

  .overlay {
    top: 100px; /* space from top */
    left: 100px; /* space from right */
  }

  .card h3 {
    font-size: 36px;
  }

  .card p {
    font-size: 18px;
  }

  .card .icon svg {
    height: 75px;
    width: 75px;
  }

  .card .icon {
    height: 95px;
    width: 95px;
    border-radius: 47px;
  }

  .card {
    padding: 18px 80px 18px 120px;
  }
}

/* Storyline */
.cls-1 {
  stroke: #242424;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cls-1,
.cls-2 {
  fill: none;
  stroke-width: 1.5px;
}

.cls-2 {
  stroke: #ffffff;
  stroke-miterlimit: 10;
}
.cls-3 {
  fill: none;
  stroke: #00a9eb;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}

.cls-4 {
  stroke-dasharray: 2.05 4.09;
}

.cls-4,
.cls-5,
.cls-6,
.cls-7,
.cls-8 {
  fill: none;
  stroke: #00a9eb;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.cls-5 {
  stroke-dasharray: 2.02 4.04;
}

.cls-7 {
  stroke-dasharray: 1.97 3.94;
}

.cls-8 {
  stroke-dasharray: 2.03 4.05;
}

.introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.introduction.container {
  max-width: 600px;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* durchgehende Linie im Hintergrund */
.timeline::before {
  content: "";
  position: absolute;
  left: 32px; /* halbe Marker-Breite */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--line), var(--line));
  transform: translateX(-1px); /* optisch exakt mittig */
  pointer-events: none;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 0 24px;
}

.marker {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02) 45%,
      transparent 60%
    ),
    var(--panel);
  box-shadow: inset 0 0 0 2px var(--ring), 0 8px 20px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  z-index: 1;
  margin: 0 0 40px 0; /* Abstand zum nächsten Step */
}

/* Segment-Linie nur von diesem Marker bis zum nächsten (überdeckt die Grundlinie) */
.marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 128px; /* unterer Rand des Kreises */
  width: 2px;
  height: calc(100% + 40px); /* bis zum nächsten Marker-Abstand */
  background: var(--line);
  transform: translateX(-1px);
  z-index: -1;
}
/* Beim letzten Step die Fortsetzungs-Linie ausblenden */
.step:last-child .marker::after {
  display: none;
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--brand);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* Content-Spalte */
.content {
  margin: 0 0 40px 0;
  padding: 20px 22px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in oklab, var(--panel), #ffffff 10%);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 480ms ease;
}
.content.in {
  transform: none;
  opacity: 1;
}

.content h3 {
  margin: 4px 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.content p {
  margin: 0;
  color: color-mix(in oklab, var(--text), #000 10%);
}

/* Responsiv */
@media (max-width: 720px) {
  .timeline {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
  }
  .marker {
    width: 56px;
    height: 56px;
  }
  .marker::after {
    top: 56px;
  }
  .timeline::before {
    left: 28px;
  }
  .content {
    padding: 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    transition: none;
  }
}

/* LightOpen Video */

.video-segment {
  display: flex;
  justify-content: center;
}

.video-container {
  width: 90vw;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .video-container {
    width: 75%;
  }
}

/* USP Boxes */
.container {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.box {
  background-color: #272727;
  padding: 20px;
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.box img {
  max-width: 100%;
}

@media (min-width: 900px) {
  .box {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
  }
  .box {
    width: 25%;
  }
}

/* Social Media Banner */

footer {
  background-color: #171616;
  color: #fff;
  padding-bottom: 3.125rem;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook:before {
  content: "\f09a";
}

footer .footer-top .footer-top-text,
footer .footer-top .socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .footer-top .footer-top-text h2,
footer .footer-top .footer-top-text .h2 {
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 1.65rem;
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    text-align: left;
    margin-bottom: 0;
  }
}

footer .footer-top {
  background: #0024d3;
  background: linear-gradient(90deg, rgb(0, 36, 211) 0%, rgb(11, 175, 224) 75%);
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1.875rem 5%;
}

@media (min-width: 992px) {
  footer .footer-top {
    padding: 2.5rem 5%;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  footer .footer-top {
    padding: 3.125rem 10%;
  }
}

footer .footer-top .footer-top-text,
footer .footer-top .socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .footer-top .socials {
  gap: 1.25rem;
}

footer .footer-top a {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

footer .footer-top a .fa {
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {
  footer .footer-top a .fa {
    font-size: 1.25rem;
  }
}

footer .footer-top a:hover {
  background-color: #fff;
  color: #006ceb;
  text-decoration: none;
}

footer .footer-top a .wechat-channel {
  display: flex;
  background-color: #fff;
  transform: scale(2);
  margin: 0;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

footer .footer-top a .wechat-channel:hover {
  background-color: #006ceb;
}

footer .footer-top .footer-top-text h2,
footer .footer-top .footer-top-text .h2 {
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 1.65rem;
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    text-align: left;
    margin-bottom: 0;
  }
}

/* Links */

footer ul,
footer li {
  text-decoration: none;
  list-style: none;
}

footer ul {
  margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
  footer ul {
    margin-bottom: 0;
  }
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer a .icon-external {
  background-color: #fff;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

footer button {
  border: none;
  background: rgba(0, 0, 0, 0);
}

footer nav {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding: 1.875rem 5%;
}

@media (min-width: 992px) {
  footer nav {
    padding: 2.5rem 5%;
  }
}

@media (min-width: 1200px) {
  footer nav {
    padding: 3.125rem 10%;
  }
}

@media (min-width: 768px) {
  footer nav {
    justify-content: space-between;
  }
}

@media (max-width: 1199.98px) {
  footer nav {
    grid-template-columns: auto auto auto;
  }
}

@media (max-width: 767.98px) {
  footer nav {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 575.98px) {
  footer nav {
    grid-template-columns: auto;
  }
}

footer nav ul {
  display: flex;
  flex-direction: column;
  flex-basis: 250px;
  min-width: 230px;
  padding: 0;
}

@media (max-width: 575.98px) {
  footer nav ul {
    border-bottom: 1px solid #fff;
  }
}

@media (min-width: 576px) {
  footer nav ul {
    margin-bottom: 25px;
  }
}

@media (min-width: 1200px) {
  footer nav ul {
    margin-bottom: 0;
  }
}

footer nav li:first-of-type {
  font-size: 1.03125rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

@media (min-width: 992px) {
  footer nav li:first-of-type {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  footer nav li:first-of-type {
    margin-top: 0.625rem;
  }
}

footer nav li {
  font-size: 0.825rem;
  padding-bottom: 0.625rem;
}

@media (min-width: 992px) {
  footer nav li {
    font-size: 1rem;
  }
}

footer.simple-footer .wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding: 1.875rem 5%;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  footer.simple-footer .wrapper {
    padding: 2.5rem 5%;
  }
}

@media (min-width: 1200px) {
  footer.simple-footer .wrapper {
    padding: 3.125rem 10%;
  }
}

@media (min-width: 768px) {
  footer.simple-footer .wrapper {
    justify-content: space-between;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  footer.simple-footer .wrapper > div:nth-of-type(2) ul {
    align-items: center;
  }
}

footer.simple-footer .wrapper ul {
  display: flex;
  flex-direction: column;
  flex-basis: 250px;
  min-width: 230px;
  padding: 0;
}

@media (max-width: 575.98px) {
  footer.simple-footer .wrapper ul {
    border-bottom: 1px solid #fff;
  }
}

footer.simple-footer .wrapper ul li {
  font-size: 1.03125rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 992px) {
  footer.simple-footer .wrapper ul li {
    font-size: 1.25rem;
  }
}

footer.simple-footer .wrapper ul li a {
  display: flex;
  align-items: center;
}

footer.simple-footer .wrapper ul li a .pre-icon {
  max-width: 25px;
  display: inline-block;
  margin-right: 0.625rem;
  filter: invert(1);
}

footer.simple-footer .wrapper ul li a .pre-icon img {
  display: block;
}

@media (max-width: 575.98px) {
  footer.simple-footer .wrapper .teaser {
    border-bottom: 1px solid #fff;
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

@media (min-width: 768px) {
  footer.simple-footer .wrapper .teaser {
    text-align: right;
  }
}

footer.simple-footer .wrapper .teaser img {
  max-width: 300px;
}

footer.simple-footer .wrapper .teaser span {
  display: block;
  margin-top: 0.625rem;
}

footer.simple-footer .wrapper .teaser:hover {
  text-decoration: none;
}

footer.simple-footer #icp {
  font-size: 0.825rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

footer.simple-footer .footer-bottom {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.625rem;
}

@media (min-width: 768px) {
  footer.simple-footer .footer-bottom {
    gap: 0;
    justify-content: space-between;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

footer.simple-footer .footer-bottom .footer-row-nav ul {
  justify-content: center;
}

@media (min-width: 768px) {
  footer.simple-footer .footer-bottom .footer-row-nav ul {
    justify-content: flex-start;
    margin-left: -0.5rem;
  }
}

footer.simple-footer .footer-bottom .copyright {
  text-align: center;
  order: 2;
}

@media (min-width: 768px) {
  footer.simple-footer .footer-bottom .copyright {
    order: 1;
  }
}

footer.simple-footer .footer-bottom .social-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  order: 0;
}

@media (min-width: 768px) {
  footer.simple-footer .footer-bottom .social-icons {
    justify-content: flex-end;
    order: 3;
  }
}

footer.simple-footer .footer-bottom .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

footer.simple-footer .footer-bottom .social-icons a .fa {
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {
  footer.simple-footer .footer-bottom .social-icons a .fa {
    font-size: 1.25rem;
  }
}

footer.simple-footer .footer-bottom .social-icons a:hover {
  color: #006ceb;
  text-decoration: none;
}

footer.simple-footer .footer-bottom .social-icons a .wechat-channel {
  display: flex;
  background-color: #fff;
  transform: scale(1.5);
  margin: 0;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

footer.simple-footer .footer-bottom .social-icons a .wechat-channel:hover {
  background-color: #006ceb;
}

footer .footer-top {
  background: #0024d3;
  background: linear-gradient(90deg, rgb(0, 36, 211) 0%, rgb(11, 175, 224) 75%);
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1.875rem 5%;
}

@media (min-width: 992px) {
  footer .footer-top {
    padding: 2.5rem 5%;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  footer .footer-top {
    padding: 3.125rem 10%;
  }
}

footer .footer-top .footer-top-text,
footer .footer-top .socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .footer-top .socials {
  gap: 1.25rem;
}

footer .footer-top a {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

footer .footer-top a .fa {
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {
  footer .footer-top a .fa {
    font-size: 1.25rem;
  }
}

footer .footer-top a:hover {
  background-color: #fff;
  color: #006ceb;
  text-decoration: none;
}

footer .footer-top a .wechat-channel {
  display: flex;
  background-color: #fff;
  transform: scale(2);
  margin: 0;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

footer .footer-top a .wechat-channel:hover {
  background-color: #006ceb;
}

footer .footer-top .footer-top-text h2,
footer .footer-top .footer-top-text .h2 {
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 1.65rem;
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  footer .footer-top .footer-top-text h2,
  footer .footer-top .footer-top-text .h2 {
    text-align: left;
    margin-bottom: 0;
  }
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.825rem;
  padding: 0 5%;
}

@media (min-width: 1200px) {
  footer .footer-bottom {
    padding: 0 10%;
  }
}

@media (max-width: 767.98px) {
  footer .footer-bottom {
    justify-content: center;
  }
}

footer .footer-bottom .footer-row-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

footer .footer-bottom .footer-row-nav ul li {
  padding: 0 0.5rem;
  position: relative;
  color: #e9e9e9;
}

footer .footer-bottom .footer-row-nav ul li:not(:last-of-type):after {
  content: "";
  display: block;
  height: 70%;
  width: 1px;
  position: absolute;
  background-color: #e9e9e9;
  top: 15%;
  right: 0;
}

/* Footnotes */

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.825rem;
  padding: 0 5%;
}

@media (min-width: 1200px) {
  footer .footer-bottom {
    padding: 0 10%;
  }
}

@media (max-width: 767.98px) {
  footer .footer-bottom {
    justify-content: center;
  }
}

footer .footer-bottom .footer-row-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

footer .footer-bottom .footer-row-nav ul li {
  padding: 0 0.5rem;
  position: relative;
  color: #e9e9e9;
}

footer .footer-bottom .footer-row-nav ul li:not(:last-of-type):after {
  content: "";
  display: block;
  height: 70%;
  width: 1px;
  position: absolute;
  background-color: #e9e9e9;
  top: 15%;
  right: 0;
}

body.hide-navigation footer nav {
  padding-bottom: 0;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.825rem;
  padding: 0 5%;
}

@media (min-width: 1200px) {
  footer .footer-bottom {
    padding: 0 10%;
  }
}

@media (max-width: 767.98px) {
  footer .footer-bottom {
    justify-content: center;
  }
}

footer .footer-bottom .footer-row-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

footer .footer-bottom .footer-row-nav ul li {
  padding: 0 0.5rem;
  position: relative;
  color: #e9e9e9;
}

footer .footer-bottom .footer-row-nav ul li:not(:last-of-type):after {
  content: "";
  display: block;
  height: 70%;
  width: 1px;
  position: absolute;
  background-color: #e9e9e9;
  top: 15%;
  right: 0;
}
