#title {
  background-image: url(/img/refinery.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  &::before {
    background-color: var(--colorBlue);
    content: '';
    height: 100%;
    inset: 0;
    opacity: 0.9;
    position: absolute;
    width: 100%;
  }
  > .content {
    display: flex;
    flex: 0 1 930px;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    margin: 120px 0px 0px 0px;
    padding: 10px 15px 10px 15px;
    transition: margin 0.3s ease;
    z-index: 1;
    @media (max-width: 900px) or (pointer: coarse) {
      margin: 70px 0px 0px 0px;
    }
    > #bar {
      background-color: var(--colorGreen);
      height: 2px;
      margin: 25px 0px 20px 0px;
      width: 50px;
    }
    > #breadcrumbs {
      > a {
        color: white;
        display: inline-block;
        font-size: 1.4rem;
        padding: 5px 0px 5px 0px;
        text-decoration: none;
        @media (pointer: fine) {
          &:hover {
            text-decoration: underline;
          }
        }
      }
      > p {
        color: white;
        display: inline-block;
        font-size: 1.4rem;
        margin: 5px 5px 5px 5px;
        &:last-of-type {
          font-family: 'Roboto Black', sans-serif;
          margin: 5px 0px 5px 0px;
        }
      }
    }
    > h1 {
      color: white;
      font-size: 2.4rem;
      margin: 10px 0px 10px 0px;
    }
  }
}
