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

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

#home_hero {
  background-image: url('../img/home/hero_bkg.png');
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  box-sizing: border-box;
}

#home_hero_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 90%;
  max-width: 1400px;
}

#hero_img {
  flex: 1 1 60%;
  max-width: 70%;
}

#hero_img img {
  width: 90%;
  height: auto;
  display: block;
}

#hero_txt {
  flex: 1 1 28%;
  max-width: 320px;
  color: #fff;
  margin-top: 4%;
}

#hero_txt .title {
  color: #fff;
  font-size: 28px;
  margin: 0 0 16px;
}

#hero_txt .section_body {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin: 0;
  text-align: left;
}

#skills_band {
  background-image: url('../img/home/feature_bkg.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 28px 0 40px;
  box-sizing: border-box;
}

.section_copy {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

#feature_intro {
  height: auto;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

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

#feature_intro .section_body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin: 0 0 24px;
  text-align: left;
}

#feature_blurbs {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 1%;
  flex-wrap: wrap;
}

.feature_blurb {
  width: 298px;
  height: auto;
}

.feature_blurb_img {
  width: 298px;
  height: 298px;
}

.feature_blurb_img img {
  width: 100%;
  height: auto;
  display: block;
}

.feature_blurb_title {
  text-align: center;
  margin-top: 15px;
  font-family: oswald_reg;
  color: #1a4176;
}

.divider {
  background-color: #1a4176;
  height: 2px;
  width: 100%;
}

.insert_row {
  display: flex;
  width: 100%;
  min-height: 480px;
}

.insert_row_reverse {
  flex-direction: row-reverse;
}

.insert_media,
.insert_copy {
  width: 50%;
  box-sizing: border-box;
  border: #1a4176 solid 1px;
}

.insert_media {
  min-height: 480px;
  overflow: hidden;
}

.insert_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insert_copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #fff;
}

.insert_copy .title {
  margin: 0 0 16px;
  text-align: left;
  color: #1a4176;
}

.insert_copy .section_body {
  margin: 0;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}

.newsletter_form {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.newsletter_form input[type="email"] {
  height: 30px;
  width: 260px;
  font-size: 18px;
}

.newsletter_form input[type="button"] {
  margin: 6px;
}

footer a {
  color: #c9c9c9;
}

@media only screen and (max-width: 600px) {
  :root {
    --section-pad-y: 28px;
    --copy-gap: 16px;
  }

  #feature_blurbs{
    display: none;
  }

  #menu_bar img {
    width: 50%;
    height: 50%;
    padding-top: 5%;
  }

  #home_hero {
    padding: var(--section-pad-y) 0;
    background-size: cover;
  }

  #home_hero_inner {
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: var(--copy-gap);
  }

  #hero_img {
    max-width: 100%;
    width: 100%;
  }

  #hero_img img {
    width: 100%;
    margin: 0 auto;
  }

  #hero_txt {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  #hero_txt .title {
    text-align: center;
    margin-bottom: var(--copy-gap);
  }

  #hero_txt .section_body {
    text-align: left;
    font-size: 18px;
  }

  #skills_band {
    padding: var(--section-pad-y) 0;
  }

  .section_copy {
    width: 90%;
  }

  #feature_intro .title {
    text-align: center;
    font-size: 28px;
    margin-bottom: var(--copy-gap);
  }

  #feature_intro .section_body {
    text-align: left;
    font-size: 18px;
    margin-bottom: var(--copy-gap);
  }

  #feature_blurbs {
    gap: 24px;
    padding: 0;
  }

  .feature_blurb {
    width: 100%;
    max-width: 298px;
  }

  .feature_blurb_img {
    width: 100%;
    height: auto;
  }

  .insert_row,
  .insert_row_reverse {
    flex-direction: column;
    min-height: 0;
  }

  .insert_media,
  .insert_copy {
    width: 100%;
    min-height: 0;
  }

  .insert_media {
    height: auto;
  }

  .insert_media img {
    height: auto;
    object-fit: contain;
  }

  .insert_copy {
    padding: var(--section-pad-y) 5%;
    width: 90%;
    margin: 0 auto;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
  }

  .insert_copy .title {
    text-align: center;
    margin-bottom: var(--copy-gap);
  }

  .insert_copy .section_body {
    text-align: left;
  }

  .newsletter_form {
    flex-wrap: wrap;
  }

  .newsletter_form input[type="email"] {
    width: 100%;
    max-width: 260px;
  }
}
