.orb {
  height: 100px;
  border-radius: 0px;
  display: inline-block;
  margin: 0 24.7px;
  float: left;
  transition: all 0.2s ease-out;
  margin-bottom: 30px;
  cursor: none;
}

.orb:hover {
  transform: scale(1.2);
  opacity: .5;
  cursor: pointer;
}

.marquee {
  height: 200px;
  width: auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 20px auto;
}

.marquee--inner {
  display: block;
  width: 200%;
  margin: 70px 0;
  position: absolute;
  animation: marquee 6s linear infinite;
}

.marquee--inner:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.span {
  float: left;
}

.circle-shape {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.circle-wrapper {
  height: 120px;
  width: 120px;
}

.col-padding .col:hover {
  transition: 2s;
}

