.slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  padding-bottom: 25px;
}

.slider-cards-wrapper {
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  box-sizing: border-box;
  display: flex !important;
  align-items: stretch;
  height: auto;
  float: none;
  margin: 0 auto;
}

.dots {
  position: absolute;
  bottom: -25px;
  width: 100%;
  color: #797979;
  text-align: center;
  transition: color 0.3s linear;
  display: none;
}

.dot {
  display: inline-block;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
  width: 12px;
  height: 12px;
}

.dot.active {
  background-color: #8c3cfa;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 39px;
  background-size: 21px 39px;
  cursor: pointer;
  display: block;
}

.arrow-left {
  left: -45px;
  background-image: url(/arrow-right.png);
  transform: rotate(180deg) translateX(0);
}

.arrow-right {
  right: -45px;
  background-image: url(/arrow-right.png);
}

@media screen and (max-width: 1440px) {
  .dots {
    display: block;
  }

  .arrow {
    display: none;
  }
}
