/**
 * @file
 * Slideshow 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.
 */
.page-slideshow {
  position: relative;
  margin: 3rem 0;
}
@media screen and (max-width: 47.9375rem) {
  .page-slideshow {
    margin: 2rem 0;
  }
}
.page-slideshow .slick-list {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 47.9375rem) {
  .page-slideshow .slick-list {
    width: 72%;
  }
}
.page-slideshow .slick-arrow {
  position: absolute;
  border: none;
  background: none;
  transition: 0.2s all;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-slideshow .slick-arrow span {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
@media screen and (max-width: 87.4375rem) {
  .page-slideshow .slick-arrow svg {
    width: 3rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .page-slideshow .slick-arrow svg {
    width: 2rem;
  }
}
.inner-columns--40-60 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--60-40 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
  width: 2rem;
}
@media screen and (max-width: 73.0625rem) {
  .inner-columns--40-60 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--60-40 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
    width: 1rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns--40-60 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--60-40 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
    width: 2rem;
  }
}
.inner-columns--40-60 .inner-columns__column-2 .page-slideshow .slick-arrow svg, .inner-columns--60-40 .inner-columns__column-1 .page-slideshow .slick-arrow svg {
  width: 3rem;
}
@media screen and (max-width: 73.0625rem) {
  .inner-columns--40-60 .inner-columns__column-2 .page-slideshow .slick-arrow svg, .inner-columns--60-40 .inner-columns__column-1 .page-slideshow .slick-arrow svg {
    width: 2rem;
  }
}
.inner-columns--50-50 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--50-50 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
  width: 2.5rem;
}
@media screen and (max-width: 73.0625rem) {
  .inner-columns--50-50 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--50-50 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
    width: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns--50-50 .inner-columns__column-1 .page-slideshow .slick-arrow svg, .inner-columns--50-50 .inner-columns__column-2 .page-slideshow .slick-arrow svg {
    width: 2rem;
  }
}
.page-slideshow .slick-prev {
  left: 0;
}
.page-slideshow .slick-next {
  right: 0;
}
.page-slideshow figcaption {
  color: #003366;
  line-height: 1.5;
  padding-top: 1rem;
}
@media screen and (max-width: 47.9375rem) {
  .page-slideshow figcaption {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .inner-columns .page-slideshow figcaption {
    font-size: 0.875rem;
  }
}
.page-slideshow figcaption a {
  color: #333333;
  text-decoration: none;
}
.page-slideshow figcaption a:hover .caption__link-text {
  text-decoration: underline;
}
.page-slideshow figcaption .caption__link-text {
  color: #003366;
  font-weight: 700;
}
.page-slideshow .slideshow__caption {
  text-align: center;
}

/*# sourceMappingURL=slideshow.css.map*/