#home-contact {
  background-image: url(/img/pid-blueprint.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  > #content {
    align-items: center;
    display: flex;
    flex: 0 1 1130px;
    flex-wrap: wrap;
    padding: 40px 15px 40px 15px;
    z-index: 2;
    > div {
      display: flex;
      &:nth-of-type(1) {
        flex-direction: column;
        > #bar {
          background-color: var(--colorGreen);
          height: 2px;
          margin: 20px 0px 20px 0px;
          width: 50px;
        }
        > h1 {
          color: white;
          margin: 0px 0px 0px 0px;
          > span {
            color: var(--colorGreen);
            font-family: 'Roboto Black', sans-serif;
            font-size: 2.4rem;
          }
        }
        > #links {
          display: flex;
          margin: 40px 0px 0px 0px;
          > a {
            align-items: center;
            background-color: var(--colorGreen);
            border: 2px solid var(--colorGreen);
            border-radius: 5px;
            display: flex;
            flex: 0 1 260px;
            justify-content: space-evenly;
            padding: 15px 10px 15px 10px;
            text-decoration: none;
            > p {
              color: white;
              font-family: 'Roboto Black', sans-serif;
              font-size: 1.4rem;
              text-align: center;
              &:nth-of-type(2) {
                margin: 0px 0px 0px 10px;
              }
            }
          }
        }
      }
      &:nth-of-type(2) {
        display: flex;
        flex: 1;
        flex-wrap: wrap;
        justify-content: space-evenly;
        @media (max-width: 900px) {
          flex: 1 1 100%;
          > div {
            flex: 1 1 50%;
            margin: 40px 0px 0px 0px;
            min-width: 250px;
          }
        }
        > div {
          align-items: center;
          display: flex;
          > img {
            margin: 0px 10px 0px 0px;
            width: 50px;
          }
        }
      }
      p {
        color: white;
        font-family: 'Roboto Black', sans-serif;
      }
    }
  }
  > #overlay {
    background-color: var(--colorBlue);
    inset: 0;
    opacity: 0.9;
    position: absolute;
    z-index: 1;
  }
}
