.about__content {
  display: flex;
  flex-direction: row-reverse;
  margin: 30px 0;
  gap: 30px;
}

.about__title {
  margin: 0;

  text-align: center;
}

.about__text {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  margin: 0;
  padding: 15px;
  gap: 15px;

  text-align: justify;
}

.about__text::before {
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;

  content: '';

  background: url('../img/main/stars.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1;
  opacity: 0.2;
}

.about__text > p {
  font-size: 18px;

  margin: 0;
}

.about__image {
  width: 50%;
}

.about__image > img {
  display: flex;
  max-width: 520px;
  max-height: auto;

  border-radius: 5px;
}

/* MEDIA */

@media (max-width: 1240px) {

}

@media (max-width: 1024px) {
  .about__text > p {
    font-size: 15px;

    text-align: center;
  }

}

@media (max-width: 768px) {
  .about__content {
    flex-direction: column;
  }

  .about__image {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 425px){
  .about__image {
    width: 100%;
  }

  .about__content {
    margin: 0 0 15px 0;

    gap: 15px;
  }
}