/* 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, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, 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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.color-blue {
  color: #110755;
}

.color-neon-blue {
  color: #00FFCC;
}

.color-light-blue {
  color: #0090FB;
}

h1 {
  font-size: 8vw;
}
@media (min-width: 768px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 6vw;
}
@media (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 5vw;
}
@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 4vw;
}
@media (min-width: 768px) {
  h4 {
    font-size: 14px;
  }
}

nav {
  position: relative;
  width: 100vw;
  background-color: white;
  z-index: 10;
  transition: color 0.3s ease, background-color 0.3s ease;
}
nav.nav-open {
  background-color: #110755;
}
nav.nav-open .content {
  border-bottom: 1px solid white;
}
nav.nav-open .content #logo img.closed {
  opacity: 0;
  position: absolute;
}
nav.nav-open .content #logo img.open {
  opacity: 1;
  position: absolute;
  pointer-events: all;
}
nav.nav-open .content .hamburger.is-active:hover {
  opacity: 1;
}
nav.nav-open .content .hamburger.is-active .hamburger-inner, nav.nav-open .content .hamburger.is-active .hamburger-inner::before, nav.nav-open .content .hamburger.is-active .hamburger-inner::after {
  background-color: white;
}
nav.scrolled {
  position: fixed;
  background-color: #110755;
}
nav.scrolled .content #logo img.closed {
  opacity: 0;
  position: absolute;
}
nav.scrolled .content #logo img.open {
  opacity: 1;
  position: relative;
}
nav.scrolled .content .desktop .header-links li a {
  color: white;
}
nav.scrolled .content .desktop .header-socials li {
  background-color: white;
}
nav.scrolled .content .desktop .header-socials li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
nav.scrolled .content .desktop .header-socials li a img {
  height: 10px;
  position: absolute;
}
@media (min-width: 1100px) {
  nav.scrolled .content .desktop .header-socials li a img {
    height: 15px;
  }
}
nav.scrolled .content .desktop .header-socials li a img.fb {
  height: 15px;
}
nav.scrolled .content .desktop .header-socials li a img.white {
  display: none;
}
nav.scrolled .content .desktop .header-socials li a img.blue {
  display: block;
}
nav.scrolled .content .hamburger .hamburger:hover {
  opacity: 1;
}
nav.scrolled .content .hamburger-inner {
  background-color: white;
}
nav.scrolled .content .hamburger-inner:before {
  background-color: white;
}
nav.scrolled .content .hamburger-inner:after {
  background-color: white;
}
nav .content {
  width: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  width: 100%;
}
@media (min-width: 768px) {
  nav .content {
    justify-content: space-between;
    padding: 20px 30px;
  }
}
nav .content #logo {
  height: 52px;
  z-index: 5;
}
@media (min-width: 768px) {
  nav .content #logo {
    height: 40px;
  }
}
@media (min-width: 1100px) {
  nav .content #logo {
    height: 52px;
  }
}
nav .content #logo a {
  position: relative;
}
nav .content #logo img {
  height: 52px;
}
nav .content #logo img.closed {
  position: absolute;
  opacity: 1;
}
@media (min-width: 768px) {
  nav .content #logo img.closed {
    position: relative;
  }
}
nav .content #logo img.open {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
nav .content #hamburger {
  display: block;
  z-index: 4;
  outline: none;
  opacity: 1;
}
@media (min-width: 768px) {
  nav .content #hamburger {
    display: none;
  }
}
nav .content .desktop {
  display: none;
}
@media (min-width: 768px) {
  nav .content .desktop {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
nav .content .desktop .header-links {
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  margin: 0 20px;
}
nav .content .desktop .header-links li a {
  color: #110755;
  transition: 0.3s ease;
  font-size: 10px;
}
@media (min-width: 1100px) {
  nav .content .desktop .header-links li a {
    font-size: 16px;
  }
}
nav .content .desktop .header-links li:hover a, nav .content .desktop .header-links li.active a {
  color: #0090FB;
}
nav .content .desktop ul.header-socials {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav .content .desktop ul.header-socials li {
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  margin: 8px;
  background-color: #110755;
  transition: 0.3s ease;
}
@media (min-width: 1100px) {
  nav .content .desktop ul.header-socials li {
    width: 40px;
    height: 40px;
  }
}
nav .content .desktop ul.header-socials li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
nav .content .desktop ul.header-socials li a img {
  height: 10px;
  position: absolute;
}
@media (min-width: 1100px) {
  nav .content .desktop ul.header-socials li a img {
    height: 15px;
  }
}
nav .content .desktop ul.header-socials li a img.white {
  display: block;
}
nav .content .desktop ul.header-socials li a img.blue {
  display: none;
}
nav .content .desktop ul.header-socials li.yt a img {
  position: relative;
  left: 1px;
}
nav .content .desktop ul.header-socials li.fb a img {
  height: 20px;
}
@media (min-width: 1100px) {
  nav .content .desktop ul.header-socials li.fb a img {
    height: 30px;
    width: auto;
  }
}
nav .content .desktop ul.header-socials li:hover {
  background-color: #0090FB;
}
nav .content .desktop ul.header-socials p {
  min-width: 100%;
  text-align: center;
  color: white;
  margin: 25px 0;
  font-size: 3.5vw;
}
nav #mobileNav {
  background-color: #110755;
  color: white;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.3s ease;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  nav #mobileNav {
    display: none;
  }
}
nav #mobileNav.open {
  transform: translateX(0);
}
nav #mobileNav .header-links {
  text-align: right;
  width: 100%;
}
nav #mobileNav .header-links li {
  margin: 10% 5vw;
}
nav #mobileNav .header-links li a {
  color: white;
  font-size: 5vw;
}
nav #mobileNav ul.header-socials {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding-left: 10px;
  padding-top: 90px;
}
nav #mobileNav ul.header-socials li {
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  margin: 8px;
  background-color: white;
  transition: 0.3s ease;
}
@media (min-width: 1100px) {
  nav #mobileNav ul.header-socials li {
    width: 40px;
    height: 40px;
  }
}
nav #mobileNav ul.header-socials li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav #mobileNav ul.header-socials li a img {
  height: 12px;
}
@media (min-width: 1100px) {
  nav #mobileNav ul.header-socials li a img {
    height: 15px;
  }
}
nav #mobileNav ul.header-socials li.yt a img {
  position: relative;
  left: 1px;
}
nav #mobileNav ul.header-socials li.fb a img {
  height: 14px;
}
@media (min-width: 1100px) {
  nav #mobileNav ul.header-socials li.fb a img {
    height: 30px;
    width: auto;
  }
}
nav #mobileNav ul.header-socials li:hover {
  background-color: #0090FB;
}
nav #mobileNav ul.header-socials p {
  min-width: 100%;
  text-align: center;
  color: white;
  margin: 25px 0;
  font-size: 3.5vw;
}

.nav-placeholder {
  display: none;
}
.nav-placeholder.scrolled {
  display: block;
  height: 96px;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 4px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#home .video {
  height: 70vh;
  background-color: #666666;
  position: relative;
  overflow: hidden;
}
#home .video a video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity: 0.8;
}
#home .video a .video-text {
  text-align: center;
  position: relative;
  color: white;
  font-weight: bold;
  font-size: 13vw;
  line-height: 1.25;
  bottom: -40vh;
}
@media (min-width: 500px) {
  #home .video a .video-text {
    font-size: 7vw;
    bottom: -75%;
  }
}
@media (min-width: 768px) {
  #home .video a .video-text {
    font-size: 5vw;
    bottom: 50px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }
}
#home .message {
  background-color: #110755;
  color: white;
  text-align: center;
  padding: 10px 20px 50px;
  position: relative;
}
@media (min-width: 768px) {
  #home .message {
    padding: 7vw 20px 9vw;
    min-height: 450px;
  }
}
#home .message .white-triangle {
  display: none;
}
@media (min-width: 768px) {
  #home .message .white-triangle {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  #home .message .white-triangle.bottom {
    top: unset;
    bottom: -1px;
    transform: scaleY(-1);
  }
}
#home .message h1 {
  font-weight: bold;
  margin: 50px 0;
  z-index: 2;
  position: relative;
  z-index: 2;
}
#home .message .text {
  line-height: 2.5;
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0 auto;
  font-size: 5vw;
}
@media (min-width: 768px) {
  #home .message .text {
    max-width: 650px;
    font-size: 24px;
  }
}
#home .mission {
  color: #110755;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
}
#home .mission h1 {
  border-bottom: 4px solid #0090FB;
  padding: 20px;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  width: 75%;
}
@media (min-width: 768px) {
  #home .mission h1 {
    width: unset;
  }
}
#home .mission .mission-copy {
  margin: 30px;
  line-height: 2;
}
@media (min-width: 768px) {
  #home .mission .mission-copy {
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-size: 24px;
  }
}
#home .mission-links {
  position: relative;
  width: 80%;
  margin: 0 auto 20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #home .mission-links {
    display: flex;
    justify-content: space-between;
    width: 94%;
    max-width: 1400px;
  }
}
#home .mission-links .mission-link {
  width: 100%;
  background-color: #110755;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 30px;
}
#home .mission-links .mission-link.one, #home .mission-links .mission-link.two, #home .mission-links .mission-link.three, #home .mission-links .mission-link.four {
  transform: translateY(50px);
  opacity: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link {
    width: 24%;
  }
}
#home .mission-links .mission-link .mission-title {
  color: white;
  padding: 0 20px 10px;
  border-bottom: 4px solid #00FFCC;
  background-color: #110755;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link .mission-title {
    font-size: 2vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1500px) {
  #home .mission-links .mission-link .mission-title {
    font-size: 30px;
  }
}
#home .mission-links .mission-link .mission-title h2 {
  line-height: 0.9;
  font-size: 8vw;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link .mission-title h2 {
    font-size: 2vw;
  }
}
@media (min-width: 1500px) {
  #home .mission-links .mission-link .mission-title h2 {
    font-size: 30px;
  }
}
#home .mission-links .mission-link .wrapper {
  width: 100%;
  height: 300px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link .wrapper {
    height: 23vw;
    max-height: 340px;
  }
}
#home .mission-links .mission-link .wrapper .image {
  width: 100%;
}
#home .mission-links .mission-link .wrapper .link {
  margin-top: -56px;
}
#home .mission-links .mission-link .wrapper .link a {
  color: white;
  text-decoration: none;
  font-size: 6vw;
}
#home .mission-links .mission-link .wrapper .btn {
  -ms-transform: skewX(-12deg);
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link .wrapper .btn {
    margin-bottom: 14px;
  }
}
#home .mission-links .mission-link .wrapper .btn button {
  background-color: transparent;
  border: 2px solid #00FFCC;
}
#home .mission-links .mission-link .wrapper .btn button:hover {
  border: 2px solid white;
}
#home .mission-links .mission-link .wrapper .btn button .btn-text {
  -ms-transform: skewX(12deg);
  -webkit-transform: skewX(12deg);
  transform: skewX(12deg);
  padding: 10px;
  color: white;
  font-size: 6vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  #home .mission-links .mission-link .wrapper .btn button .btn-text {
    font-size: 1.75vw;
  }
}
@media (min-width: 1500px) {
  #home .mission-links .mission-link .wrapper .btn button .btn-text {
    font-size: 24px;
  }
}
#home .mission-bottom {
  text-align: center;
  background-color: #0090FB;
  height: 390px;
  padding-top: 200px;
  margin-top: -230px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #home .mission-bottom {
    height: 400px;
    max-height: 460px;
    margin-top: -180px;
  }
}
#home .mission-bottom-text {
  color: white;
  font-weight: bold;
  font-size: 8vw;
  margin: 40px 0;
}
@media (min-width: 768px) {
  #home .mission-bottom-text {
    font-size: 44px;
    margin: 10px 0 40px;
  }
}
#home .mission-bottom-link {
  color: #110755;
  padding: 12px 50px;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: #00FFCC;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #home .mission-bottom-link:hover {
    background-color: #110755;
    color: white;
  }
}
#home .recent-work {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #home .recent-work {
    display: flex;
    align-items: center;
  }
}
#home .recent-work .header {
  background-color: #00FFCC;
  padding: 50px 20px 100px;
  margin-bottom: -60px;
  text-align: center;
  transform: translateX(-100%);
  opacity: 0;
}
@media (min-width: 768px) {
  #home .recent-work .header {
    padding: 50px 20px;
    width: 32%;
    margin-right: 5vw;
    margin-bottom: unset;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  }
}
#home .recent-work .header h1 {
  font-size: 8vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  #home .recent-work .header h1 {
    font-size: 44px;
    width: 200px;
    line-height: 1.5;
    text-align: right;
    margin: 0 80px 0 auto;
  }
}
@media (min-width: 768px) {
  #home .recent-work .articles {
    margin-right: 40px;
  }
}
#home .recent-work .articles a {
  color: black;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  transition: color 0.3s ease;
  position: relative;
  transform: translateX(-100%);
}
#home .recent-work .articles a:hover {
  color: #0090FB;
}
#home .recent-work .articles a .article:hover .article-content hr {
  width: 100%;
}
#home .recent-work .articles a .article .article-content {
  padding: 10px 25px 20px;
}
#home .recent-work .articles a .article .article-content .date {
  font-size: 4vw;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  #home .recent-work .articles a .article .article-content .date {
    font-size: 14px;
  }
}
#home .recent-work .articles a .article .article-content .title {
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #home .recent-work .articles a .article .article-content .title {
    font-size: 20px;
    line-height: 1;
  }
}
@media (min-width: 1065px) {
  #home .recent-work .articles a .article .article-content .title {
    font-size: 22px;
  }
}
#home .recent-work .articles a .article .article-content hr {
  width: 66%;
  height: 8px;
  background-color: #00FFCC;
  display: block;
  margin: 10px auto 15px 0;
  border: 0;
  transition: 0.3s all ease;
}

#signup {
  background-color: #F5F7F8;
  padding: 20px;
}
@media (min-width: 768px) {
  #signup {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  #signup .content {
    display: flex;
  }
}
#signup .content .text {
  text-align: center;
  width: 80%;
  margin: 20px auto;
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #signup .content .text {
    font-size: 24px;
    text-align: left;
    max-width: 800px;
    margin: 20px 20px 20px 0;
  }
}
@media (min-width: 768px) {
  #signup .content #mc_embed_signup {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  #signup .content form #mc_embed_signup_scroll {
    display: flex;
    align-items: center;
    width: 550px;
  }
}
#signup .content form #email, #signup .content form #mce-EMAIL {
  display: block;
  width: 90%;
  margin: 0 auto;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #666666;
  padding-left: 20px;
}
@media (min-width: 768px) {
  #signup .content form #email, #signup .content form #mce-EMAIL {
    margin: 0 10px;
  }
}
#signup .content form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666666;
  opacity: 1; /* Firefox */
  letter-spacing: 2px;
}
#signup .content form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #666666;
  letter-spacing: 2px;
}
#signup .content form ::-ms-input-placeholder { /* Microsoft Edge */
  color: #666666;
  letter-spacing: 2px;
}

#submit, #mc-embedded-subscribe, .generic-btn {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 350ms ease-in-out;
  -webkit-appearance: none;
}
#submit:hover, #mc-embedded-subscribe:hover, .generic-btn:hover {
  background-color: rgba(0, 255, 204, 0.6);
}

footer#footer {
  padding: 50px 0 0;
}
footer#footer #logo {
  width: 125px;
  margin: 0 auto 30px;
  display: block;
}
footer#footer #logo img {
  width: 100%;
}
footer#footer ul.footer-links {
  margin: 30px 0;
}
@media (min-width: 768px) {
  footer#footer ul.footer-links {
    display: flex;
    justify-content: center;
  }
}
footer#footer ul.footer-links li {
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  footer#footer ul.footer-links li {
    padding: 30px;
  }
}
@media (min-width: 1500px) {
  footer#footer ul.footer-links li {
    padding: 30px 60px;
  }
}
footer#footer ul.footer-links li a {
  color: #0A0724;
  transition: 0.3s ease;
}
footer#footer ul.footer-links li:hover a {
  color: #0090FB;
}
footer#footer ul.footer-socials {
  background-color: #110755;
  padding: 25px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer#footer ul.footer-socials li {
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  margin: 8px;
  background-color: white;
  transition: 0.3s ease;
}
footer#footer ul.footer-socials li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer#footer ul.footer-socials li a img {
  height: 20px;
}
@media (min-width: 768px) {
  footer#footer ul.footer-socials li a img {
    height: 15px;
  }
}
footer#footer ul.footer-socials li.yt a img {
  position: relative;
  left: 1px;
}
footer#footer ul.footer-socials li:hover {
  background-color: #0090FB;
}
footer#footer ul.footer-socials p {
  min-width: 100%;
  text-align: center;
  color: white;
  margin: 25px 0;
  font-size: 3.5vw;
}
@media (min-width: 768px) {
  footer#footer ul.footer-socials p {
    font-size: 12px;
  }
}

#key-pillars header {
  overflow: hidden;
}
#key-pillars header img {
  max-width: 100%;
}
#key-pillars header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #key-pillars header .desktop {
    display: block;
  }
}
#key-pillars header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #key-pillars header .mobile {
    display: none;
  }
}
#key-pillars .message {
  color: #110755;
  text-align: center;
}
#key-pillars .message-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #key-pillars .message-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#key-pillars .message-text {
  margin: 30px;
  line-height: 2;
}
@media (min-width: 768px) {
  #key-pillars .message-text {
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-size: 24px;
  }
}
#key-pillars .hash-link {
  position: relative;
  top: -100px;
}
#key-pillars .pillar {
  text-align: center;
  background-color: #0090FB;
  padding-bottom: 50px;
}
#key-pillars .pillar .d-box .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background-color: #F5F7F8;
  border-top: 1px solid #F5F7F8;
  display: none;
  position: relative;
}
@media (min-width: 768px) {
  #key-pillars .pillar .d-box .triangle {
    display: block;
  }
}
#key-pillars .pillar .title {
  font-size: 8vw;
  color: #110755;
  padding: 40px 20px;
  width: 100%;
  font-weight: bold;
  background-color: #F5F7F8;
}
@media (min-width: 768px) {
  #key-pillars .pillar .title {
    background-color: unset;
    font-size: 34px;
    text-align: left;
    position: relative;
    padding: 30px 40% 10vw 50px;
    width: 66%;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .title.mobile {
    display: none;
  }
}
#key-pillars .pillar .subtitle,
#key-pillars .pillar .topline,
#key-pillars .pillar .number {
  font-size: 6vw;
  color: #00FFCC;
  font-weight: bold;
  padding: 40px 0 30px;
  width: 60%;
  margin: 0 auto;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #key-pillars .pillar .subtitle,
  #key-pillars .pillar .topline,
  #key-pillars .pillar .number {
    font-size: 20px;
    width: 15%;
    text-align: left;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .number {
    text-align: center;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .subtitle,
  #key-pillars .pillar .topline {
    padding-top: 0;
  }
}
@media (min-width: 1100px) {
  #key-pillars .pillar .subtitle,
  #key-pillars .pillar .topline {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  #key-pillars .pillar .subtitle,
  #key-pillars .pillar .topline {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .top-part {
    display: flex;
    margin: 40px 0 0 20px;
  }
}
#key-pillars .pillar .top-part .text {
  font-size: 5vw;
  color: #110755;
  line-height: 1.5;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  #key-pillars .pillar .top-part .text {
    font-size: 19px;
    text-align: left;
    width: 25%;
  }
}
#key-pillars .pillar .top-part .text p {
  margin-bottom: 20px;
}
#key-pillars .pillar .top-part .issues {
  margin: 0 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #key-pillars .pillar .top-part .issues {
    width: 25%;
  }
}
#key-pillars .pillar .top-part .issues .issue {
  display: flex;
  margin: 20px auto;
}
@media (min-width: 768px) {
  #key-pillars .pillar .top-part .issues .issue {
    margin: 0 auto 20px;
  }
}
#key-pillars .pillar .top-part .issues .issue .icon {
  width: 30%;
}
#key-pillars .pillar .top-part .issues .issue .icon img {
  height: 50px;
}
#key-pillars .pillar .top-part .issues .issue .text {
  width: 60%;
  margin: unset;
  text-align: left;
  display: flex;
  align-items: center;
}
#key-pillars .pillar .stats {
  margin: 0 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats {
    display: flex;
    width: 70%;
    margin: 0 5% 0 auto;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats .statistic {
    border-right: 1px solid #110755;
    width: 25%;
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats .statistic:last-child {
    border-right: 1px solid transparent;
  }
}
#key-pillars .pillar .stats .statistic .number {
  padding: 20px 0 20px;
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats .statistic .number {
    font-size: 20px;
    width: unset;
    padding-top: 0;
  }
}
#key-pillars .pillar .stats .statistic .text {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats .statistic .text {
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 0;
  }
}
#key-pillars .pillar .stats .statistic hr {
  border: 1px solid #110755;
  width: 30%;
}
@media (min-width: 768px) {
  #key-pillars .pillar .stats .statistic hr {
    display: none;
  }
}
#key-pillars .pillar .stats .statistic:last-child hr {
  display: none;
}
#key-pillars .pillar .stats {
  display: none;
}
#key-pillars .pillar.two {
  background-color: #110755;
}
@media (min-width: 768px) {
  #key-pillars .pillar.two .d-box .triangle {
    transform: scaleX(-1);
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar.two .d-box .title {
    padding: 30px 50px 10vw 40%;
    transform: scaleX(-1);
    text-align: right;
  }
}
#key-pillars .pillar.two .text {
  color: white;
}
@media (min-width: 768px) {
  #key-pillars .pillar.two .stats .statistic {
    border-right: 1px solid white;
  }
}
#key-pillars .pillar.two .stats .statistic hr {
  border: 1px solid white;
}
@media (min-width: 768px) {
  #key-pillars .pillar.two .stats .statistic hr {
    display: none;
  }
}
#key-pillars .pillar.three {
  background-color: #F5F7F8;
}
#key-pillars .pillar.three .d-box .triangle {
  border-top: 1px solid #0090FB;
}
#key-pillars .pillar.three .title {
  background-color: #0090FB;
}
#key-pillars .pillar.three .subtitle,
#key-pillars .pillar.three .topline {
  color: #110755;
}
#key-pillars .pillar.three .number {
  color: #0090FB;
}
@media (min-width: 768px) {
  #key-pillars .pillar.four .d-box .triangle {
    transform: scaleX(-1);
  }
}
@media (min-width: 768px) {
  #key-pillars .pillar.four .d-box .title {
    padding: 30px 50px 10vw 40%;
    transform: scaleX(-1);
    text-align: right;
  }
}
#key-pillars .pillar.four .title {
  background-color: white;
}

@media (min-width: 768px) {
  #about {
    margin-bottom: -1px;
  }
}
#about header {
  overflow: hidden;
}
#about header img {
  max-width: 100%;
}
#about header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #about header .desktop {
    display: block;
  }
}
#about header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #about header .mobile {
    display: none;
  }
}
#about .message {
  color: #110755;
  text-align: center;
}
#about .message-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #about .message-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#about .message-text {
  margin: 30px;
  line-height: 2;
}
@media (min-width: 768px) {
  #about .message-text {
    max-width: 1050px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-size: 24px;
  }
}
#about .organization {
  color: white;
  background-color: #1C0F2E;
  text-align: center;
}
#about .organization-title {
  color: #110755;
  background-color: #00FFCC;
  border-top: 1px solid #00FFCC;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  padding: 40px 40px;
  width: 100%;
}
@media (min-width: 768px) {
  #about .organization-title {
    width: 70%;
    margin: 0 auto 0 0;
    display: block;
    height: 150px;
    padding: 50px 0 50px 50px;
    text-align: left;
    font-size: 44px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  }
}
@media (min-width: 1490px) {
  #about .organization-title {
    padding: 50px 0 50px calc((100vw - 1365px) / 2);
  }
}
#about .organization-text {
  padding: 50px 30px;
  line-height: 2;
}
@media (min-width: 768px) {
  #about .organization-text {
    max-width: 900px;
    margin: 10px auto 60px;
    line-height: 1.5;
    font-size: 24px;
    display: grid;
    grid-column: 2fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px 50px;
    max-width: 1400px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  #about .organization-text p:first-child {
    text-align: center;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
#about .value {
  color: white;
  background-color: #0090FB;
  text-align: center;
}
@media (min-width: 768px) {
  #about .value {
    margin-top: -60px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  #about .value .wrapper {
    padding-left: 30px;
    text-align: left;
  }
}
@media (min-width: 1490px) {
  #about .value .wrapper {
    padding: 50px 0 50px calc((100vw - 1365px) / 2);
  }
}
#about .value-title {
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  padding: 60px 40px 40px;
  width: 100%;
}
@media (min-width: 768px) {
  #about .value-title {
    padding: 50px 0;
    width: unset;
    font-size: 44px;
  }
}
#about .value-text {
  padding: 0 30px 50px;
  line-height: 2;
}
@media (min-width: 768px) {
  #about .value-text {
    padding: 0 8% 0 0;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-size: 24px;
  }
}
#about .value-bottom {
  color: #110755;
  font-size: 8vw;
  font-weight: bold;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 50px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #about .value-bottom {
    font-size: 44px;
    padding: 10px 8%;
    width: 300px;
    margin-right: 0;
    height: 230px;
    margin-bottom: unset;
    position: relative;
    background-color: #00FFCC;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  }
}
@media (min-width: 1100px) {
  #about .value-bottom {
    width: 32%;
  }
}
#about .task-force {
  color: white;
  background-color: #1C0F2E;
  text-align: center;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #about .task-force {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#about .task-force.desktop {
  display: none;
}
@media (min-width: 768px) {
  #about .task-force.desktop {
    display: grid;
  }
}
#about .task-force.mobile {
  display: block;
}
@media (min-width: 768px) {
  #about .task-force.mobile {
    display: none;
  }
}
#about .task-force.mobile .info {
  transform: translateY(-200%);
  text-align: center;
  position: relative;
  transform-origin: center top;
  z-index: 1;
  height: 0;
  opacity: 0;
}
#about .task-force.mobile .info.open {
  transform: translateY(0%);
  position: relative;
  height: 100%;
  width: 100vw;
  z-index: 2;
  background-color: #1C0F2E;
  padding-bottom: 40px;
  opacity: 1;
}
#about .task-force.mobile .info .close {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid white;
  font-size: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  position: relative;
  margin: 20px 0;
  display: block;
}
#about .task-force.mobile .info .member-name {
  color: #0090FB;
  font-size: 6vw;
  font-weight: bold;
}
#about .task-force.mobile .info .role {
  color: #0090FB;
  font-size: 5vw;
  font-weight: bold;
  margin: 10px 0 20px;
}
#about .task-force.mobile .info .text {
  line-height: 1.5;
  width: 75%;
  margin: 0 auto 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
#about .task-force.mobile .info .pillars {
  text-align: left;
  width: 75%;
  margin: 0 auto 30px;
}
#about .task-force.mobile .info .pillars ul li {
  margin: 10px 0;
}
#about .task-force.mobile .info .pillars ul li::before {
  display: inline-block;
  content: "+";
  position: absolute;
  color: white;
}
#about .task-force.mobile .info .pillars ul li a {
  color: #00FFCC;
  font-weight: bold;
  list-style-position: outside;
  left: 20px;
  position: relative;
}
#about .task-force-title {
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  padding: 60px 40px 40px;
  width: 100%;
}
@media (min-width: 768px) {
  #about .task-force-title {
    grid-column: 1/4;
    padding: 60px 20px;
    width: unset;
    font-size: 44px;
  }
}
#about .task-force-member {
  overflow: hidden;
  margin-bottom: -25px;
  display: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  #about .task-force-member {
    display: block;
    margin-bottom: -3px;
  }
}
#about .task-force-member.mobile {
  display: block;
}
#about .task-force-member.visible {
  display: block;
}
#about .task-force-member .portrait {
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}
#about .task-force-member .portrait:hover {
  opacity: 0.4;
}
#about .task-force-member .portrait img {
  width: 100%;
}
#about .task-force-member .portrait .up-arrow {
  bottom: -40px;
}
#about .task-force-member .portrait .up-arrow.open {
  border-color: #1C0F2E transparent;
  border-style: solid;
  border-width: 0px 20px 20px 20px;
  height: 0px;
  width: 0px;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
#about .task-force .info-block {
  display: none;
}
@media (min-width: 768px) {
  #about .task-force .info-block {
    grid-column: 1/4;
    position: relative;
    height: 0;
  }
}
#about .task-force .info-block.open {
  display: block;
  height: unset;
}
#about .task-force .info-block .info {
  transform: translateY(-200%);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center top;
  z-index: 1;
  height: 0;
  opacity: 0;
}
#about .task-force .info-block .info.open {
  transform: translateY(0%);
  position: relative;
  height: 100%;
  width: 100vw;
  z-index: 2;
  background-color: #1C0F2E;
  padding-bottom: 40px;
  opacity: 1;
}
#about .task-force .info-block .info .close {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid white;
  font-size: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  position: relative;
  margin: 20px 0;
  display: block;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .close {
    left: 95vw;
  }
  #about .task-force .info-block .info .close:hover {
    opacity: 0.8;
  }
}
#about .task-force .info-block .info .member-name {
  color: #0090FB;
  font-size: 6vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .member-name {
    font-size: 34px;
  }
}
#about .task-force .info-block .info .role {
  color: #0090FB;
  font-size: 5vw;
  font-weight: bold;
  margin: 10px 0 20px;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .role {
    font-size: 24px;
    margin: 10px 0 30px;
  }
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .text-and-pillars {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    text-align: left;
  }
}
#about .task-force .info-block .info .text {
  line-height: 1.5;
  width: 75%;
  margin: 0 auto 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .text {
    border-bottom: 0;
    margin: 0 30px 0 0;
    padding: 0 30px 0 0;
    position: relative;
    width: 65%;
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .text:after {
    content: "";
    background: white;
    position: absolute;
    right: 0;
    height: 80%;
    top: 10%;
    width: 1px;
  }
}
#about .task-force .info-block .info .pillars {
  text-align: left;
  width: 75%;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .pillars {
    margin: 0 0 0 30px;
    width: 35%;
  }
}
#about .task-force .info-block .info .pillars ul li {
  margin: 10px 0;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .pillars ul li {
    margin: 10% 0;
  }
}
#about .task-force .info-block .info .pillars ul li::before {
  display: inline-block;
  content: "+";
  position: absolute;
  color: white;
}
#about .task-force .info-block .info .pillars ul li a {
  color: #00FFCC;
  font-weight: bold;
  list-style-position: outside;
  left: 20px;
  position: relative;
}
@media (min-width: 768px) {
  #about .task-force .info-block .info .pillars ul li a {
    font-size: 24px;
  }
}
#about .task-force .view-more {
  background-color: #F5F7F8;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  #about .task-force .view-more {
    display: none;
  }
}
#about .task-force .view-more.hidden {
  display: none;
}
#about .task-force .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  #about .logo {
    display: none;
  }
}
#about .logo img {
  width: 100%;
}
#about .desktop-logo {
  display: none;
}
@media (min-width: 768px) {
  #about .desktop-logo {
    display: block;
  }
}
#about .desktop-logo img {
  width: 100%;
}

#news header {
  overflow: hidden;
}
#news header img {
  max-width: 100%;
}
#news header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #news header .desktop {
    display: block;
  }
}
#news header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #news header .mobile {
    display: none;
  }
}
#news .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 10px;
}
@media (min-width: 768px) {
  #news .sub-menu {
    margin: 20px 0 50px;
  }
}
#news .sub-menu .menu-item {
  width: 50%;
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
  #news .sub-menu .menu-item {
    width: unset;
    margin: 20px 50px;
  }
}
#news .sub-menu .menu-item.active span {
  color: #110755;
  border-bottom: 4px solid #0090FB;
}
#news .sub-menu .menu-item span {
  color: #666666;
  font-weight: bold;
  font-size: 6vw;
  padding-bottom: 4px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #news .sub-menu .menu-item span {
    font-size: 34px;
  }
}
#news .news-articles {
  max-width: 98vw;
}
@media (min-width: 600px) {
  #news .news-articles {
    max-width: unset;
  }
}
@media (min-width: 768px) {
  #news .news-articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (min-width: 1065px) {
  #news .news-articles {
    max-width: 1060px;
  }
}
#news .news-articles a {
  color: black;
  display: none;
}
#news .news-articles a.visible {
  display: flex;
}
#news .news-articles a .article {
  background-color: white;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 20px;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #news .news-articles a .article {
    margin: 20px 30px;
  }
}
#news .news-articles a .article:hover {
  color: #0090FB;
}
#news .news-articles a .article:hover .article-content hr {
  width: 100%;
}
#news .news-articles a .article .article-image {
  width: 100%;
}
#news .news-articles a .article .article-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
#news .news-articles a .article .article-content a {
  color: unset;
}
#news .news-articles a .article .article-content .title {
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #news .news-articles a .article .article-content .title {
    font-size: 20px;
    line-height: 1;
  }
}
@media (min-width: 1065px) {
  #news .news-articles a .article .article-content .title {
    font-size: 22px;
  }
}
#news .news-articles a .article .article-content hr {
  width: 66%;
  height: 8px;
  background-color: #00FFCC;
  display: block;
  margin: 10px auto 15px 0;
  border: 0;
  transition: 0.3s all ease;
}
#news .news-articles a .article .article-content .date {
  font-size: 4vw;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  #news .news-articles a .article .article-content .date {
    font-size: 14px;
  }
}
#news .news-articles a .article .article-content .link {
  font-size: 4vw;
  margin-top: auto;
  text-decoration: underline;
  color: black;
}
@media (min-width: 768px) {
  #news .news-articles a .article .article-content .link {
    font-size: 14px;
  }
}
#news .news-articles .view-more {
  background-color: white;
  padding: 40px 20px;
  width: 100%;
}
#news .news-articles .view-more.hidden {
  display: none;
}
#news .news-articles .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
}
#news .ig-feed {
  background-color: #F5F7F8;
  margin: 40px 0 0;
  z-index: 9;
  position: relative;
}
@media (min-width: 768px) {
  #news .ig-feed {
    margin: 40px 0 0;
  }
}
#news .ig-feed .juicer-feed .referral {
  display: none;
}
@media (min-width: 960px) {
  #news .ig-feed .juicer-feed .slick-track {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #news .ig-feed .juicer-feed.slider.j-modern {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #news .ig-feed .juicer-feed.slider.j-modern li.feed-item {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #news .ig-feed .juicer-feed.slider.j-modern li.feed-item a.j-image {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #news .ig-feed .juicer-feed.slider.j-modern li.feed-item a.j-image img {
    height: 25vw !important;
  }
}
#news .ig-feed.mobile {
  display: block;
}
@media (min-width: 500px) {
  #news .ig-feed.mobile {
    display: none;
  }
}
#news .ig-feed.mobile .j-text {
  display: none;
}
#news .ig-feed.mobile img:last-child {
  width: 100%;
  margin: -6px 0;
}
#news .ig-feed.mobile .view-more-juicer {
  background-color: white;
  padding: 40px 20px;
}
#news .ig-feed.mobile .view-more-juicer.hidden {
  display: none;
}
#news .ig-feed.mobile .view-more-juicer button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
  font-size: 5vw;
}
@media (min-width: 500px) {
  #news .ig-feed.all {
    display: none;
  }
}
#news .ig-feed.desktop {
  display: none;
}
@media (min-width: 500px) {
  #news .ig-feed.desktop {
    display: block;
  }
}
#news .ig-feed.desktop .slick-prev,
#news .ig-feed.desktop .slick-next {
  display: none;
}
@media (min-width: 500px) {
  #news .ig-feed.desktop .slick-prev,
  #news .ig-feed.desktop .slick-next {
    display: flex;
    transition: 0.3s ease;
    transform: scale(0.9);
    width: 50px;
    height: 50px;
    background-size: cover;
  }
}
#news .ig-feed.desktop .slick-prev:before,
#news .ig-feed.desktop .slick-next:before {
  display: none;
}
#news .ig-feed.desktop .slick-prev:hover,
#news .ig-feed.desktop .slick-next:hover {
  transform: scale(1);
}
#news .ig-feed.desktop .slick-prev {
  background-image: url(/img/global/arrow-left.jpg) !important;
}
#news .ig-feed.desktop .slick-next {
  background-image: url(/img/global/arrow-right.jpg) !important;
  margin-right: 15px;
}
#news .ig-feed.hidden {
  display: none;
}

#get-involved header {
  overflow: hidden;
}
#get-involved header img {
  max-width: 100%;
  width: 100%;
}
#get-involved header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #get-involved header .desktop {
    display: block;
  }
}
#get-involved header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #get-involved header .mobile {
    display: none;
  }
}
#get-involved .message {
  color: #110755;
  text-align: center;
}
#get-involved .message-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #get-involved .message-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#get-involved .swiper-container {
  overflow: visible;
  background-color: #1C0F2E;
  margin: 30px 0;
}
@media (min-width: 768px) {
  #get-involved .swiper-container {
    overflow: hidden;
    background-color: white;
    padding: 0px 0 70px;
    margin: 0 0 50px;
  }
}
#get-involved .swiper-container .swiper-pagination {
  bottom: -30px;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-pagination {
    bottom: 0;
  }
}
#get-involved .swiper-container .swiper-pagination.top {
  bottom: unset;
  top: -30px;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-pagination.top {
    display: none;
  }
}
#get-involved .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: white;
  border: 1px solid black;
  margin: 0 8px;
  width: 10px;
  height: 10px;
}
#get-involved .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #666666;
  border: 1px solid #666666;
}
#get-involved .swiper-container .swiper-pagination .swiper-pagination-bullet:focus {
  outline: none;
}
#get-involved .swiper-container .swiper-slide {
  background-color: #1C0F2E;
  color: white;
  padding: 50px 5% 10px;
  text-align: center;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-slide {
    width: 60%;
    min-height: 450px;
    padding: 70px 5% 70px;
  }
}
#get-involved .swiper-container .swiper-slide-prev, #get-involved .swiper-container .swiper-slide-next {
  background-color: #3C3941;
  color: #666666;
  transform: scale(0.9);
}
#get-involved .swiper-container .swiper-slide-prev .action-title, #get-involved .swiper-container .swiper-slide-next .action-title {
  color: #088C72 !important;
}
#get-involved .swiper-container .swiper-slide .action-title {
  color: #00FFCC;
  font-size: 8vw;
  font-weight: bold;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-slide .action-title {
    font-size: 30px;
    margin: 0 0 50px 0;
  }
}
#get-involved .swiper-container .swiper-slide .action-description p,
#get-involved .swiper-container .swiper-slide .action-description ul {
  margin-bottom: 20px;
  font-size: 5vw;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-slide .action-description p,
  #get-involved .swiper-container .swiper-slide .action-description ul {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
#get-involved .swiper-container .swiper-slide .action-description ul {
  text-align: left;
  list-style-type: disc;
  margin: 10px 20px;
}
#get-involved .swiper-container .swiper-slide .action-description ul li {
  margin-bottom: 20px;
}
#get-involved .swiper-container .swiper-slide .action-description ul li ul {
  list-style: circle;
  margin: 20px;
}
#get-involved .swiper-container .swiper-button-prev,
#get-involved .swiper-container .swiper-button-next {
  display: none;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-button-prev,
  #get-involved .swiper-container .swiper-button-next {
    display: flex;
    transition: 0.3s ease;
  }
}
#get-involved .swiper-container .swiper-button-prev:after,
#get-involved .swiper-container .swiper-button-next:after {
  display: none;
}
#get-involved .swiper-container .swiper-button-prev:hover,
#get-involved .swiper-container .swiper-button-next:hover {
  transform: scale(1.1);
}
#get-involved .swiper-container .swiper-button-prev {
  background-image: url(/img/global/arrow-left.jpg) !important;
  width: 60px;
  height: 60px;
  background-size: cover;
}
#get-involved .swiper-container .swiper-button-next {
  background-image: url(/img/global/arrow-right.jpg) !important;
  width: 60px;
  height: 60px;
  background-size: cover;
}
@media (min-width: 768px) {
  #get-involved .swiper-container .swiper-button-next {
    right: 25px;
  }
}
#get-involved .for-the-players .message {
  color: white;
  background-color: #F5F7F8;
  text-align: center;
}
#get-involved .for-the-players .message-title {
  color: #110755;
  background-color: #0090FB;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  padding: 70px 40px;
  width: 100%;
  border-bottom: unset;
}
@media (min-width: 768px) {
  #get-involved .for-the-players .message-title {
    width: 70%;
    margin: 0 auto 0 0;
    display: block;
    height: 150px;
    padding: 50px 0 50px 50px;
    text-align: left;
    font-size: 44px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  }
}
@media (min-width: 1490px) {
  #get-involved .for-the-players .message-title {
    padding: 50px 0 50px calc((100vw - 1365px) / 2);
  }
}
#get-involved .for-the-players .message-text {
  color: black;
  background-color: #F5F7F8;
  padding: 40px 5%;
  text-align: left;
  font-size: 5vw;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #get-involved .for-the-players .message-text {
    font-size: 24px;
  }
}
#get-involved .for-the-players .message-text p,
#get-involved .for-the-players .message-text ul {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #get-involved .for-the-players .message-text p,
  #get-involved .for-the-players .message-text ul {
    width: 95%;
  }
}
#get-involved .for-the-players .message-text ul {
  list-style-type: disc;
  margin: 20px 0 20px 20px;
}
#get-involved .for-the-players .message-text ul li {
  margin: 5px 0;
}
#get-involved .for-the-players .message-text a {
  font-weight: bold;
  color: #0090FB;
}
#get-involved .for-the-players .message-text a:hover {
  color: #110755;
}
#get-involved .resources-title-wrapper {
  text-align: center;
}
#get-involved .resources-title-wrapper .resources-title {
  color: #110755;
  text-align: center;
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 50px auto;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #get-involved .resources-title-wrapper .resources-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
@media (min-width: 768px) {
  #get-involved .resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (min-width: 1065px) {
  #get-involved .resources {
    max-width: 1060px;
  }
}
#get-involved .resources a {
  color: black;
}
#get-involved .resources .resource {
  background-color: white;
  display: none;
  flex-direction: column;
  flex-wrap: wrap;
  width: 85%;
  margin: 0px auto 20px;
  border: 4px solid #0090FB;
  padding: 30px 25px 25px;
  min-height: 350px;
  transition: 0.3s ease;
  max-width: 500px;
}
@media (min-width: 768px) {
  #get-involved .resources .resource {
    width: 95%;
    max-width: 32vw;
    min-height: 400px;
    margin: 0px 4% 20px;
  }
}
@media (min-width: 1397px) {
  #get-involved .resources .resource {
    margin: 0px 4% 20px;
  }
}
@media (min-width: 1065px) {
  #get-involved .resources .resource {
    max-width: 350px;
  }
}
#get-involved .resources .resource:hover {
  border: 4px solid #110755;
}
#get-involved .resources .resource.visible {
  display: flex;
}
#get-involved .resources .resource a {
  color: unset;
}
#get-involved .resources .resource .title {
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #get-involved .resources .resource .title {
    font-size: 22px;
    line-height: 1;
  }
}
@media (min-width: 1065px) {
  #get-involved .resources .resource .title {
    font-size: 24px;
  }
}
#get-involved .resources .resource hr {
  width: 66%;
  height: 8px;
  background-color: #00FFCC;
  display: block;
  margin: 10px auto 15px 0;
  border: 0;
}
#get-involved .resources .resource .date {
  font-size: 4vw;
}
@media (min-width: 768px) {
  #get-involved .resources .resource .date {
    font-size: 14px;
  }
}
#get-involved .resources .resource .link {
  font-size: 4vw;
  margin-top: auto;
  text-decoration: underline;
  color: black;
}
@media (min-width: 768px) {
  #get-involved .resources .resource .link {
    font-size: 14px;
  }
}
#get-involved .resources .view-more {
  background-color: white;
  padding: 40px 20px;
  width: 100%;
}
#get-involved .resources .view-more.hidden {
  display: none;
}
#get-involved .resources .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
}
#get-involved .view-more {
  background-color: white;
  padding: 40px 20px;
}
#get-involved .view-more.hidden {
  display: none;
}
#get-involved .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
}
#get-involved .locate {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  #get-involved .locate {
    margin: 100px auto 160px;
  }
}
#get-involved .locate .locate-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
#get-involved .locate .locate-title-wrapper .locate-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 6vw;
}
@media (min-width: 500px) {
  #get-involved .locate .locate-title-wrapper .locate-title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  #get-involved .locate .locate-title-wrapper .locate-title {
    padding: 20px;
    font-size: 44px;
  }
}
#get-involved .locate .map {
  margin: 20px 0;
}
#get-involved #locate-search-cols,
#get-involved #locate-results {
  margin: 0 auto 40px;
  width: 100%;
}
@media (min-width: 768px) {
  #get-involved #locate-search-cols,
  #get-involved #locate-results {
    width: 75%;
    display: flex;
    justify-content: center;
  }
}
#get-involved #locate-search-cols {
  max-width: 700px;
}
#get-involved #locate-search-cols .col {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 1000px) {
  #get-involved #locate-search-cols .col {
    flex: 0 1 auto;
    margin: 0 20px;
    width: calc(50% - 10px);
  }
}
#get-involved #locate-search-cols .col h3 {
  font-size: 5vw;
}
@media (min-width: 768px) {
  #get-involved #locate-search-cols .col h3 {
    font-size: 24px;
  }
}
#get-involved #locate-search-cols .col .fields {
  display: flex;
  justify-content: center;
  align-items: center;
}
#get-involved #locate-search-cols .col .fields input {
  padding: 5px 30px;
}
#get-involved #locate-search-cols .col .fields #locate-search-state-validate {
  padding: 5px 0 5px 5px;
}
#get-involved #locate-search-cols .col .fields .field-input {
  margin: 5px 5px 0;
}
#get-involved #locate-search-cols .col .fields #locate-search-zip-validate,
#get-involved #locate-search-cols .col .fields #locate-search-state-validate {
  height: 40px;
  border-radius: 4px;
  padding: 1px 2px 1px 20px;
  min-width: 200px;
  border: 1px solid #666666;
  margin: 0 10px 0 5px;
  width: 90%;
  -webkit-appearance: none;
}
#get-involved #locate-search-cols .col .fields #locate-search-state-validate {
  height: 45px;
  min-width: 224px;
}
#get-involved #locate-search-cols .col .fields #locate-search-zip-btn,
#get-involved #locate-search-cols .col .fields #locate-search-state-btn {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 350ms ease-in-out;
}
#get-involved #locate-search-cols .col .fields .field-input-validate.error {
  border: 1px solid #00FFCC;
}
#get-involved #locate-results {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#get-involved #locate-results .item {
  flex: 0 1 auto;
  width: 100%;
  margin: 15px 0;
}
@media (min-width: 768px) {
  #get-involved #locate-results .item {
    width: calc(50% - 40px);
    margin: 20px;
  }
}
#get-involved #locate-results .item .inner {
  border-radius: 15px;
  padding: 20px;
  background-color: #F5F7F8;
  text-align: left;
}
#get-involved #locate-results .item .inner * {
  color: #000;
}
#get-involved #locate-results .item .inner h3 {
  margin-bottom: 10px;
}
#get-involved #locate-results .item .inner h3 span {
  font-size: 60%;
  position: relative;
  top: -2px;
}
#get-involved #locate-results .item .inner p {
  width: 80%;
  margin: 6px 0;
}
#get-involved #locate-results .item .inner p a {
  color: #0090FB;
  transition: all 350ms ease-in-out;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
#get-involved #locate-results .item .inner p a:hover {
  color: #088C72;
}
#get-involved #locate-results .attr {
  width: 100%;
  margin: 20px 0;
  font-size: 10px;
  text-align: center;
  color: #000;
}

#contact header {
  overflow: hidden;
}
#contact header img {
  max-width: 100%;
}
#contact header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #contact header .desktop {
    display: block;
  }
}
#contact header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #contact header .mobile {
    display: none;
  }
}
#contact .email-us {
  color: #110755;
  text-align: center;
  margin-bottom: 50px;
}
#contact .email-us-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #contact .email-us-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#contact .email-us-copy {
  padding: 0 50px 20px;
  line-height: 1.25;
  font-size: 6vw;
}
@media (min-width: 768px) {
  #contact .email-us-copy {
    max-width: 900px;
    margin: 20px auto 10px;
    line-height: 1.5;
    font-size: 24px;
  }
}
#contact .email-us-link {
  color: #0090FB;
  font-weight: bold;
  font-size: 6vw;
  display: inline-block;
}
@media (min-width: 768px) {
  #contact .email-us-link {
    font-size: 24px;
  }
}
#contact .email-us-link:hover {
  color: #110755;
}
#contact .press-kit-wrapper {
  background-color: #1C0F2E;
}
#contact .press-kit-wrapper .press-kit {
  color: #110755;
  text-align: center;
  background-color: #F5F7F8;
  padding: 0 0 50px 0;
}
@media (min-width: 768px) {
  #contact .press-kit-wrapper .press-kit {
    width: 70%;
    margin: 0 auto 0 0;
    display: block;
    padding: 50px 0 50px 50px;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
  }
}
#contact .press-kit-wrapper .press-kit-title {
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
  color: #0090FB;
}
@media (min-width: 768px) {
  #contact .press-kit-wrapper .press-kit-title {
    width: unset;
    font-size: 44px;
    padding: 30px 0 0 30px;
    text-align: left;
    display: block;
  }
}
#contact .press-kit-wrapper .press-kit-copy {
  padding: 0 30px;
  line-height: 1.25;
  font-size: 6vw;
}
@media (min-width: 768px) {
  #contact .press-kit-wrapper .press-kit-copy {
    max-width: 900px;
    margin: 10px 0 30px;
    line-height: 1.5;
    font-size: 24px;
    text-align: left;
    padding: 0 130px 0 30px;
  }
}
#contact .press-kit-wrapper .press-kit-link {
  padding: 40px 20px 0;
}
@media (min-width: 768px) {
  #contact .press-kit-wrapper .press-kit-link {
    padding: 0 20px 0;
  }
}
#contact .press-kit-wrapper .press-kit-link.hidden {
  display: none;
}
#contact .press-kit-wrapper .press-kit-link button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
  font-size: 4vw;
  color: black;
}
@media (min-width: 768px) {
  #contact .press-kit-wrapper .press-kit-link button {
    font-size: 20px;
    margin: 0 auto 20px 10px;
  }
}
#contact .press-kit-wrapper .press-kit-link button a {
  color: unset;
}
#contact .ig-feed {
  background-color: #F5F7F8;
  z-index: 9;
  position: relative;
}
@media (min-width: 768px) {
  #contact .ig-feed {
    margin: -1px 0 0;
  }
}
#contact .ig-feed .juicer-feed .referral {
  display: none;
}
@media (min-width: 960px) {
  #contact .ig-feed .juicer-feed .slick-track {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #contact .ig-feed .juicer-feed.slider.j-modern {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #contact .ig-feed .juicer-feed.slider.j-modern li.feed-item {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #contact .ig-feed .juicer-feed.slider.j-modern li.feed-item a.j-image {
    height: 25vw !important;
  }
}
@media (min-width: 960px) {
  #contact .ig-feed .juicer-feed.slider.j-modern li.feed-item a.j-image img {
    height: 25vw !important;
  }
}
#contact .ig-feed.mobile {
  display: block;
}
@media (min-width: 500px) {
  #contact .ig-feed.mobile {
    display: none;
  }
}
#contact .ig-feed.mobile .j-text {
  display: none;
}
#contact .ig-feed.mobile img:last-child {
  width: 100%;
  margin: -6px 0;
}
#contact .ig-feed.mobile .view-more {
  background-color: white;
  padding: 40px 20px;
}
#contact .ig-feed.mobile .view-more.hidden {
  display: none;
}
#contact .ig-feed.mobile .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
  font-size: 5vw;
}
@media (min-width: 500px) {
  #contact .ig-feed.all {
    display: none;
  }
}
#contact .ig-feed.desktop {
  display: none;
}
@media (min-width: 500px) {
  #contact .ig-feed.desktop {
    display: block;
  }
}
#contact .ig-feed.desktop .slick-prev,
#contact .ig-feed.desktop .slick-next {
  display: none;
}
@media (min-width: 500px) {
  #contact .ig-feed.desktop .slick-prev,
  #contact .ig-feed.desktop .slick-next {
    display: flex;
    transition: 0.3s ease;
    transform: scale(0.9);
    width: 50px;
    height: 50px;
    background-size: cover;
  }
}
#contact .ig-feed.desktop .slick-prev:before,
#contact .ig-feed.desktop .slick-next:before {
  display: none;
}
#contact .ig-feed.desktop .slick-prev:hover,
#contact .ig-feed.desktop .slick-next:hover {
  transform: scale(1);
}
#contact .ig-feed.desktop .slick-prev {
  background-image: url(/img/global/arrow-left.jpg) !important;
}
#contact .ig-feed.desktop .slick-next {
  background-image: url(/img/global/arrow-right.jpg) !important;
  margin-right: 15px;
}
#contact .ig-feed.hidden {
  display: none;
}

#impact header {
  overflow: hidden;
}
#impact header img {
  max-width: 100%;
}
#impact header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #impact header .desktop {
    display: block;
  }
}
#impact header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #impact header .mobile {
    display: none;
  }
}
#impact .message {
  color: #110755;
  text-align: center;
  padding: 30px 0;
}
#impact .message-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #impact .message-title {
    padding: 20px;
    margin: 50px 0;
    width: unset;
    font-size: 44px;
  }
}
#impact .swiper-container {
  overflow: visible;
  margin: 30px 0;
}
@media (min-width: 768px) {
  #impact .swiper-container {
    overflow: hidden;
    background-color: white;
    padding: 0px 0 70px;
    margin: 0 0 50px;
  }
}
#impact .swiper-container .swiper-pagination {
  width: 80%;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-pagination {
    bottom: 0;
  }
}
#impact .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: white;
  border: 1px solid black;
  margin: 0 8px;
  width: 10px;
  height: 10px;
}
#impact .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #666666;
  border: 1px solid #666666;
}
#impact .swiper-container .swiper-pagination .swiper-pagination-bullet:focus {
  outline: none;
}
#impact .swiper-container .swiper-slide {
  background-color: #1C0F2E;
  color: white;
  padding: 70px 10%;
  text-align: center;
  transition: 0.3s ease;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-slide {
    width: 70%;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
#impact .swiper-container .swiper-slide-prev, #impact .swiper-container .swiper-slide-next {
  background-color: #3C3941;
  color: #666666;
  transform: scale(0.9);
}
#impact .swiper-container .swiper-slide .location-description {
  margin-bottom: 40px;
  font-size: 6vw;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-slide .location-description {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
#impact .swiper-container .swiper-slide .location-title {
  color: white;
  font-size: 8vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-slide .location-title {
    font-size: 60px;
  }
}
#impact .swiper-container .swiper-button-prev,
#impact .swiper-container .swiper-button-next {
  display: none;
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-button-prev,
  #impact .swiper-container .swiper-button-next {
    display: flex;
    transition: 0.3s ease;
  }
}
#impact .swiper-container .swiper-button-prev:after,
#impact .swiper-container .swiper-button-next:after {
  display: none;
}
#impact .swiper-container .swiper-button-prev:hover,
#impact .swiper-container .swiper-button-next:hover {
  transform: scale(1.1);
}
#impact .swiper-container .swiper-button-prev {
  background-image: url(/img/global/arrow-left.jpg) !important;
  width: 60px;
  height: 60px;
  background-size: cover;
}
#impact .swiper-container .swiper-button-next {
  background-image: url(/img/global/arrow-right.jpg) !important;
  width: 60px;
  height: 60px;
  background-size: cover;
}
@media (min-width: 768px) {
  #impact .swiper-container .swiper-button-next {
    right: 25px;
  }
}
#impact .legislation .message {
  color: white;
  text-align: center;
  margin-top: 20px;
}
#impact .legislation .message-title {
  color: #110755;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
  opacity: 1;
}
@media (min-width: 768px) {
  #impact .legislation .message-title {
    display: inline;
    font-size: 44px;
  }
}
#impact .legislation .message-map {
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #impact .legislation .message-map {
    margin: 60px auto;
  }
}
#impact .legislation .message-map select::-ms-expand {
  display: none;
}
#impact .legislation .message-map select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
#impact .legislation .message-map .bt50WidgetMap div.map-tip {
  color: black;
}
#impact .legislation .message-map .bt50WidgetMap .mapText {
  fill: #999;
  stroke: #999;
}
#impact .resources-title-wrapper {
  text-align: center;
}
#impact .resources-title-wrapper .resources-title {
  color: #110755;
  text-align: center;
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 50px auto;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #impact .resources-title-wrapper .resources-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
@media (min-width: 768px) {
  #impact .resources {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1800px;
    margin: 0 auto;
  }
}
#impact .resources .resource {
  background-color: white;
  display: none;
  flex-direction: column;
  flex-wrap: wrap;
  width: 95%;
  margin: 0px auto 20px;
  border: 4px solid #0090FB;
  padding: 30px 25px 25px;
  min-height: 350px;
  transition: 0.3s ease;
  max-width: 500px;
}
@media (min-width: 768px) {
  #impact .resources .resource {
    width: 33%;
    max-width: 350px;
    min-height: 420px;
    margin: 0px 3% 20px;
  }
}
#impact .resources .resource:hover {
  border: 4px solid #110755;
}
#impact .resources .resource.visible {
  display: grid;
}
#impact .resources .resource a {
  color: unset;
}
#impact .resources .resource .title {
  font-weight: bold;
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #impact .resources .resource .title {
    font-size: 24px;
    line-height: 1;
  }
}
#impact .resources .resource hr {
  width: 66%;
  height: 8px;
  background-color: #00FFCC;
  display: block;
  margin: 10px auto 15px 0;
  border: 0;
}
#impact .resources .resource .description {
  font-size: 4vw;
}
@media (min-width: 768px) {
  #impact .resources .resource .description {
    font-size: 14px;
  }
}
#impact .resources .resource .link {
  font-size: 4vw;
  margin-top: auto;
  text-decoration: underline;
  color: black;
}
@media (min-width: 768px) {
  #impact .resources .resource .link {
    font-size: 14px;
  }
}
#impact .view-more {
  background-color: white;
  padding: 40px 20px;
}
#impact .view-more.hidden {
  display: none;
}
#impact .view-more button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 20px auto;
  letter-spacing: 2px;
}
#impact .locate {
  width: 90%;
  margin: 0 auto;
  color: #110755;
  text-align: center;
}
#impact .locate-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 6vw;
  width: 75%;
}
@media (min-width: 500px) {
  #impact .locate-title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  #impact .locate-title {
    padding: 20px;
    font-size: 44px;
  }
}
#impact .locate .map {
  margin: 20px 0;
}
#impact .impact {
  background-color: #1C0F2E;
  padding: 40px 0;
  text-align: center;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 768px) {
  #impact .impact {
    padding: 0;
    position: relative;
  }
}
@media (min-width: 1400px) {
  #impact .impact:before {
    width: calc((100vw - 1400px) / 2 + 896px);
    left: calc((100vw - 1400px) / 2 + 522px);
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (min-width: 1800px) {
  #impact .impact:before {
    clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
    left: calc((100vw - 1400px) / 2 + 516px);
  }
}
@media (min-width: 2500px) {
  #impact .impact:before {
    clip-path: polygon(6% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}
#impact .impact.mobile {
  display: block;
}
@media (min-width: 768px) {
  #impact .impact.mobile {
    display: none;
  }
}
#impact .impact-title {
  color: white;
  margin: 20px;
  font-size: 8vw;
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #impact .impact-title {
    padding: 20px;
    margin: 30px 0;
    width: unset;
    font-size: 44px;
  }
}
#impact .impact-number {
  color: white;
  margin: 20px;
  font-size: 8vw;
}
@media (min-width: 768px) {
  #impact .impact-number {
    font-size: 5vw;
    display: inline-block;
    width: 33vw;
    text-align: right;
  }
}
@media (min-width: 1400px) {
  #impact .impact-number {
    width: 30vw;
    font-size: 72px;
  }
}
@media (min-width: 1600px) {
  #impact .impact-number {
    width: 27vw;
  }
}
@media (min-width: 2000px) {
  #impact .impact-number {
    width: 525px;
  }
}
#impact .impact-description {
  color: #0090FB;
  margin: 20px;
  font-size: 6vw;
}
@media (min-width: 768px) {
  #impact .impact-description {
    font-size: 34px;
    display: inline-block;
    width: 44vw;
    text-align: left;
    position: relative;
    top: 17px;
    max-width: 725px;
  }
}
@media (min-width: 1400px) {
  #impact .impact-description {
    width: 38vw;
  }
}
@media (min-width: 2000px) {
  #impact .impact-description {
    width: 36vw;
  }
}
@media (min-width: 2200px) {
  #impact .impact-description {
    width: 34vw;
  }
}
#impact .impact .statistics {
  color: #0090FB;
  margin: 40px 0;
}
@media (min-width: 768px) {
  #impact .impact .statistics {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    max-width: 1400px;
    margin: 40px auto;
  }
}
#impact .impact .statistics .statistic {
  width: 70vw;
  height: 70vw;
  margin: 20px auto;
  border-radius: 50%;
  border: 8px solid #00FFCC;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
@media (min-width: 768px) {
  #impact .impact .statistics .statistic {
    width: 17vw;
    height: 17vw;
    padding: 0 0.5vw;
    margin: 20px;
    max-width: 260px;
    max-height: 260px;
  }
}
@media (min-width: 1500px) {
  #impact .impact .statistics .statistic {
    width: 15vw;
    height: 15vw;
  }
}
@media (min-width: 1800px) {
  #impact .impact .statistics .statistic {
    width: 13vw;
    height: 13vw;
  }
}
@media (min-width: 2000px) {
  #impact .impact .statistics .statistic {
    width: 11vw;
    height: 11vw;
  }
}
#impact .impact .statistics .statistic-number {
  font-size: 12vw;
  flex-basis: 100%;
  margin-top: -5vw;
  color: white;
}
@media (min-width: 768px) {
  #impact .impact .statistics .statistic-number {
    font-size: 24px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  #impact .impact .statistics .statistic-number {
    font-size: 36px;
  }
}
@media (min-width: 1500px) {
  #impact .impact .statistics .statistic-number {
    font-size: 38px;
  }
}
#impact .impact .statistics .statistic-description {
  font-size: 5vw;
  width: 90%;
  color: #00FFCC;
}
@media (min-width: 768px) {
  #impact .impact .statistics .statistic-description {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  #impact .impact .statistics .statistic-description {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  #impact .impact .statistics .statistic-description {
    font-size: 20px;
  }
}
#impact .impact .statistics .second-section {
  background-color: #1C0F2E;
  padding: 20px 0;
}
@media (min-width: 768px) {
  #impact .impact .statistics .second-section {
    display: flex;
    width: 60%;
    align-items: center;
    background-color: unset;
  }
}
#impact .impact .statistics .second-section .statistic {
  border: 8px solid #00FFCC;
  color: white;
}
#impact .impact .statistics .report {
  background-color: #1C0F2E;
  padding: 20px 20px 40px;
}
@media (min-width: 768px) {
  #impact .impact .statistics .report {
    display: none;
  }
}
#impact .impact .statistics .report.hidden {
  display: none;
}
#impact .impact .statistics .report button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
  cursor: pointer;
}
#impact .impact .bottom-part {
  margin-bottom: 20px;
}
#impact .impact .bottom-part .number {
  color: white;
  margin: 20px 0 0 0;
  font-size: 8vw;
}
@media (min-width: 768px) {
  #impact .impact .bottom-part .number {
    font-size: 5vw;
  }
}
#impact .impact .bottom-part .subtitle {
  color: #0090FB;
  font-size: 24px;
  max-width: 90%;
  margin: 0 auto;
}
#impact .impact .report.desktop {
  background-color: #1C0F2E;
  padding: 20px 20px 40px;
  display: none;
}
@media (min-width: 768px) {
  #impact .impact .report.desktop {
    display: block;
    position: relative;
    background-color: unset;
    padding-bottom: 20px;
  }
}
#impact .impact .report.desktop.hidden {
  display: none;
}
#impact .impact .report.desktop button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
  cursor: pointer;
}
#impact .allies {
  background-color: #0090FB;
  color: white;
  text-align: center;
  padding: 40px 0;
}
#impact .allies .inner {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 40px 0;
}
#impact .allies .inner .allies-title {
  font-size: 8vw;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #impact .allies .inner .allies-title {
    font-size: 44px;
    margin-bottom: 50px;
  }
}
#impact .allies .inner .allies-text {
  font-size: 5vw;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #impact .allies .inner .allies-text {
    font-size: 24px;
  }
}
#impact .universities-block {
  color: #110755;
  text-align: center;
  background-color: white;
  margin: 40px auto;
}
@media (min-width: 768px) {
  #impact .universities-block {
    margin: 40px auto;
  }
}
#impact .universities-block .inner {
  max-width: 1400px;
  margin: 0 auto;
}
#impact .universities-block-title {
  color: #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #impact .universities-block-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#impact .universities-block .universities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #impact .universities-block .universities {
    margin: 0 30px;
  }
}
#impact .universities-block .universities a {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #impact .universities-block .universities a {
    width: unset;
  }
}
#impact .universities-block .universities .university {
  width: 95vw;
  height: 95vw;
  max-width: 300px;
  max-height: 300px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #impact .universities-block .universities .university {
    width: 20vw;
    height: 20vw;
    margin: 10px 0;
  }
}
@media (min-width: 1024px) {
  #impact .universities-block .universities .university {
    margin: 15px 10px;
  }
}
#impact .universities-block .universities .university:hover {
  transform: scale(1.1);
}
#impact .universities-block .universities .university.hidden {
  display: none;
}
#impact .universities-block .universities .university-logo {
  position: relative;
  width: 85%;
}
#impact .universities-block .universities .load-more-universities {
  padding: 20px 20px 40px;
  margin: 0 auto;
  width: 100%;
}
#impact .universities-block .universities .load-more-universities.hidden {
  display: none;
}
#impact .universities-block .universities .load-more-universities button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
}
#impact .corporate-partners-block {
  color: #110755;
  text-align: center;
  background-color: #F5F7F8;
  margin: 40px auto;
}
@media (min-width: 768px) {
  #impact .corporate-partners-block {
    margin: 40px auto;
  }
}
#impact .corporate-partners-block .inner {
  max-width: 1400px;
  margin: 0 auto;
}
#impact .corporate-partners-block-title {
  color: #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  #impact .corporate-partners-block-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
#impact .corporate-partners-block .corporate-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #impact .corporate-partners-block .corporate-partners {
    margin: 0 30px;
  }
}
#impact .corporate-partners-block .corporate-partners a {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #impact .corporate-partners-block .corporate-partners a {
    width: unset;
  }
}
#impact .corporate-partners-block .corporate-partners .corporatePartner {
  width: 95vw;
  height: 95vw;
  max-width: 300px;
  max-height: 300px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #impact .corporate-partners-block .corporate-partners .corporatePartner {
    width: 20vw;
    height: 20vw;
    margin: 10px 0;
  }
}
@media (min-width: 1024px) {
  #impact .corporate-partners-block .corporate-partners .corporatePartner {
    margin: 15px 10px;
  }
}
#impact .corporate-partners-block .corporate-partners .corporatePartner:hover {
  transform: scale(1.1);
}
#impact .corporate-partners-block .corporate-partners .corporatePartner.hidden {
  display: none;
}
#impact .corporate-partners-block .corporate-partners .corporatePartner-logo {
  position: relative;
  width: 85%;
}
#impact .corporate-partners-block .corporate-partners .load-more-corporate-partners {
  padding: 20px 20px 40px;
  margin: 0 auto;
  width: 100%;
}
#impact .corporate-partners-block .corporate-partners .load-more-corporate-partners.hidden {
  display: none;
}
#impact .corporate-partners-block .corporate-partners .load-more-corporate-partners button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
}

#impact .what-we-do {
  text-align: center;
}
#impact .what-we-do .message-title {
  margin-bottom: 20px;
}
#impact .what-we-do .verb {
  font-weight: bold;
  font-size: 42px;
  line-height: 1.25;
  color: #1C0F2E;
}
@media (min-width: 768px) {
  #impact .what-we-do .verb {
    font-size: 64px;
  }
}
#impact .what-we-do .verb:nth-of-type(even) {
  color: #0090FB;
}
#impact .what-we-do .video-button {
  padding: 20px 20px 40px;
}
@media (min-width: 768px) {
  #impact .what-we-do .video-button {
    display: block;
    position: relative;
    background-color: unset;
    padding: 40px 20px 50px;
  }
}
#impact .what-we-do .video-button.hidden {
  display: none;
}
#impact .what-we-do .video-button button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
  cursor: pointer;
}

.what-we-do {
  text-align: center;
}
.what-we-do .message-title {
  margin-bottom: 20px;
}
.what-we-do .verb {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  color: #1C0F2E;
}
@media (min-width: 768px) {
  .what-we-do .verb {
    font-size: 48px;
  }
}
.what-we-do .verb:nth-of-type(even) {
  color: #0090FB;
}
.what-we-do .video-button {
  padding: 20px 20px 40px;
}
@media (min-width: 768px) {
  .what-we-do .video-button {
    display: block;
    position: relative;
    background-color: unset;
    padding-bottom: 20px;
  }
}
.what-we-do .video-button.hidden {
  display: none;
}
.what-we-do .video-button button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
  cursor: pointer;
}

#impact .key-legislation {
  text-align: center;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  #impact .key-legislation .message-title {
    font-size: 2.8vw;
  }
}
#impact .key-legislation .legislation {
  margin: 40px 0 80px;
}
#impact .key-legislation .legislation-title {
  font-weight: bold;
  color: #0A0724;
}
@media (min-width: 768px) {
  #impact .key-legislation .legislation-title {
    font-size: 2.8vw;
  }
}
#impact .key-legislation .legislation-subtitle {
  font-weight: bold;
  color: #0090FB;
  font-size: 18px;
  margin: 10px 0;
}

.league-partners {
  color: #110755;
  text-align: center;
  background-color: #F5F7F8;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .league-partners {
    margin: 0 auto;
  }
}
.league-partners .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.league-partners-title {
  color: #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  .league-partners-title {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
.league-partners .partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .league-partners .partners {
    margin: 0 30px;
  }
}
.league-partners .partners a {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .league-partners .partners a {
    width: unset;
  }
}
.league-partners .partners .partner {
  width: 95vw;
  height: 95vw;
  max-width: 300px;
  max-height: 300px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .league-partners .partners .partner {
    width: 20vw;
    height: 20vw;
    margin: 10px 0;
  }
}
@media (min-width: 1024px) {
  .league-partners .partners .partner {
    margin: 15px 10px;
  }
}
.league-partners .partners .partner:hover {
  transform: scale(1.1);
}
.league-partners .partners .partner.hidden {
  display: none;
}
.league-partners .partners .partner-logo {
  position: relative;
  width: 85%;
}
.league-partners .partners .load-more-partners {
  padding: 20px 20px 40px;
  margin: 0 auto;
  width: 100%;
}
.league-partners .partners .load-more-partners.hidden {
  display: none;
}
.league-partners .partners .load-more-partners button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
}

.grantmaking {
  color: #110755;
  text-align: center;
}
@media (min-width: 768px) {
  .grantmaking {
    max-width: 1400px;
    margin: 40px auto;
  }
}
.grantmaking-title {
  border-bottom: 4px solid #0090FB;
  padding: 20px 0;
  margin: 30px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  width: 75%;
}
@media (min-width: 768px) {
  .grantmaking-title {
    padding: 20px 0;
    width: unset;
    font-size: 44px;
  }
}
.grantmaking-copy {
  margin: 10px 20px 30px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .grantmaking-copy {
    max-width: 1050px;
    margin: 0 auto 60px;
    line-height: 1.5;
    font-size: 24px;
  }
}
.grantmaking-copy em {
  font-style: italic;
}
.grantmaking-subtitle {
  padding: 20px 0;
  max-width: 90%;
  margin: 10px auto;
  display: inline-block;
  font-weight: bold;
  font-size: 8vw;
  color: #0090FB;
}
@media (min-width: 768px) {
  .grantmaking-subtitle {
    padding: 20px;
    width: unset;
    font-size: 44px;
  }
}
.grantmaking .grantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .grantmaking .grantees {
    margin: 0 30px;
  }
}
.grantmaking .grantees a {
  width: 100%;
}
@media (min-width: 768px) {
  .grantmaking .grantees a {
    width: unset;
  }
}
.grantmaking .grantees .grantee {
  width: 95vw;
  height: 95vw;
  max-width: 420px;
  max-height: 420px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .grantmaking .grantees .grantee {
    width: 29vw;
    height: 29vw;
    margin: 10px 0;
  }
}
@media (min-width: 1024px) {
  .grantmaking .grantees .grantee {
    margin: 15px 10px;
  }
}
.grantmaking .grantees .grantee::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}
.grantmaking .grantees .grantee:hover {
  transform: scale(1.1);
}
.grantmaking .grantees .grantee:hover::before {
  opacity: 0;
}
.grantmaking .grantees .grantee.hidden {
  display: none;
}
@media (min-width: 768px) {
  .grantmaking .grantees .grantee.hidden {
    display: flex;
  }
}
.grantmaking .grantees .grantee-logo {
  position: relative;
  width: 85%;
}
.grantmaking .grantees .load-more-grantees {
  padding: 20px 20px 40px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .grantmaking .grantees .load-more-grantees {
    display: none;
  }
}
.grantmaking .grantees .load-more-grantees.hidden {
  display: none;
}
.grantmaking .grantees .load-more-grantees button {
  background-color: #00FFCC;
  padding: 15px 20px;
  border-radius: 4px;
  border: 0;
  display: block;
  margin: 0 auto 20px;
  letter-spacing: 2px;
}

#faqs {
  background-color: #F5F7F8;
}
#faqs header {
  overflow: hidden;
}
#faqs header img {
  max-width: 100%;
}
#faqs header .desktop {
  display: none;
}
@media (min-width: 768px) {
  #faqs header .desktop {
    display: block;
  }
}
#faqs header .mobile {
  display: block;
}
@media (min-width: 768px) {
  #faqs header .mobile {
    display: none;
  }
}
#faqs .q-and-a {
  text-align: center;
  padding: 50px 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  #faqs .q-and-a {
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #faqs .q-and-a .question {
    font-size: 24px;
  }
}
#faqs .q-and-a .answer {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #faqs .q-and-a .answer {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100vw;
}
body.nav-open {
  position: fixed;
  width: 100%;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.comp {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  display: none;
}

.noselect {
  user-select: none;
}

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