.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
  width: 100%;
  max-width: 1120px;
  /* padding: 2em; */
}

/* Column People */

.testimonial-wrapper .column-people {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 40%;
  max-width: 400px;

  cursor: pointer;
}

.column-people .people {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

  gap: 20px;

  min-width: 100%;
  /*height: 200px;*/
  /* flex-grow: 1; */
  transition: all 0.3s ease-in-out;

  background-color: none;

  opacity: 0.3;
}
.column-people .people * {
  margin: 0;
}

.people:hover {
  opacity: 1;
  /*background-color: #f3f3f3;*/
}

.column-people .info {
  width: 100%;
  height: auto;
}

.column-people .people img {
  max-width: 85px;
  height: 85px;
  border-radius: 50%;
}

.column-people .people .info .name {
  font-weight: 700;
  font-size: 16px;
}

.column-people .people .info .description svg {
  width: 17px;
  height: auto;
}

.column-people .active-people {
  opacity: 1;
}

/* Column Text */
.testimonial-wrapper .column-text {
  width: 60%;
  display: flex;

  flex-direction: column;
  align-items: start;
  justify-content: start;

  padding-left: 0.5rem;

  overflow-y: hidden;
  overflow-x: hidden;

  position: relative;
}

.disable-scrollbar {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.disable-scrollbar::-webkit-scrollbar {
  background: transparent;
}

.column-text .testimonial-text {
  width: 100%;
  min-height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;

  bottom: -20%;

  transition: all 1s ease;
}

.active-testimonial {
  opacity: 1 !important;
  bottom: 0% !important;
}

.column-text .testimonial-text h4 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  color: #333333;
  margin: 0;
}

.column-text .testimonial-text h4::before {
  display: block;
  content: url("https://rafaelasalvato.com.br/wp-content/uploads/2021/09/Stroke.svg") !important;
  width: 60px;
  height: auto;
  margin-bottom: 0.5em;
}

.column-text .testimonial-text h4::after {
  margin-top: 0.5em;
  display: block;
  content: url("https://rafaelasalvato.com.br/wp-content/uploads/2021/09/Stroke.svg");
  color: #333333;
  width: 60px;
  height: auto;
  transform: rotate(180deg);
  
  margin-left: 2px;
}

/*NAV ARROWS*/

.testimonial-wrapper .slide-nav-buttons-testimonial{
  display: none;
}

.slide-nav-buttons-testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-nav-buttons-testimonial .button-right-testimonial {
  cursor: pointer;
}

.button-right-testimonial svg path {
  transition: all 0.3s ease-in-out;
}

.button-right-testimonial:hover svg path {
  fill: #d088b1;
}

.button-right-testimonial:hover svg path + path {
  fill: #fff;
}

.slide-nav-buttons-testimonial .button-left-testimonial {
  margin-right: 10px;
  cursor: pointer;
}

.button-left-testimonial svg {
  transform: rotate(-180deg);
}

.button-left-testimonial svg path {
  transition: all 0.3s ease-in-out;
}

.button-left-testimonial:hover svg path {
  fill: #d088b1;
}

.button-left-testimonial:hover svg path + path {
  fill: #fff;
}

.mobile-button-testimonial-left {
  display: none;
}
.mobile-button-testimonial-right {
  display: none;
}

@media (max-width: 767px) {
  .testimonial-wrapper .column-people {
    order: 1;
    height: auto;
    width: 75%;
  }

  .column-people .people {
    align-items: center;
    padding: 0;
    gap: 10px;
  }

  .column-people .people img {
    max-width: 75px;
    height: 75px;
  }

  .testimonial-wrapper .column-people .people:not(.active-people) {
    display: none;
  }

  .testimonial-wrapper .slide-nav-buttons-testimonial{
    display: flex;
  }

  .mobile-button-testimonial-left {
    display: initial;
  }
  .mobile-button-testimonial-right {
    display: initial;
  }

  .mobile-button-testimonial-left svg {
    width: 40px;
  }

  .mobile-button-testimonial-right svg {
    width: 40px;
  }

  .testimonial-wrapper .slide-nav-buttons-testimonial {
    order: 2;
    width: 25%;
    margin: 0;
    padding: 0;
  }

  .testimonial-wrapper .column-text {
    order: 3;
    width: 100%;
    height: 500px;
    padding: 0;
  }

  .column-text .testimonial-text {
    padding: 0;
    align-items: flex-start;
    /*top: 1;*/
    bottom: 0;
    padding: 0;
  }

  .column-text .testimonial-text h4 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
  }

  .column-people .people .info .description {
    font-size: 12px;
  }
}
