#slider {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #244b5a;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 60vw;
}
.control {
  list-style: none;
}
.control li {
  position: absolute;
  z-index: 99;
  top: 50%;
  /* transform: translateY(-50%); */
  color: #ffebd6;
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 12px 20px;
  border-radius: 50%;
  cursor: pointer;
}

.control li.prev {
  left: 20px;
}
.control li.next {
  right: 20px;
}

.slide {
  height: 300px;
  width: 100%;
  background-color: #ffebd6;
  text-align: center;
  transition: 0.5s;
  display: inline-block;
  color: white;
}

.inner-slide {
  padding: 30px;
  padding-bottom: 0;
  height: 100%;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  color: white;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.1;
  color: #244b5a;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.testimonial-name {
  font-size: 1.1rem;
  color: #244b5a;
  font-weight: 600;
}

.testimonial-subtitle {
  font-size: 0.8rem;
  color: #244b5a;
  font-weight: regular;
  line-height: 1;
}

.slider img {
  display: none;
}

@media screen and (max-width: 768px) {
  #slider {
    height: 500px;
  }
  .testimonial-quote {
    font-size: 0.8rem;
  
  }
}
