.subpage_navigation {
  width: 100%;
  height: 72px;
  display: flex;
  flex-direction: row;
}

.subpage_navigation_logo_container {
  width: auto;
  height: 100%;
  box-sizing: border-box;
  padding: 18px;
}

.subpage_navigation_logo {
  width: auto;
  height: 100%;
}

.subpage_navigation_spacer {
  flex: 1;
}

.subpage_navigation_option {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 0 24px;
  cursor: pointer;
  background-color: #FFFFFF;
  transition: background-color 0.1s;
  font-family: LTS;
  color: #E49A55;
}

.subpage_navigation_option:hover {
  background-color: #F1F1F1;
}

.subpage_navigation a {
  text-decoration: none;
  color: inherit;
}



.subpage_content {
  width: 100%;
  height: auto;
  max-width: 720px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 36px 18px;
}

.subpage_header {
  font-family: LTS;
  font-weight: normal;
  margin: 0 0 12px 0;
  color: #E49A55;
  font-size: 36px;
}

.subpage_section_header {
  font-family: LTS;
  font-weight: normal;
  margin: 0 0 12px 0;
  color: #E49A55;
  font-size: 18px;
}

.subpage_description {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-family: Roboto;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 36px 0;
}

.subpage_list {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-family: Roboto;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 36px 0;
}

.subpage_list li {
  margin: 12px 0;
}

.subpage_image_container {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
  margin: 0 0 96px 0;
}

.subpage_image {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: #DDDDDD solid 1px;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.subpage_image_shadow {
  width: 100%;
  height: 80px;
  background: #000000;
  filter: blur(80px);
  border-radius: 50%;
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 1;
}





.subpage_footer {
  width: 100%;
  height: auto;
  position: relative;
  margin: 96px 0 0 0;
}

.subpage_footer_content {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-color: #E49A55;
  padding: 48px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  color: #FFFFFF;
}

.subpage_footer_shadow {
  width: 100%;
  height: 80px;
  background: #000000;
  filter: blur(80px);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
}

.subpage_footer_column {
  max-width: 300px;
}

.subpage_footer_divider {
  width: 48px;
  height: auto;
}

.subpage_footer_logo {
  max-width: 100%;
  height: 36px;
}

.subpage_footer a {
  color: #FFFFFF;
}






@media screen and (max-width: 540px) {

  .subpage_navigation {
    box-sizing: border-box;
    padding-right: 6px;
  }
  
  .subpage_navigation_logo_container {
    padding: 24px 18px;
  }

  .subpage_navigation_option {
    padding: 0 12px;
  }

  .subpage_footer_content {
    flex-direction: column;
  }

}