.testimonial-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
}

.testimonial-logo {
  max-height: 50px;
  margin-bottom: 10px;
  width: auto;
	max-width: 100%;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 300;
  color: white;
  width: 900px;
  max-width: 900px;
}

.testimonial-nav {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 137px;
}

.testimonial-btn {
  background-color: transparent!important;
  border: 1px solid white;
  color: white;
  max-width: 58px;
  max-height: 58px;
  justify-content: center;
  align-content: center;
  display: flex;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 9px;
}

.testimonial-btn.next:after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
}

.testimonial-btn.prev:after {
    content: "\f060";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
        font-size: 18px;
}

.testimonial-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonial-btn:enabled:hover {
    background-color: white!important;
    color: black!important;
}

.testimonial-image-wrapper {
  margin-top: 30px;
  max-width: 100%;
}

.testimonial-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-logo,
.testimonial-text,
.testimonial-image {
  transition: opacity 0.4s ease;
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .testimonial-header {
  flex-direction: column;
}

.testimonial-text {
  width: fit-content;
}
}