/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.section--subnav {
  position: relative;
  padding: 60px 0;
  background-color: #FFFFFF;
}
.section--subnav + .section--spaced {
  padding-top: 60px;
}
.section--subnav:before {
  display: block;
  position: absolute;
  content: "";
  border-bottom: 1px #707372 solid;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 1740px;
  max-width: calc(100vw - 60px);
}
.section--subnav ul, .section--subnav ul.subnav_items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 30px;
  list-style: none;
  margin-left: 0;
  justify-content: center;
}
.section--subnav ul li, .section--subnav ul.subnav_items li {
  color: #B7B9B8;
  line-height: 1em;
  letter-spacing: 0.02em;
}
.section--subnav ul li.current-page a, .section--subnav ul li.current-page button, .section--subnav ul.subnav_items li.current-page a, .section--subnav ul.subnav_items li.current-page button {
  color: #000;
}
.section--subnav ul li a, .section--subnav ul li button, .section--subnav ul.subnav_items li a, .section--subnav ul.subnav_items li button {
  transition: color 250ms;
  color: #B8B9B9;
  letter-spacing: 0.075em;
  text-decoration: none;
}
.section--subnav ul li a:hover, .section--subnav ul li button:hover, .section--subnav ul.subnav_items li a:hover, .section--subnav ul.subnav_items li button:hover {
  text-decoration: none;
  color: #000;
}
.section--subnav ul li button, .section--subnav ul.subnav_items li button {
  line-height: 1;
}
@media screen and (max-width: 1270px) {
  .section--subnav ul, .section--subnav ul.subnav_items {
    flex-direction: column;
    row-gap: 15px;
  }
  .section--subnav ul li, .section--subnav ul.subnav_items li {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 1270px) {
  .section--subnav {
    padding: 40px 0;
  }
}