:root {
  --animationSpeed: 18s;
}

.text-pink {
  color: var(--primary-pink);
}

.link {
  color: var(--bp-primary-accent-color);
  text-decoration: underline;
}
.link:hover {
  color: var(--info-blue-hover);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}
.integrations .slider > a {
  position: relative;
  top: -14px;
}

.integrations .slider {
  height: 260px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(359.35deg, #F9FAFB 0.26%, rgba(252, 253, 253, 0.463542) 60.51%, #FFFFFF 114.8%);
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .integrations .slider {
    padding-top: 3rem;
  }
}
.integrations .slider .slide-track {
  animation: scroll var(--animationSpeed) linear infinite;
  display: flex;
  justify-content: space-between;
  width: 2400px;
  margin: 1rem auto;
}
.integrations .slider .slide-track picture {
  display: flex;
}
@media (max-width: 768px) {
  .integrations .slider .slide-track {
    width: 1800px;
  }
  .integrations .slider .slide-track .slide {
    transform: scale(0.8);
  }
}
@media (min-width: 769px) and (max-width: 990px) {
  .integrations .slider .slide-track {
    width: 3000px;
  }
}
@media (min-width: 1025px) {
  .integrations .slider .slide-track {
    width: 3600px;
  }
}
.integrations .slider .slide {
  height: 88px;
  width: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 8px 8px rgba(123, 130, 144, 0.16);
  border-radius: 16px;
  margin: 0 1rem;
}
@media (max-width: 1024px) {
  .integrations .slider .slide {
    transform: scale(0.9);
  }
  .integrations .slider .slide.d-sm-none {
    display: none;
  }
}
.integrations .slider .slide:nth-child(odd) {
  margin-top: 1rem;
}