#our-service {
  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%;
  &::before {
    content: '';
    background-color: var(--colorBlue);
    height: 100%;
    inset: 0;
    opacity: 0.9;
    position: absolute;
    width: 100%;
  }
  > #content {
    align-items: flex-end;
    display: flex;
    flex: 0 1 930px;
    flex-wrap: wrap;
    padding: 50px 15px 50px 15px;
    z-index: 1;
    > a {
      align-items: center;
      background-color: var(--colorGreen);
      border-radius: 5px;
      display: flex;
      flex: 0 1 200px;
      justify-content: space-evenly;
      margin: 50px 0px 0px 0px;
      padding: 10px 10px 10px 10px;
      text-decoration: none;
      > img {
        width: 60px;
      }
      > p {
        color: white;
        font-family: 'Roboto Black', sans-serif;
        font-size: 1.4rem;
        margin: 0px 0px 0px 10px;
        text-align: center;
      }
    }
    > div {
      display: flex;
      flex: 1 1 550px;
      flex-direction: column;
      > #bar {
        background-color: var(--colorGreen);
        height: 2px;
        margin: 20px 0px 20px 0px;
        width: 50px;
      }
      > h1 {
        color: white;
        font-size: 1.6rem;
        margin: 0px 0px 0px 0px;
      }
      p {
        color: white;
        max-width: 450px;
        > a {
          color: white;
        }
        > span {
          color: var(--colorGreen);
          font-family: 'Roboto Black', sans-serif;
          font-size: 2.6rem;
          line-height: 1;
        }
      }
    }
  }
}
