section {
  height: calc(100vh - 120px);
}
.hero-img {
  width: 600px;
}
.about-content {
  width: 90%;
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto;
  flex-wrap: nowrap;
  min-height: calc(100vh - 61px);
}
.hero-section {
  position: relative;
}
.references {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.references-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.references-content {
  position: relative;
  display: flex;
  width: 80%;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
}
.reference {
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  width: 30%;
  min-width: 400px;
  border: 0.1px solid rgba(128, 128, 128, 0.2);
  border-radius: 0.25rem;
  position: relative;
  display: flex;
  max-width: 600px;
}
.reference-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 0.25rem;
}
.reference-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.reference-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
  max-lines: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.reference-courtesy {
  font-size: 14px;
  color: #555;
  text-align: right;
}
@media screen and (max-width: 1430px) {
  .about-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .hero-img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .hero-img {
    margin-top: 10%;
  }
  .references {
    margin-top: 60px;
  }
  .reference {
    width: 90%;
    min-width: unset;
  }
}
