:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.a-anim {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-anim:nth-child(1) {
  animation-delay: 0s;
}
.a-anim:nth-child(2) {
  animation-delay: 0.2s;
}
.a-anim:nth-child(3) {
  animation-delay: 0.4s;
}

.a-speed {
  margin-top: 120px;
}
.a-speed__gfx {
  margin-top: 68px;
  margin-bottom: 68px;
  max-width: 100%;
}
.a-speed-section {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .a-speed-section {
    margin-bottom: 68px;
  }
}
.a-speed-about {
  margin-bottom: 120px;
}