@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");

.about .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 5%;
}

.about .about-text h2 {
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  /*filter: drop-shadow(0 0 0.1rem rgb(189, 189, 189));*/
}

.about .about-text p {
  max-width: 500px;
  min-width: min-content;
  font-family: "Exo", sans-serif;
  font-style: normal;
  font-size: 17px;
  line-height: 2rem;
}

.about-img {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 80%;
  height: auto;
  filter: grayscale(100%) sepia(20%) contrast(1.1) brightness(0.95);
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgb(189, 189, 189);
  border-radius: 8px;
  
  /*filter: drop-shadow(0 0 0.1rem rgb(189, 189, 189));*/
}

/*
.about-img img:hover {
  filter: grayscale(0%);
}*/


@media (max-width: 700px) {

  .about .row {
    flex-direction: column; /* apilar */
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .about .about-text {
    margin-bottom: 10px;
  }

  .about .about-text p {
    width: 100%; /* ocupa todo */
    font-size: 15px;
    line-height: 1.8rem;
  }

  .about-img {
    width: 100%;
  }

  .about-img img {
    width: 90%;
    max-width: 280px;
  }

}
