.about {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 0px;
  gap: 80px;
}

.about .wrapper {
  width: 80%;
  max-width: 1100px;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  transition: all 0.4s;
  opacity: 0;
  transform: translateX(-20px);
}

.about .wrapper:nth-child(2n) {
  border: 2px solid rgba(255, 190, 190, 0.3);
}

.about .wrapper:hover {
  border: 2px solid rgba(136, 136, 136, 0.8);
}

.about .wrapper:nth-child(2n) {
  transform: translateX(20px);
}


.about .wrapper .title {
  font-size: 1.5rem;
  font-family: 'Merienda';
  transition: 0.6s;
  opacity: 0;
  text-align: center;
  margin: 15px 0px 0px 0px;
}

.about .wrapper .subTitle{
  font-size: 1rem;
  transition: 0.8s;
  font-family: 'Rubik';
  padding-left: 20px;
  font-weight: 600;
  padding-top: 6px;
}

.about .wrapper .document {
  font-size: 1rem;
  font-family: 'Nunito';
  color: black;
  padding: 5px 10px;
  transition: 0.6s;
  opacity: 0;
}

.about .wrapper .document::first-letter {
  margin-left: 20px;
}

@media(max-width:700px) {
  .about .wrapper .title {
    font-size: 1.3rem;
  }

  .about .wrapper .subTitle{
    font-size: 0.9rem;
  }

  .about .wrapper .document {
    font-size: 0.9rem;
  }
}


.about .wrapper.active{
  opacity: 1;
  transform: translateX(0px);
}

.about .wrapper.active .title{
  opacity: 1;
}

.about .wrapper.active .document{
  opacity: 1;
}