#section6 {
  padding: 200px 0;
}

#section6 h1 {
  font-size: 35px;
  margin-bottom: 100px;
}

#section6 p {
  font-size: 25px;
  margin-bottom: 10px;
}

#section6 .list_wrap {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

#section6 .list_wrap > div {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  width: 40%;
  padding: 80px 30px;
  transition: 0.7s;
  transform: scale(0.3);
  opacity: 0;
}

#section6 .list_wrap:nth-child(6) > div:nth-child(2) {
  transition-delay: 0.2s;
}
#section6 .list_wrap:nth-child(7) > div:nth-child(1) {
  transition-delay: 0.4s;
}
#section6 .list_wrap:nth-child(7) > div:nth-child(2) {
  transition-delay: 0.6s;
}

#section6 .list_wrap > div.act {
  transform: scale(1);
  opacity: 1;
}

#section6 .list_wrap h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

#section6 .list_wrap p {
  font-size: 20px;
}

@media (max-width: 768px) {
  #section6 {
    padding: 50px 0;
  }
  #section6 p {
    font-size: 15px;
  }
  #section6 h1 {
    font-size: 30px;
    margin-bottom: 50px;
  }
  #section6 .list_wrap {
    flex-direction: column;
    margin-top: 0;
  }
  #section6 .list_wrap > div {
    width: unset;
    text-align: center;
    margin-top: 30px;
    padding: 50px 30px;
  }
  #section6 .list_wrap h2 {
    font-size: 20px;
  }
  #section6 .list_wrap p {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
