#home-jigsaw {
  margin: 50px 15px 35px 15px;
  > .bar {
    background-color: var(--colorGreen);
    height: 2px;
    margin: 20px 0px 10px 0px;
    width: 50px;
  }
  > div {
    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;
          font-family: 'Roboto Black', sans-serif;
          font-size: 2.2rem;
        }
      }
      > h1 {
        color: var(--colorGreen);
        font-size: 1.6rem;
      }
    }
    > div: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;
      }
    }
  }
}
