.about {
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.about header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about header p {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Work Sans", sans-serif;
}

.about header h3 {
  font-size: 64px;
  font-weight: normal;
  width: 40%;
  text-align: center;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}

.about header h3 span {
  font-weight: 800;
  font-style: italic;
}

.about main {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

main .about-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about .about-detail header p {
  padding: 50px;
  text-transform: none;
  width: 680px;
  line-height: 1.5;
}

.about-detail .boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.boxes .box {
  padding: 50px;
  background: #f7f7f7;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #303030;
  font-family: "Work Sans", sans-serif;
}

.boxes .box p {
  text-transform: uppercase;
}

.boxes .box small {
  width: 73%;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about {
    gap: 20px;
  }

  .about header {
    gap: 18px;
  }

  .about header h3 {
    font-size: 30px;
    width: 80%;
  }

  .about main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .about main img {
    width: 100%;
  }

  main .about-detail {
    gap: 0px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .about .about-detail header p {
    /* text-align: justify; */
    line-height: 1.5;
    font-size: 16px;
    width: 100%;
  }

  .boxes .box {
    padding: 20px;
    gap: 18px;
    width: 100%;
  }

  .boxes .box p {
    font-size: 14px;
  }

  .boxes .box small {
    width: 90%;
    line-height: 1.5;
  }
}
