/*!*************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!../node_modules/flickity/dist/flickity.css ***!
  \*************************************************************************************************************************/
/*! Flickity v3.0.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-cell ---- */

.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsl(0 0% 100% / 75%);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 8px;
  background: hsl(0 0% 20% / 25%);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}

.flickity-rtl .flickity-page-dot {
  text-indent: 9999px;
}

.flickity-page-dot:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-page-dot.is-selected {
  background: hsl(0 0% 20% / 100%);
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!../node_modules/resolve-url-loader/index.js??ruleSet[1].rules[3].use[3]!../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[4]!../node_modules/import-glob/index.js!./styles/main.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #29469d;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.8;
  font-weight: 400;
}

.contain {
  max-width: 1050px;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 568px) {
  .contain {
    padding: 0 1.5rem;
  }
}
.contain .contain-narrow {
  margin: 0 12rem 0;
}
@media (max-width: 1200px) {
  .contain .contain-narrow {
    margin: 0;
  }
}
.contain .contain-narrow-left {
  margin-right: 15rem;
}
@media (max-width: 1200px) {
  .contain .contain-narrow-left {
    margin-right: 0;
  }
}

.sr {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

a {
  color: #29469d;
}

a:hover {
  color: #fea821;
}

hr {
  background: #EEE;
  margin: 4rem 0;
  height: 2px;
  border: none;
  clear: both;
}

.cols {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.cols.cols-rev {
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .cols {
    gap: 2rem;
  }
}
@media (max-width: 786px) {
  .cols {
    flex-direction: column;
    gap: 0;
  }
  .cols.cols-rev {
    flex-direction: column;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3 {
  font-family: "Lora", Times, serif;
  font-weight: normal;
  color: #1e2171;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 3rem;
}
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 568px) {
  h1, .h1 {
    font-size: 2rem;
  }
}
h1.bubble, h1.bubble-alt, .h1.bubble, .h1.bubble-alt {
  background: url("../images/bubbles.svg") center center no-repeat;
  background-size: auto 300px;
  height: 300px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
h1.bubble span, h1.bubble-alt span, .h1.bubble span, .h1.bubble-alt span {
  max-width: 350px;
}
h1.bubble-alt, .h1.bubble-alt {
  background-image: url("../images/bubbles-alt.svg");
}

h2, .h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}
@media (max-width: 568px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3, h4, h5, h6 {
  font-size: 2rem;
  margin: 1rem 0;
}
@media (max-width: 1200px) {
  h3, .h3, h4, h5, h6 {
    font-size: 1.25rem;
  }
}

blockquote {
  font-family: "Lora", Times, serif;
  color: #1e2171;
  font-size: 1.25rem;
  border: none;
  margin: 1em 0;
}

.blue {
  color: #1e2171 !important;
}

.blue-light {
  color: #96c0e6 !important;
}

.purple {
  color: #9d73ac !important;
}

.teal {
  color: #0097b2 !important;
}

a {
  color: #1e2171;
}
a:hover {
  color: #fea821;
}

sup {
  line-height: 0;
  font-size: 0.6rem;
}

ol.sources {
  -moz-columns: 2;
       columns: 2;
  padding-left: 1rem;
}
@media (max-width: 1200px) {
  ol.sources {
    -moz-columns: 1;
         columns: 1;
    padding-left: 2rem;
  }
}
ol.sources li {
  overflow-wrap: anywhere;
  word-break: normal;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 2rem 1rem 0;
}
@media (max-width: 1200px) {
  ol.sources li {
    margin: 0 0 1rem;
  }
}
ol.sources li a {
  color: #5a5a5a;
  text-decoration: none;
}
ol.sources li a:hover {
  color: #5a5a5a;
  text-decoration: underline;
}

ul.lines {
  margin: 2rem 0;
  padding-left: 1rem;
}
ul.lines li {
  border-bottom: 2px solid #f4f9fc;
  padding-bottom: 0.75rem;
}
ul.lines li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto !important;
}
img.aligncenter {
  margin: 0 auto;
  display: block;
}
img.alignright {
  float: right;
  max-width: 45%;
  margin: 1rem 0 2rem 2rem;
}
@media (max-width: 568px) {
  img.alignright {
    float: none;
    max-width: 100%;
    margin: 2rem auto;
  }
}
img.alignleft {
  float: left;
  max-width: 45%;
  margin: 1rem 2rem 2rem 0;
}
@media (max-width: 568px) {
  img.alignleft {
    float: none;
    max-width: 100%;
    margin: 2rem auto;
  }
}

.img-sq {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.img-sq img {
  display: block;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.button {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
}
.button.button-pill {
  color: #1e2171;
  border: 2px solid #1e2171;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
}
.button.button-pill.button-small {
  padding: 0.5rem 1rem;
}
.button.button-pill:hover {
  border-color: #fea821;
  background: #fea821;
  color: #FFFFFF;
}
.button.button-link::after {
  content: " >";
}
.button.button-link:hover {
  color: #fea821;
}

.button-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

p:not(.button-line) .button {
  padding: 0.5rem 1rem;
}

form button, form input, form select, form textarea {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 16px;
  border: none;
}
form select {
  cursor: pointer;
}

.module .strategies {
  position: relative;
  text-align: center;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  line-height: 1;
}
.module .strategies .center, .module .strategies .info {
  position: absolute;
  z-index: 45;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  padding: 10px;
  top: 80px;
  left: 80px;
}
.module .strategies .center h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #29469d;
}
.module .strategies .bubble {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 60;
}
.module .strategies .bubble img {
  display: block;
  width: 96px !important;
  height: 96px !important;
}
.module .strategies .bubble .b2 {
  display: none;
}
.module .strategies .bubble {
  /*background: $blue;
  color: $white;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  font-weight: bold;
  text-transform: lowercase;
  border: 2px solid $blue;*/
}
.module .strategies .info {
  display: none;
  font-weight: bold;
  z-index: 50;
}
.module .strategies .mobilize .bubble {
  top: 0;
  left: 50%;
  margin-left: -50px;
}
.module .strategies .mobilize .info {
  color: #1e2171;
}
.module .strategies .support .bubble {
  right: 0;
  top: 50%;
  margin-top: -50px;
}
.module .strategies .support .info {
  color: #0097b2;
}
.module .strategies .influence .bubble {
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}
.module .strategies .influence .info {
  color: #29469d;
}
.module .strategies .reimagine .bubble {
  left: 0;
  top: 50%;
  margin-top: -50px;
}
.module .strategies .reimagine .info {
  color: #9d73ac;
}
.module .strategies .strat {
  cursor: default;
}
.module .strategies .strat:hover .b1 {
  display: none;
}
.module .strategies .strat:hover .b2 {
  display: block;
}
.module .strategies .strat:hover .info {
  display: flex;
  line-height: 1.3;
}
.module .strategies .ring {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 250px;
  height: 250px;
  border: 20px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 10;
}

strong.support {
  color: #0097b2;
}
strong.influence {
  color: #29469d;
}
strong.reimagine {
  color: #9d73ac;
}
strong.mobilize {
  color: #1e2171;
}

.module p.strategy strong {
  color: #FFFFFF;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}
.module p.strategy strong.support {
  background: #0097b2;
}
.module p.strategy strong.influence {
  background: #29469d;
}
.module p.strategy strong.reimagine {
  background: #9d73ac;
}
.module p.strategy strong.mobilize {
  background: #1e2171;
}

header {
  background: #FFFFFF;
  padding: 2rem 0;
}
@media (max-width: 568px) {
  header {
    padding: 1rem 0;
  }
}
header .contain {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  header .contain {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem 1rem;
  }
}
@media (max-width: 568px) {
  header .contain {
    gap: 2rem 1rem;
  }
}
header .contain .logo a {
  display: block;
}
header .contain .logo a img {
  display: block;
  width: 400px;
}
@media (max-width: 786px) {
  header .contain .logo a img {
    width: 300px;
  }
}
@media (max-width: 568px) {
  header .contain .logo a img {
    width: 250px;
  }
}
@media (max-width: 1200px) {
  header .contain .nav {
    display: none;
    width: 100%;
  }
  header .contain .nav.active {
    display: block;
  }
}
header .contain .nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
@media (max-width: 1200px) {
  header .contain .nav .menu {
    flex-direction: column;
    gap: 1rem;
  }
}
header .contain .nav .menu > li {
  position: relative;
}
header .contain .nav .menu > li > a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #FFFFFF;
  color: #1e2171;
  line-height: 1;
  padding: 2px 0;
}
header .contain .nav .menu > li.menu-item-has-children > a {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 1200px) {
  header .contain .nav .menu > li.menu-item-has-children > a {
    pointer-events: unset;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  header .contain .nav .menu > li.menu-item-has-children > a::after {
    content: "+";
    font-size: 1.2rem;
  }
}
header .contain .nav .menu > li.menu-item-has-children.current-menu-ancestor > a {
  border-color: #96c0e6;
}
@media (max-width: 1200px) {
  header .contain .nav .menu > li.menu-item-has-children.current-menu-ancestor > a {
    border-color: transparent;
    color: #96c0e6;
  }
}
@media (max-width: 1200px) {
  header .contain .nav .menu > li.menu-item-has-children.active > a {
    color: #1e2171;
    border-color: #1e2171;
  }
  header .contain .nav .menu > li.menu-item-has-children.active > a::after {
    content: "–";
  }
}
header .contain .nav .menu > li ul {
  display: none;
  position: absolute;
  top: calc(1rem + 6px);
  left: 0;
  background: #96c0e6;
  border-top: 2px solid #FFFFFF;
  width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 90;
  padding: 0.25rem 0.5rem;
}
@media (max-width: 1200px) {
  header .contain .nav .menu > li ul {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
}
header .contain .nav .menu > li ul li a {
  display: block;
  color: #FFFFFF;
  border-top: 1px solid #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 0;
  line-height: 1;
}
header .contain .nav .menu > li ul li a:hover {
  color: #1e2171;
}
header .contain .nav .menu > li ul li.current-menu-item a {
  color: #29469d;
}
header .contain .nav .menu > li ul li:first-of-type a {
  border-top: none;
}
header .contain .nav .menu > li:hover > a, header .contain .nav .menu > li:hover > a:hover, header .contain .nav .menu > li:focus-within > a, header .contain .nav .menu > li:focus-within > a:hover {
  color: #1e2171;
  border-color: #1e2171 !important;
}
@media (min-width: 1201px) {
  header .contain .nav .menu > li:hover ul, header .contain .nav .menu > li:focus-within ul {
    display: block;
  }
}
@media (max-width: 1200px) {
  header .contain .nav .menu > li.active ul {
    display: block;
  }
}
header .contain #togglenav {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
@media (max-width: 1200px) {
  header .contain #togglenav {
    display: block;
  }
}
header .contain #togglenav svg {
  fill: #1e2171;
  width: 40px;
  height: 40px;
}
header .contain #togglenav svg.ham {
  display: block;
}
header .contain #togglenav svg.ex {
  display: none;
}
header .contain #togglenav.active svg.ex {
  display: block;
}
header .contain #togglenav.active svg.ham {
  display: none;
}

.notification-bar {
  background: #fea821;
  padding: 0.75rem 0;
  line-height: 1;
}
.notification-bar .contain {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.notification-bar .contain span, .notification-bar .contain a {
  display: block;
  flex-grow: 1;
  text-align: center;
  text-decoration: none;
  color: #1e2171;
}
.notification-bar .contain a::after {
  content: "LEARN MORE >";
  display: inline-block;
  border-left: 1px solid #1e2171;
  margin-left: 1rem;
  padding-left: 1rem;
}
@media (max-width: 786px) {
  .notification-bar .contain a::after {
    display: block;
    border: none;
    margin-top: 0.5rem;
    margin-left: 0;
    padding-left: 0;
  }
}
.notification-bar .contain a:hover::after {
  color: #FFFFFF;
}
.notification-bar .contain .closenotif {
  background: none;
  border: 1px solid #1e2171;
  border-radius: 50%;
  padding: 0.25rem;
  cursor: pointer;
}
.notification-bar .contain .closenotif svg {
  display: block;
  fill: #1e2171;
  width: 1rem;
  height: 1rem;
}
.notification-bar .contain .closenotif:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.notification-bar .contain .closenotif:hover svg {
  fill: #fea821;
}

footer {
  padding: 4rem 0 !important;
  color: #FFFFFF;
}
@media (max-width: 786px) {
  footer {
    padding: 2rem 0 !important;
  }
}
footer a {
  color: #FFFFFF;
  text-decoration: none;
}
footer a:hover {
  color: #fea821;
  text-decoration: none;
}
footer .contain {
  max-width: 1200px;
}
footer .contain .logo a {
  display: block;
}
footer .contain .logo a img {
  display: block;
  width: 400px;
}
@media (max-width: 786px) {
  footer .contain .logo a img {
    width: 300px;
  }
}
@media (max-width: 568px) {
  footer .contain .logo a img {
    width: 250px;
  }
}
footer .contain .cols {
  gap: 2rem;
  margin: 3rem 0;
}
footer .contain .cols .col {
  flex: auto;
}
@media (max-width: 1200px) {
  footer .contain .cols {
    flex-direction: column;
  }
}
footer .contain nav .menu-main-nav-container .menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
@media (max-width: 1200px) {
  footer .contain nav .menu-main-nav-container .menu {
    justify-content: space-between;
    gap: 1rem;
  }
}
@media (max-width: 786px) {
  footer .contain nav .menu-main-nav-container .menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media (max-width: 786px) {
  footer .contain nav .menu-main-nav-container .menu > li {
    width: calc(33% - 1.3333333333rem);
  }
}
@media (max-width: 568px) {
  footer .contain nav .menu-main-nav-container .menu > li {
    width: calc(50% - 1rem);
  }
}
footer .contain nav .menu-main-nav-container .menu > li > a {
  display: block;
  font-weight: 600;
}
footer .contain nav .menu-main-nav-container .menu > li.menu-item-has-children > a {
  pointer-events: none;
  cursor: default;
  margin-bottom: 0.5rem;
}
footer .contain nav .menu-main-nav-container .menu > li ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .contain nav .menu-main-nav-container .menu > li ul li {
  margin-top: 0.5rem;
  line-height: 1;
}
footer .contain nav .menu-main-nav-container .menu > li ul li a {
  font-size: 0.9rem;
}
footer .contain .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .contain .social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}
footer .contain .social ul li {
  margin: 0;
}
footer .contain .social ul li a {
  display: block;
}
footer .contain .social ul li a svg {
  display: block;
  fill: #FFFFFF;
  width: 2rem;
  height: 2rem;
}
footer .contain .social ul li a svg:hover {
  fill: #fea821;
}
footer .contain .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 1rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 568px) {
  footer .contain .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
footer .contain .bottom nav .menu-policies-container .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.module {
  padding: 1px 0;
}
.module.spacing-top-small {
  padding-top: 3em;
}
.module.spacing-btm-small {
  padding-bottom: 3em;
}
.module.spacing-top-large {
  padding-top: 6em;
}
.module.spacing-btm-large {
  padding-bottom: 6em;
}
.module.bg-white {
  background: #FFFFFF;
}
.module.bg-blue-lightest {
  background: #f4f9fc;
}
.module.bg-blue-light {
  background: #96c0e6;
}
.module.bg-blue {
  background: #29469d;
}
.module.bg-blue-dark {
  background: #1e2171;
}
.module.bg-purple-light {
  background: #F5F1F7;
}
.module.bg-purple {
  background: #9d73ac;
}
.module.bg-teal-light {
  background: #E3F4F7;
}
.module.bg-teal {
  background: #0097b2;
}
.module ul li {
  margin-bottom: 0.75rem;
}
.module ul li::marker {
  color: #96c0e6;
}
.module.bg-blue-light {
  color: #1e2171;
}
.module.bg-blue-light h1, .module.bg-blue-light h2, .module.bg-blue-light h3, .module.bg-blue-light h4, .module.bg-blue-light h5, .module.bg-blue-light h6 {
  color: #1e2171;
}
.module.bg-blue, .module.bg-purple, .module.bg-teal, .module.bg-blue-dark {
  color: #FFFFFF;
}
.module.bg-blue h1, .module.bg-blue h2, .module.bg-blue h3, .module.bg-blue h4, .module.bg-blue h5, .module.bg-blue h6,
.module.bg-blue blockquote, .module.bg-purple h1, .module.bg-purple h2, .module.bg-purple h3, .module.bg-purple h4, .module.bg-purple h5, .module.bg-purple h6,
.module.bg-purple blockquote, .module.bg-teal h1, .module.bg-teal h2, .module.bg-teal h3, .module.bg-teal h4, .module.bg-teal h5, .module.bg-teal h6,
.module.bg-teal blockquote, .module.bg-blue-dark h1, .module.bg-blue-dark h2, .module.bg-blue-dark h3, .module.bg-blue-dark h4, .module.bg-blue-dark h5, .module.bg-blue-dark h6,
.module.bg-blue-dark blockquote {
  color: #FFFFFF;
}
.module.bg-blue a, .module.bg-purple a, .module.bg-teal a, .module.bg-blue-dark a {
  color: #FFFFFF;
}
.module.bg-blue a:hover, .module.bg-purple a:hover, .module.bg-teal a:hover, .module.bg-blue-dark a:hover {
  color: #fea821;
}
.module .back {
  position: absolute;
  top: 0;
  right: 2rem;
  padding-top: 3rem;
  background: url("../images/back-bubbles.png") top right no-repeat;
}
.module .back .button {
  margin-bottom: 0.5rem;
}
@media (max-width: 786px) {
  .module .back {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 4rem;
  }
}
.module .pagination {
  list-style: none;
  margin: 4rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.module .pagination li {
  font-weight: bold;
}
.module .pagination li a {
  display: block;
  font-weight: normal;
  color: #5a5a5a;
  text-decoration: none;
  padding: 0.25rem;
}
.module .pagination li a:hover {
  color: #fea821;
}
.module .pagination li.dots {
  font-weight: normal;
}
.module .pagination li.next a, .module .pagination li.prev a {
  font-size: 0.9rem;
  border-radius: 1rem;
  border: 1px solid #5a5a5a;
  padding: 0.25rem;
  width: auto;
  height: auto;
}
.module .pagination li.next a svg, .module .pagination li.prev a svg {
  display: block;
  fill: #5a5a5a;
  width: 1rem;
  height: 1rem;
}
.module .pagination li.next a:hover, .module .pagination li.prev a:hover {
  background: #fea821;
  border-color: #fea821;
  color: #FFFFFF;
}
.module .pagination li.next a:hover svg, .module .pagination li.prev a:hover svg {
  fill: #FFFFFF;
}
.module .cols .col {
  flex: 1 1 0;
}

.hero.spacing-btm-none {
  padding-bottom: 0;
}
.hero .cols {
  align-items: center;
}
.hero .cols h1 {
  margin-top: 0;
}
@media (max-width: 786px) {
  .hero .cols h1 {
    text-align: center;
  }
}

.twocol .cols {
  align-items: center;
  align-items: flex-start;
}
.twocol .cols.align-center {
  align-items: center;
}
.twocol .cols .col.col-narrow {
  flex: 0 0 300px;
  width: 300px;
}
.twocol .cols .col img {
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.twocol .cols .col .long-bubble {
  position: absolute;
  display: block;
  height: auto;
  left: calc(-1 * (50vw - 50%));
  bottom: -2rem;
  width: calc(50vw - 3rem);
  max-width: none;
  overflow: hidden;
  z-index: 1;
  height: 200px;
}
@media (max-width: 786px) {
  .twocol .cols .col .long-bubble {
    display: none;
  }
}
.twocol .cols .col .long-bubble img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.twocol.spacing-long-bubble.spacing-btm-large {
  padding-bottom: 10em;
}

.threecol.bg-blue-lightest {
  color: #1e2171;
}
.threecol.bg-blue-lightest ul {
  padding: 0 1rem;
}
.threecol.bg-blue-lightest ul li::marker {
  color: #96c0e6;
}
.threecol .cols {
  gap: 2rem;
}
.threecol .iconcol {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 786px) {
  .threecol .iconcol {
    margin-top: 2rem;
    gap: 0;
    height: auto;
  }
}
.threecol .iconcol img {
  width: 150px;
  margin-right: 1rem;
}
.threecol .iconcol h3 {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 1.5rem 2rem 1.5rem 0;
}
.threecol .iconcol hr {
  margin: 1.5rem 0;
  max-width: 100px;
}
.threecol .iconcol p {
  margin-right: 1rem;
}
.threecol .iconcol .learnmore {
  margin-top: 0;
}
@media (max-width: 786px) {
  .threecol .iconcol .learnmore {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 568px) {
  .threecol .iconcol .learnmore {
    align-items: flex-start;
    flex-direction: column;
  }
}
.threecol .iconcol .learnmore small {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
@media (max-width: 786px) {
  .threecol .iconcol .learnmore small {
    margin-top: 0;
  }
}
.threecol .iconcol .learnmore small strong::before {
  content: "\a";
  clear: right;
  display: block;
}
@media (max-width: 786px) {
  .threecol .iconcol .learnmore small strong::before {
    display: none;
  }
}
.threecol .rows .row {
  border: 1px solid #E5E5E5;
  border-radius: 1rem;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.threecol .rows .row:hover {
  background: #f4f9fc;
  border-color: #f4f9fc;
}
.threecol .rows .row h3 {
  font-weight: bold;
  font-family: "Roboto", Verdana, Arial, sans-serif;
}
.threecol .callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}
@media (max-width: 786px) {
  .threecol .callouts {
    gap: 1.5rem;
  }
}
.threecol .callouts .callout {
  margin: 0 auto;
}
.threecol .callouts .callout.callouts-square {
  max-width: none;
  width: calc(50% - 6rem);
  background: #f4f9fc;
  transition: all 0.3s ease;
}
.threecol .callouts .callout.callouts-square:first-of-type {
  width: 50%;
  background: #E3F4F7;
}
.threecol .callouts .callout.callouts-square:nth-of-type(4) {
  width: 50%;
}
@media (max-width: 786px) {
  .threecol .callouts .callout.callouts-square {
    width: auto !important;
    max-width: 300px;
  }
}
.threecol .callouts .callout.callouts-square:hover {
  background: #FFFFFF;
}

.iconaccordion .cols {
  gap: 1rem;
}
@media (max-width: 786px) {
  .iconaccordion .cols {
    gap: 0;
  }
}
.iconaccordion .cols .col {
  flex: auto;
  flex-grow: 1;
}
.iconaccordion .cols .col:first-of-type {
  width: 80px;
  flex-shrink: 0;
  flex-grow: 0;
}
.iconaccordion .cols .col:first-of-type img {
  margin: 1rem auto;
}
@media (max-width: 786px) {
  .iconaccordion .cols .col:first-of-type img {
    margin: 2rem auto 0;
  }
}
.iconaccordion .cols .col .accordion {
  margin: 0.5rem 0;
}
.iconaccordion .cols .col .accordion button {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 16px;
  border: none;
  background: none;
  padding: 0;
  color: #1e2171;
  font-weight: bold;
  cursor: pointer;
}
.iconaccordion .cols .col .accordion button:hover, .iconaccordion .cols .col .accordion button.active {
  color: #96c0e6;
}
.iconaccordion .cols .col .accordion button::before {
  content: "+";
  display: inline-block;
  color: #fea821;
  font-size: 1.3rem;
  font-weight: normal;
  min-width: 1.25rem;
}
.iconaccordion .cols .col .accordion button.active::before {
  content: "–";
}
.iconaccordion .cols .col .accordion .content {
  display: none;
  padding: 1px 0;
  font-family: "Lora", Times, serif;
  color: #1e2171;
}
.iconaccordion .cols .col .accordion .content p {
  margin-top: 0;
}

.teamlist {
  text-align: center;
}
.teamlist .teammembers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 1200px) {
  .teamlist .teammembers {
    gap: 2rem 1rem;
  }
}
.teamlist .teammembers .member {
  width: calc(33% - 1.3333333333rem);
  background: linear-gradient(0deg, #f4f9fc 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .teamlist .teammembers .member {
    width: calc(33% - 0.6666666667rem);
  }
}
@media (max-width: 786px) {
  .teamlist .teammembers .member {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 568px) {
  .teamlist .teammembers .member {
    width: 100%;
  }
}
.teamlist .teammembers .member > div {
  padding: 2rem 2rem 1rem;
}
@media (max-width: 1200px) {
  .teamlist .teammembers .member > div {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 568px) {
  .teamlist .teammembers .member > div {
    padding: 2rem 2rem 1rem;
  }
}
.teamlist .teammembers .member .img-sq {
  margin: 0 auto;
  border-radius: 50%;
  max-width: 300px;
}
.teamlist .teammembers .member h3 small {
  display: block;
  color: #29469d;
  margin-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
}
.teamlist .teammembers .member h3 small::after {
  content: "";
  height: 2px;
  background: #E5E5E5;
  position: absolute;
  bottom: 0;
  left: 40%;
  right: 40%;
  width: 20%;
}
.teamlist .teammembers .member .viewmore a:hover {
  color: #fea821;
}

.teammember .teamimg {
  border-radius: 50%;
  max-width: 350px;
}
.teammember h1 {
  margin: 2rem 0;
}
.teammember h1 small {
  display: block;
  color: #29469d;
  font-size: 1.75rem;
  margin-top: 0.5rem;
}
.teammember .member-content {
  /*column-count: 2;
  column-gap: 2rem;
  @media (max-width: $tablet) {
      column-count: 1;
  }
  p:first-of-type {
      margin-top: 0;
  }*/
}

@media (max-width: 1200px) {
  .grantee-search {
    padding: 2rem 0 !important;
  }
}
.grantee-search #search {
  display: block;
  background: #E3F4F7;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  width: calc(100% - 3rem);
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .grantee-search .cols {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
@media (max-width: 786px) {
  .grantee-search .cols {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
@media (max-width: 568px) {
  .grantee-search .cols .col {
    text-align: center;
  }
}
.grantee-search .cols .col select {
  outline: none !important;
  box-shadow: none !important;
  display: inline-block;
  background: #0097b2;
  border: none;
  color: #FFFFFF;
  padding: 0 1rem;
  max-width: 40%;
  max-width: calc(50% - 0.5rem);
}
.grantee-search .cols .col select:last-of-type {
  border-left: 1px solid #29469d;
  margin-left: 1rem;
}
.grantee-search .cols .col:last-of-type {
  text-align: right;
}
.grantee-search .cols .col .button, .grantee-search .cols .col .button-pill {
  background: none;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.grantee-search .cols .col .button:hover, .grantee-search .cols .col .button-pill:hover {
  background: #fea821;
  border-color: #fea821;
}

.grantee-searchinfo {
  font-weight: bold;
  color: #29469d;
}
@media (max-width: 1200px) {
  .grantee-searchinfo {
    padding: 2rem 0 !important;
  }
}
.grantee-searchinfo strong, .grantee-searchinfo label {
  text-transform: uppercase;
  font-weight: bold;
}
.grantee-searchinfo .cols {
  align-items: center;
}
@media (max-width: 786px) {
  .grantee-searchinfo .cols {
    gap: 1rem;
  }
}
.grantee-searchinfo .cols .col select {
  outline: none !important;
  box-shadow: none !important;
  display: inline-block;
  background: #FFFFFF;
  border: none;
  color: #29469d;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-left: 0.5rem;
}
.grantee-searchinfo .cols .col:last-of-type {
  text-align: right;
}

.grantee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 786px) {
  .grantee-list {
    flex-direction: column;
  }
}
.grantee-list li {
  width: calc(50% - 0.5rem);
}
@media (max-width: 786px) {
  .grantee-list li {
    width: 100%;
  }
}
.grantee-list li a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 1rem;
  padding: 1.5rem;
  height: calc(100% - 3rem);
  min-height: 175px;
  position: relative;
  border: 1px solid #000000;
}
.grantee-list li a.support {
  background: #0097b2;
  border-color: #0097b2;
}
.grantee-list li a.influence {
  background: #29469d;
  border-color: #29469d;
}
.grantee-list li a.reimagine {
  background: #9d73ac;
  border-color: #9d73ac;
}
.grantee-list li a.mobilize {
  background: #1e2171;
  border-color: #1e2171;
}
.grantee-list li a h3 {
  color: #FFFFFF;
  margin: 0.5rem 0 1.5rem;
}
.grantee-list li a h3 small {
  display: block;
  opacity: 0.75;
  margin-top: 0.5rem;
  font-size: 0.65em;
}
.grantee-list li a .grant {
  display: block;
  margin-bottom: 3rem;
}
.grantee-list li a .strat {
  opacity: 0.75;
  font-size: 0.9em;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  line-height: 1;
}
.grantee-list li a .button {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}
.grantee-list li a .button:hover {
  color: #fea821;
}
.grantee-list li a:hover {
  background: #FFFFFF;
  border-color: #000000;
  color: #1e2171;
}
.grantee-list li a:hover h3 {
  color: #1e2171;
}

.singlegrantee h1 {
  padding-top: 5rem;
  margin-top: 0;
}
@media (max-width: 786px) {
  .singlegrantee h1 {
    padding-top: 0;
  }
}
.singlegrantee .granteeimg {
  padding: 5rem 0 4rem;
}
@media (max-width: 786px) {
  .singlegrantee .granteeimg {
    padding: 0 0 2rem;
  }
}
.singlegrantee .granteeinfo {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 786px) {
  .singlegrantee .granteeinfo {
    flex-direction: column-reverse;
  }
}
.singlegrantee .granteeinfo .info {
  flex-grow: 1;
}
.singlegrantee .granteeinfo .info .i {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 568px) {
  .singlegrantee .granteeinfo .info .i {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.singlegrantee .granteeinfo .info .i h2 {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 150px;
  flex-shrink: 0;
}
.singlegrantee .granteeinfo .info .i > div p {
  margin: 0;
}
.singlegrantee .granteeinfo .info .i > div p.strategy {
  font-weight: bold;
  color: #29469d;
}
.singlegrantee .granteeinfo .links {
  flex-shrink: 0;
}
.singlegrantee .granteeinfo .links ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 1px solid #5a5a5a;
}
.singlegrantee .granteeinfo .links ul li a {
  color: #5a5a5a;
  text-decoration: none;
}
.singlegrantee .granteeinfo .links ul li a:hover {
  color: #fea821;
  text-decoration: underline;
}
.singlegrantee hr {
  margin: 1rem 0 3rem;
}
.singlegrantee .fundinghistory h2 {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 2rem;
}
.singlegrantee .fundinghistory .i {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 568px) {
  .singlegrantee .fundinghistory .i {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}
.singlegrantee .fundinghistory .i h3 {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 150px;
  flex-shrink: 0;
}
.singlegrantee .fundinghistory .i p {
  margin: 0;
}
.singlegrantee .grantee-news {
  margin-top: 6rem;
}
.singlegrantee .grantee-news h2 {
  text-align: left;
}

.slider .icon {
  margin: 0 auto;
}
.slider h2, .slider h3 {
  text-align: center;
}
.slider .flickslider {
  text-align: left;
  padding-bottom: 3rem;
  position: relative;
}
.slider .flickslider .slide {
  width: calc(100% - 2rem);
  padding: 1rem;
}
.slider .flickslider .slide .slidecontent {
  box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  background: #F4F4F4;
  background: linear-gradient(180deg, #F4F4F4 0%, #FFF 100%);
  overflow: hidden;
}
.slider .flickslider .slide .slidecontent .cols {
  gap: 0;
}
.slider .flickslider .slide .slidecontent .cols .col {
  padding: 1.5rem;
  flex-grow: 1;
}
.slider .flickslider .slide .slidecontent .cols .col p {
  margin: 1em 0 0;
}
.slider .flickslider .slide .slidecontent .cols .col p:first-of-type {
  margin-top: 0;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type {
  width: 40%;
  flex: none;
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 786px) {
  .slider .flickslider .slide .slidecontent .cols .col:first-of-type {
    width: auto;
  }
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type .strat {
  font-size: 1.2rem;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type h3 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 6rem;
  text-align: left;
}
@media (max-width: 786px) {
  .slider .flickslider .slide .slidecontent .cols .col:first-of-type h3 {
    margin-bottom: 3rem;
  }
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type .button-line {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type .button-line .button {
  color: #FFFFFF;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type.reimagine {
  background: #9d73ac;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type.support {
  background: #0097b2;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type.influence {
  background: #29469d;
}
.slider .flickslider .slide .slidecontent .cols .col:first-of-type.mobilize {
  background: #1e2171;
}
.slider .flickslider.partnerslider {
  max-width: 936px;
  margin: 0 auto;
}
.slider .flickslider.partnerslider .slide .slidecontent {
  height: calc(100% - 2rem);
}
.slider .flickslider.partnerslider .slide .slidecontent .cols {
  align-items: stretch;
  height: 100%;
}
.slider .flickslider.customcontent .slide .slidecontent {
  background: #f4f9fc;
  padding: 2rem 3rem;
  font-family: "Lora", Times, serif;
  color: #1e2171;
  font-size: 1.1rem;
}
.slider .flickslider.newsposts .slide {
  width: 50%;
  padding: 0;
}
@media (max-width: 786px) {
  .slider .flickslider.newsposts .slide {
    width: 100%;
    padding: 0;
  }
}
.slider .flickslider.newsposts .slide .slidecontent {
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.slider .flickslider.newsposts .slide .slidecontent a {
  display: block;
  text-decoration: none;
  padding-bottom: 1rem;
}
.slider .flickslider.newsposts .slide .slidecontent a:hover {
  color: #1e2171;
}
.slider .flickslider.newsposts .slide .slidecontent a .img-sq {
  aspect-ratio: 3/2;
  border: 2px solid #f4f9fc;
}
.slider .flickslider.newsposts .slide .slidecontent a strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: normal;
}
.slider .flickslider.newsposts .slide + .slide {
  margin-left: 2rem;
}
@media (max-width: 786px) {
  .slider .flickslider.newsposts .slide + .slide {
    margin-left: 0;
  }
}
.slider .flickslider .flickity-button {
  position: absolute;
  bottom: 0;
  right: 1rem;
  top: auto;
  left: auto;
  border: 1px solid #5a5a5a;
  padding: 0.25rem;
  width: auto;
  height: auto;
}
.slider .flickslider .flickity-button svg {
  display: block;
  fill: #5a5a5a;
  width: 1rem;
  height: 1rem;
}
.slider .flickslider .flickity-button.previous {
  right: 8.5rem;
}
.slider .flickslider .flickity-button.previous svg {
  transform: rotate(180deg);
}
.slider .flickslider .flickity-button:hover {
  border-color: #fea821;
  background: #fea821;
}
.slider .flickslider .flickity-button:hover svg {
  fill: #FFFFFF;
}
.slider .flickslider .flickity-button:disabled {
  opacity: 0;
}
.slider .flickslider .flickity-counter {
  position: absolute;
  bottom: 0.75rem;
  right: 4rem;
}
.slider .btm {
  margin: -3rem 14rem 0;
}
@media (max-width: 1200px) {
  .slider .btm {
    margin: -0.5rem 0.5rem 0;
  }
}

.stats .contain {
  max-width: 936px;
}
.stats .statblock {
  background: #E3F4F7;
  color: #1e2171;
  text-align: center;
  border-radius: 1rem;
  padding: 2rem;
}
.stats .statblock h2 {
  margin: 0 0 2rem;
}
.stats .statblock .col {
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.25rem 0;
}
.stats .statblock .col .icon {
  margin: 0.25rem auto;
}
.stats .statblock .col strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin: 0.75rem 0 0;
  font-weight: 700;
}

.bannerimg {
  padding: 0 !important;
  background: #FFFFFF;
}
.bannerimg img {
  display: block;
  width: 100%;
}

.steplist h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.steplist .steps::after {
  content: "";
  display: block;
  clear: both;
}
.steplist .steps .step {
  float: left;
  clear: left;
  width: calc(50% - 2rem);
  margin-bottom: 2rem;
}
.steplist .steps .step:nth-of-type(even) {
  float: right;
  clear: right;
  margin-top: 8rem;
}
@media (max-width: 786px) {
  .steplist .steps .step {
    float: none !important;
    width: auto;
    margin-top: 0 !important;
  }
}
.steplist .steps .step h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid #f4f9fc;
  padding-bottom: 1rem;
}
.steplist .steps .step h3 strong {
  flex-shrink: 0;
  display: inline-block;
  background: #96c0e6;
  color: #FFFFFF;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
}
.steplist .steps .step img {
  display: block;
  margin-top: 4rem;
}

.quote {
  margin-top: 3rem;
}
.quote::before {
  display: block;
  content: "“";
  color: #96c0e6;
  font-size: 8rem;
  font-family: "Lora", Times, serif;
  line-height: 1rem;
  margin-bottom: -2rem;
  transform: scale(1, 0.75);
}
.quote blockquote {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .quote blockquote {
    font-size: 1.25rem;
  }
}
.quote .authors {
  color: #1e2171;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 786px) {
  .quote .authors {
    flex-direction: column;
    gap: 1rem;
  }
}
.quote .authors div {
  flex: 1 1 0;
  border-left: 2px solid #96c0e6;
  padding-left: 1rem;
}
.quote .authors div strong {
  display: block;
}

.callout {
  background: #E3F4F7;
  color: #1e2171;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  margin: 1rem auto;
  position: relative;
}
.callout p {
  margin: 0;
  position: relative;
  z-index: 5;
}
.callout.callout-square, .callout.callouts-square {
  max-width: 300px;
  transition: all 0.3s ease;
}
.callout.callout-square::before, .callout.callouts-square::before {
  content: "";
  display: block;
  border-top: 1px solid #96c0e6;
  border-left: 1px solid #96c0e6;
  border-top-left-radius: 0.25rem;
  width: 70px;
  height: 50px;
  position: absolute;
  top: -0.25rem;
  left: 0.25rem;
}
.callout.callout-square::after, .callout.callouts-square::after {
  content: "";
  display: block;
  border-bottom: 1px solid #96c0e6;
  border-right: 1px solid #96c0e6;
  border-bottom-right-radius: 0.25rem;
  width: 70px;
  height: 50px;
  position: absolute;
  bottom: -0.25rem;
  right: 0.25rem;
}
.callout.callout-square:nth-of-type(even)::before, .callout.callouts-square:nth-of-type(even)::before {
  top: 0.25rem;
  left: -0.25rem;
}
.callout.callout-square:nth-of-type(even)::after, .callout.callouts-square:nth-of-type(even)::after {
  bottom: 0.25rem;
  right: -0.25rem;
}
.callout.callout-square:hover, .callout.callouts-square:hover {
  background: #FFFFFF;
}
.callout.callout-round, .callout.callouts-round {
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 200px;
  background: #f4f9fc;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.callout.callout-round::before, .callout.callouts-round::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(#96c0e6 0deg 90deg, transparent 90deg 180deg, #96c0e6 180deg 270deg, transparent 270deg 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 2px), black calc(100% - 1px));
  mask: radial-gradient(closest-side, transparent calc(100% - 2px), black calc(100% - 1px));
}
.callout.callout-round:nth-of-type(even)::before, .callout.callouts-round:nth-of-type(even)::before {
  transform: rotate(90deg);
  top: 0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  left: 0.25rem;
}
.callout.callout-round:hover, .callout.callouts-round:hover {
  background: #FFFFFF;
}

.linklistcol .linklist {
  text-align: center;
}
.linklistcol .linklist h3 {
  display: inline-block;
  color: #9d73ac;
  font-family: "Roboto", Verdana, Arial, sans-serif;
  font-weight: bold;
  border-bottom: 2px solid #f4f9fc;
  padding: 2rem 0 1rem;
  margin: 0.5rem auto;
}
.linklistcol .linklist p {
  margin: 0.5rem 0;
}
.linklistcol .button-line {
  justify-content: center;
  margin-top: 2rem;
}

.newslist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.newslist .newspost {
  width: calc(50% - 1rem);
}
@media (max-width: 1200px) {
  .newslist .newspost {
    width: 100%;
  }
}
.newslist .newspost a {
  display: block;
  color: #5a5a5a;
  text-decoration: none;
  position: relative;
  margin-top: 4.5rem;
  box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  background: #F4F4F4;
  background: linear-gradient(180deg, #F4F4F4 0%, #FFF 100%);
  height: calc(100% - 4.5rem);
}
.newslist .newspost a .img-sq {
  position: absolute;
  top: -4.5rem;
  right: 2rem;
  width: 12rem;
  border-radius: 50%;
}
.newslist .newspost a .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  height: 100%;
}
.newslist .newspost a .info .category {
  display: block;
  background: #96c0e6;
  color: #29469d;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1rem 16rem 1rem 2rem;
  font-size: 1.2rem;
  line-height: 1;
}
.newslist .newspost a .info h2 {
  margin: 0;
  padding: 5rem 2rem 1rem;
}
.newslist .newspost a .info .excerpt {
  padding: 0 2rem;
  display: block;
}
.newslist .newspost a .info .button {
  padding: 0 2rem 2rem;
}
.newslist .newspost a .info .button:hover {
  color: #fea821;
}
.newslist .newspost.featuredpost {
  width: 100%;
}
.newslist .newspost.featuredpost a {
  margin-top: 6rem;
}
.newslist .newspost.featuredpost a .img-sq {
  top: -6rem;
  width: 15rem;
}
.newslist .newspost.featuredpost a .category {
  background: #1e2171;
  color: #FFFFFF;
  padding-right: 19rem;
}
.newslist .newspost.featuredpost a h2 {
  padding-top: 2rem;
  padding-right: 19rem;
  padding-bottom: 2rem;
}
@media (max-width: 786px) {
  .newslist .newspost.featuredpost a h2 {
    padding: 7rem 2rem 1rem;
  }
}
.newslist.newslist-count-3 .newspost {
  width: 100%;
}

.newssingle .featuredimg {
  width: 100%;
}
.newssingle h1 {
  margin-bottom: 1rem;
}
.newssingle .date {
  color: #1e2171;
  font-size: 1.3rem;
  margin: 0 0 3rem;
}
.newssingle h2 {
  margin-top: 3rem;
  clear: both;
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  .newssingle h2 {
    font-size: 1.25rem;
  }
}
.newssingle h3 {
  clear: both;
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  .newssingle h3 {
    font-size: 1rem;
  }
}

.categorytags {
  clear: both;
  margin-top: 6rem;
}
.categorytags p {
  display: flex;
}
@media (max-width: 786px) {
  .categorytags p {
    flex-direction: column;
  }
}
.categorytags p strong {
  display: block;
  flex-basis: 90px;
  flex-shrink: 0;
}
@media (max-width: 786px) {
  .categorytags p strong {
    flex-basis: auto;
  }
}

.module.news .button-line {
  margin-top: 3rem;
  justify-content: center;
}

.articlegrid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .articlegrid {
    gap: 1.5rem;
  }
}
@media (max-width: 786px) {
  .articlegrid {
    gap: 1rem;
  }
}
.articlegrid .article {
  width: 30%;
  width: calc(33% - 1.3333333333rem - 2px);
  border: 1px solid #E5E5E5;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .articlegrid .article {
    width: 40%;
    width: calc(50% - 0.75rem - 2px);
  }
}
@media (max-width: 786px) {
  .articlegrid .article {
    width: 100%;
  }
}
.articlegrid .article h3 {
  font-family: "Roboto", Verdana, Arial, sans-serif;
  margin: 0;
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.articlegrid .article p {
  margin: 0;
  padding: 0 1.5rem;
}
.articlegrid .article p.learnmore {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}
.articlegrid .article p.learnmore a {
  color: #5a5a5a;
  text-decoration: none;
  font-weight: bold;
}
.articlegrid .article p.learnmore a::after {
  content: "|";
  color: #E5E5E5;
  padding-left: 1rem;
}
.articlegrid .article p.learnmore a:last-of-type::after {
  display: none;
}
.articlegrid .article p.learnmore a:hover {
  color: #fea821;
}

.newslettersignup {
  max-width: 550px;
  margin: 0 auto;
}
.newslettersignup #mc_embed_signup .mc-cols {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 568px) {
  .newslettersignup #mc_embed_signup .mc-cols {
    display: block;
  }
}
.newslettersignup #mc_embed_signup .mc-field-group {
  padding: 0;
  width: 100%;
  min-height: 0;
  margin-bottom: 0.5rem;
}
.newslettersignup #mc_embed_signup .mc-field-group input {
  padding: 0.75rem 0.5rem;
  text-indent: 0;
  width: calc(100% - 1rem - 4px);
  border: 2px solid #E5E5E5;
  border-radius: 0.5rem;
  text-align: center;
  line-height: 1;
}
.newslettersignup #mc_embed_signup .button {
  display: block;
  margin: 1rem auto 0;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  background: #FFFFFF;
  color: #1e2171;
  border: 2px solid #1e2171;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}
.newslettersignup #mc_embed_signup .button:hover {
  border-color: #fea821;
  background: #fea821;
  color: #FFFFFF;
}
.newslettersignup #mc_embed_signup div#mce-responses {
  float: none;
  width: auto;
  margin: 0;
}
.newslettersignup #mc_embed_signup div#mce-responses div.response {
  width: auto;
  padding: 0;
  float: none;
  margin: 0.5em 0;
}
.newslettersignup #mc_embed_signup div#mce-responses div.response#mce-success-response {
  color: #0097b2;
}

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