.api-hero{
  display: block;
  height: 500px;
  background-image: url("../../../images/landing/api/hero-bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 114px;
  padding-bottom: 118px;
  overflow-y: hidden;
  margin-top: -80px;
}
.api-hero-text-content{
  text-align: center;
  padding-top: 230px;
}
@media screen and (min-width: 768px){
  .api-hero-imgWrapper{
    display: none;
  }
}
.api-connect-imgWrapper{
  position: relative;
}

.api-connect-line{
  position: absolute;
  top: -20px;
  left: 150px;
  display: block;
  width: 80%;
  height: auto;
  animation: 1.25s linear infinite alternate slideDown;
}
@keyframes slideDown {
  from {
      transform: translateY(0) rotate(0);
  }
  to {
      transform: translateY(20px) rotate(15deg);
  }
}

.api-connect-logos{
  z-index: 10;
}
.display-img{
  background-color: #F4F6FB;
  border-radius: 16px;
  padding: 31px 20px;
}
@media screen and (max-width: 767px){
  .api-hero{
    height: auto;
    background-image: none;
    margin: 0;
    padding: 24px 0 6px;
  }
  .api-hero-text-content{
    padding-top: 0;
  }
  .api-hero-imgWrapper{
    display: block;
    width: calc(100% - 40px);
    height: auto;
    padding: 0 20px 6px;
  }
  .api-hero-imgWrapper img{
    width: 100%;
    height: auto;
  }
}