.containerC {
  padding-right: 5.625rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.wayPointContainer {
  height: 13rem;
  background-color: #e8e8e8;
}
.waypoint {
  font-size: 1.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  border-bottom: 0.125rem solid #000000;
  width: 13.875rem;
  margin-left: 5.625rem;
}
.waypoint span {
  font-weight: 700;
}
.textContainer {
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  padding-left: 5%;
}
.textContainer p span {
  font-weight: 700;
  display: block;
}
.industriesArrow {
  padding-top: 4.375rem;
  font-weight: 700;
  width: 13.75rem;
}
.exploreHeader{
  padding: 3rem 5%;
}
.exploreGrid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 3rem;
    padding: 5rem 5%;
}
.exploreGridItemImg {
    height: 20rem;
  display: flex;
  align-items: center;
}
.exploreGridItemArrow {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
}

@media (max-width: 900px) {
  .exploreGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .exploreGrid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 660px) {
  .containerC {
    padding: 0;
    display: block;
  }
  .wayPointContainer {
    width: auto;
    height: auto;
    padding: 1rem 8%;
  }
  .menuItem {
    display: none;
  }
  .waypoint {
    width: auto;
    margin: 0;
    padding: 0;
    border-bottom: 0.01rem solid #8d8d8d;
  }
  .waypoint button {
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    cursor: pointer;
  }
  #menuIcon {
    margin-left: 0.5rem;
    font-weight: 400;
  }
  .textContainer {
    padding: 3rem 8%;
    width: auto;
  }
  .exploraContainer {
    padding: 0rem 8%;
  }
  .exploreGridItemImg img {
    max-width: 100%;
    height: auto;
  }
}
