#home-jigsaw {
  margin: 50px 15px 35px 15px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  > div {
    &:nth-of-type(1) {
      display: flex;
      flex-direction: column;
      flex: 0 1 700px;
      justify-content: space-between;
      > div {
        align-items: center;
        display: flex;
        > div {
          flex: 0 1 150px;
          @media (min-width: 501px) {
            display: none;
          }
          > img {
            width: 100%;
          }
        }
        > p {
          flex: 1 1 150px;
        }
      }
    }
    &:nth-of-type(2) {
      align-items: flex-end;
      display: flex;
      flex: 0 1 300px;
      justify-content: center;
      @media (max-width: 500px) {
        display: none;
      }
      > img {
        width: 150px;
      }
    }
    > div {
      > p {
        font-size: 2.2rem;
        font-weight: bold;
      }
    }
    > h1 {
      color: var(--colorGreen);
      font-size: 1.6rem;
    }
  }
}
