@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,300&display=swap");
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

html {
  color: #7f287b;
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

html * {
  box-sizing: border-box;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

h1 {
  font-size: 1.6em;
  font-size: 400;
}

@media only screen and (min-width: 500px) {
  h1 {
    font-size: 3em;
  }
}

h2 {
  text-transform: uppercase;
  margin: 0em 0em .3em;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2;
}

h3 {
  margin: 0em 0em .3em;
  font-weight: 600;
  font-size: 1.1em;
}

h3 span {
  font-weight: 500 !important;
}

h4 {
  margin-bottom: .3em;
}

h5 {
  margin-bottom: .3em;
}

h6 {
  margin-bottom: .3em;
}

p {
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: 500;
}

a {
  color: inherit;
}

.large-text {
  font-size: 130%;
}

audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

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

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, input[type="submit"], input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: 1100px;
  max-width: 100%;
  margin: auto;
  padding: 3em .5em;
  box-sizing: border-box;
}

@media only screen and (min-width: 1100px) {
  .container {
    padding: 4em 0 3em;
  }
}

@media only screen and (min-width: 815px) {
  .container {
    padding: 3em 1em;
  }
}

@media only screen and (max-width: 500px) {
  .mobile-no-padding {
    padding-left: 0px;
    padding-right: 0px;
  }
}

header {
  position: fixed;
  width: 100vw;
  max-width: 100vw;
  z-index: 97;
}

header:after {
  content: "";
  position: absolute;
  background: linear-gradient(60deg, #7f287b 0%, #654d88 17%, #3c7b94 50%, #128d90 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 96;
  transition: opacity .2s;
}

header .container {
  display: flex;
  justify-content: space-between;
  padding: 2em 1em;
}

header .branding {
  width: 150px;
  transition: width .2s;
  position: relative;
  z-index: 97;
}

@media only screen and (min-width: 500px) {
  header .branding {
    width: 300px;
  }
}

header .branding img {
  max-width: 100%;
}

header nav {
  width: 300px;
  height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  right: -300px;
  transition: right .2s;
  z-index: 99;
  padding: 2em 0em;
  box-sizing: border-box;
}

header nav h2 {
  text-align: right;
  padding: 0 1em 1em 0;
}

header nav ul {
  list-style: none;
  margin: 0px;
}

header nav ul li a {
  text-decoration: none;
  text-align: right;
  padding: 0em 1em 1em;
  display: block;
}

header nav ul li a:hover {
  text-decoration: underline !important;
}

header nav.active {
  right: 0px;
  transition: right .2s;
}

@media only screen and (max-width: 500px) {
  header nav {
    width: 230px;
    right: -230px;
  }
}

header #shadow {
  position: fixed;
  width: 200vw;
  height: 100vh;
  top: 0;
  left: -200vw;
  background: black;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.613118) 0%, rgba(0, 0, 0, 0) 78%);
  transition: left .4s;
  z-index: 98;
}

header #shadow.active {
  left: 0px;
  transition: left .4s;
}

header .menu-button {
  z-index: 100;
  position: relative;
  right: 0;
  transition: right .2s;
  padding-top: 9px;
}

header .menu-button .bars-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
}

header .menu-button .bars-wrapper > div {
  width: 100%;
  height: 4px;
  background: white;
  display: block;
  position: absolute;
  text-indent: -9999999999999px;
  font-size: 0px;
}

header .menu-button .bars-wrapper .bar1 {
  left: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform .2s, top .2s;
}

header .menu-button .bars-wrapper .bar2 {
  left: 0;
  top: 13px;
  transition: height .2s;
}

header .menu-button .bars-wrapper .bar3 {
  left: 0;
  bottom: 0;
  transform: rotate(0deg);
  transition: transform .2s, bottom .2s;
}

header .menu-button.active .bar1 {
  left: 0;
  top: 43.5%;
  transform: rotate(45deg);
  transition: transform .2s, top .2s;
}

header .menu-button.active .bar2 {
  left: 0;
  top: 13px;
  height: 0;
  transition: height .2s;
}

header .menu-button.active .bar3 {
  left: 0;
  bottom: 43.5%;
  transform: rotate(-45deg);
  transition: transform .2s, bottom .2s;
}

@media only screen and (max-width: 1118px) {
  header .menu-button {
    right: 1px;
  }
}

@media only screen and (max-width: 500px) {
  header .menu-button {
    padding-top: 0px;
  }
}

header.sticky_header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

header.sticky_header .container {
  padding: 1em;
}

header.sticky_header:after {
  opacity: 1;
  transition: opacity .2s;
}

header.sticky_header .branding {
  width: 150px;
  transition: width .2s;
}

@media only screen and (min-width: 500px) {
  header.sticky_header .branding {
    width: 200px;
  }
}

section.cover {
  padding-top: 50px;
  max-width: 100vw;
  height: 40vh;
  min-height: 400px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media only screen and (min-width: 1100px) {
  section.cover {
    height: 60vh;
  }
}

section.cover .container {
  padding-bottom: 1.5em;
}

section.cover h1 {
  color: white;
  margin: 0;
}

section.cover.main-cover {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/home-bg.jpg");
}

@media only screen and (min-width: 1100px) {
  section.cover.main-cover {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/home-bg-desktop.jpg");
    background-position: center !important;
  }
}

section.cover.understanding-cover {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/understanding-resilience-bg.png");
}

@media only screen and (min-width: 1100px) {
  section.cover.understanding-cover {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/understanding-resilience-bg-desktop.jpg");
    background-position: center !important;
  }
}

section.cover.sos-cover {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/sos-bg.jpg");
}

@media only screen and (min-width: 1100px) {
  section.cover.sos-cover {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/sos-bg-desktop.jpg");
    background-position: center !important;
  }
}

section.cover.maintain-cover {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/maintenance-bg.png");
}

@media only screen and (min-width: 1100px) {
  section.cover.maintain-cover {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/maintenance-bg-desktop.jpg");
    background-position: center !important;
  }
}

section.cover.resources-cover {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/resources-bg.png");
}

@media only screen and (min-width: 1100px) {
  section.cover.resources-cover {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/resources-bg-desktop.jpg");
    background-position: center !important;
  }
}

section.cover.home-cover-small {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/home-bg.jpg");
}

@media only screen and (min-width: 1100px) {
  section.cover.home-cover-small {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/home-bg-desktop-small.jpg");
    background-position: center !important;
  }
}

section.stop {
  padding-top: 50px;
  max-width: 100vw;
  height: 800px;
  max-height: 60vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center;
}

section.stop h1 {
  color: white;
  margin: 0;
}

section.stop h1 span {
  font-weight: 300;
}

section.intro .container.tiles {
  padding: 0;
}

section.intro .page-tiles {
  display: flex;
}

section.intro .page-tiles > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 33.3333%;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  border-right: 4px solid white;
}

@media only screen and (max-width: 350px) {
  section.intro .page-tiles > a {
    font-size: 80%;
  }
}

section.intro .page-tiles > a img {
  width: 60px;
  padding: 5px;
  height: auto;
  display: block;
  margin: auto;
  -webkit-transition: transform 0.05s;
  -moz-transition: transform 0.05s;
  -ms-transition: transform 0.05s;
  -o-transition: transform 0.05s;
  transition: transform 0.05s;
}

section.intro .page-tiles > a img.bulb {
  width: 50px;
}

@media only screen and (min-width: 500px) {
  section.intro .page-tiles > a img {
    width: 100px;
    padding: 10px;
  }
  section.intro .page-tiles > a img.bulb {
    width: 80px;
  }
}

section.intro .page-tiles > a span {
  width: 100%;
  padding-top: 5px;
  display: block;
  font-weight: 600;
  font-size: .8em;
  -webkit-transition: transform 0.05s;
  -moz-transition: transform 0.05s;
  -ms-transition: transform 0.05s;
  -o-transition: transform 0.05s;
  transition: transform 0.05s;
}

@media only screen and (min-width: 500px) {
  section.intro .page-tiles > a span {
    font-size: 1em;
  }
}

section.intro .page-tiles > a:hover img, section.intro .page-tiles > a:hover span {
  transform: scale(1.1);
  -webkit-transition: transform 0.05s;
  -moz-transition: transform 0.05s;
  -ms-transition: transform 0.05s;
  -o-transition: transform 0.05s;
  transition: transform 0.05s;
}

section.intro .page-tiles > a:last-child {
  border-right: 0px solid white;
}

@media only screen and (min-width: 500px) {
  section.intro .page-tiles.sos-tiles img {
    padding: 20px;
  }
}

section.intro .intro-content {
  padding-top: 50px;
}

@media only screen and (min-width: 1100px) {
  section.intro .intro-content {
    padding-top: 100px;
    display: flex;
    gap: 100px;
    align-items: center;
  }
  section.intro .intro-content > * {
    width: calc(50% - 50px);
  }
}

section.intro .intro-content img {
  min-width: 100%;
}

section.green {
  background: #1d9391;
  background: linear-gradient(60deg, #7f287b 0%, #654d88 17%, #3c7b94 50%, #128d90 100%);
  background-attachment: fixed;
}

section.green h1, section.green h2, section.green h3, section.green h4, section.green h5, section.green h6, section.green p, section.green a {
  color: white;
}

@media only screen and (max-width: 815px) {
  section.green.splotch {
    background: transparent !important;
  }
}

@media only screen and (max-width: 815px) {
  section.white.splotch {
    background: #1d9391;
    background: linear-gradient(60deg, #7f287b 0%, #654d88 17%, #3c7b94 50%, #128d90 100%);
    background-attachment: fixed;
  }
}

@media only screen and (max-width: 815px) {
  .splotch-green {
    background: url("../img/green-blob.png");
    background-repeat: no-repeat;
    background-size: 140%;
    background-position: 0 0em;
  }
  .splotch-green h3 {
    color: #7f287b !important;
  }
}

@media only screen and (max-width: 500px) {
  .splotch-green {
    background-position: 0 2.5em;
    padding-top: 2em;
  }
  .splotch-green .container {
    padding-top: 2em;
  }
}

@media only screen and (max-width: 815px) {
  .splotch-green-alt {
    background: url("../img/green-blob2.png");
    background-repeat: no-repeat;
    background-size: 140%;
    background-position: 0 -2.5em;
  }
  .splotch-green-alt h3 {
    color: #7f287b !important;
  }
}

@media only screen and (max-width: 500px) {
  .splotch-green-alt {
    background-position: 0 2em;
    padding-top: 2em;
  }
  .splotch-green-alt .container {
    padding-top: 2em;
  }
}

@media only screen and (max-width: 360px) {
  .splotch-green-alt {
    background-position: 0 3.5em;
  }
}

@media only screen and (max-width: 815px) {
  .splotch-white {
    background: url("../img/white-blob.png");
    background-repeat: no-repeat;
    background-size: 140%;
    background-position: 0 0em;
  }
  .splotch-white h3 {
    color: white !important;
  }
  .splotch-white p {
    color: #7f287b !important;
  }
}

@media only screen and (max-width: 500px) {
  .splotch-white {
    background-position: 0 3em;
    padding-top: 2em;
  }
  .splotch-white .container {
    padding-top: 2em;
  }
}

@media only screen and (max-width: 360px) {
  .splotch-white {
    background-position: 0 3.5em;
  }
}

section:not(.green, .cover, .override) + section:not(.green, .cover, .override) .container {
  padding-top: 0em;
}

.bottom-text {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.two-column {
  display: block;
}

.two-column > * {
  width: 100%;
}

@media only screen and (min-width: 815px) {
  .two-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .two-column > * {
    width: calc(50% - 10px);
    display: block;
  }
}

.three-column {
  display: block;
}

.three-column > * {
  width: 100%;
}

@media only screen and (min-width: 815px) {
  .three-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .three-column > * {
    width: calc(33.3333% - 13.33333px);
    display: block;
  }
}

.four-column {
  display: block;
}

.four-column > * {
  width: 100%;
  margin: 0;
}

@media only screen and (min-width: 500px) {
  .four-column {
    display: flex;
    flex-wrap: wrap;
  }
  .four-column > * {
    width: 50%;
    display: block;
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 815px) {
  .four-column {
    display: flex;
    gap: 0px;
    flex-wrap: nowrap;
  }
  .four-column > * {
    width: 25%;
    display: block;
  }
}

.four-column.stop-list > div {
  padding: 2em 0;
}

@media only screen and (max-width: 500px) {
  .four-column.stop-list > div {
    padding: 2em 0;
  }
  .four-column.stop-list > div img {
    padding: 0;
    width: 100px;
    height: auto;
  }
}

.four-column.stop-list img {
  width: 150px;
  margin-bottom: 1.5em;
  height: auto;
}

.four-column.stop-list h3 {
  font-size: 1.5em;
  padding: 0em;
  text-transform: uppercase;
  font-weight: 200;
}

.four-column.stop-list h3 span {
  font-weight: 900;
}

.four-column.stop-list p {
  padding: 0px 1.5em;
  font-weight: 200;
}

.four-column.stop-list * {
  text-align: center;
}

.four-column.stop-list > :nth-child(odd) {
  background: linear-gradient(60deg, #7f287b 0%, #654d88 17%, #3c7b94 50%, #128d90 100%);
  background-size: 300%;
  background-position: center;
}

.four-column.stop-list > :nth-child(odd) * {
  color: white;
}

.responsive-embed {
  position: relative;
  height: 0;
  overflow: hidden;
}

.responsive-embed.ratio-16by9 {
  padding-bottom: 56.25%;
}

.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: auto !important;
}

.responsive-embed + h3 {
  margin-top: .3em;
}

.reveal {
  margin-bottom: 2em;
}

.reveal button {
  display: block;
  width: 100%;
  color: white;
  background: linear-gradient(60deg, #7f287b 0%, #654d88 17%, #3c7b94 50%, #128d90 100%);
  background-size: 200%;
  background-position: center;
  border-radius: 6px;
  padding: .5em;
  text-align: left;
  font-weight: 600;
  position: relative;
  box-sizing: border-box;
}

.reveal button:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 15px;
  height: 15px;
  border-color: white;
  border-style: solid;
  border-width: 0 3px 3px 0;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: transform 0.25s;
  -moz-transition: transform 0.25s;
  -ms-transition: transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
}

.reveal .answer {
  display: block;
  max-height: 0px;
  overflow: hidden;
  background: #ececec;
  width: 100%;
  border-radius: 0 0px 6px 6px;
  -webkit-transition: max-height 0.3s;
  -moz-transition: max-height 0.3s;
  -ms-transition: max-height 0.3s;
  -o-transition: max-height 0.3s;
  transition: max-height 0.3s;
  box-sizing: border-box;
}

.reveal .answer .answer-wrapper {
  padding: .5em;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 500px) {
  .reveal .answer .answer-wrapper {
    display: block;
  }
}

.reveal .answer * {
  color: #3c7b94;
}

.reveal .answer img {
  border-radius: 100%;
  width: 300px;
  height: auto;
  padding: 2em;
}

@media only screen and (max-width: 500px) {
  .reveal .answer img {
    display: block;
    margin: auto;
  }
}

.reveal.revealed button {
  border-radius: 6px 6px 0px 0px;
}

.reveal.revealed button:after {
  transform: translateY(-75%) rotate(45deg);
}

.reveal.revealed .answer {
  max-height: 1000px;
  -webkit-transition: max-height 0.3s;
  -moz-transition: max-height 0.3s;
  -ms-transition: max-height 0.3s;
  -o-transition: max-height 0.3s;
  transition: max-height 0.3s;
}

@media only screen and (max-width: 500px) {
  .reveal.revealed .answer {
    max-height: 1000px;
  }
}

.reveal:last-child {
  margin-bottom: 1em;
}

.green .reveal button {
  background: white;
  color: #7f287b;
}

.green .reveal button:after {
  border-color: #7f287b;
}

.green .reveal .answer {
  background: #ececec;
}

.green .reveal .answer * {
  color: #3c7b94;
}

.green .reveal.revealed button {
  border-radius: 6px 6px 0px 0px;
}

.green .reveal.revealed button:after {
  transform: translateY(-75%) rotate(45deg);
}

.green .reveal.revealed .answer {
  max-height: 1000px;
  -webkit-transition: max-height 0.3s;
  -moz-transition: max-height 0.3s;
  -ms-transition: max-height 0.3s;
  -o-transition: max-height 0.3s;
  transition: max-height 0.3s;
}

.green .reveal:last-child {
  margin-bottom: 1em;
}

.graphic-text {
  display: block;
  text-align: center;
  margin-bottom: 3em;
}

.graphic-text img {
  width: 80px;
  margin-bottom: 1em;
}

.graphic-text p {
  padding-left: 0em;
  margin-bottom: 0em;
}

.graphic-text p a {
  color: #7f287b;
}

.graphic-text strong {
  display: block;
}

@media only screen and (min-width: 815px) {
  .graphic-text img {
    width: 100px;
    padding-right: 0px;
  }
  .graphic-text p {
    padding-top: 1em;
    padding-left: 0em;
  }
  .graphic-text p a {
    display: block;
  }
}

.person {
  display: flex;
}

.person.single > :first-child {
  width: 70%;
}

@media only screen and (max-width: 500px) {
  .person.single > :first-child {
    width: 100%;
  }
}

.person.single > :last-child {
  width: 30%;
  align-self: center;
}

@media only screen and (max-width: 500px) {
  .person.single > :last-child {
    display: none;
  }
}

@media only screen and (min-width: 815px) {
  .person.single > :last-child {
    text-align: center;
  }
  .person.single > :last-child img {
    width: 120px;
  }
}

.person.double > :first-child {
  width: 60%;
}

.person.double > :last-child {
  width: 40%;
  align-self: center;
}

@media only screen and (min-width: 815px) {
  .person.double > :last-child {
    margin-top: -4em;
    text-align: center;
  }
  .person.double > :last-child img {
    width: 200px;
  }
}

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

.person.stretch > :first-child {
  width: 100%;
  margin-bottom: 1em;
}

.person.stretch > :last-child {
  width: 100%;
  align-self: center;
}

@media only screen and (min-width: 815px) {
  .person.stretch > :first-child {
    width: 50%;
  }
  .person.stretch > :last-child {
    width: 50%;
    margin-top: -4em;
    text-align: center;
  }
  .person.stretch > :last-child img {
    width: 100%;
  }
}

.slide {
  min-height: 600px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 815px) {
  .slide {
    min-height: 500px;
  }
}

@media only screen and (max-width: 500px) {
  .slide {
    min-height: 400px;
  }
}

.slide .container {
  z-index: 2;
  position: relative;
}

@media only screen and (max-width: 500px) {
  .slide .container {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.slide .quote-slide h2 {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 1em;
  color: white;
  text-transform: none;
}

@media only screen and (max-width: 815px) {
  .slide .quote-slide h2 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 500px) {
  .slide .quote-slide h2 {
    font-size: 1em;
    margin-bottom: 1em;
  }
  .slide .quote-slide h2 br {
    display: none;
  }
}

.slide .quote-slide h3 {
  font-size: 3.5em;
  font-weight: 200;
  color: white;
}

@media only screen and (max-width: 815px) {
  .slide .quote-slide h3 {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 500px) {
  .slide .quote-slide h3 {
    font-size: 1em;
  }
}

.slide:after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: black;
  opacity: 0.4;
  z-index: 1;
}

.slick-arrow {
  z-index: 90;
}

.slick-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-style: solid;
  border-color: white;
  border-width: 5px 5px 0 0;
}

@media only screen and (max-width: 500px) {
  .slick-arrow:before {
    width: 20px;
    height: 20px;
    border-width: 4px 4px 0 0;
  }
}

.slick-next {
  right: 25px;
}

@media only screen and (max-width: 500px) {
  .slick-next {
    right: 10px;
  }
}

.slick-next:before {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.slick-prev {
  left: 25px;
}

@media only screen and (max-width: 500px) {
  .slick-prev {
    left: 10px;
  }
}

.slick-prev:before {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.player {
  width: 700px;
  max-width: 100%;
  background-color: #e6e6e6;
  border-radius: 15px;
  padding: 1em;
}

.player .player-info {
  display: flex;
}

.player .player-controls {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 1em;
}

@media only screen and (max-width: 500px) {
  .player .player-controls {
    flex-direction: row;
    align-items: center;
  }
  .player .player-controls .title {
    margin: auto;
  }
}

.player .player-controls .player-title {
  text-transform: uppercase;
  color: #7f287b;
  font-weight: 900;
  text-align: left;
}

.player .player-controls .player-subtitle {
  text-transform: uppercase;
  color: #7f287b;
  font-weight: 200;
  text-align: left;
}

.player .player-img {
  position: relative;
  text-align: right;
  min-width: 115px;
  max-width: 115px;
}

.player .player-img img {
  width: 100%;
  height: auto;
}

.player > .audioplayer {
  display: none;
}

@media only screen and (max-width: 500px) {
  .player > .audioplayer {
    margin-top: 1em;
    display: flex;
  }
  .player .player-info .audioplayer {
    display: none;
  }
}

.bottom-cover {
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  max-height: 35vh;
}

@media only screen and (min-width: 500px) {
  .bottom-cover {
    background-position: 0px -35px;
  }
}

@media only screen and (min-width: 815px) {
  .bottom-cover {
    display: none;
  }
}

@media only screen and (min-width: 500px) {
  .sos-bottom {
    background-position: 0px -130px;
  }
}

footer .container {
  display: flex;
  justify-content: space-between;
  padding-top: 2em;
  padding-bottom: 2em;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

footer .container > div {
  width: 50%;
}

@media only screen and (min-width: 500px) {
  footer .container {
    padding-top: 4em;
    padding-bottom: 3em;
  }
}

footer .container .footer-logo {
  width: 220px;
  margin-bottom: 90px;
  min-height: 130px;
}

footer .container .footer-logo img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 500px) {
  footer .container .footer-logo {
    width: 170px;
    margin-bottom: 129px;
  }
}

@media only screen and (max-width: 350px) {
  footer .container .footer-logo {
    width: 130px;
    margin-bottom: 131px;
  }
}

footer .container .footer-socials {
  display: flex;
}

footer .container .footer-socials a {
  width: 30px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

@media only screen and (min-width: 500px) {
  footer .container .footer-socials a {
    width: 50px;
  }
}

footer .container .footer-socials a img {
  width: 100%;
  height: auto;
}

footer .container .footer-email {
  padding-top: 1em;
  line-height: 1;
  line-height: 1.2;
  text-transform: uppercase;
}

footer .container .footer-email .email-label {
  display: none;
}

footer .container .footer-email a {
  text-decoration: none;
}

footer .container .footer-email a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 500px) {
  footer .container .footer-email {
    text-align: center;
    padding-top: 1.5em;
    font-size: .8em;
  }
}

@media only screen and (min-width: 500px) {
  footer .container .footer-email:not(.inner-email) {
    display: none;
  }
}

footer .container .footer-email.inner-email {
  display: block;
}

@media only screen and (max-width: 500px) {
  footer .container .footer-email.inner-email {
    display: none;
  }
}

footer .container .footer-menu {
  list-style: none;
  margin: -10px 0 0 0;
}

@media only screen and (min-width: 500px) {
  footer .container .footer-menu {
    margin: -15px 0 0 0;
  }
}

footer .container .footer-menu li {
  text-align: right;
  padding: 10px 0;
  line-height: 0;
}

footer .container .footer-menu li a {
  text-decoration: none;
  color: #7f287b;
  font-size: .8em;
  line-height: 1.2;
}

@media only screen and (min-width: 500px) {
  footer .container .footer-menu li a {
    font-size: 1em;
  }
}

footer .container .footer-menu li a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
