.testimonials__container {
  overflow-x: hidden;
  position: relative;
}
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
  width: 70px;
  background-color: #4B759A;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0 5px;
}
@media (max-width: calc(768px - 1px)) {
  .testimonials__nav {
    top: auto;
    bottom: 0;
    margin: 0 80px;
  }
}
.testimonials__nav:hover {
  background-color: #648fb4;
}
.testimonials__track {
  position: relative;
  left: 0;
  width: 300%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: left 1s ease-in-out;
}
.testimonials__testimonial {
  flex: 1 0 0;
  padding: 1em 5em;
}
@media (max-width: calc(768px - 1px)) {
  .testimonials__testimonial {
    padding: 1em 1em 120px 1em;
  }
}
.testimonials__card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonials__body {
  flex-grow: 1;
  max-height: 50vh;
  overflow: auto;
}

/*# sourceMappingURL=testimonials.css.map */
