.trust {
  position: relative;
  padding: 178px 0;
  background: linear-gradient(to top right, #fff, #D7DBE0 70%, #D7DBE0 100%);
  overflow: hidden;
}

.trust-business {
  background: linear-gradient(to top right, #fff, #fff 100%);
}

.trust__container {
  position: relative;
}

.steklyashka {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 0;
  animation: floating 15s ease-in-out infinite;
  will-change: transform;
}

.steklyashka-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.trust__title {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.trust__subtitle {
  font-family: 'Bebas-Neue-bold';
  position: absolute;
  font-size: 220px;
  line-height: 20px;
  color: #F0F1F3;
  z-index: 1;
}

.trust__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trust__slide-business {
  background-color: #1D1C1C;
  border-radius: 16px;
}

.trust__slide-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.trust__slider:hover .trust__slide-track {
  animation-play-state: paused;
}

.trust__slide {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 130px;
  border: 1px solid #fff;
  border-radius: 16px;
  backdrop-filter: blur(5px);
}

.trust__logo {
  width: fit-content;
  object-fit: cover;
}

.trust__logo:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width:1300px) {
  .trust__subtitle {
    font-size: 120px;
  }
}

@media (max-width:768px) {
  .trust {
    padding: 64px 0;
  }
  .trust__title {
    margin-bottom: 24px;
  }
  .trust__subtitle {
    display: none;
  }
  .steklyashka {
    display: none;
  }
  .trust__slide {
    width: 130px;
    height: 50px;
  }
  .trust__logo {
    width: 100%;
  }
}