@import "../style.css";
@import "../index.css";

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* mission  & about-cta */
.mission,
.about-cta {
  background: rgb(224, 244, 254);
}

.mission-wrapper,
.about-cta-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 848px;
}

.mission-wrapper {
  text-align: left;
}

.about-cta-wrapper {
  text-align: center;
}

.mission h2,
.about-cta h2 {
  color: rgb(13, 38, 72);
  font-weight: 700;
  margin-bottom: 13px;
}

.mission p {
  color: rgb(97, 104, 113);
  margin-bottom: 24px;
}

.mission h4,
.about-cta h6 {
  color: rgb(31, 38, 45);
  font-weight: 700;
}

.about-cta h6 {
  text-transform: uppercase;
}

/* team */
.team {
  background: rgb(248, 249, 251);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 60px;
}

.team-header {
  margin-bottom: 60px;
  text-align: center;
}

.team-member {
  text-align: center;
}

.team-member > h3 {
  margin: 38px 0px 10px;
  color: rgb(31, 38, 45);
  font-weight: 700;
}

.team-member > h5 {
  color: rgb(31, 38, 45);
  font-weight: 700;
  text-transform: uppercase;
}

.team-layout {
  margin-left: auto;
  margin-right: auto;
  max-width: 1072px;
}

.team-img {
  text-align: left;
  width: 100%;
  padding: 0px 48px;
}

.team-img > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* incentives */
.incentives {
  background: #fff;
}

.incentives-header {
  text-align: left;
  padding-bottom: 80px;
}

.incentives-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 848px;
}

.incentives-inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.incentives-outer-grid {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 19px;
  align-items: center;
  margin: 0px 0px 25px;
}

.incentives-outer-grid svg {
  width: 42px;
  height: 42px;
  fill: #ec3c3c;
}

.incentives-outer-grid h2 {
  color: #ec3c3c;
  font-weight: 700;
}

.incentives-text > h4 {
  font-weight: 700;
}

.incentives-text > p {
  color: rgb(97, 104, 113);
}

.incentive-detail {
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .mission-wrapper {
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .incentive-detail {
    padding-bottom: 84px;
  }

  .team-member {
    text-align: left;
  }

  .incentives-inner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .incentives-header {
    text-align: center;
  }
}

@media (min-width: 1216px) {
  .incentive-detail {
    padding-bottom: 96px;
  }
}
