_testimonials.scss 494 B

12345678910111213141516171819202122
  1. .testimonials {
  2. padding-top: 2rem;
  3. padding-bottom: 2rem;
  4. @media (min-width: 768px) {
  5. padding-top: 4rem;
  6. padding-bottom: 4rem;
  7. }
  8. .testimonial-item {
  9. max-width: 100%;
  10. img {
  11. width: 7rem;
  12. height: 7rem;
  13. box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.3);
  14. object-fit: contain;
  15. background: white;
  16. }
  17. }
  18. .section-title {
  19. font-size: 2.5rem;
  20. font-weight: 400;
  21. }
  22. }