.other-products__slider-wrapper {
  flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  .other-products__slider-wrapper {
    flex-wrap: wrap;
  }
}
.other-products__title-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media screen and (max-width: 900px) {
  .other-products__title-container {
    margin-bottom: 40px;
  }
}
.other-products__slide {
  padding: 32px;
  background-color: var(--color-blue-2);
  border: var(--border-blue-6);
  color: var(--color-white-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  transition: all var(--transition);
}
@media screen and (max-width: 900px) {
  .other-products__slide {
    margin-bottom: 16px;
    padding: 24px 16px;
  }
}
@media (hover: hover) {
  .other-products__slide:hover {
    background-color: var(--color-white);
    color: var(--color-blue-2);
    border: var(--border-blue-5);
    transition: all var(--transition);
  }
}
.other-products__slide-content {
  margin-bottom: 28px;
}
@media screen and (max-width: 900px) {
  .other-products__slide-content {
    margin-bottom: 20px;
  }
}
.other-products__slide-title {
  margin-bottom: 16px;
}
.other-products__slide-text {
  margin: 0;
}
.other-products__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .other-products__arrows {
    display: none;
  }
}