.sl-wrapper {
  width: 100%;
  /* margin-left: calc(-50vw + 50%); */
  background-color: var(--blush);
  /* border-top: 4px solid black;
  border-bottom: 4px solid black; */
  display: flex;
  justify-content: center;
  /* padding: 75px 0; */
}

.sl-container {
  display: flex;
  width: 1200px;
  max-width: 90vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.sl-container > img {
  width: 45%;
}
.sl-header {
  /* padding: 20px; */
  font-weight: 500;
  /* color: black; */
}
.sl-arrow-container {
  max-height: 60px;
  max-width: 60px;
}
.sl-arrow-container:hover {
  cursor: pointer;
}
.sl-center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sl-testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 55%;
  /* height: 100%; */
  padding: 137px 0 137px 0;
  max-height: 675px;

}
.sl-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* padding: 10px; */
  align-items: center;
  /* font-size:  22px; */
  overflow: hidden;
  /* color: white; */
}
/* @media (min-width: 0px) and (max-width: 800px) {
  .sl-content {
    width: 300px;
  }
} */
.sl-content .sl-text {
  /* padding: 10px; */
  text-align: center;
  /* font-style: italic; */
  /* line-height: 25px; */
  /* color: black; */
  font-weight: 500;
  color: white;
  font-size: 32px;

}
.sl-content .sl-name {
  /* padding: 0;
  margin: 0; */
  text-align: center;
  font-weight: 500;
  /* color: black; */
  font-size: 14px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: var(--gum);

}
.sl-side {
  height: 100%;
  display: flex;
  align-items: center;
}
.sl-btns {
  display: flex;
  width: 100%;
  justify-content: center;
}
.sl-btn {
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background-color: white;
  margin: 0 5px;
  opacity: .2;
  transition: all .6s ease;
}
.sl-btn:hover {
  opacity: 1;
  cursor: pointer;
}
.sl-btn.active-sl {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .sl-container > img {
    display: none;
  }
  .sl-testimonial-wrapper {
    width: 100%;
    max-height: none;
  }
}