.testimonials_section {
  padding: 50px 40px;
}

.testimonials_section .container p {
  font-size: 14pt;
  margin-top: 10px;
}

.testimonials_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials_title_text {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonials_title_text h2 {
  font-size: 24pt;
  margin: 0;
}

.testimonials_title_text span {
  color: #7d53de;
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonials_grid_card {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.testimonials_grid_card_left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonials_grid_card_left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials_grid_card_left span {
  margin: 0;
  color: #7d53de;
}

.testimonials_cta_button {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .testimonials_grid {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials_section {
    padding: 30px 20px;
  }

  .testimonials_title {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .testimonials_title_text h2 {
    font-size: 20pt;
  }

  .testimonials_section .container p {
    font-size: 13pt;
  }

  .testimonials_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonials_grid_card {
    grid-template-columns: 70px 1fr;
    gap: 10px;
  }

  .testimonials_grid_card_left img {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .testimonials_title_text h2 {
    font-size: 18pt;
  }

  .testimonials_section .container p {
    font-size: 12pt;
  }

  .testimonials_grid_card {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .testimonials_grid_card_left img {
    width: 40px;
    height: 40px;
  }
}