.carousel {
  
  margin: 0px auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  color: #ffffff;
    height: 70px;
}

.slide {
  min-width: 100%;
  height: auto;
      padding: 0 15px;
    text-align: center;
    font-size: 30px;
    line-height: 1;

}

.carousel-dots {
  display: flex;

  justify-content: center;
}

.dot {
     display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 7px 6px 8px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
}

.dot.active {
  background: #2c3e50;
}