@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--logo-size) * 12));
  }
}
@keyframes glow {
  0% {
      text-shadow: 2px 2px 5px #9158fa, 2px 2px 10px #894afc, 2px 2px 20px #894afc, 2px 2px 40px #894afc, 2px 2px 80px #894afc;
  }
  100% {
      text-shadow: 2px 2px 20px #d416f2, 2px 2px 30px #d416f2, 2px 2px 60px #d416f2, 2px 2px 80px #d416f2, 2px 2px 180px #d416f2;
  }
}

b {
color: #0de0e2;
}

.infoAreas {
display: flex;
box-sizing: border-box;
clear: both;
overflow: hidden;
max-width: 1700px;
width: 100%;
height: auto;
margin: 0 auto;
}
  .infoCol {
  flex: 1;
  padding: 25px;
  box-sizing: border-box;
  }
  .infoCol img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  }
  .left-col {
  border: #222f42 2px solid;
  background-color: #0c131d;
  box-shadow: 3px 3px 10px #26354a;
  margin-right: 2%;
  }
  .right-col {
  border: #222f42 2px solid;
  background-color: #0c131d;
  box-shadow: 3px 3px 10px #26354a;
  margin-left: 2%;
  }
    .left-col, .right-col p {
    text-indent: 45px;
    }
    .left-col p::first-letter, .right-col p::first-letter {
    font-size: 1.5em;
    color: #0de0e2;
    margin-right: 0.05em;
    }
    .neon-container {
    margin-top: 22px;
    }
      span.neon-text {
      display: inline-block;
      width: 100%;
      height: auto;
      font-family: Neon, sans-serif;
      font-size: 1.60em;
      color: #f8d5fc;
      text-shadow: 2px 2px 5px #ab18c2, 2px 2px 10px #ab18c2, 2px 2px 20px #ab18c2, 2px 2px 40px #ab18c2, 2px 2px 80px #ab18c2;
      text-align: center;
      margin-top: 25px;
      animation: glow 1s infinite alternate;
      }
      span.neon-text a:link, span.neon-text a:visited {
      font-family: Neon, sans-serif;
      font-size: 1.60em;
      color: #f8d5fc;
      text-decoration: none;
      font-weight: 700;
      }
      span.neon-text a:active, span.neon-text a:hover {
      font-family: Neon, sans-serif;
      font-size: 1.60em;
      color: #f8d5fc;
      text-decoration: none;
      font-weight: 700;
      }

/* LOGO CAROUSEL */
:root {
  --bg: #f4f6fb;
  --logo-bg: #ffffff;

  --logo-size: 160px;
  --logo-height: 80px;

  --visible: 5;
  --duration: 25s;
}
.logo-carousel {
  width: calc(var(--logo-size) * var(--visible));
  overflow: hidden;
  position: relative;
  margin: 0 0 25px 0;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll var(--duration) linear infinite;
}
  .logo-item {
  width: var(--logo-size);
  height: var(--logo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-bg);
  margin-right: 12px;
  }

  .logo-item img {
  display: block;
  box-sizing: border-box;
  width: 160px;
  height: 80px;
  margin: 0;
  }
.logo-carousel:hover .carousel-track {
  animation-play-state: paused;
}


@media screen and (max-width: 799px) {
  .infoAreas {
  display: block;
  }
  .infoCol {
  flex: 0 1 auto;
  padding: 15px;
  }
  .left-col {
  width: 100%;
  float: none;
  clear: both;
  margin: 0 auto;
  }
  .right-col {
  width: 100%;
  float: none;
  clear: both;
  margin: 10px auto 0 auto;
  }
    .left-col, .right-col p {
    text-indent: 20px;
    }
    span.neon-text {
    font-size: 1.40em;
    margin-top: 20px;
    }
    span.neon-text a:link, span.neon-text a:visited {
    font-size: 1.40em;
    }
    span.neon-text a:active, span.neon-text a:hover {
    font-size: 1.40em;
    }
}
