@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", Arial, Helvetica, sans-serif;
}

header nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header nav {
    flex-direction: column;
    padding: 10px 0px;
  }
}
@media (min-width: 1025px) {
  header nav {
    padding: 10px 100px;
    justify-content: space-between;
  }
}
header nav .links {
  margin-top: 15px;
}
@media (min-width: 1025px) {
  header nav .links {
    margin-right: 100px;
  }
}
header nav .links a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
header nav .links a:hover {
  color: #7973ea;
  border-bottom: 2px dashed #4f46e5;
  transform: translateY(-5px);
}
header nav .links a:nth-child(n+2) {
  margin-left: 20px;
}

main {
  padding: 50px 15px 80px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .testimonials {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 1024px) {
  main .testimonials {
    flex-direction: column;
  }
  main .testimonials .review-block {
    display: flex;
    align-items: start;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    width: 400px;
  }
  main .testimonials .review-block:nth-child(n+1) {
    margin-top: 30px;
  }
  main .testimonials .review-block img {
    width: 64px;
    height: 64px;
  }
  main .testimonials .review-block .review-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }
  main .testimonials .review-block .review-info p {
    margin-top: 10px;
  }
  main .testimonials .review-block .review-info p span {
    color: #4f46e5;
    font-weight: 800;
  }
}
@media (min-width: 1025px) {
  main .testimonials .review-block {
    display: flex;
    align-items: start;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    width: 400px;
  }
  main .testimonials .review-block:nth-child(n+1) {
    margin-left: 30px;
  }
  main .testimonials .review-block img {
    width: 64px;
    height: 64px;
  }
  main .testimonials .review-block .review-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }
  main .testimonials .review-block .review-info p {
    margin-top: 10px;
  }
  main .testimonials .review-block .review-info p span {
    color: #4f46e5;
    font-weight: 800;
  }
}

footer {
  background-color: #1f2937;
  display: flex;
  padding: 60px 15px;
  justify-content: space-between;
}
footer p {
  color: white;
}
footer .links {
  display: flex;
}
@media (max-width: 1024px) {
  footer .links {
    flex-direction: column;
  }
}
footer .links a {
  text-decoration: none;
  color: white;
}
@media (max-width: 1024px) {
  footer .links a:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  footer .links a:nth-child(n+2) {
    margin-left: 10px;
  }
}/*# sourceMappingURL=testimonials.css.map */