.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonials__nav-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  width: 100%;
}

.testimonials__nav {
  display: flex;
  flex-direction: column;
}

.testimonials__nav-top {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonials__nav-bottom {
  font-size: 1.5rem;
  margin-top: 1rem;
}

button.testimonials__nav-item {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
  opacity: 0.25;
  padding: 0.5rem;
  text-align: left;
  transition: all 0.3s;
}

button.testimonials__nav-item:hover,
button.testimonials__nav-item:focus {
  box-shadow: none;
}

button.testimonials__nav-item:after {
  display: none;
}

button.testimonials__nav-item.is-active {
  opacity: 1;
}

.testimonials__wrapper {
  padding: 1rem;
  width: 100%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height:
  justify-content: flex-end;
}

.testimonial__logo {
  margin-bottom: 4rem;
}

.testimonial__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 1.25rem;
  justify-content: flex-end;
}

.testimonial__details {
  font-size: 1rem;
  margin-top: 4rem;
  position: relative;
}

.testimonial__details:before {
  background-color: black;
  content: '';
  height: 4px;
  left: 0;
  position: absolute;
  top: -1rem;
  width: 50%;
}

.testimonial__full-name {
  font-weight: 700;
}

@media (min-width: 767px) {
  .testimonials {
    flex-direction: row;
  }

  .testimonials__nav-wrapper {
    width: 33.3333333333%;
  }

  .testimonials__nav {
    justify-content: center;
  }

  .testimonials__nav-top,
  .testimonials__nav-bottom,
  button.testimonials__nav-item {
    text-align: right;
  }

  .testimonials__wrapper {
    width: 66.666666666%;
  }
}