.card {
  display: inline-block;
  margin: 0 14.5px;
  width: 24rem;
  border: none !important;
  transition: all .2s ease-out;
}

.card:hover {
  transform: scale(1.02);
  cursor: default;
}

.slideContainer{
  overflow-x: hidden;
}

.marquee4 {
  display: flex;
  height: 25rem;
  width: 2000px;
  overflow-x: hidden;
  position: relative;
}

.marquee4--inner {
  display: flex;
  width: 3300px;
  position: absolute;
  animation: marquee4 50s linear infinite;
}

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

.marquee4--inner span {
  float: left;
  width: 50%;
}

.card .owner {
  width: 70px;
}

.card .company {
  font-size: 14px;
  white-space: nowrap
}

.card .name {
  font-size: 16px;
  font-weight: bold;
}

.card-body {
  height: 100%;

}

@keyframes marquee4 {
  0% {
    left: 0;
  }

  100% {
    left: -82.4%;
  }
}

@media (max-width: 600px) {
  .marquee4--inner {
    display: flex;
    width: 2540px;
    position: absolute;
    animation: marquee4 50s linear infinite;
  }

  @keyframes marquee4 {
    0% {
      left: 0;
    }

    100% {
      left: -63.4%;
    }
  }

  .card .owner {
    width: 60px;
  }

  .card .company {
    font-size: 12px
  }

  .card .name {
    font-size: 14px;
    font-weight: bold;
  }
}