#about-banner {
  height: calc(100vh - 70px);
  background-image: url("../img/about-img/about-banner-lviv.webp");
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

#about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

#about-banner-text-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  color: white;
  z-index: 2;
  padding-left: 80px;
  gap: 30px;
  margin: 0;
}

#about-banner-text-block h1 {
  font-size: 65px;
  line-height: 80px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: 0;
}

#about-banner-text-block p {
  width: 90%;
  margin: 0;
}

#about-banner-text-block button {
  background: transparent;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  border-style: solid;
  border-width: 2px;
  border-color: white;
}

#our-team {
  display: flex;
  flex-direction: row;
  padding-left: 50px;
  padding-right: 150px;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  max-width: calc(100vw - 100px);
}

#our-team h1 {
  width: 150px;
}

#team-members {
  display: flex;
  overflow-x: scroll;
  gap: 20px;
  width: calc(100% - 650px);
  padding-bottom: 10px;
}

.member-card {
  flex-shrink: 0;
  width: 400px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.403);
  border-radius: 25px;
  cursor: crosshair;
}

.member-photo {
  width: 50px;
  border-radius: 50%;
  border-style: solid;
  border-color: white;
  border-width: 2px;
  background-color: white;
  object-fit: cover;
}

.member-description {
  padding-bottom: 20px;
}

.member-title {
  padding: 10px 20px;
  background-color: rgba(107, 115, 186, 0.603);
  margin: 0 !important;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
}
