@import url("https://use.typekit.net/ohh8oul.css");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: proxima-nova, sans-serif;
  padding-left: 240px;
  background-image: url("../img/logos-background-horizontal-v2.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 900px) {
  body {
    padding-left: 0;
    overflow-x: hidden;
  }
}

a {
  text-decoration: none;
}

.box-sizing-adjust, .box-sizing-adjust * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.location-nav {
  z-index: 500;
  width: 240px;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 5.5em 0 5em;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
  /* .nav-icon-menu */
}
.location-nav h2 {
  padding: 1em 1em 0.5em;
  font-size: 1.15em;
}
@media (max-width: 900px) {
  .location-nav {
    left: -240px;
    padding-top: 3em;
  }
}
.location-nav .nav-icon-menu {
  width: 36px;
  position: absolute;
  right: 8px;
  top: 12px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media all and (max-width: 900px) {
  .location-nav .nav-icon-menu {
    display: block;
  }
}

/* .location-nav */
.location-buttons {
  padding: 0 1em 5em;
  margin: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* li */
}
.location-buttons li {
  background: #f2f2f2;
  width: 100%;
  display: block;
  margin: 0 0 0.3em 0;
  /* transition:0.5s background ease, 0.5s color ease; */
  color: #000;
  font-weight: 700;
  font-size: 0.9em;
  list-style: none;
}
.location-buttons li.button-active {
  background: #C01B3B;
}
.location-buttons li.button-active a {
  color: #fff;
}
.location-buttons li a {
  text-decoration: none;
  color: #000;
  width: 100%;
  display: block;
  padding: 0.5em;
}
.location-buttons li:hover {
  background: #C01B3B;
  color: #fff;
}
.location-buttons li:hover a {
  color: #fff;
}
@media (max-width: 900px) {
  .location-buttons {
    padding-bottom: 5em;
  }
}

/* .location-buttons */
.button-active {
  background: #C01B3B;
  color: #fff;
}

.nav-parent {
  width: 100vw;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
  height: 80px;
  padding-left: 10px;
  /* .logo */
  /* .nav-ul */
  /* .nav-icon-menu */
  /* .nav-icon-locations */
}
@media all and (max-width: 900px) {
  .nav-parent {
    height: 60px;
  }
}
@media all and (max-width: 600px) {
  .nav-parent {
    height: 60px;
    padding-left: 0;
  }
}
.nav-parent .logo {
  padding: 0.5em 0 0 0.5em;
  width: 150px;
  height: 80px;
  margin-right: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.nav-parent .logo.logo-zi img {
  border-left: 1px solid #d8d7d7;
  padding-left: 15px;
}
.nav-parent .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media all and (max-width: 900px) {
  .nav-parent .logo {
    height: 50px;
    width: 100px;
    padding-top: 0;
  }
}
.nav-parent .nav-ul {
  /* .nav-ul min-width */
  /* .nav-ul max-width */
}
@media all and (min-width: 901px) {
  .nav-parent .nav-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
    /* li */
  }
  .nav-parent .nav-ul li {
    /* fluid typography code */
    --minNavFontSize: 10px;
    --maxNavFontSize: 16px;
    --navFontScaler: 0.9vw;
    font-size: clamp(var(--minNavFontSize), var(--navFontScaler), var(--maxNavFontSize));
    /* END fluid typography code */
    border-left: 1px solid #d8d7d7;
    list-style: none;
    font-weight: 700;
    text-align: center;
    width: 100%;
    line-height: 120%;
    /* &.button-active a */
  }
  .nav-parent .nav-ul li a {
    text-decoration: none;
    color: #000;
    height: 75px;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 1em;
    border-bottom: 5px solid #fff;
  }
  .nav-parent .nav-ul li a:hover {
    background-color: #C01B3B;
    color: #fff;
    border-color: #621a21;
  }
  .nav-parent .nav-ul li.button-active a {
    background-color: #C01B3B;
    color: #fff;
    border-color: #C01B3B;
  }
  .nav-parent .nav-ul li.button-active a:hover {
    border-color: #621a21;
  }
}
@media all and (max-width: 900px) {
  .nav-parent .nav-ul {
    height: 100vh;
    width: 260px;
    background: #fff;
    position: fixed;
    right: -260px;
    top: 0;
    -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding-top: 4em;
    z-index: 800;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    /* li */
  }
  .nav-parent .nav-ul li {
    list-style: none;
  }
  .nav-parent .nav-ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    width: 100%;
    padding: 1em;
    border-bottom: none;
  }
}
.nav-parent .nav-icon-menu {
  width: 36px;
  position: absolute;
  top: 12px;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-parent .nav-icon-menu:not(.nav-close) {
  left: 20px;
}
.nav-parent .nav-icon-menu.nav-close {
  right: 20px;
}
@media all and (max-width: 900px) {
  .nav-parent .nav-icon-menu {
    display: block;
  }
}
.nav-parent .nav-icon-locations {
  width: 36px;
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}
@media all and (max-width: 900px) {
  .nav-parent .nav-icon-locations {
    display: block;
  }
}

/* .nav-parent */
.nav-tint {
  width: 100vw;
  min-height: 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  display: none;
}
.nav-tint.nav-tint-right {
  z-index: 600;
}
.nav-tint.nav-tint-left {
  z-index: 400;
}

/* nav-tint */
body {
  /* media query */
}
@media all and (max-width: 900px) {
  body {
    /* .nav-active */
    /* .location-nav-active */
  }
  body.nav-active {
    overflow-y: hidden;
  }
  body.nav-active .nav-tint-right {
    display: block;
  }
  body.nav-active .nav-parent .nav-ul {
    right: 0;
  }
  body.location-nav-active {
    overflow-y: hidden;
  }
  body.location-nav-active .nav-parent {
    z-index: 0;
  }
  body.location-nav-active .nav-tint-left {
    display: block;
  }
  body.location-nav-active .location-nav {
    left: 0;
  }
}

/* body class change for menus */
.location-nav-us {
  padding-top: 6.75em;
  /* a.breadcrumb */
}
@media all and (max-width: 600px) {
  .location-nav-us {
    padding-top: 4em;
  }
}
.location-nav-us a.breadcrumb {
  color: #C01B3B;
  font-size: 0.9em;
  padding: 0 0 0 1.25em;
}
.location-nav-us a.breadcrumb svg {
  width: 8px;
  margin-right: 3px;
  display: inline-block;
}
.location-nav-us a.breadcrumb:hover {
  color: #54565b;
}
.location-nav-us a.breadcrumb:hover svg polygon {
  fill: #54565b !important;
}

/* .location-nav-us */
/* BEGIN: NEW SEPARATE PAGES FOR PROGRAM DESCRIPTIONS
****************************************************/
body.story-page {
  background: #fff;
  padding: 0;
} /* .story-page */
body.page-story-new {
  background-image: none;
}

.story-container {
  min-height: 100vh;
  padding: 7em 2em 0;
  /* a.breadcrumb */
  /* .story-content */
}
.story-container a.breadcrumb {
  color: #C01B3B;
  font-size: 0.9em;
  margin-bottom: 1em;
  display: block;
}
.story-container a.breadcrumb svg {
  width: 8px;
  height: 100%;
  margin-right: 3px;
}
.story-container a.breadcrumb:hover {
  color: #54565b;
}
.story-container a.breadcrumb:hover svg polygon {
  fill: #54565b !important;
}
.story-container h1.story-main-h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  line-height: 120%;
}
@media (max-width: 600px) {
  .story-container h1.story-main-h1 {
    font-size: 2.5em;
    margin-bottom: 0;
  }
}
.story-container .story-content {
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.story-container .story-content:not(:last-of-type) {
  border-bottom: 1px solid #d8d7d7;
}

/* .story-container */
/* END: NEW SEPARATE PAGES FOR PROGRAM DESCRIPTIONS
****************************************************/
.story-content::after {
  clear: both;
  content: "";
  display: block;
  width: 100%;
}
.story-content h1, .story-content h2, .story-content h3, .story-content h4 {
  color: #000;
  line-height: 140%;
}
.story-content h1 {
  margin-bottom: 0.5em;
  line-height: 120%;
}
@media (max-width: 600px) {
  .story-content h1 {
    font-size: 1.5em;
    margin-top: 1.5em;
  }
}
.story-content h2, .story-content h3, .story-content h4 {
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 120%;
}
@media (max-width: 600px) {
  .story-content h2, .story-content h3, .story-content h4 {
    font-size: 1em;
  }
}
.story-content h4 {
  font-style: italic;
}
.story-content p {
  font-size: 1em;
  line-height: 150%;
  margin-bottom: 1.5em;
}
@media (min-width: 981px) {
  .story-content p {
    padding-right: 320px;
  }
}
@media (max-width: 600px) {
  .story-content p {
    font-size: 0.85em;
  }
}
.story-content p:first-of-type {
  margin-top: 2em;
}
.story-content p a {
  color: #C01B3B;
  font-weight: 700;
}
.story-content ul {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
.story-content ul li {
  font-size: 1em;
  line-height: 150%;
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  .story-content ul li {
    font-size: 0.85em;
  }
}
.story-content ul li a {
  color: #C01B3B;
  font-weight: 700;
}
.story-content .story-img {
  float: right;
  width: 300px;
  height: 200px;
  padding: 10px 0 30px 20px;
}
.story-content .story-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.story-content .story-img img.qpp-logo {
  width: 100px;
}
.story-content--no-logo p {
  padding-right: 0;
}
.story-content--no-logo .story-img {
  display: none;
}
@media (max-width: 600px) {
  .story-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .story-content h1, .story-content h2, .story-content h3, .story-content h4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .story-content p, .story-content ul {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .story-content .story-img {
    max-width: 100%;
    margin: 1em auto 0;
    padding: 0;
    float: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .story-content .ext-link {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .story-content .ext-link:not(:first-of-type) {
    margin-top: 1em;
  }
}

/* .story-content */
.pages-top-level {
  /* .metrics-container */
}
.pages-top-level .story-content {
  padding: 1em 2em;
  /* .story-content */
}
.pages-top-level .story-content .metrics-container {
  height: 0;
  padding-top: 73%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pages-top-level .story-content .metrics-container video {
  width: 101% !important;
  height: auto !important;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 600px) {
  .pages-top-level .story-content p, .pages-top-level .story-content ul, .pages-top-level .story-content .story-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* .pages-top-level */
.map-trigger {
  cursor: pointer;
}
.map-trigger path, .map-trigger polygon {
  fill: #898A8D;
  /* transition:0.5s fill ease; */
  position: relative;
}
.map-trigger:hover path, .map-trigger:hover polygon {
  fill: #C01B3B;
}

/* .map-trigger */
.map-area {
  width: 100%;
}

.country-active * {
  fill: #C01B3B !important;
}

.panzoom-outer {
  height: 100vh;
}

.page-global .panzoom-inner #map-container {
  margin-top: 8em;
}

.page-us .panzoom-inner #map-container {
  margin-top: 3em;
}
@media (max-width: 600px) {
  .page-us .panzoom-inner #map-container {
    margin-top: 6em;
  }
}

.panzoom-buttons {
  margin-top: 0;
  position: fixed;
  top: 6.5em;
  left: 260px;
  font-family: sans-serif;
  /* button */
}
@media (max-width: 600px) {
  .panzoom-buttons {
    left: 1em;
    top: 5em;
  }
}
.panzoom-buttons button {
  border: none;
  line-height: 100%;
  background: #C01B3B;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1em;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  width: 28px;
  height: 28px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}
.panzoom-buttons button svg {
  width: 100%;
  height: 100%;
  max-width: 13px;
}

/* .panzoom-buttons */
.tooltip {
  background: #fff;
  padding: 5px 10px;
  position: fixed;
  display: none;
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  font-size: 0.9em;
  font-weight: 700;
  color: #C01B3B;
  white-space: nowrap;
  text-align: center;
}
.tooltip.tooltip-visible {
  display: block;
}

/* tooltip */
.page-us .tooltip {
  font-size: 1.15em;
}

#states *.on, #states #PR.on path {
  fill: #C01B3B;
}

.list-of-states li.on {
  background: #C01B3B;
  color: #fff;
}

.svg-states path, .svg-states circle {
  -webkit-transition: 0.5s fill ease;
  transition: 0.5s fill ease;
}
.svg-states .map-trigger {
  cursor: pointer;
  fill: #898A8D;
}
.svg-states .map-trigger:hover {
  fill: #C01B3B;
}
.svg-states #PR path {
  fill: #999 !important;
}
.svg-states #PR:hover path {
  fill: #C01B3B !important;
}

/* .svg-states */
#PR.on path {
  fill: #C01B3B !important;
}

html.modal-active body {
  /* overflow:hidden; */
}

.metrics-img {
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .metrics-img.desktop-show {
    display: none;
  }
}
@media (min-width: 601px) {
  .metrics-img.mobile-show {
    display: none;
  }
}
.metrics-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-bg {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  overflow: auto;
  padding: 20px 0 20px;
}
.modal-bg.modal-active {
  display: block;
  z-index: 99999;
}

/* .modal-bg */
.modal-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  padding: 20px 20px 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 800px) {
  .modal-scroll {
    padding-bottom: 200px;
  }
}

.modal-inner {
  width: 800px;
  max-width: 100%;
  background: #fff;
  padding: 30px 30px 10px;
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.modal-inner p {
  margin: 0 0 1.5em 0;
  line-height: 130%;
}
@media (max-width: 600px) {
  .modal-inner p {
    font-size: 0.85em;
  }
}
@media (max-width: 600px) {
  .modal-inner li {
    font-size: 0.85em;
  }
}

/* .modal-inner */
.modal-logo {
  max-width: 100%;
  margin: 0 auto 1em;
  display: block;
} /* .modal-logo */
.modal-btn-wrap {
  text-align: center;
  display: block;
  margin: 30px 0 40px;
  /* .proceed, .cancel */
}
.modal-btn-wrap .proceed, .modal-btn-wrap .cancel {
  border: none;
  background: #C01B3B;
  color: #fff;
  padding: 10px 20px;
  margin: 0 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  font-size: 1em;
  font-family: proxima-nova, sans-serif;
  -webkit-transition: 0.5s background ease;
  transition: 0.5s background ease;
}
.modal-btn-wrap .proceed:hover, .modal-btn-wrap .cancel:hover {
  background: #203662;
  color: #fff;
}
@media (max-width: 600px) {
  .modal-btn-wrap .proceed, .modal-btn-wrap .cancel {
    font-size: 0.85em;
  }
}

/* .modal-intro-btn-wrap */
.modal-btn {
  border: none;
  background: #C01B3B;
  color: #fff;
  padding: 10px 20px;
  max-width: 100%;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  font-size: 1.15em;
  -webkit-transition: 0.5s background ease;
  transition: 0.5s background ease;
}
.modal-btn:hover {
  background: #203662;
  color: #fff;
}
@media (max-width: 600px) {
  .modal-btn {
    font-size: 0.85em;
  }
}

/* .modal-intro-btn */
.ext-link {
  border: none;
  padding: 10px 30px;
  color: #fff;
  background: #C01B3B;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.5s background ease;
  transition: 0.5s background ease;
  font-size: 1.05em;
}
.ext-link:not(:first-of-type) {
  margin-left: 1em;
}
.ext-link:hover {
  background: #203662;
  color: #fff;
}
@media (max-width: 600px) {
  .ext-link {
    font-size: 0.85em;
  }
  .ext-link:not(:first-of-type) {
    margin-left: 0;
  }
}
.ext-link.logo-link {
  background: none !important;
  width: 100%;
  margin-left: 0;
}
.ext-link.logo-link p {
  color: #C01B3B;
  font-size: 0.85rem;
  width: 100%;
  margin: 0 0 1em;
  padding: 0;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.ext-link.logo-link p:hover {
  color: #203662;
  text-decoration: underline;
}

/* .ext-link */
.ext-modal-bg h2 {
  color: #C01B3B;
  margin: 0 0 1.15em 0;
  line-height: 110%;
}

/* .ext-modal-bg */
footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
footer p {
  padding: 1.5em 1em 1.5em 2.5em;
  font-size: 0.8rem;
}
footer p a {
  color: #203662;
  border-right: 1px solid #898A8D;
  padding-right: 0.35em;
  font-weight: 700;
}
@media (max-width: 860px) {
  footer p {
    padding: 1.25em 1em 1.25em 3em;
    font-size: 0.65rem;
  }
}

body.page-story-new footer {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.impact-page .img-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFFFFF;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1.5px solid #C50f3C;
  margin-top: 30px;
}
.impact-page .img-separator .bg-img {
  font-size: 75%;
  font-weight: 700;
  position: absolute;
  background-size: contain;
  padding: 0.125rem 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #C50f3C;
  background-image: url(../../img/banner-bg-left.svg), url(../../img/banner-bg-right.svg);
  background-position: left center, right center;
}
@media screen and (min-width: 576px) {
  .impact-page .img-separator .bg-img {
    font-size: 80%;
  }
}
@media screen and (min-width: 768px) {
  .impact-page .img-separator .bg-img {
    font-size: 150%;
    padding: 0.125rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .impact-page .img-separator .bg-img {
    font-size: 218%;
    padding: 0.125rem 3.125rem;
  }
}
.impact-page .gl-mb-10 {
  margin-bottom: 10px;
}
.impact-page .gl-mb-20 {
  margin-bottom: 20px;
}
.impact-page .gl-mb-30 {
  margin-bottom: 30px;
}
.impact-page .gl-mb-40 {
  margin-bottom: 40px;
}
.impact-page .gl-mb-50 {
  margin-bottom: 50px;
}
.impact-page .gl-pb-20 {
  padding-bottom: 20px;
}
.impact-page .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.impact-page .slick-prev::before,
.impact-page .slick-next::before {
  content: "";
}
.impact-page .slick-prev,
.impact-page .slick-next {
  z-index: 2;
  height: calc(100% - 16px);
}
.impact-page .slick-next::before {
  content: url(../../img/caret-right-arrow.svg);
}
.impact-page .slick-prev::before {
  content: url(../../img/caret-left-arrow.svg);
}
.impact-page .slick-list {
  margin-right: -30px;
  margin-left: -30px;
}
.impact-page .slick-slide {
  height: auto;
  position: relative;
  margin: 0px 10px 16px 10px;
  padding: 0px 20px 10px 20px;
  background-color: #F2F2F2;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  /* @media screen and (max-width: 991.98px) {
  	&.slick-active.slick-current + .slick-slide {
  		position: relative;
  		&::before {
  			content: "";
  			position: absolute;
  			top: 0;
  			left: 0;
  			right: 0;
  			bottom: 0;
  			z-index: 1;
  			background-color: rgba(0, 0, 0, 0.4);
  		}
  	}
  }
  @media screen and (min-width: 992px) {
  	&.slick-active.slick-current + .slick-active + .slick-slide {
  		position: relative;
  		&::before {
  			top: 0;
  			left: 0;
  			right: 0;
  			bottom: 0;
  			z-index: 1;
  			content: "";
  			position: absolute;
  			background-color: rgba(0, 0, 0, 0.4);
  		}
  	}
  } */
}
.impact-page .slick-slide img {
  width: 100%;
}
.impact-page .slick-slide.slick-slide:not(.slick-active) {
  position: relative;
}
.impact-page .slick-slide.slick-slide:not(.slick-active)::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
.impact-page .slick-current {
  opacity: 1;
  background-color: #C50f3C;
}
.impact-page .slick-current::after {
  left: 0;
  right: 0;
  height: 0;
  top: 100%;
  content: "";
  margin: auto;
  bottom: -16px;
  position: absolute;
  width: 0 !important;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #C50f3C;
}
.impact-page .card-header {
  line-height: 1;
  font-size: 14px;
  padding: 20px 0px 24px;
  height: 2rem;
}
@media screen and (min-width: 900px) and (max-width: 1200px) {
  .impact-page .card-header {
    height: 2.5rem;
  }
}
.impact-page .card-header .title,
.impact-page .card-header .desc {
  display: block;
}
.impact-page .card-header .title {
  font-weight: bold;
}
.impact-page .card-footer {
  padding: 24px 0px 22px;
  font-size: 14px;
}
.impact-page .slick-current .card-header,
.impact-page .slick-current .card-footer {
  color: #FFFFFF;
}
.impact-page .content-wrapper {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 28px 10px 22px 30px;
  border: 1px solid #C50f3C;
}
.impact-page .content-wrapper .card-content {
  display: none;
}
.impact-page .content-wrapper .section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #C50f3C;
  margin-bottom: 10px;
}
.impact-page ul {
  list-style-position: inside;
}
.impact-page .based-on-self-repo {
  text-align: center;
  font-family: LucidaGrande;
  font-size: 11px;
  color: #000;
  font-style: italic;
}
.impact-page .alert-zeroing-in {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 10px 25px;
  line-height: 1.25;
  color: #000;
}