.about-hero {
  max-width: 1125px;
  padding: 50px 20px;
  margin: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
}

.about-hero-img-1 {
  width: 30%;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: -5%;
}

.about-hero-img-2 {
  width: 30%;
  border-radius: 15px;
  display: flex;
  z-index: 3;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-hero-img-3 {
  width: 40%;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: -10%;
  z-index: 2;
}

.about-hero-img {
  border-radius: 15px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.img-part {
  transition: 0.05s ease-in-out;
}

.about-content {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
}

.about-content h2 {
  background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", sans-serif;
  margin: 10px 0px 30px;
  font-size: 2.1rem;
}

.about-content p{
    font-size: 1.2rem;
    font-family: "Inter", sans-serif;
    color: #444444;
    line-height: 2rem;

}

@media screen and (max-width: 800px) {
  .about-content{
    margin: 20px auto;
  }
  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p{
    font-size: 1rem;


}
}