.sl-wrapper {
  width: 100vw;
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 80px 0 140px 0;
  position: relative;
  background-color: var(--dark-navy);
  margin-bottom: 120px;
  height: 600px;
}

.sl-container {
  display: flex;
  width: 1200px;
  max-width: 90vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sl-header {
  font-weight: bold;
  color: white;
  margin-bottom: 46px;
  text-align: center;
}
.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: center;
  width: 705px;
  max-width: 100%;
  height: 100%;
}
.sl-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  align-items: center;
  overflow: hidden;
}
.sl-content .sl-text {
  text-align: center;
  color: white;
  margin-bottom: 0;
}
.sl-content .sl-name {
  text-align: center;
  font-weight: bold;
  color: white;
}
.sl-side {
  height: 100%;
  display: flex;
  align-items: center;
}
.test-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.test-stars > i {
  color: var(--anitque-gold);
  font-size: 24px;
  margin: 0 3px;
}
.test-callout {
  position: absolute;
  box-sizing: border-box;
  padding: 19px 24px 19px 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(50%);
  background-color: white;
  box-shadow: 0px 4px 12px rgba(79, 71, 137, 0.1);
  bottom: 0;
  width: 705px;
  max-width: 90vw;
}
.test-callout > h3 {
  color: var(--dark-navy);
  margin-bottom: 0;
  font-size: 28px;
}
.test-socials {
  display: flex;
}
.test-socials > .social-icon {
  margin-left: 11px;
}
@media screen and (max-width: 1024px) {
  .sl-wrapper {
    padding: 64px 0 116px 0;
    margin-bottom: 41px;
  }
  .test-callout > h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sl-wrapper {
    padding: 64px 0 103px 0;
    height: 700px;
  }
}
@media screen and (max-width: 375px) {
  .sl-wrapper {
    padding: 48px 0 117px 0;
    margin-bottom: 56px;
  }
  .sl-wrapper .sl-side {
    display: none;
  }
  .sl-content {
    padding: 0;
  }
  .test-callout {
    flex-direction: column;
    padding: 24px;
  }
  .test-callout > h3 {
    margin-bottom: 16px;
    text-align: center;
  }
  .test-socials > .social-icon {
    margin: 0 4px;
    width: 32px;
    height: 32px;
  }
}
