/**
 * @file
 * Index list styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.index-block {
  margin: 3rem 0;
}

.index-block__description p {
  font-size: 1.25rem;
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 73.0625rem) {
  .index-block__description p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .index-block__description p {
    font-size: 0.875rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
}

.index-block__content > div > div {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
@media screen and (max-width: 47.9375rem) {
  .index-block__content > div > div {
    -moz-column-count: inherit;
         column-count: inherit;
  }
}
.index-block__content header {
  text-align: center;
  margin-bottom: 3rem;
  -moz-column-span: all;
       column-span: all;
}
@media screen and (max-width: 47.9375rem) {
  .index-block__content header {
    margin-bottom: 2rem;
  }
}
.index-block__content header a {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #ffffff;
  text-decoration: none;
  margin: 0.375rem 0.25rem;
  display: inline-block;
  border: 1px solid #003366;
  background-color: #003366;
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 47.9375rem) {
  .index-block__content header a {
    font-size: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    margin: 0.25rem 0.125rem;
    line-height: 1.5;
  }
}
.index-block__content header a:hover {
  color: #003366;
  background-color: #ffffff;
}

.index-list__group {
  display: inline-block;
  width: 100%;
}

.index-list__header-group {
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 0.5rem;
}

.index-list__list {
  padding: 0;
  list-style: none;
  margin-bottom: 3rem;
}
@media screen and (max-width: 47.9375rem) {
  .index-list__list {
    margin-bottom: 2rem;
  }
}
.index-list__list li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 73.0625rem) {
  .index-list__list li {
    font-size: 1rem;
  }
}
.index-list__list a {
  color: #003366;
  text-decoration: none;
}
.index-list__list a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=index-list.css.map*/