#about-us {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 40px 40px;
  max-width: 1130px;
  padding: 100px 15px 100px 15px;
  width: 100%;
  > div {
    display: flex;
    flex: 1 1 300px;
    flex-direction: column;
    &:nth-of-type(1) {
      gap: 40px 0px;
      > p {
        &:nth-of-type(1) {
          font-size: 2.2rem;
        }
      }
    }
    &:nth-of-type(2) {
      gap: 30px 0px;
      > div {
        align-items: flex-start;
        display: flex;
        gap: 0px 20px;
        > img {
          margin: 5px 0px 0px 0px;
          width: 50px;
        }
        > p {
          flex: 1;
        }
      }
    }
  }
}
#about-us-image-bottom {
  background-image: url('/img/people-at-work.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vw * 0.2);
  max-height: 300px;
  min-height: 200px;
  position: relative;
  width: 100%;
  &::before {
    content: '';
    background-color: var(--colorBlue);
    inset: 0;
    opacity: 0.5;
    position: absolute;
  }
}
