.logo-modelo {
  display: flex;
  justify-content: center;
  picture {
    width: 20%;
    text-align: center;
  }
  img {
    width: 100%;
  }
}

.coop {
  > img {
    width: 20%;
  }
  > p {
    text-align: start;
    margin-bottom: 0;
  }
  h2 {
    font-size: 1.5rem;
    color: #222;  
    margin-bottom: none;
  }

  ul {
    padding: 1em;

    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;

    li {
      background-color: #dcdcdc;
      padding: 0.8em;
      font-size: 0.8rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    li:hover {
      background-color: #d1d1d1;
    }
  }

  .plan-model-description {
    h2 {
      font-size: 2rem;
      color: #eee;
      margin-bottom: 0;
    }
    h3 {
      font-size: 1.5rem;
      color: #eee;
    }

    h3.reintegro{
      background-color: #222;
      border: 1px solid #eee;
      border-radius: 5px;
      padding: 1.5rem 2rem;
      box-shadow: 1px 1px .5rem #fff;
    }
  }
}
.forms-contacto{

  flex-direction: column;
  
}

@media only screen and (max-width: 750px) {
  .coop {
    ul {
      width: 95%;
      padding: 5px;
      grid-template-columns: repeat(3, 1fr);
    }

    .plan-model-description {
      h3 {
        text-align: center;
        font-size: 1.5rem;
      }
    }
  }
}
