@media (max-width: 1007px) {
  .carousel-wrapper {
    display: none !important;
  }
}
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-wrapper .carousel-header {
  display: flex;
  flex-direction: column;
  color: white;
}
.carousel-wrapper .carousel-header .carousel-title {
  font-weight: bold;
  font-size: 30px;
}
.carousel-wrapper .carousel-header .carousel-sub-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 12px;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-content {
  width: 100%;
  padding-top: 5%;
}

.slider-content-wrapper {
  display: flex;
  height: 96%;
}

.slider-content__item {
  flex: 1 0 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #64DDEA;
  font-size: 32px;
  font-style: normal;
  font-weight: 274;
  line-height: 48px; /* 150% */
  opacity: 0;
  transition: transform 0.5s ease-in-out 1s, opacity 0.5s ease-in-out 1s;
  pointer-events: all;
  height: fit-content;
}
.slider-content__item span {
  font-weight: bold;
  font-style: italic;
  font-size: 32px;
  color: #fff;
}

@media (min-width: 1536px) {
  .slider-content__item {
    font-size: 40px;
  }
  .slider-content__item span {
    font-size: 40px;
  }
}
.image-1 {
  background-color: #963484;
}

.image-2 {
  background-color: #3066BE;
}

.image-3 {
  background-color: #60AFFF;
}

.image-4 {
  background-color: #28C2FF;
}

.image-5 {
  background-color: #2AF5FF;
}

.image-6 {
  background-color: navy;
}

.slider-controls {
  text-align: center;
}

.slider-content__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* Arrows */
.prev-arrow, .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgba(0, 0, 0, 0.3);
  width: 20px;
  transition: all 0.3s;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.prev-arrow:hover,
.next-arrow:hover {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
}

/* Dots */
.dots {
  display: flex;
}

.dot {
  cursor: pointer;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  background-color: white;
  border-radius: 50%;
  transition: background-color 0.6s ease;
  cursor: pointer;
  pointer-events: all;
}

.dot:last-child {
  margin-right: 0;
}

.dot:hover {
  background-color: #fff;
}

.dot--active {
  width: 24px;
  height: 8px;
  background: white;
  border-radius: 4px;
}

/* Buttons */
button {
  cursor: pointer;
  margin-right: 8px;
  border: none;
  border-radius: 4px;
  padding: 10px;
  background-color: #3066BE;
  color: #FFF;
  transition: all 0.5s;
}

button:last-child {
  margin-right: 0;
}

button:hover {
  background-color: #60AFFF;
}

button:focus {
  outline: none;
}

/* Mods */
.disabled {
  background-color: #DCCFCF;
  color: #B0A8A8;
  cursor: default;
  pointer-events: none;
}

.d-none {
  display: none;
}

.active {
  opacity: 1;
}

.centered {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-content__item_active {
  transform: translateY(-25px);
  opacity: 1;
}
