.solutions {
  width: 100%;

  h2 {
    text-align: center;
  }

  .box {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    .solution {
      width: 250px;
      height: 250px;
      background-color: var(--l);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;

      h3 {
        text-align: center;
      }

      a {
        padding: 0.5rem;
        border-radius: 3px;
        font-size: 80%;
        background-color: var(--g);
        color: var(--l);
        text-transform: capitalize;
      }
    }
  }

  .more {
    background-color: var(--l);
    border-radius: 5px;
    padding: 1rem;
    width: 80%;
    margin-left: auto;margin-right: auto;

    p {
      padding-bottom: 0.5rem;
    }

    a {
      display: block;
      background-color: var(--g);
      padding: 0.5rem;
      border-radius: 5px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--l); 
      width: 100%;
      text-align: center;
    }
  }
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  .solutions {
    .box {
      flex-direction: row;
    }
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */

