/* RESET.CSS */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, hr,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* end RESET.CSS */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media (min-width: 600px) {
  .flex-sm {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 920px) {
  .flex-mid {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 1250px) {
  .flex-sm {
    display: flex;
    flex-wrap: wrap;
  }
}

.flex-1 {
  flex: 1;
}

.flex-justify-center {
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.container-full {
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}

.container-lg {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}

.container-mid {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}

.container-sm {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}

.container--padding-lg {
  padding-left: 22px;
  padding-right: 22px;
}

.gutter {
  padding-left: 11px;
  padding-right: 11px;
}

.gutter-sm {
  padding-left: 7.3333333333px;
  padding-right: 7.3333333333px;
}

.gutter-lg {
  padding-left: 22px;
  padding-right: 22px;
}

.row {
  margin-left: -11px;
  margin-right: -11px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row-sm {
  margin-left: -7.3333333333px;
  margin-right: -7.3333333333px;
}
.row-sm:after {
  content: "";
  display: table;
  clear: both;
}

.row-lg {
  margin-left: -22px;
  margin-right: -22px;
}
.row-lg:after {
  content: "";
  display: table;
  clear: both;
}

.col {
  width: 100%;
  float: left;
  padding-left: 11px;
  padding-right: 11px;
}

.col-sm {
  width: 100%;
  float: left;
  padding-left: 7.3333333333px;
  padding-right: 7.3333333333px;
}

.col-lg {
  width: 100%;
  float: left;
  padding-left: 22px;
  padding-right: 22px;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-1 {
  width: 8.3333333333%;
}

@media (min-width: 600px) {
  .col-12-sm {
    width: 100%;
  }
  .col-11-sm {
    width: 91.6666666667%;
  }
  .col-10-sm {
    width: 83.3333333333%;
  }
  .col-9-sm {
    width: 75%;
  }
  .col-8-sm {
    width: 66.6666666667%;
  }
  .col-7-sm {
    width: 58.3333333333%;
  }
  .col-6-sm {
    width: 50%;
  }
  .col-5-sm {
    width: 41.6666666667%;
  }
  .col-4-sm {
    width: 33.3333333333%;
  }
  .col-3-sm {
    width: 25%;
  }
  .col-2-sm {
    width: 16.6666666667%;
  }
  .col-1-sm {
    width: 8.3333333333%;
  }
}
@media (min-width: 920px) {
  .col-12-mid {
    width: 100%;
  }
  .col-11-mid {
    width: 91.6666666667%;
  }
  .col-10-mid {
    width: 83.3333333333%;
  }
  .col-9-mid {
    width: 75%;
  }
  .col-8-mid {
    width: 66.6666666667%;
  }
  .col-7-mid {
    width: 58.3333333333%;
  }
  .col-6-mid {
    width: 50%;
  }
  .col-5-mid {
    width: 41.6666666667%;
  }
  .col-4-mid {
    width: 33.3333333333%;
  }
  .col-3-mid {
    width: 25%;
  }
  .col-2-mid {
    width: 16.6666666667%;
  }
  .col-1-mid {
    width: 8.3333333333%;
  }
}
@media (min-width: 1250px) {
  .col-12-lg {
    width: 100%;
  }
  .col-11-lg {
    width: 91.6666666667%;
  }
  .col-10-lg {
    width: 83.3333333333%;
  }
  .col-9-lg {
    width: 75%;
  }
  .col-8-lg {
    width: 66.6666666667%;
  }
  .col-7-lg {
    width: 58.3333333333%;
  }
  .col-6-lg {
    width: 50%;
  }
  .col-5-lg {
    width: 41.6666666667%;
  }
  .col-4-lg {
    width: 33.3333333333%;
  }
  .col-3-lg {
    width: 25%;
  }
  .col-2-lg {
    width: 16.6666666667%;
  }
  .col-1-lg {
    width: 8.3333333333%;
  }
}
/*
  Copyright (C) Hoefler & Co.
  This software is the property of Hoefler & Co. (H&Co).
  Your right to access and use this software is subject to the
  applicable License Agreement, or Terms of Service, that exists
  between you and H&Co. If no such agreement exists, you may not
  access or use this software for any purpose.
  This software may only be hosted at the locations specified in
  the applicable License Agreement or Terms of Service, and only
  for the purposes expressly set forth therein. You may not copy,
  modify, convert, create derivative works from or distribute this
  software in any way, or make it accessible to any third party,
  without first obtaining the written permission of H&Co.
  For more information, please visit us at http://typography.com.
*/
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-Book_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-Book_Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-BookItalic_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-BookItalic_Web.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-Medium_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-Medium_Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-MediumItalic_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-MediumItalic_Web.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-Bold_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-Bold_Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("/static/fonts/gotham/hco_fonts/woff2/GothamSSm-BoldItalic_Web.woff2") format("woff2"), url("/static/fonts/gotham/hco_fonts/woff/GothamSSm-BoldItalic_Web.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "icomoon";
  src: url("/static/font-icons/fonts/icomoon.eot?bgksxa");
  src: url("/static/font-icons/fonts/icomoon.eot?bgksxa#iefix") format("embedded-opentype"), url("/static/font-icons/fonts/icomoon.ttf?bgksxa") format("truetype"), url("/static/font-icons/fonts/icomoon.woff?bgksxa") format("woff"), url("/static/font-icons/fonts/icomoon.svg?bgksxa#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=ccp-icon-], [class*=" ccp-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ccp-icon-check:before {
  content: "\e908";
}

.ccp-icon-menu:before {
  content: "\e904";
}

.ccp-icon-minus:before {
  content: "\e905";
}

.ccp-icon-plus:before {
  content: "\e906";
}

.ccp-icon-x:before {
  content: "\e907";
}

.ccp-icon-chevron-down:before {
  content: "\e900";
}

.ccp-icon-chevron-left:before {
  content: "\e901";
}

.ccp-icon-chevron-right:before {
  content: "\e902";
}

.ccp-icon-chevron-up:before {
  content: "\e903";
}

.ccp-icon-image:before {
  content: "\e90d";
}

.ccp-icon-share2:before {
  content: "\ea82";
}

.ccp-icon-facebook:before {
  content: "\ea90";
}

.ccp-icon-instagram:before {
  content: "\ea92";
}

.ccp-icon-twitter:before {
  content: "\ea96";
}

.white {
  color: #fff;
}

.grey-cement {
  color: #878787;
}

.yellow-marigold--faint-bg {
  background-color: #f1efe0;
}

.blue-gradient-bg {
  background-image: linear-gradient(to right, rgba(189, 229, 238, 0.4) 0%, rgba(82, 186, 234, 0.4) 40%, #2a7bbd 70%, #3d51a2 100%);
}

.blue-gradient--light-bg {
  background-image: linear-gradient(125deg, #4869b6 24%, #3554ab 56%, #84b3d8 98%);
}

.pink-gradient--light-bg {
  background-image: linear-gradient(125deg, #ca3a93 34%, #f1ac5c 94%);
}

.purple-gradient--light-bg {
  background-image: linear-gradient(125deg, #7c379c 54%, #e1a2a9 96%);
}

.purple-gradient--light--reverse-bg {
  background-image: linear-gradient(125deg, #e1a2a9 2%, #7c379c 34%);
}

.text-right {
  text-align: right;
}

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

.text-center {
  text-align: center;
}

.center-element {
  margin-left: auto;
  margin-right: auto;
}

.center-element-inline {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.spacing-v {
  padding-top: 12px;
  padding-bottom: 12px;
}

.spacing-2-v {
  padding-top: 24px;
  padding-bottom: 24px;
}

.spacing-3-v {
  padding-top: 36px;
  padding-bottom: 36px;
}

.spacing-4-v {
  padding-top: 48px;
  padding-bottom: 48px;
}

.spacing-5-v {
  padding-top: 60px;
  padding-bottom: 60px;
}

.spacing-half-v {
  padding-top: 6px;
  padding-bottom: 6px;
}

.spacing-h {
  padding-left: 12px;
  padding-right: 12px;
}

.spacing-2-h {
  padding-left: 24px;
  padding-right: 24px;
}

.spacing-3-h {
  padding-left: 36px;
  padding-right: 36px;
}

.spacing-4-h {
  padding-left: 48px;
  padding-right: 48px;
}

.spacing-5-h {
  padding-left: 60px;
  padding-right: 60px;
}

.spacing-half-h {
  padding-left: 6px;
  padding-right: 6px;
}

.spacing-t {
  padding-top: 12px;
}

.spacing-2-t {
  padding-top: 24px;
}

.spacing-3-t {
  padding-top: 36px;
}

.spacing-4-t {
  padding-top: 48px;
}

.spacing-5-t {
  padding-top: 60px;
}

.spacing-half-t {
  padding-top: 6px;
}

.spacing-b {
  padding-bottom: 12px;
}

.spacing-2-b {
  padding-bottom: 24px;
}

.spacing-3-b {
  padding-bottom: 36px;
}

.spacing-4-b {
  padding-bottom: 48px;
}

.spacing-5-b {
  padding-bottom: 60px;
}

.spacing-half-b {
  padding-bottom: 6px;
}

.spacing {
  padding: 12px;
}

.spacing-2 {
  padding: 24px;
}

.spacing-3 {
  padding: 36px;
}

.spacing-4 {
  padding: 48px;
}

.spacing-5 {
  padding: 60px;
}

.spacing-half {
  padding: 6px;
}

.show {
  display: block;
}

.js-show {
  display: block !important;
}

.show-inline {
  display: inline-block;
}

.hide {
  display: none;
}

.js-hide {
  display: none !important;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

.full-width {
  width: 100%;
  display: block;
}

.iframe-responsive {
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
}
.iframe-responsive iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.iframe-map {
  display: block;
  max-width: 100%;
  height: auto;
}

.icon-round-wrap {
  font-size: 90%;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.icon-round {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 0.8;
}

.icon-round-wrap--facebook {
  color: #fff;
  background-color: #3b5998;
}

.icon-round-wrap--twitter {
  color: #fff;
  background-color: #1da1f2;
}

.icon-left {
  margin-right: 6px;
}

.icon-left-sm {
  margin-right: 3px;
}

.show-on-screen-reader, .show-on-focus {
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
}

.show-on-focus:active, .show-on-focus:focus {
  height: auto;
  width: auto;
  overflow: visible;
  position: static;
  clip: auto;
}

.tag {
  color: #272624;
}

li .tag.active {
  text-decoration: underline;
}
@media (min-width: 600px) {
  li .tag.active {
    color: #1a8eb8;
  }
}

.pill {
  color: #fff;
  background-color: #454545;
  border-radius: 7px;
  font-size: 60%;
  padding: 3px 6px;
  margin: 0 0 6px 0;
  display: inline-flex;
  align-items: flex-end;
}
.pill:hover, .pill:focus {
  color: #878787;
}

.pill-close {
  font-size: 90%;
  margin: 0 0 0 6px;
}

.btn-hollow-yellow, .btn-hollow, .btn-yellow, .btn {
  border: 1px solid;
  border-radius: 14px;
  font-size: 20px;
  font-family: sofia-pro, sans-serif;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  padding: 6px 36px 12px;
  display: inline-block;
  outline: none;
  cursor: pointer;
  transition: all 0.3s linear;
}
.btn-hollow-yellow:hover, .btn-hollow:hover, .btn-yellow:hover, .btn:hover {
  transition: all 0.3s linear;
}
.btn-hollow-yellow:focus, .btn-hollow:focus, .btn-yellow:focus, .btn:focus {
  outline: 1px solid rgba(255, 205, 54, 0.6);
  transition: all 0.3s linear;
}

.btn--xs {
  border-radius: 3.5px;
  font-size: 80%;
  padding: 4.8px 16.8px 8.4px;
}

.btn--sm {
  border-radius: 7px;
  font-size: 90%;
  padding: 12px 24px;
}

.btn--lg {
  font-size: 110%;
  padding: 10px 48px 18px;
}
@media (min-width: 920px) {
  .btn--lg {
    padding: 10px 60px 18px;
  }
}

.btn {
  color: #fff;
  background-color: #cc6699;
  border-color: #cc6699;
}
.btn:hover, .btn:focus {
  color: #fff;
  border-color: #d98cb3;
  background-color: #d98cb3;
}

.btn-yellow {
  color: #fff;
  background-color: #ffcd36;
  border-color: #ffcd36;
}
.btn-yellow:hover, .btn-yellow:focus {
  color: #fff;
  border-color: #ffda69;
  background-color: #ffda69;
}

.btn-hollow {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn-hollow:hover, .btn-hollow:focus {
  color: #e6e6e6;
}
.btn-hollow:hover {
  opacity: 0.8;
}

.btn-hollow-yellow {
  color: #ffcd36;
  background-color: transparent;
  border-color: #ffcd36;
}
.btn-hollow-yellow:hover, .btn-hollow-yellow:focus {
  color: #ffc003;
}
.btn-hollow-yellow:hover {
  opacity: 0.8;
}

.btn--rounded {
  border-radius: 42px;
}

.btn-reset {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-align: left;
  text-transform: inherit;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.btn-reset:focus {
  outline: 1px solid rgba(255, 205, 54, 0.6);
  transition: all 0.3s linear;
}

.pagination-block {
  font-family: bc-alphapipe, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  padding: 24px 0 48px 0;
}
@media (min-width: 1250px) {
  .pagination-block {
    font-size: 220%;
    padding: 0 0 96px 0;
  }
}

.pagination-each {
  color: #272624;
  padding: 6px 10px;
  cursor: pointer;
}
.pagination-each:hover, .pagination-each:focus {
  color: #d2a51c;
}
.pagination-each:first-of-type {
  padding-left: 0;
}
.pagination-each:last-of-type {
  padding-right: 0;
}
.pagination-each:nth-last-of-type(3):after {
  background-color: transparent;
}
@media (min-width: 600px) {
  .pagination-each {
    padding: 6px 24px;
  }
}

.pagination-icon {
  font-size: 70%;
}

.pagination-each--page {
  font-family: sofia-pro, sans-serif;
  position: relative;
}
.pagination-each--page:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #272624;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: -3px;
  top: 50%;
}
@media (min-width: 1250px) {
  .pagination-each--page:after {
    width: 14px;
    height: 14px;
    right: -8.4px;
  }
}

.pagination-each--page--active {
  color: #d2a51c;
}

.pagination-each--disabled {
  color: transparent;
  cursor: default;
  pointer-events: none;
}
.pagination-each--disabled .pagination-icon {
  color: #ccc;
  opacity: 0.8;
}

.pagination-block--dark .pagination-each {
  color: #fff;
}
.pagination-block--dark .pagination-each:hover, .pagination-block--dark .pagination-each:focus {
  color: #ffcd36;
}
.pagination-block--dark .pagination-each.pagination-each--disabled {
  color: transparent;
}
.pagination-block--dark .pagination-each.pagination-each--disabled .pagination-icon {
  opacity: 0.3;
}
.pagination-block--dark .pagination-each--page:after {
  background-color: #fff;
}
.pagination-block--dark .pagination-each--page:nth-last-of-type(2):after {
  background-color: transparent;
}
.pagination-block--dark .pagination-each--page--active {
  color: #ffcd36;
}

.banner-block {
  position: relative;
}

.banner-heading {
  color: #fff;
  font-size: 220%;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  margin: 0;
  z-index: 1;
}
@media (min-width: 920px) {
  .banner-heading {
    font-size: 520%;
  }
}

.banner-img {
  width: 100%;
  display: block;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-prev, .slick-next {
  top: 40%;
  z-index: 1;
  width: auto;
  height: auto;
}
.slick-prev:before, .slick-next:before {
  font-size: 34px;
  font-family: "icomoon";
}

.slick-prev {
  left: -18px;
}
.slick-prev:before {
  content: "\e901";
}

.slick-next {
  right: -18px;
}
.slick-next:before {
  content: "\e902";
}

h1, .h1 {
  font-size: 180%;
}

h1 {
  font-weight: 700;
  margin-bottom: 24px;
}

h2, .h2 {
  font-size: 150%;
}

h2 {
  font-weight: 700;
  margin-bottom: 24px;
}

h3, .h3 {
  font-size: 140%;
}

h3 {
  font-weight: 700;
  margin-bottom: 24px;
}

h4, .h4 {
  font-size: 130%;
}

h4 {
  font-weight: 700;
  margin-bottom: 24px;
}

h5, .h5 {
  font-size: 120%;
}

h5 {
  font-weight: 700;
  margin-bottom: 24px;
}

h6, .h6 {
  font-size: 90%;
}

h6 {
  font-weight: 700;
  margin-bottom: 24px;
}

.heading-section {
  font-family: bc-alphapipe, sans-serif;
  font-weight: 400;
  font-size: 170%;
  line-height: 1.3;
}
@media (min-width: 920px) {
  .heading-section {
    font-size: 290%;
  }
}

.heading-subsection {
  font-family: bc-alphapipe, sans-serif;
  font-weight: 400;
  font-size: 190%;
  line-height: 1.3;
}
@media (min-width: 920px) {
  .heading-subsection {
    font-size: 210%;
  }
}

@media (min-width: 920px) {
  .subheading-section {
    font-size: 120%;
  }
}

.heading-title-block {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.heading-title-block .heading-title {
  margin-bottom: 0;
}

.heading-title {
  font-weight: 500;
  font-family: bc-alphapipe, sans-serif;
  font-size: 120%;
}
@media (min-width: 1250px) {
  .heading-title {
    font-size: 130%;
  }
}

.heading-title-caption {
  font-size: 65%;
  line-height: 2;
}

em, i, .font-italic {
  font-style: italic;
}

strong, b {
  font-weight: 700;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-regular {
  font-weight: 400;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

font-size-base, .font-size-base {
  font-size: 20px;
}

font-size-sm, .font-size-sm {
  font-size: 90%;
}

font-size-xs, .font-size-xs {
  font-size: 80%;
}

font-size-xxs, .font-size-xxs {
  font-size: 70%;
}

font-size-xxxs, .font-size-xxxs {
  font-size: 60%;
}

font-size-lg, .font-size-lg {
  font-size: 110%;
}

font-size-xl, .font-size-xl {
  font-size: 120%;
}

font-size-xxl, .font-size-xxl {
  font-size: 130%;
}

a, .link {
  color: #cc6699;
  text-decoration: none;
  transition: all 0.3s linear;
}
a:hover, a:focus, a:active, .link:hover, .link:focus, .link:active {
  color: #ffcd36;
  transition: all 0.3s linear;
}
a:focus, .link:focus {
  outline: 1px solid rgba(255, 205, 54, 0.6);
}

.link-light {
  color: #ffe9cb;
  text-decoration: underline;
}
.link-light:hover, .link-light:focus {
  color: #fff;
}

.link-color-font {
  color: #272624;
}

p {
  margin-bottom: 18px;
}

ul, ol {
  margin-bottom: 18px;
  list-style-position: inside;
  padding-left: 12px;
}
ul li, ol li {
  margin-bottom: 12px;
}
ul ul, ol ul {
  padding-left: 24px;
  list-style-type: circle;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

.margin-reset {
  margin: 0;
}

.list-reset {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
.list-reset li {
  margin-bottom: 0;
}

.word-break {
  word-break: break-all;
}

input, select {
  box-shadow: none;
  border-radius: 0;
}

input[type=submit].btn {
  -webkit-appearance: none;
}

select {
  border-radius: 0;
  background-image: none !important;
}

.field-block {
  margin-bottom: 48px;
}

.field-block-sm {
  margin-bottom: 24px;
}

.label {
  display: block;
  margin: 0 0 6px 0;
}

.input-text {
  color: #272624;
  background-color: #fff;
  border: 1px solid #b4d6e2;
  border-radius: 14px;
  padding: 12px 16.8px 16.8px 16.8px;
  font-family: sofia-pro, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  display: block;
  width: 100%;
  transition: all 0.3s linear;
}
.input-text:focus {
  outline: 0;
  border-color: #ffcd36;
  transition: all 0.3s linear;
}
.input-text.placeholder {
  color: #878787;
}
.input-text:-moz-placeholder {
  color: #878787;
}
.input-text::-moz-placeholder {
  color: #878787;
}
.input-text:-ms-input-placeholder {
  color: #878787;
}
.input-text::-webkit-input-placeholder {
  color: #878787;
}

.input-text--line {
  border: 1px solid transparent;
  border-bottom-color: #878787;
  border-radius: 0;
  padding: 12px;
}

.input-text-rounded-wrap {
  position: relative;
}

.input-text--rounded-label {
  color: #272624;
  font-size: 80%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px;
}

.input-text--rounded {
  border: 2px solid #cc6699;
  border-radius: 14px;
  padding: 36px 12px 12px 12px;
}

textarea {
  min-height: 200px;
}

.notify {
  color: #fff;
  font-size: 90%;
  background-color: #3ab09a;
  border-radius: 14px;
  padding: 12px 36px 18px 24px;
  position: relative;
  z-index: 301;
}

.notify--error {
  background-color: #e54e7f;
}

.notify--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 600px;
  margin: 12px auto;
}

.notify-icon, .notify-close {
  font-size: 110%;
  font-weight: 700;
  padding: 12px;
  position: absolute;
  right: 0;
  top: 6px;
}

.form-error {
  color: #e54e7f;
}

.input-text--error {
  border-color: #e54e7f;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  color: #272624;
  background-color: #fff;
  font-family: sofia-pro, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.main {
  margin: 65px 0 0 0;
}
@media (min-width: 600px) {
  .main {
    margin: 82px 0 0 0;
  }
}
@media (min-width: 1250px) {
  .main {
    margin: 139px 0 0 0;
  }
}

.btn-topics-toggle {
  width: 100%;
  margin: 24px 0 48px;
}
@media (min-width: 600px) {
  .btn-topics-toggle {
    display: none;
  }
}

@media (min-width: 920px) {
  .topics {
    padding: 36px 0 120px 0;
  }
}
.topics > .row {
  width: 100%;
}

.topics-list, .filter-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  font-size: 80%;
}
.topics-list li, .filter-list li {
  margin-bottom: 0;
}
@media (max-width: 919px) {
  .topics-list, .filter-list {
    margin-top: 6px;
  }
}
@media (max-width: 919px) {
  .topics-list li, .filter-list li {
    margin-bottom: 12px;
  }
}
.topics-list a, .filter-list a {
  font-size: 90%;
  display: block;
  margin-bottom: 6px;
}
@media (min-width: 1250px) {
  .topics-list a, .filter-list a {
    font-size: 110%;
  }
}
@media (min-width: 920px) {
  .topics-list a:hover .topic-link, .topics-list a:focus .topic-link, .filter-list a:hover .topic-link, .filter-list a:focus .topic-link {
    color: #cc6699;
  }
}

.topic-link {
  color: #878787;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  display: inline;
}
.topic-link:hover, .topic-link:focus {
  color: #cc6699;
}

.topic-count {
  color: #ffcd36;
  padding: 0 0 0 6px;
}

.topic-link--active {
  color: #ffcd36;
}

@media (max-width: 919px) {
  .heading-topics-block {
    margin-bottom: 24px;
  }
}

.btn-topics-close {
  font-size: 120%;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 24px;
}
@media (min-width: 600px) {
  .btn-topics-close {
    display: none;
  }
}

.heading-topics-list {
  padding: 0 18px 0 0;
}
@media (max-width: 919px) {
  .heading-topics-list {
    color: #272624;
    background-color: #fff;
    border-radius: 7px;
    font-size: 70%;
    text-transform: uppercase;
    padding: 3px 12px;
  }
}

@media (max-width: 919px) {
  .heading-title-caption--topics {
    color: #ccc;
    font-size: 70%;
    margin-left: 12px;
  }
}

.btn-nav-toggle {
  color: #fff;
  font-size: 120%;
  line-height: 1.2;
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 3px 0 6px 6px;
  z-index: 201;
}
@media (min-width: 600px) {
  .btn-nav-toggle {
    top: 24px;
  }
}
@media (min-width: 920px) {
  .btn-nav-toggle {
    display: none;
  }
}

.nav-block {
  z-index: 200;
}

@media (min-width: 920px) {
  .nav-container {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 919px) {
  .nav-logo-block {
    position: absolute;
    top: 12px;
  }
}

.nav-logo {
  display: block;
}
@media (max-width: 1249px) {
  .nav-logo img {
    max-width: 140px;
  }
}
@media (max-width: 919px) {
  .nav-logo img {
    position: relative;
    z-index: 203;
  }
}
@media (max-width: 599px) {
  .nav-logo img {
    max-width: 100px;
  }
}

.nav {
  background-color: #1e1e1e;
  font-family: bc-alphapipe, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 12px 0;
  height: 65px;
  z-index: 200;
}
.nav a {
  line-height: 1;
}
@media (min-width: 920px) {
  .nav a {
    margin-right: 24px;
  }
}
@media (min-width: 600px) {
  .nav {
    height: 82px;
    padding: 12px 36px;
  }
}
@media (min-width: 1250px) {
  .nav {
    height: 139px;
    margin-right: 30px;
    padding: 24px 36px;
  }
}
@media (max-width: 1249px) {
  .nav {
    font-size: 90%;
  }
}

.nav-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 919px) {
  .nav-wrap {
    padding: 24px 24px 60px 24px;
    width: 100%;
    height: 100vh;
    position: fixed;
    right: -100vw;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s linear;
    padding-top: 96px;
    flex-direction: column;
    align-items: center;
    z-index: 201;
  }
}

.nav--active {
  background-color: #272624;
  right: 0;
  transition: all 0.2s ease-in;
}

.nav-link {
  color: #fff;
  display: block;
}
@media (max-width: 919px) {
  .nav-link {
    text-align: center;
    padding: 6px 12px;
    margin: 0 0 6px 0;
  }
}

.nav-list ul {
  display: none;
}
.nav-list > li {
  font-size: 110%;
  position: relative;
}
.nav-list li ul {
  border-radius: 7px;
  font-size: 80%;
  position: static;
  padding: 6px 12px 0;
  text-align: center;
}
@media (min-width: 920px) {
  .nav-list li ul {
    background-color: #1e1e1e;
    text-align: left;
    position: absolute;
    left: -12px;
    top: 24px;
    min-width: 130px;
  }
}
@media (min-width: 1250px) {
  .nav-list li ul {
    top: 30px;
  }
}
.nav-list li ul li a {
  border-bottom: 1px solid #fff;
  display: block;
  padding: 0 0 6px 0;
  margin: 0 0 6px 0;
}
.nav-list li ul li:last-of-type a {
  border: none;
}
@media (min-width: 920px) {
  .nav-list {
    display: flex;
  }
}

.nav-social-block {
  display: flex;
  align-items: flex-end;
  margin-left: 24px;
  position: relative;
}
.nav-social-block a {
  color: #fff;
  display: block;
}
.nav-social-block a:hover, .nav-social-block a:focus {
  color: #ffcd36;
}
@media (max-width: 919px) {
  .nav-social-block a {
    margin: 0 12px;
  }
}
@media (min-width: 920px) {
  .nav-social-block:before {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 28px;
    display: block;
    position: absolute;
    top: -3px;
    left: -24px;
  }
}
@media (max-width: 919px) {
  .nav-social-block {
    order: 3;
    justify-content: center;
  }
}

.btn-nav-close {
  color: #fff;
  font-size: 140%;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 18px;
}
@media (min-width: 920px) {
  .btn-nav-close {
    display: none;
  }
}

.nav-link-home {
  position: absolute;
  left: 24px;
  top: 24px;
}
@media (min-width: 920px) {
  .nav-link-home {
    display: none;
  }
}

/* <- button update 2024-10-18 start */
.nav-donate-block {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 10vw;
  margin: 0 auto;
}
@media (max-width: 919px) {
  .nav-donate-block {
    margin: 15.6px 0 30px;
    order: 2;
  }
}

a.btn-hollow--nav-donate {
  margin-right: 0;
}

.donate-btn {
  flex: 1 1 auto;
  font-weight: bold;
  margin: 10px;
  padding: 15px 30px 15px 30px;
  text-align: center;
  text-transform: none;
  border: solid 0px #ededed;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 32px;
  background-image: linear-gradient(to right, #da0f90 0%, #f9a659 42%, #ce3d97 100%);
}

.donate-btn:hover {
  background-position: right center;
  border: solid 2px #ededed;
}

/* button update 2024-10-18 end -> */
.nav {
  position: fixed;
  left: 0%;
  top: 0;
  right: 0;
  width: 100%;
}

.nav--position-static {
  position: static;
}

@media (min-width: 920px) {
  .headroom--animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
  }
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  .headroom--pinned {
    animation-name: slideDown;
  }
  @keyframes slideUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  .headroom--unpinned {
    animation-name: slideUp;
  }
}
@media (max-width: 919px) {
  .filter-block {
    display: none;
  }
}
.filter-block a {
  color: #878787;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.results {
  display: flex;
  align-items: baseline;
  margin-left: auto;
}

.results-heading {
  font-family: bc-alphapipe, sans-serif;
  padding: 0 6px 0 0;
}

.results-value {
  color: #cc6699;
  line-height: 1;
}

.footer {
  color: #fff;
  background-color: #1e1e1e;
  font-size: 70%;
  padding: 84px 0 84px;
  position: relative;
  margin-top: auto;
  z-index: 180;
}
.footer a {
  color: #fff;
}
.footer a:hover, .footer a:focus {
  color: #e4e4e4;
}
@media (max-width: 599px) {
  .footer {
    text-align: center;
  }
}

.footer-row {
  line-height: 1.6;
}
@media (min-width: 920px) {
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .footer-copyright--sm {
    display: none;
  }
}

.footer-copyright--lg {
  flex: 1;
}
@media (max-width: 919px) {
  .footer-copyright--lg {
    display: none;
  }
}
@media (min-width: 1250px) {
  .footer-copyright--lg {
    width: 50%;
    padding-left: 48px;
  }
}

.footer-copyright-nav-block {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1249px) {
  .footer-copyright-nav-block {
    padding-bottom: 12px;
  }
}
@media (min-width: 1250px) {
  .footer-copyright-nav-block {
    flex-direction: row-reverse;
    flex: 1;
    align-items: flex-end;
  }
}

.footer-nav {
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .footer-nav {
    column-count: 3;
  }
}
@media (min-width: 1250px) {
  .footer-nav {
    padding-left: 48px;
    width: 50%;
  }
}
@media (max-width: 1249px) {
  .footer-nav {
    padding-bottom: 12px;
  }
}
@media (max-width: 919px) {
  .footer-nav {
    padding-top: 36px;
  }
}

.footer-nav-link {
  display: block;
  padding: 0 12px 0 0;
}
@media (max-width: 599px) {
  .footer-nav-link {
    padding: 0 0 6px 0;
  }
}

.footer-nav-each:last-of-type .footer-nav-link:after {
  content: "";
}

@media (min-width: 920px) {
  .footer-address-social-block {
    margin-left: auto;
    float: right;
  }
}
@media (min-width: 1250px) {
  .footer-address-social-block {
    display: flex;
    align-items: flex-end;
  }
}

@media (min-width: 1250px) {
  .footer-address {
    padding-right: 48px;
  }
}

.sidebar {
  color: #fff;
  background-color: #272624;
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .sidebar {
    width: 35%;
  }
}
@media (min-width: 920px) {
  .sidebar {
    width: 25%;
  }
}

.sidebar-section {
  padding: 0 36px 0 36px;
  margin: 36px 0 0 0;
}
@media (max-width: 919px) {
  .sidebar-section {
    padding: 24px 24px 0 24px;
    font-size: 90%;
  }
}

@media (max-width: 599px) {
  .sidebar-section--tagline {
    display: none;
  }
}

.sidebar-story-heading {
  font-size: 120%;
  margin-bottom: 12px;
}
@media (min-width: 1250px) {
  .sidebar-story-heading {
    font-size: 150%;
  }
}

.sidebar-about-link {
  text-decoration: underline;
}

.sidebar-section--stories {
  margin-bottom: 36px;
}

.sidebar-section--stories-list {
  font-size: 80%;
}
@media (min-width: 1250px) {
  .sidebar-section--stories-list {
    font-size: 90%;
  }
}

.sidebar-section-img {
  border-radius: 7px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 18px 0 12px;
}

.sidebar-section-list-item {
  padding: 0 0 12px 0;
}

.sidebar-section-list-link {
  color: #ffcd36;
  font-weight: 500;
  display: block;
}
.sidebar-section-list-link:hover, .sidebar-section-list-link:focus {
  color: #cc6699;
}

.sidebar-section-link {
  color: #878787;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.sidebar-section-link:hover, .sidebar-section-link:focus {
  color: #cc6699;
}

.sidebar-section--newsletter {
  padding-top: 24px;
  padding-bottom: 12px;
  margin-top: auto;
}
.sidebar-section--newsletter .response {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-size: 80%;
  padding: 12px;
  word-break: break-word;
}

.container-newsletter {
  max-width: 700px;
  padding-top: 12px;
  padding-bottom: 24px;
}

.heading-newsletter {
  text-align: center;
  margin: 0;
}
@media (min-width: 1250px) {
  .heading-newsletter {
    font-size: 150%;
  }
}

.subheading-newsletter {
  text-align: center;
  font-size: 80%;
}

.input-text-newsletter {
  color: #272624;
  background-color: transparent;
  font-size: 90%;
}
.input-text-newsletter:focus {
  outline: 0;
  border-color: #ffcd36;
}

.btn-newsletter {
  border: none;
  background-image: linear-gradient(to right, #c93794 0%, #f16b96 45%, #f9a659 75%);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 23px 24px;
  width: 100%;
}
.btn-newsletter:hover, .btn-newsletter:focus {
  opacity: 0.6;
}

#mc_embed_signup input.input-text.mce_inline_error {
  border-color: #e54e7f;
}
#mc_embed_signup .field-block-sm div.mce_inline_error {
  color: #e54e7f;
  background-color: transparent;
  font-size: 80%;
  font-weight: 400;
  padding: 6px;
}

#mce-success-response {
  color: #fff;
  font-size: 90%;
  background-color: #3ab09a;
  border-radius: 14px;
  padding: 12px 36px 18px 24px;
  position: relative;
  font-size: 80%;
}

.body--home {
  background-color: #272624;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.home-banner-block {
  background-image: linear-gradient(to left, #c93794 0%, #f16b96 45%, #f9a659 75%);
  padding: 36px 0 48px;
}

@media (min-width: 600px) {
  .home-banner-slider {
    margin-left: -22px;
    margin-right: -22px;
  }
  .home-banner-slider:after {
    content: "";
    display: table;
    clear: both;
  }
}
.home-banner-slider .slick-dots {
  bottom: -46px;
}
.home-banner-slider .slick-dots li, .home-banner-slider .slick-dots button, .home-banner-slider .slick-dots button:before {
  width: 20px;
  height: 20px;
}
.home-banner-slider .slick-dots li {
  margin: 0 8.4px;
}
.home-banner-slider .slick-dots li button:before {
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
}
.home-banner-slider .slick-dots li.slick-active button:before {
  background-color: #fff;
}

.home-banner-slider-each {
  padding-left: 16.5px;
  padding-right: 16.5px;
}
.home-banner-slider-each.slick-active .home-banner-slider-title {
  opacity: 1;
  visibility: visible;
  transition: all 1s ease-in;
}

.home-banner-slider-link {
  display: block;
  position: relative;
}

.home-banner-slider-img {
  border-radius: 14px;
  width: 100%;
}

.home-banner-slider-gradient {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.45) 99%);
  border-radius: 14px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.home-banner-slider-title {
  color: #fff;
  font-size: 120%;
  font-weight: 700;
  text-align: center;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  padding: 12px 12px 0 12px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.5s ease-in;
}
@media (min-width: 920px) {
  .home-banner-slider-title {
    padding: 24px 24px 0 24px;
    bottom: 24px;
  }
}
@media (min-width: 1250px) {
  .home-banner-slider-title {
    font-size: 160%;
    padding: 36px 36px 0 36px;
    bottom: 36px;
  }
}

.home-work-block {
  padding: 48px 0 0 0;
}
@media (min-width: 600px) {
  .home-work-block {
    padding: 84px 0 0 0;
  }
}

.content-box-gradient-block {
  margin-top: 60px;
}
@media (min-width: 920px) {
  .content-box-gradient-block {
    display: flex;
    flex-wrap: wrap;
  }
}

.content-box-gradient {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 0 48px 0;
}

.content-box-gradient-wrap {
  text-align: center;
  padding: 36px 24px;
  overflow-wrap: break-word;
}

.content-box-gradient-icon {
  margin: 0 0 12px 0;
}

.content-box-gradient-title {
  font-family: bc-alphapipe, sans-serif;
  font-weight: 700;
  font-size: 130%;
  margin: 0 0 36px 0;
  position: relative;
}
.content-box-gradient-title:after {
  content: "";
  background-color: #e4e4e4;
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  bottom: -19.2px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.content-box-gradient-desc {
  font-size: 90%;
}

.content-box-gradient-strip {
  border-radius: 0 0 14px 14px;
  font-size: 80%;
  text-align: center;
  padding: 18px;
  margin-top: auto;
}
.content-box-gradient-strip a {
  color: #fff;
}

.content-box-gradient-strip-link {
  color: #f7d364;
  font-weight: 600;
}

.home-container-newsletter {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}
@media (min-width: 600px) {
  .home-container-newsletter {
    padding-top: 108px;
  }
}

.form-newsletter-home .input-text {
  font-size: 80%;
}

.btn-newsletter-home {
  font-weight: 700;
  font-size: 110%;
  text-transform: uppercase;
  width: 100%;
  display: block;
}

.home-story-block {
  padding: 24px;
}
@media (min-width: 600px) {
  .home-story-block {
    padding: 96px 0 0 0;
  }
}

.home-story-wrap {
  padding-top: 48px;
}
@media (min-width: 920px) {
  .home-story-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 600px) {
  .story-slider-block .slick-prev, .story-slider-block .slick-next {
    display: none;
  }
}

.slider-story-each {
  color: #fff;
  border-radius: 7px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  display: block;
  margin-bottom: 44px;
  position: relative;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.slider-story-each:hover {
  color: #e4e4e4;
}
.slider-story-each:hover .slider-story-overlay {
  transition: all 0.2s linear;
}
.slider-story-each:hover .slider-story-title {
  transition: all 0.2s linear;
}
.slider-story-each:hover .slider-story-teaser--home, .slider-story-each:hover .slider-story-teaser--all-stories {
  opacity: 1;
  height: auto;
  max-height: 2000px;
  transition: all 0.2s linear;
}

.slider-story-img {
  border-radius: 7px;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
}

.slider-story-overlay {
  border-radius: 7px;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 5%, rgba(0, 0, 0, 0.85) 99%);
  transition: all 0.1s linear;
}

.slider-story-content {
  line-height: 1.3;
  position: absolute;
  bottom: 12px;
  padding: 12px;
}
@media (min-width: 1250px) {
  .slider-story-content {
    bottom: 18px;
    padding: 12px 48px;
  }
}

.slider-story-title {
  font-size: 90%;
  font-weight: 900;
  margin-bottom: 0;
  transition: all 0.2s linear;
}
@media (min-width: 600px) {
  .slider-story-title {
    font-size: 110%;
  }
}
@media (min-width: 1250px) {
  .slider-story-title {
    font-size: 130%;
  }
}

.slider-story-teaser {
  font-size: 80%;
}
@media (min-width: 600px) {
  .slider-story-teaser {
    font-size: 20px;
  }
}

.slider-story-teaser--home, .slider-story-teaser--all-stories {
  display: none;
}
@media (min-width: 600px) {
  .slider-story-teaser--home, .slider-story-teaser--all-stories {
    display: block;
    opacity: 0;
    height: 0;
    max-height: 0;
  }
}

.slider-story-link {
  font-size: 70%;
  font-weight: 700;
  color: #ffcd36;
  text-transform: uppercase;
  text-decoration: underline;
  margin: 18px 0 0 0;
}
@media (min-width: 920px) {
  .slider-story-link {
    font-size: 90%;
  }
}

.btn-hollow--home-stories {
  margin: 0 0 24px 0;
}
@media (min-width: 600px) {
  .btn-hollow--home-stories {
    margin: 48px 0;
  }
}

.home-insta-block {
  background-image: linear-gradient(125deg, #834299 34%, #f896ac 98%);
  padding: 48px 0 24px;
  @media (min-width: 600px) {
    .home-insta-block {
      margin: 48px 0 0 0; }
  }
}

.home-insta-icon {
  color: #fff;
  font-size: 22px;
}

.home-insta-line {
  background-color: #f896ac;
  width: calc(100% - 40px);
  height: 1px;
  position: relative;
  top: -15px;
  left: 40px;
  margin: 0 0 24px 0;
}

.body--stories {
  background-color: #272624;
}

.stories-featured-block {
  padding: 48px 24px 0 24px;
}
@media (min-width: 600px) {
  .stories-featured-block {
    padding: 96px 0 48px 0;
  }
}
.stories-featured-block .slick-prev, .stories-featured-block .slick-next {
  top: 26%;
}

.featured-story-wrap {
  padding-top: 24px;
}
@media (min-width: 920px) {
  .featured-story-wrap {
    padding-top: 48px;
    display: flex;
    flex-wrap: wrap;
  }
}

.slider-story-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.slider-story-title--featured {
  line-height: 1.3;
  margin: 24px 24px 0 24px;
}
@media (min-width: 920px) {
  .slider-story-title--featured {
    margin-top: 36px;
  }
}

.slider-story-teaser--featured {
  line-height: 1.3;
  margin: 0 24px;
}
@media (max-width: 599px) {
  .slider-story-teaser--featured {
    display: none;
  }
}

@media (min-width: 600px) {
  .stories-all-block {
    padding: 72px 0 0 0;
  }
}

.all-stories-wrap {
  padding: 24px 0 0 0;
}
@media (min-width: 600px) {
  .all-stories-wrap {
    padding: 48px 0 72px;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 919px) {
  .slider-story-teaser--all-stories {
    display: none;
  }
}

.body--story {
  display: flex;
  flex-direction: column;
}

.story-wrap {
  display: flex;
  flex-direction: column-reverse;
  flex: 1 0 auto;
}
@media (min-width: 600px) {
  .story-wrap {
    flex-direction: row;
  }
}

@media (min-width: 600px) {
  .story {
    width: 65%;
  }
}
@media (min-width: 920px) {
  .story {
    width: 75%;
    padding: 0 0 36px 0;
  }
}

.logo-block-story {
  background-color: #272624;
}
@media (min-width: 600px) {
  .logo-block-story {
    display: none;
  }
}

.container--story {
  padding-top: 36px;
}

.story-img-full-size {
  margin-left: auto;
  font-size: 90%;
}

.story-header-img {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  margin: 0 auto 24px;
  display: block;
}

.story-img {
  border-radius: 7px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  margin: 36px auto 36px;
  display: block;
}

.story-heading {
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .share-resource-block {
    display: flex;
  }
}

.story-share-title {
  font-family: bc-alphapipe, sans-serif;
  font-size: 90%;
}

.story-resource-link {
  font-size: 70%;
  font-weight: 400;
  color: #cccc99;
  display: block;
}
.story-resource-link:hover, .story-resource-link:focus {
  color: #cccc99;
}

.story-share-block {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 600px) {
  .story-share-block {
    justify-content: flex-end;
  }
}
@media (max-width: 599px) {
  .story-share-block {
    margin-top: 24px;
  }
}

.share-resource-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.share-resource-row .gutter {
  text-align: center;
}

.story-resource-icon {
  height: 34px;
  width: auto;
}
@media (min-width: 600px) {
  .story-resource-icon {
    height: 40px;
  }
}

.story-share-each {
  font-family: "icomoon";
  font-size: 70%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.story-share-each:hover, .story-share-each:focus {
  opacity: 0.8;
  transition: all 0.3s linear;
}

.story-topic-date {
  font-size: 80%;
}
@media (min-width: 920px) {
  .story-topic-date {
    display: flex;
    align-items: flex-end;
  }
}

@media (min-width: 920px) {
  .story-date {
    text-align: right;
  }
}
@media (max-width: 919px) {
  .story-date {
    margin-top: 12px;
  }
}

.story-heading-topic {
  font-style: italic;
  font-weight: 700;
  font-size: 80%;
  text-transform: uppercase;
  padding: 12px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}

.story-author {
  color: #272624;
}

.heading-title--story-links {
  line-height: 1.25;
}

.story-links-pdf {
  padding: 24px 0 0 0;
}

.story-resource-list li:only-of-type {
  list-style-type: none;
}

.story-content {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11px;
  padding-right: 11px;
}
@media (min-width: 920px) {
  .story-content {
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media (min-width: 1250px) {
  .story-content {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (min-width: 600px) {
  .story-content-img-video {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.story-quote {
  font-size: 120%;
  font-style: italic;
}

.story-related-block {
  background-color: #272624;
  padding: 48px 0;
}
.story-related-block .slider-story-each:hover, .story-related-block .slider-story-each:focus {
  color: #ffcd36;
}

.story-related-title {
  font-size: 110%;
  padding: 24px 24px 0;
  margin-bottom: 0;
  line-height: 1.3;
}

.story-related-teaser {
  font-size: 90%;
  padding: 0 24px;
  line-height: 1.3;
}

.body--guides {
  background-color: #272624;
}

@media (min-width: 600px) {
  .guides-all-block {
    padding: 72px 0 0 0;
  }
}

.all-guides-wrap {
  padding: 24px 0 0 0;
}
@media (min-width: 600px) {
  .all-guides-wrap {
    padding: 48px 0 72px;
    display: flex;
    flex-wrap: wrap;
  }
}

.body--banner-top .story-content-wrap {
  padding-top: 0;
}

.container--story-video-about {
  max-width: 1000px;
}

.staff-list {
  flex-wrap: wrap;
}

.staff-list-heading {
  padding-top: 24px;
}

.staff-list-each {
  text-align: center;
  line-height: 1.3;
  padding-bottom: 24px;
}

.staff-list-link {
  color: #272624;
  transition: all 0.3s linear;
}
.staff-list-link:hover, .staff-list-link:focus {
  transition: all 0.3s linear;
}

.staff-list-img {
  filter: grayscale(1);
  border-radius: 14px;
  margin: 0 0 12px 0;
  display: block;
  width: 100%;
  transition: all 0.3s linear;
}
.staff-list-img:hover, .staff-list-img:focus {
  filter: none;
  transition: all 0.3s linear;
}

.profile-img-role-wrap {
  padding-top: 36px;
  position: relative;
}
@media (min-width: 920px) {
  .profile-img-role-wrap {
    display: flex;
    align-items: center;
  }
}

.profile-img-wrap, .profile-role-wrap {
  padding-bottom: 48px;
}

.profile-img {
  max-width: 270px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.profile-role-heading {
  line-height: 1.1;
}
@media (max-width: 599px) {
  .profile-role-heading {
    font-size: 150%;
  }
}

.profile-content {
  max-width: 920px;
}

.profile-link-back {
  color: #878787;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 6px;
  padding: 12px;
}
@media (min-width: 600px) {
  .profile-link-back {
    font-size: 32px;
  }
}

.program-work-each {
  padding: 0 0 36px 0;
}
@media (min-width: 600px) {
  .program-work-each {
    display: flex;
  }
}

.program-work-each-heading {
  margin: 0 0 12px 0;
}

.program-work-each-img-wrap {
  min-width: 130px;
}
@media (min-width: 600px) {
  .program-work-each-img-wrap {
    padding-top: 6px;
  }
}
@media (min-width: 920px) {
  .program-work-each-img-wrap {
    margin-right: 24px;
  }
}

@media (min-width: 600px) {
  .form-notify-block {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 599px) {
  .form-notify-block .notify {
    margin-top: 12px;
  }
}

.contact-address-link {
  color: #ffcd36;
  word-wrap: break-word;
}
.contact-address-link:hover, .contact-address-link:focus {
  color: #cc6699;
}

@media (max-width: 599px) {
  .btn-contact {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .search-filter-block {
    padding: 24px 24px 60px 24px;
    width: 100%;
    height: 100vh;
    position: fixed;
    right: -100vw;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s linear;
    color: #fff;
    z-index: 200;
  }
}

.search-filter-block--active {
  right: 0;
  transition: all 0.2s ease-in;
}

.search-filter-title-block {
  padding: 36px 0 12px;
  border-bottom: 1px solid #f896ac;
}

.search-filter-title {
  color: #fff;
  margin: 0 0 24px 0;
  align-items: baseline;
}

.search-filter-heading {
  font-size: 140%;
  margin: 0 12px 0 0;
}
@media (min-width: 920px) {
  .search-filter-heading {
    font-size: 210%;
  }
}

.search-filter-subheading {
  font-size: 110%;
}
@media (min-width: 920px) {
  .search-filter-subheading {
    font-size: 140%;
  }
}

.filter-topics-block {
  padding: 24px 0 36px;
}
@media (min-width: 920px) {
  .filter-topics-block {
    font-size: 130%;
  }
}
@media (min-width: 1250px) {
  .filter-topics-block {
    justify-content: space-between;
  }
}

.filter-topics-each {
  color: #fff;
  display: block;
  padding: 6px 12px 12px;
  border: 1px solid transparent;
  border-radius: 42px;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .filter-topics-each {
    margin-bottom: 24px;
  }
}
.filter-topics-each:hover, .filter-topics-each:focus {
  color: #fff;
  border-color: #fff;
  outline: none;
}

.filter-topics-each--active {
  border-color: #fff;
}
.filter-topics-each--active:hover, .filter-topics-each--active:focus {
  color: #fff;
}

.input-text--search-filter {
  background-image: url("/static/images/icons/search.svg");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: right 30px center;
  border-radius: 42px;
  font-size: 90%;
  padding: 14.4px 60px 14.4px 30px;
}
@media (max-width: 919px) {
  .input-text--search-filter {
    margin-bottom: 36px;
  }
}

.btn-clear-results {
  color: #fff;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  padding: 6px 24px 6px 6px;
  display: flex;
  align-items: center;
  float: right;
}
.btn-clear-results:hover {
  color: #e4e4e4;
}

.btn-clear-results-icon {
  margin-left: 6px;
  position: relative;
  top: 1px;
}

.gallery-img-block {
  background-color: #f1efe0;
  padding: 48px 0;
}
@media (min-width: 600px) {
  .gallery-img-block {
    padding: 96px 0 0 0;
  }
}

.gallery-img-row {
  align-items: center;
}

.gallery-img-each {
  margin-bottom: 22px;
}
@media (min-width: 920px) {
  .gallery-img-each {
    padding: 0 36px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1250px) {
  .gallery-img-each {
    padding: 0 60px;
    margin-bottom: 120px;
  }
}

.gallery-img-wrap {
  color: #fff;
  line-height: 1.3;
  position: relative;
  display: block;
}
.gallery-img-wrap:hover {
  color: #fff;
}
.gallery-img-wrap:hover .gallery-img-overlay {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}
.gallery-img-wrap:hover .gallery-img-content {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}
@media (max-width: 919px) {
  .gallery-img-wrap {
    font-size: 80%;
  }
}

.gallery-img {
  border-radius: 7px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: block;
}

.gallery-img-heading {
  margin: 0;
}

.gallery-img-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.gallery-img-overlay {
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

@media (min-width: 1024px) {
  .artwork-row {
    display: flex;
    align-items: center;
  }
}

.gutter-artwork-img {
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .artwork-content {
    padding-left: 36px;
  }
}
@media (min-width: 600px) {
  .artwork-content {
    padding-left: 48px;
  }
}

.artwork-header-img-block {
  display: block;
  position: relative;
}

.artwork-header-img-icon {
  position: absolute;
  right: 12px;
  display: none;
}

.artwork-header-img {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 0 24px 0;
}
@media (min-width: 600px) {
  .artwork-header-img {
    max-height: 450px;
    width: auto;
    max-width: 600px;
  }
}
@media (min-width: 920px) {
  .artwork-header-img {
    max-height: 550px;
    max-width: 700px;
  }
}

.story-heading--artwork {
  margin-bottom: 12px;
}

.body--error {
  background-color: #f1efe0;
}
.body--error .story {
  max-width: none;
}

.page-error-block {
  padding: 36px 0 48px;
}

.page-error-heading-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.page-error-heading {
  font-size: 370%;
  padding: 0 6px 0 0;
  margin-bottom: 12px;
}

.page-error-subheading {
  color: #e54e7f;
}

.page-error-btn {
  border: none;
  background-image: linear-gradient(to right, #c93794 0%, #f16b96 45%, #f9a659 75%);
  text-transform: uppercase;
  min-width: 200px;
}
.page-error-btn:hover, .page-error-btn:focus {
  opacity: 0.8;
}

.page-error-link {
  text-transform: uppercase;
  font-size: 90%;
  font-weight: 700;
}

.quarterly-report__wrapper {
  position: relative;
}

/* Tabbing */
.tabs {
  position: relative;
  min-height: 500px; /* This part sucks */
  clear: both;
  margin: 25px 0;
}
.tab {
  float: left;
}
.tab label {
  background: #eee;
  padding: 10px;
  border: 1px solid #cc6699;
  margin-left: -1px;
  position: relative;
  left: 1px;
  cursor: pointer;
}
.tabs .tab:first-child label {
  border-top-left-radius: 14px;
}
.tabs .tab:last-child label {
  border-top-right-radius: 14px;
}
.tab [type="radio"] {
  display: none;
}
.content-tab {
  position: absolute;
  height: fit-content;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 0;
  overflow: hidden;
}
.content-tab > * {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
}
[type="radio"]:focus ~ label {
  outline: 2px solid blue;
}
[type="radio"]:checked ~ label {
  background: white;
  border-bottom: 1px solid white;
  z-index: 2;
}
[type="radio"]:checked ~ label ~ .content-tab {
  z-index: 1;
}
[type="radio"]:checked ~ label ~ .content-tab > * {
  opacity: 1;
  transform: translateX(0);
}
