/* Header */

section#header {
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  padding: 100px 0;
}

section#header .wrapper {
  background: url("../src/images/bg.png") no-repeat center top;
  background-size: 1200px auto;
  padding-bottom: 50px;
  height: 500px;
}

section#header .intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Leaders */

#leaders .leaders {
  margin-top: -600px !important;
  display: grid;
  grid: 1fr / 1fr 1fr;
  align-items: flex-end;
  grid-gap: 30px;
}

#leaders .leader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#leaders .leaders .leader img {
  margin-bottom: -50px;
  max-height: 400px;
  position: relative;
  z-index: 1;
}

#leaders .leaders .leader .block-quote {
  padding: 20px 40px;
  position: relative;
  border-radius: 12px;
  z-index: 2;
  background-color: var(--color-white);

  box-shadow: 0px 15px 41px 9px rgba(0, 0, 0, 0.06);
}

#leaders .leaders .leader .block-quote .who {
  display: flex;
  align-items: center;
  gap: 20px;
}

#leaders .leaders .leader .block-quote > i {
  font-size: 3.8rem;
  color: var(--color-gray);
}

@media (max-width: 800px) {
  #leaders .leaders {
    grid-template-columns: 1fr;
  }
}

#leaders .block-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#leaders .tags-heading {
  margin-top: 70px !important;
}

#leaders .block-tags .tag {
  flex: 1 1 30%;
  display: flex;
  gap: 20px;
}

#leaders .block-tags .tag .tag-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#leaders .block-tags .tag .tag-content > * {
  margin: 0;
}

#leaders .block-tags .tag > i {
  font-size: 3.8rem;
}

#leaders .believe-text {
  margin: 60px auto 90px auto;
  max-width: 700px;
  text-align: center;
}

/* Team */

#team {
  margin-bottom: 100px;
}

#team .members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#team .members .member {
  display: flex;
  flex: 1 1 30%;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  max-width: 340px;
  min-width: 200px;
  align-items: center;
}

#team .members .member > * {
  margin: 0;
}

#team .members .member img {
  border-radius: 50%;
  width: 135px;
  height: 135px;
}
