.aboutUs_container {
  position: relative;
  background-image: url("../assets/imgs/bg_about_us.webp");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aboutUs_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.aboutUs_section {
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.aboutUs_section p {
  text-align: justify;
  font-size: 20px;
}
