body.index_page {
  margin: 0;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}


#menu_bar {
  width: 100%;
  height: 100px;
  background-color: white;
  text-align: center;
}

#menu_bar img {
  height: 80%;
  margin-top: 10px;
}

#index_hero {
  background-image: url('../img/index/hero.png');
  height: 500px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#index_hero_inner {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 100%;
}

#index_hero_text {
  width: 50%;
  max-width: 640px;
  color: #fff;
  margin-top: 6px;
  font-size: 20px;
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  padding: .25%;
  height: fit-content;
  text-align: center;
  box-sizing: border-box;
}

#index_hero_text .title {
  color: #fff;
  font-family: oswald_reg;
  font-size: 28px;
  margin: 0;
}

#index_hero_text_main {
  display: none;
}

#page_wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

#index_content_band {
  width: 100%;
  background-color: #fff;
  background-image: none;
  padding: 32px 0 40px;
  box-sizing: border-box;
}

#index_intro .section_copy,
#index_features .section_copy {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
}

#index_intro {
  padding: 8px 0 28px;
}

#index_intro .section_body {
  margin: 0;
  text-align: center;
  /*color: #1a4176;*/
  color: #000;
  /*font-family: oswald_reg, Oswald, Arial, Helvetica, sans-serif;*/
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 2vw, 22px);
  line-height: 1.45;
  letter-spacing: 0;
}

#feature_cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.feature_card {
  flex: 1 1 0;
  min-width: 0;
  background-color: transparent;
}

.feature_card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature_card_label {
  font-family: oswald_reg, Oswald, Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: #1a4176;
  letter-spacing: 0.06em;
  padding: 0 0 10px;
  text-align: left;
  text-transform: uppercase;
}

.feature_card_img {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: #eee;
  line-height: 0;
}

.feature_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.feature_card a:hover .feature_card_img img {
  transform: scale(1.04);
}

#index_spacer {
  min-height: 120px;
  background-color: #fff;
}

@media only screen and (max-width: 600px) {
  #menu_bar img {
    width: 50%;
    height: 50%;
    padding-top: 5%;
  }

  #index_hero {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #index_hero_text {
    display: none;
  }

  #index_hero_text_main {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 28px 0 0;
    text-align: center;
    box-sizing: border-box;
  }

  #index_hero_text_main .title {
    font-family: oswald_reg;
    font-size: 28px;
    color: #1a4176;
    margin: 0 0 16px;
  }

  #index_content_band {
    padding: 24px 0 28px;
  }

  #index_intro .section_copy,
  #index_features .section_copy {
    width: 90%;
  }

  #index_intro .section_body {
    text-align: left;
    font-size: 16px;
  }

  #feature_cards {
    flex-direction: column;
    gap: 22px;
  }

  .feature_card_label {
    text-align: left;
  }

  .feature_card_img {
    aspect-ratio: 4 / 5;
  }

  #index_spacer {
    min-height: 64px;
  }
}
