body.safari .about {
  background-attachment: scroll !important;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  max-height: 950px;
  position: relative;
  background-attachment: fixed;
}

.about__content {
  max-width: 800px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.about__heading {
  font-family: "Aboreto";
  padding: 20px 0;
}

.about__paragraph {
  text-align: justify;
  margin-bottom: 15px;
  font-family: "Montserrat";
}

.about__icon {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .about {
    justify-content: flex-end;
    padding-right: 50px;
  }

  .about__content {
    width: 50%;
  }
}
