@charset "UTF-8";
/* 
 * How to use the SCSS mixins: https://github.com/engagingnewsproject/enp-platform/wiki/SCSS
*/
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* 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;
}

/* 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;
}

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

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

iframe {
  border: none;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

body {
  background: #fff;
}

.main-body-wrapper {
  overflow-x: hidden;
}

.flex_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.row_newsletter {
  overflow: visible;
  margin: 20px;
}

.row_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.horiz-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.horiz-list__item {
  margin-left: 10px;
}
.horiz-list__item:first-of-type {
  margin: 0;
}

.hint {
  font-size: 0.75rem;
  color: #5e6873;
}

.font--xs {
  font-size: 12px;
}

.font--lg {
  font-size: 20px;
}

.m--no {
  margin: 0;
}

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

.text-center, .full-width .article__title {
  text-align: center;
}

.indent {
  text-indent: 50px;
}

.sr-text,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-text:active, .sr-text:focus,
.screen-reader-text:active,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.alignnone {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 1.6rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 1.6rem;
  height: auto;
}

@media (min-width: 600px) {
  .alignleft {
    float: left;
    margin-right: 1.6rem;
  }
  .alignright {
    float: right;
    margin-left: 1.6rem;
  }
}
.aspect-ratio-box {
  height: 0;
  padding-top: 57.6578494509%;
  position: relative;
  margin-bottom: 1em;
}

.aspect-ratio-box-inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body:not(.enp-quiz) svg {
  width: 1.1em;
  height: 1.1em;
}

.highcharts-container svg {
  width: auto;
  height: auto;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******
 *
 * Typography
 *
 ******/
body {
  font-size: 16px;
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

h1,
.h1 {
  font-size: 34px;
}
@media (max-width: 399px) {
  h1,
  .h1 {
    font-size: 20px;
  }
}

h2,
.h2 {
  font-size: 28px;
}

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

h4,
.h4 {
  font-size: 16px;
}

h5,
.h5 {
  font-size: 16px;
}

h6,
.h6 {
  font-size: 16px;
}

p,
.p {
  margin-bottom: 1.6rem;
}

a {
  color: #333f48;
}
a:hover {
  color: #1e252a;
}

hr {
  background-color: #ddd;
  border: 0;
  height: 1px;
  margin-bottom: 1.6rem;
}

ul,
ol {
  margin-bottom: 1.6rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  margin-left: 1.6rem;
}

b,
strong {
  font-weight: bold;
}

dfn,
cite,
em {
  font-style: italic;
}

blockquote {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  margin: 1.6rem 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #5e6873;
  font-family: 1.1rem;
}

figure.quote {
  position: relative;
  border-left: 2px solid #5e6873;
  padding: 0 0 0 3.2rem;
}
figure.quote blockquote {
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 0;
  border-top: none;
  border-bottom: none;
  font-style: italic;
}
figure.quote blockquote::before {
  content: "“";
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0.8rem;
}
figure.quote blockquote::after {
  content: "”";
  font-size: 4rem;
  line-height: 1;
  position: absolute;
}

address {
  margin: 0 0 1.6rem;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  padding: 1.6rem;
  overflow: auto;
  max-width: 100%;
}

code,
kbd,
tt,
var {
  font: 0.95em Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: none;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 0.75em;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 0.75em;
}

big {
  font-size: 1.25em;
}

figure {
  margin: 0 0 1.6rem;
}

figcaption {
  font-size: 0.75rem;
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  color: #5e6873;
}

table {
  margin: 0 0 1.25em;
  width: 100%;
  font-weight: 300;
}

th {
  font-size: 1.15em;
  padding: 5px;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  color: #5e6873;
}

thead th {
  border-bottom: 1px solid #f8f8f8;
}

tfoot th {
  border-top: 1px solid #888;
}

td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

tr {
  border-bottom: solid 0.5px #000;
}
@media (max-width: 399px) {
  tr {
    display: -webkit-flex;
  }
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

label {
  font-size: 14px;
  color: #888;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
textarea {
  color: #888;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  padding: 8px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  color: #111;
}

textarea {
  vertical-align: top; /* Improves readability and alignment in all browsers */
  width: 98%;
}

button,
html input[type=button],
.nf-form-content input[type=button],
input[type=submit],
.btn {
  background: #bf5700;
  padding: 0.8rem 1.6rem;
  font-size: 16px;
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  text-decoration: none;
  line-height: 1.1;
  color: #fff;
  border: 0;
  letter-spacing: 0.4px;
  border-radius: 40px;
  cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: none; /* Corrects inability to style clickable 'input' types in iOS */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #fff;
}
button:hover, button:focus,
html input[type=button]:hover,
html input[type=button]:focus,
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=button]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.btn:hover,
.btn:focus {
  color: #fff;
  background-color: #7f3a00;
}
button:active,
html input[type=button]:active,
.nf-form-content input[type=button]:active,
input[type=submit]:active,
.btn:active {
  color: #fff;
  background-color: #9f4800;
}
button:disabled,
html input[type=button]:disabled,
.nf-form-content input[type=button]:disabled,
input[type=submit]:disabled,
.btn:disabled {
  color: #fff;
  background-color: #888;
}
button.light,
html input[type=button].light,
.nf-form-content input[type=button].light,
input[type=submit].light,
.btn.light {
  background-color: #f0f0f0;
  color: #020644;
}
button.light:hover,
html input[type=button].light:hover,
.nf-form-content input[type=button].light:hover,
input[type=submit].light:hover,
.btn.light:hover {
  background-color: #fff;
}

.btn--primary {
  padding: 0.5em 1em;
  font-size: 16px;
}

.btn--sm,
input.btn--sm {
  font-size: 12px;
  padding: 0.5em 1em;
}

.btn--sm_reg_dark {
  font-size: 12px;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 20px;
  color: #fff;
  background-color: #02B2BF;
}

.btn--lg {
  font-size: 20px;
  padding: 0.5em 1.2em;
}

.btn--ghost,
input.btn--ghost {
  background: transparent !important;
  color: #bf5700;
  border: 2px solid #bf5700;
  fill: #bf5700;
  border-radius: 40px;
  padding: 0.8rem 1.6rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  font-size: 16px;
}
.btn--ghost:hover, .btn--ghost:focus,
input.btn--ghost:hover,
input.btn--ghost:focus {
  color: #964400;
  border-color: #964400;
  background: transparent !important;
  fill: #9e4800;
}
.btn--ghost:active,
input.btn--ghost:active {
  color: #9f4800;
  border-color: #9f4800;
  background: transparent !important;
  fill: #ae4f00;
}

.btn--stretch {
  display: block;
}

.btn--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn__icon {
  margin-right: 0.8rem;
  font-size: 1.15rem;
}

.wrapper--pad {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
@media (min-width: 800px) {
  .wrapper--pad {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.wrapper--pad-lg {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media (min-width: 800px) {
  .wrapper--pad-lg {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.wrapper--pad-xlg {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media (min-width: 800px) {
  .wrapper--pad-xlg {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
@media (min-width: 1000px) {
  .wrapper--pad-xlg {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .wrapper--pad-xlg {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.wrapper--pad-huge {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
@media (min-width: 800px) {
  .wrapper--pad-huge {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
@media (min-width: 1000px) {
  .wrapper--pad-huge {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1200px) {
  .wrapper--pad-huge {
    padding-left: 11.2rem;
    padding-right: 11.2rem;
  }
}

.container, body.enp-quiz .enp-breadcrumb-link__container {
  max-width: 1200px;
  margin: auto;
}

.container--sm {
  max-width: 600px;
}

.container--md {
  max-width: 800px;
}

.container--lg {
  max-width: 1200px;
}

.container--xl {
  max-width: 1400px;
}

/* We can get rid of the below styles if bootstrap is added later */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col-sm-3 {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0px 5px;
  min-width: 190px;
}

.col-sm-4 {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0px 5px;
  min-width: 255px;
}

.col-sm-6 {
  min-width: 50%;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

figure {
  max-width: 100%;
}

body.archive .header {
  background: #fcfcfc;
}
body.archive .header:after {
  background: #fcfcfc;
  bottom: -50%;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
}

@supports not (display: flex) {
  .archive__content::after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
  @media (min-width: 600px) {
    .archive__content {
      float: right;
      width: 80%;
    }
  }
  @media (min-width: 800px) {
    .archive__content {
      width: 85%;
    }
  }
}
@supports (display: flex) {
  @media (min-width: 600px) {
    .archive__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 80%;
              flex: 0 0 80%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  @media (min-width: 1000px) {
    .archive__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 78%;
              flex: 0 0 78%;
    }
  }
  @media (min-width: 1200px) {
    .archive__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 80%;
              flex: 0 0 80%;
    }
  }
}
@supports (display: grid) {
  .archive__content {
    grid-column: 1/-1;
    display: grid;
  }
  @media (min-width: 600px) {
    .archive__content {
      grid-column: 4/13;
    }
  }
  @media (min-width: 800px) {
    .archive__content {
      grid-column: 4/-1;
      width: 100%;
    }
  }
  .archive__content__general,
  .archive__content__board {
    grid-column: 1/-1;
  }
}
.nf-before-form-content .nf-form-fields-required {
  position: absolute;
  display: none;
}

.nf-form-cont .nf-field-container {
  margin-bottom: 20px;
}
.nf-form-cont ::-webkit-input-placeholder {
  color: #adadad;
}
.nf-form-cont ::-moz-placeholder {
  color: #adadad;
}
.nf-form-cont :-ms-input-placeholder {
  color: #adadad;
}
.nf-form-cont ::-ms-input-placeholder {
  color: #adadad;
}
.nf-form-cont ::placeholder {
  color: #adadad;
}
.nf-form-cont select {
  border-radius: 0;
  width: 100%;
  height: 30px;
}
.nf-form-cont input[type=button] {
  width: 100%;
  border: none;
}
.nf-form-cont textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
}
.nf-form-cont .nf-field-label label {
  font-weight: 100;
  color: inherit;
}
.nf-form-cont .nf-error .ninja-forms-field {
  border-color: #d9534f;
}
.nf-form-cont .nf-error-msg {
  color: #d9534f;
}

.widget .nf-form-cont label {
  font: inherit;
}
@media (min-width: 600px) {
  .widget .nf-form-cont input[type=button] {
    width: auto;
  }
}
.widget .nf-form-cont .mei-btn {
  background: #579d42;
}
.widget .nf-form-cont .mei-btn:hover {
  background-color: #437933;
}

.footer__footer .nf-field-label {
  margin: 0 auto 10px auto;
}
.footer__footer [type=email] {
  width: 70%;
}

#tribe-events-pg-template .tribe-events-content ul li {
  margin: 0 0 0 1.6rem;
}
#tribe-events-pg-template .tribe-events-content ol li {
  margin: 0 0 0 1.6rem;
}
#tribe-events-pg-template .tribe-events-content a {
  text-decoration: underline;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

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

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

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

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

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

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

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: transparent;
  border: none;
  color: #333;
}

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

.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #19f;
          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: #bf5700;
  -webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.35));
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          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;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

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

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.grid {
  display: block;
}

.grid--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  .grid--flex__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@supports (display: flex) {
  @media (min-width: 600px) {
    .grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  }
}
@supports (display: grid) {
  .grid {
    display: grid;
  }
  .grid--col-12 {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
  }
  @media (min-width: 600px) {
    .grid--col-12 {
      grid-template-columns: repeat(12, 1fr);
    }
  }
  .grid--gap-20 {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
  @media (min-width: 600px) {
    .grid--gap-20 {
      grid-column-gap: 20px;
    }
  }
  .grid--gap-30 {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
  @media (min-width: 600px) {
    .grid--gap-30 {
      grid-column-gap: 30px;
    }
  }
}
@supports not (display: grid) {
  @media (min-width: 600px) {
    .grid--gap-30 {
      grid-column-gap: 0;
    }
  }
}
.collapsable.is-hidden:not(.is-hiding) {
  opacity: 0;
  height: 12.5px;
  -webkit-transform: translateY(-400px);
          transform: translateY(-400px);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.collapsable.is-hiding {
  display: block;
  clear: both;
  -webkit-animation: collapse 0.2s ease-out forwards;
          animation: collapse 0.2s ease-out forwards;
}
.collapsable.is-hiding li {
  -webkit-animation: collapseHide 0.2s ease-out forwards;
          animation: collapseHide 0.2s ease-out forwards;
}
.collapsable.is-opening {
  display: block;
  -webkit-animation: collapseReveal 0.8s ease-out forwards;
          animation: collapseReveal 0.8s ease-out forwards;
}
.collapsable[aria-hidden=false] li {
  opacity: 0;
  -webkit-animation: collapseShow 0.325s ease-out forwards;
          animation: collapseShow 0.325s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(2) {
  -webkit-animation: collapseShow 0.365s 0.15s ease-out forwards;
          animation: collapseShow 0.365s 0.15s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(3) {
  -webkit-animation: collapseShow 0.385s 0.1833333333s ease-out forwards;
          animation: collapseShow 0.385s 0.1833333333s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(4) {
  -webkit-animation: collapseShow 0.405s 0.225s ease-out forwards;
          animation: collapseShow 0.405s 0.225s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(5) {
  -webkit-animation: collapseShow 0.425s 0.27s ease-out forwards;
          animation: collapseShow 0.425s 0.27s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(6) {
  -webkit-animation: collapseShow 0.445s 0.3166666667s ease-out forwards;
          animation: collapseShow 0.445s 0.3166666667s ease-out forwards;
}
.collapsable[aria-hidden=false] li:nth-child(7) {
  -webkit-animation: collapseShow 0.465s 0.3642857143s ease-out forwards;
          animation: collapseShow 0.465s 0.3642857143s ease-out forwards;
}
.collapsable[aria-hidden=false] .searchform {
  opacity: 0;
  -webkit-animation: collapseShow 0.495s 0.4642857143s ease-out forwards;
          animation: collapseShow 0.495s 0.4642857143s ease-out forwards;
}
@media (min-width: 800px) {
  .collapsable.is-hidden {
    display: block !important;
    opacity: 1 !important;
    height: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}

@media (max-width: 799px) {
  .collapsable--max-tablet.is-hidden:not(.is-hiding) {
    opacity: 0;
    height: 12.5px;
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  .collapsable--max-tablet .is-hiding {
    display: block;
    -webkit-animation: collapse 0.3s ease-out forwards;
            animation: collapse 0.3s ease-out forwards;
  }
  .collapsable--max-tablet .is-hiding li {
    -webkit-animation: collapseHide 0.2s ease-out forwards;
            animation: collapseHide 0.2s ease-out forwards;
  }
  .collapsable--max-tablet .is-opening {
    display: block;
    -webkit-animation: collapseReveal 0.3s ease-out forwards;
            animation: collapseReveal 0.3s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] {
    display: block;
  }
  .collapsable--max-tablet [aria-hidden=false] li {
    opacity: 0;
    -webkit-animation: collapseShow 0.3s ease-out forwards;
            animation: collapseShow 0.3s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(2) {
    -webkit-animation: collapseShow 0.365s 0.15s ease-out forwards;
            animation: collapseShow 0.365s 0.15s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(3) {
    -webkit-animation: collapseShow 0.385s 0.1833333333s ease-out forwards;
            animation: collapseShow 0.385s 0.1833333333s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(4) {
    -webkit-animation: collapseShow 0.405s 0.225s ease-out forwards;
            animation: collapseShow 0.405s 0.225s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(5) {
    -webkit-animation: collapseShow 0.425s 0.27s ease-out forwards;
            animation: collapseShow 0.425s 0.27s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(6) {
    -webkit-animation: collapseShow 0.445s 0.3166666667s ease-out forwards;
            animation: collapseShow 0.445s 0.3166666667s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(7) {
    -webkit-animation: collapseShow 0.465s 0.3642857143s ease-out forwards;
            animation: collapseShow 0.465s 0.3642857143s ease-out forwards;
  }
  .collapsable--max-tablet [aria-hidden=false] li:nth-child(8) {
    -webkit-animation: collapseShow 0.485s 0.4125s ease-out forwards;
            animation: collapseShow 0.485s 0.4125s ease-out forwards;
  }
}

@-webkit-keyframes collapseShow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0px, 0);
            transform: translate3d(-20px, 0px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes collapseShow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0px, 0);
            transform: translate3d(-20px, 0px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes collapseHide {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
}
@keyframes collapseHide {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
}
@-webkit-keyframes collapse {
  0% {
    max-height: 100%;
    opacity: 1;
  }
  100% {
    max-height: 0px;
    opacity: 0;
  }
}
@keyframes collapse {
  0% {
    max-height: 100%;
    opacity: 1;
  }
  100% {
    max-height: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes collapseReveal {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 100%;
  }
}
@keyframes collapseReveal {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 100%;
  }
}
.ethics-link a {
  color: #579d42;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.ethics-link a:hover {
  color: #333f48;
}

.ethics-title {
  color: #579d42;
}

@media (min-width: 700px) {
  .article .researchers {
    grid-column: 2;
    grid-row: 5;
  }
}

.research-meta__btn {
  font-size: 15px;
  max-width: 160px;
  padding: 0.6rem 0.8rem;
}
@media (min-width: 800px) {
  .research-meta__btn {
    position: relative;
  }
}

.media-ethics-meta__btn {
  font-size: 15px;
  max-width: 185px;
  padding: 0.6rem 0.8rem;
}
@media (min-width: 800px) {
  .media-ethics-meta__btn {
    position: relative;
  }
}

.btn--research-report {
  margin-bottom: 0.8rem;
  border: 2px solid transparent;
  margin-top: 0.1rem;
}
@media (min-width: 800px) {
  .btn--research-report {
    margin-top: 0.1rem;
  }
}

.researchers-tease, .director-tease {
  margin-bottom: 0.8rem;
  margin-top: 1.6rem;
}
@media (min-width: 800px) {
  .researchers-tease, .director-tease {
    margin-top: 3.2rem;
  }
}

.researchers-tease__title, .director-tease__title, .sidebar-menu__title {
  font-size: 0.85rem;
}

.researchers-tease .additional,
.director-tease .additional {
  margin-bottom: 0.25rem;
}

.ann__header {
  background-color: #02B2BF;
  z-index: 1;
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1000px) {
  .ann__header {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
}
.ann__header::before, .ann__header::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (min-width: 1000px) {
  .ann__header::before, .ann__header::after {
    background-size: 55%;
  }
}
.ann__header::before {
  background-image: url("/wp-content/themes/engage/assets/img/header-top-right-graphic.svg");
  background-position: 100% 0;
}
.ann__header::after {
  background-image: url("/wp-content/themes/engage/assets/img/dots-cut-header.svg");
  background-position: 0 100%;
}

.ann__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1000px) {
  .ann__header-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ann__header-img {
  -webkit-animation: slideIn 0.6666666667s ease-out;
          animation: slideIn 0.6666666667s ease-out;
  z-index: 999;
  position: relative;
}
@media (min-width: 1000px) {
  .ann__header-img {
    max-height: 80vh;
  }
}

.btn--annual-report {
  -webkit-animation: slideIn 0.6666666667s ease-out;
          animation: slideIn 0.6666666667s ease-out;
  z-index: 1000;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 600px) {
  .btn--annual-report {
    -ms-flex-item-align: center;
        align-self: center;
    margin-right: 0;
  }
}
.btn--annual-report .btn__icon {
  height: auto;
}

.btn--annual-report {
  background-color: #2e4249;
  margin-top: 2em;
}
.btn--annual-report:hover {
  background-color: #1a262a;
}

.ann__sct {
  margin-top: unset;
  display: grid;
}
.ann__sct_split {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-row-gap: 40px;
  background-color: #fff;
  padding-top: 3rem;
}
@media (min-width: 1000px) {
  .ann__sct_split {
    grid-template-columns: 40% auto;
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1000px) {
  .ann__sct_split .flex_row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ann__sct_grid_pt {
  padding-top: 1.6rem;
}
@media (min-width: 800px) {
  .ann__sct_grid_pt {
    padding-top: 3.2rem;
  }
}
.ann__sct_whole {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-rows: auto 1fr;
  grid-row-gap: 20px;
}
@media (min-width: 1200px) {
  .ann__sct_quote {
    min-height: 100vh;
  }
}
.ann__sct_quote .ann__sect_quote__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60vh;
  background-size: 180vh;
}
@media (min-width: 600px) {
  .ann__sct_quote .ann__sect_quote__container {
    background-size: 95vh;
  }
}
@media (min-width: 1000px) {
  .ann__sct_quote .ann__sect_quote__container {
    background-size: 80vh;
  }
}
@media (min-width: 1200px) {
  .ann__sct_quote .ann__sect_quote__container {
    background-size: 130vh;
    min-height: 100vh;
  }
}
.ann__sct_quote .ann__sect_quote-img {
  font-size: 20px;
  padding: 1em 1em 0 1em;
}
@media (min-width: 600px) {
  .ann__sct_quote .ann__sect_quote-img {
    font-size: 25px;
    padding: 4em;
  }
}
@media (min-width: 800px) {
  .ann__sct_quote .ann__sect_quote-img {
    padding: 3em;
    font-size: 26px;
    max-width: 64vw;
  }
}
@media (min-width: 1000px) {
  .ann__sct_quote .ann__sect_quote-img {
    font-size: 30px;
    max-width: 50vw;
  }
}
.ann__sct_tiles {
  min-height: unset;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 40px;
  overflow: hidden;
}
@media (min-width: 800px) {
  .ann__sct_tiles {
    min-height: unset;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 0;
    margin-top: 6rem;
  }
}
.ann__sct_full.zoom-two {
  padding-top: 6rem;
  z-index: 9;
  background: #fff;
  position: relative;
}
.ann__sct_full img {
  z-index: 9;
  width: 100%;
  background-color: #fff;
}
.ann__sct_pad_img_title {
  grid-template-rows: 10vh 1fr 10vh;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
.ann__sct_full_content_slim::before, .ann__sct_faculty::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/engage/assets/img/grey-dots-1.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 80%;
  width: 100%;
  height: auto;
  z-index: -1;
}
@media (min-width: 1000px) {
  .ann__sct_full_content_slim::before, .ann__sct_faculty::before {
    background-size: 50%;
    background-position: 100% 100%;
  }
}
.ann__sct_faculty::before {
  height: 100%;
}
.ann__sct_full_content_slim:before {
  right: 0;
  height: 100%;
  background-size: 80%;
}
@media (min-width: 800px) {
  .ann__sct_full_content_slim:before {
    background-size: 50%;
    height: 65%;
    width: 70%;
  }
}
.ann__sct.wrapper--pad-xlg, .ann__sct.wrapper--pad-huge {
  padding-top: 6em;
  padding-bottom: 6em;
}
.ann__sct.vert-pad-sm {
  padding-top: 4em;
  padding-bottom: 4em;
}
.ann__sct .tile {
  cursor: default;
}
@media (min-width: 1000px) {
  .ann__sct.container--xl {
    margin: 0 auto;
  }
}

.ann__sct_quote {
  background-image: url("/wp-content/themes/engage/assets/img/grey-dots-2.svg");
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: right top;
}
@media (min-width: 800px) {
  .ann__sct_quote {
    background-size: 50%;
  }
}

.ann__sct_faculty {
  position: relative;
}

@media (min-width: 1000px) {
  .ann__block {
    padding-right: 40px;
    border-right: 1px solid #bf5700;
  }
}
.ann__block .ann__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ann__block .ann__card .ann__title h2 {
  color: #ff9900;
}
@media (min-width: 1000px) {
  .ann__block .ann__img-wrap {
    max-width: 80%;
  }
}
.ann__block .ann__img-director {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ann__block .ann__img {
  display: grid;
}
.ann__block .ann__img img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  height: 50%;
}

.ann__grid {
  grid: repeat(4, auto)/repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 0;
}
@media (min-width: 800px) {
  .ann__grid {
    grid: repeat(3, auto)/repeat(3, 1fr);
    grid-column-gap: 20px;
  }
}
@media (min-width: 1000px) {
  .ann__grid {
    grid: repeat(2, auto)/repeat(5, 1fr);
    grid-column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .ann__grid {
    padding: 0;
  }
}
.ann__grid .ann__grid_item {
  text-align: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-self: start;
  justify-items: center;
  padding-bottom: 5rem;
}
.ann__grid .ann__grid_item img {
  min-height: 78px;
}
.ann__grid .ann__grid_item .ann__grid_num {
  margin-bottom: 0;
  -ms-flex-item-align: center;
      align-self: center;
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
}
.ann__grid .ann__grid_item .ann__grid_title {
  text-transform: uppercase;
  margin-bottom: 0;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.ann__list {
  list-style: none;
  margin-bottom: 0;
}
.ann__list .ann__list_item {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  grid-row-gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-left: 0;
}
@media (min-width: 800px) {
  .ann__list .ann__list_item {
    grid-template-columns: auto 1fr;
    padding-left: 10rem;
  }
}
.ann__list .ann__list_img img {
  border-radius: 50%;
}

.ann__tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  row-gap: 0;
  overflow: hidden;
}
@media (min-width: 800px) {
  .ann__tile {
    overflow: scroll;
  }
  .ann__tile:nth-child(n+3) {
    z-index: 9;
    background: #fff;
    margin-top: 40px;
  }
  .ann__tile:hover:nth-child(n+3) .ann__hover_more {
    height: 100%;
  }
}
.ann__tile:not(:first-of-type) {
  z-index: 9;
}
.ann__tile .ann__img-wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ann__tile .ann__tile_img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}
.ann__tile .ann__info {
  display: grid;
  padding: 2rem 3rem 0 3rem;
  color: #fff;
}
.ann__tile h2.ann__title,
.ann__tile .ann__excerpt {
  color: #fff;
}
.ann__tile .ann__hover_text {
  padding-top: 2rem;
}
.ann__tile .ann__hover_link {
  color: #fff;
}

.ann__hover_more {
  top: 100%;
  left: 0;
  z-index: 2;
  opacity: 0;
  height: 100%;
  position: absolute;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1);
  background: rgba(0, 0, 0, 0.7215686275) repeat left top;
  padding: 1.5em 1em;
  color: #fff;
}
.ann__hover_more::-webkit-scrollbar {
  display: none;
}
@media (min-width: 800px) {
  .ann__hover_more {
    padding: 20px 3em 30px 3em;
  }
}
.ann__hover_more .ann__hover_links {
  display: grid;
  grid-template-rows: repeat(1fr);
  row-gap: 10px;
}
.ann__hover_more .ann__hover_links .ann__hover_link {
  font-weight: 800;
  text-decoration: none;
}
.ann__hover_more .ann__hover_text {
  margin-bottom: 0;
}

.ann__tile:hover .ann__hover_more, .ann__tile:focus .ann__hover_more {
  top: 0;
  opacity: 1;
  overflow-y: overlay;
}

.ann__sct_full_content {
  grid-template-rows: auto auto auto 1fr;
  grid-template-columns: 3em 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-top: 3rem;
  padding-bottom: 3rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.5rem;
}
@media (min-width: 800px) {
  .ann__sct_full_content {
    grid-template-columns: repeat(20, 1fr);
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.ann__sct_full_content p {
  margin-bottom: 0.5rem;
}
.ann__sct_full_content .ann__title {
  grid-column: 1/span 3;
}
.ann__sct_full_content .ann__title h2 {
  margin-bottom: 0;
}
.ann__sct_full_content .ann__subtitle {
  grid-column: 1/-1;
}
.ann__sct_full_content .ann__intro {
  grid-column: 1/-1;
}
.ann__sct_full_content .ann__col_first {
  padding-bottom: 1rem;
  grid-column: 1/span 4;
}
@media (min-width: 800px) {
  .ann__sct_full_content .ann__col_first {
    grid-column: 2/span 9;
  }
}
.ann__sct_full_content .ann__col_second {
  grid-column: 6/span 7;
}
@media (min-width: 800px) {
  .ann__sct_full_content .ann__col_second {
    grid-column: 11/span 9;
  }
}

.ann__sct_pad_img_title {
  grid-template-rows: auto 1fr;
  padding: 2rem 2.4rem;
}
.ann__sct_pad_img_title .ann__title {
  padding: 0;
  font-size: 21px;
}
@media (min-width: 600px) {
  .ann__sct_pad_img_title .ann__title {
    padding-top: 3rem;
  }
}

.ann__sct_full_content_slim {
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  row-gap: 30px;
}
.ann__sct_full_content_slim .ann__contact_info {
  display: grid;
  justify-items: center;
  align-self: end;
  text-align: center;
}
.ann__sct_full_content_slim .ann__social {
  justify-items: center;
}
@media (min-width: 600px) {
  .ann__sct_full_content_slim .ann__social {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.ann__sct_full_content_slim .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-decoration: none;
}

.ann__title {
  text-transform: uppercase;
  color: #02B2BF;
  padding: 1rem 0;
}
.ann__title h2 {
  font-size: 21px;
}
@media (min-width: 800px) {
  .ann__title h2 {
    font-size: 28px;
  }
}
.ann__title_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ann__title_light {
  color: #fff;
}
.ann__title.ann__top_title {
  padding: 1rem 0 4rem 0;
}
.ann__title.ann__info_title {
  padding: 0;
}

.ann__list_title h4 {
  margin-bottom: 0;
}
.ann__list_title p {
  margin-bottom: 1em;
}

.tease.tease--post {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  max-height: 400px;
  margin: 40px 0;
}

.tease.tease--post:first-of-type {
  margin-top: 140px;
}

.tease__img {
  grid-column: span 4;
  align-self: center;
  justify-self: center;
  max-height: 300px;
}

.tease__text {
  margin-top: 5px;
  grid-column: span 8;
}

.read-more {
  color: #bf5700;
  font-weight: bold;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.read-more:hover {
  color: #964400;
}

.tease__date {
  color: #888;
}

.blog-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}

.blog-nav a {
  font-size: 0.8rem;
}

.featured-video {
  display: block;
  margin-top: 30px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  width: 640px;
  height: 360px;
  -webkit-box-shadow: 0 8px 16px -6px grey;
          box-shadow: 0 8px 16px -6px grey;
}

.section-margin {
  margin-top: 2em;
}

.research-link:link {
  text-decoration: none;
}

.research-link:hover {
  text-decoration: underline;
}

.research-link:active {
  text-decoration: underline;
}

.small-video {
  width: 300px;
  height: 169px;
  -webkit-box-shadow: 0 8px 16px -6px grey;
          box-shadow: 0 8px 16px -6px grey;
  display: block;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1000px) {
  .small-video {
    display: initial;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.small-video-container {
  margin-bottom: 100px;
}
@media (min-width: 1000px) {
  .small-video-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.newsletter-post .newsletter-submit,
.newsletter-about .newsletter-submit,
.newsletter-landing .newsletter-submit {
  width: auto;
  margin-top: 0.5rem;
  border-radius: 40px;
  padding: 0.75rem 1.2rem;
}

@media (min-width: 700px) {
  .newsletter-post .newsletter-submit,
  .newsletter-about .newsletter-submit,
  .newsletter-landing .newsletter-submit {
    font: inherit;
    width: auto;
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
  }
}
@media (min-width: 600px) {
  .footer__footer form input {
    width: auto;
  }
}
body.enp-quiz {
  background: transparent;
}
body.enp-quiz.enp-quiz-results {
  background: #fff;
}
body.enp-quiz.enp-quiz-results .header {
  background: #e9f3f0;
}
body.enp-quiz.enp-quiz-results .header:after {
  background: #e9f3f0;
}
body.enp-quiz .header {
  background: #fcfcfc;
}
body.enp-quiz .header:after {
  background: #fcfcfc;
}
body.enp-quiz #enp-quiz {
  background: transparent;
}
body.enp-quiz #enp-quiz .enp-dash-container,
body.enp-quiz #enp-quiz .enp-quiz-form-container {
  background: transparent;
}
body.enp-quiz #enp-quiz .enp-results-title {
  background: transparent;
  border: none;
}
body.enp-quiz .enp-breadcrumb-link {
  font-weight: normal;
  text-transform: none;
  margin-left: -1rem;
}
@media (min-width: 600px) {
  body.enp-quiz .enp-breadcrumb-link {
    position: absolute;
    z-index: 999999;
  }
}
body.enp-quiz .nav-primary.navbar-default .current_page_parent > a {
  color: #005f86;
}
body.enp-quiz .enp-dash-item__nav__item {
  margin-left: 0;
}

/** Quiz landing page section **/
.quiz-example {
  margin-top: -20px;
}

.quiz-creator-research {
  border: 1px solid #005f86;
  position: relative;
  margin: 40px 0;
  padding: 40px;
  padding-bottom: 10px;
}

.quiz-creator-steps {
  text-align: center;
}

.quiz-creator-benefits {
  margin: 2.4rem 0;
  background: #f8f8f8;
}
.quiz-creator-benefits.steps {
  padding: 2.4rem;
}
.quiz-creator-benefits.steps .row-spacing-md {
  text-align: center;
}
.quiz-creator-benefits .tile-stats .tile {
  margin: 1.6rem 0;
}
@media (min-width: 800px) {
  .quiz-creator-benefits .tile-stats .tile {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@supports (display: grid) {
  .quiz-creator-benefits .tile-stats .tile {
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: max-content max-content max-content 1fr;
  }
}
.quiz-creator-benefits .tile-stats .tile .emoji {
  font-size: xx-large;
}

@supports not (display: flex) {
  .quiz-creator-benefits {
    padding: 0;
  }
  .quiz-creator-benefits .tile-stats {
    clear: right;
  }
  @media (min-width: 600px) {
    .quiz-creator-benefits .tile-stats .tile {
      width: 23%;
      float: left;
      margin-right: 0.8rem;
    }
  }
}
@supports (display: flex) {
  .quiz-creator-benefits {
    padding: 0;
  }
  .quiz-creator-benefits .tile-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media (min-width: 600px) {
    .quiz-creator-benefits .tile-stats {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  }
  @media (min-width: 600px) {
    .quiz-creator-benefits .tile-stats .tile {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 22%;
              flex: 0 0 22%;
    }
  }
}
@supports (display: grid) {
  .quiz-creator-benefits .tile-stats {
    grid-template-columns: 25% 25% 25% 25%;
  }
}
@media (min-width: 600px) {
  .quiz-creator-product-page .hero {
    grid-row: 2;
  }
}
.quiz-creator-product-page .hero .col-md-5,
.quiz-creator-product-page .hero .col-md-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.home-section {
  padding-top: 0.8rem;
  padding-bottom: 2.4rem;
  position: relative;
}
.home-section .tile:hover {
  -webkit-transform: scale(1.015) translate3d(0, -2px, 0);
          transform: scale(1.015) translate3d(0, -2px, 0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@media (min-width: 600px) {
  .home-section .tile {
    max-height: 140px;
  }
}
@media (min-width: 1200px) {
  .home-section .tile {
    max-height: 160px;
  }
}
.home-section .tile__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 140px;
}
.home-section .tile__title-wrap {
  padding: 0;
}
.home-section .tile__bar,
.home-section .tile__excerpt {
  display: none;
}
.home-section .tile__label {
  padding-left: 0;
  margin-top: 0;
}
.home-section .tile__title {
  padding-right: 10px;
  font-size: 1em;
  min-height: 60px;
}
.home-section .description {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 800px) {
  .home-section .description {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.home-section .title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 800px) {
  .home-section .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.home-section .pictures {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 800px) {
  .home-section .pictures {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
.home-section .quiz-example {
  margin-top: 60px;
  padding-bottom: 35px;
}
@media (min-width: 600px) {
  .home-section .title-quiz {
    grid-column: 1;
    grid-row: 1;
  }
  .home-section .description-quiz {
    grid-column: 1;
    grid-row: 2;
  }
  .home-section .title-button {
    grid-column: 2;
    grid-row: 1;
  }
  .home-section .description-button {
    grid-column: 2;
    grid-row: 2;
  }
  .home-section .pictures-button {
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .home-section .pictures--two-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 35px;
  }
}

.home-research {
  background: #ffedde;
  overflow: hidden;
}
.home-research .home-section__slanty-bar {
  height: 150px;
}
@media (min-width: 600px) {
  .home-research .home-section__slanty-bar {
    top: -80px;
    height: 150px;
  }
}

.home-section__slanty-bar {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
  z-index: 1;
  top: -50px;
  height: 280px;
}
@media (min-width: 600px) {
  .home-section__slanty-bar {
    top: -80px;
    height: 280px;
  }
}

.home-case-studies {
  background: #fff;
}

.home-announcements {
  background: #fff0e3;
}
.home-announcements .home-section__slanty-bar {
  -webkit-transform: skewY(4deg);
          transform: skewY(4deg);
}

.home-events {
  background: #fff0e3;
}
.home-events .home-section__slanty-bar {
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
}

.home-section__title {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.home-funders .funders {
  position: relative;
  z-index: 2;
}

.see-all-posts {
  position: relative;
  z-index: 9;
  text-align: center;
  padding: 1.6rem 0;
}
@media (min-width: 1000px) {
  .see-all-posts {
    padding-bottom: 50px;
  }
}

.home-quiz-tool {
  background: transparent;
  overflow: hidden;
  display: block;
}
.home-quiz-tool.grey-bkg {
  background: #fbfbfb;
}
.home-quiz-tool .home-section__slanty-bar {
  -webkit-transform: skewY(4deg);
  transform: skewY(4deg);
  z-index: 0;
}
.home-quiz-tool .home-section__title {
  font-size: 28px;
}
.home-quiz-tool .home-section__title p {
  color: #333f48;
}

.home-section__tools--wrapper {
  overflow: hidden;
  margin-top: 120px;
}

.home-section__quiz--info {
  color: #333f48;
}
.home-section__quiz--info i {
  margin-top: 0;
  padding: 0;
}
.home-section__quiz--info p {
  padding: 0;
}

.home-section__quiz--embed {
  white-space: nowrap;
  text-align: center;
  margin: 1em 0;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .home-section__quiz--embed {
    padding-right: 50px;
    margin-top: 25px;
  }
}
.home-section__quiz--embed h3 {
  text-align: left;
  color: #333f48;
}
.home-section__quiz--embed .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.home-section__quiz--embed img {
  vertical-align: middle;
  max-width: 100%;
  margin-top: 15px;
}

.see-all-posts--quiz {
  padding-bottom: 15px;
}

.research-container .home-section__title {
  font-size: 28px;
}

@supports not (display: flex) {
  @media (min-width: 600px) {
    .home-section .tile {
      width: 48%;
      float: left;
    }
  }
  @media (min-width: 1200px) {
    .home-section .tile {
      width: 23%;
    }
  }
  @media (min-width: 600px) {
    .home-section .tile__img-wrap {
      width: 35%;
      float: left;
    }
  }
  @media (min-width: 600px) {
    .home-section .tile__title-wrap {
      width: 60%;
      float: left;
    }
  }
  @media (min-width: 1200px) {
    .home-section .tile__title-wrap {
      float: right;
    }
  }
  .home-section .tile__title,
  .home-section .tile__date {
    padding: 0 0.8rem 0.8rem 0.8rem;
  }
  .home-section__tools--wrapper {
    overflow: hidden;
    margin-top: 120px;
  }
  .home-section__tools--wrapper .stats1,
  .home-section__tools--wrapper .stats2 {
    width: 50%;
    float: left;
  }
  @media (min-width: 600px) {
    .home-section__tools--wrapper .description,
    .home-section__tools--wrapper .pictures {
      width: 50%;
      float: left;
    }
  }
}
@supports (display: flex) {
  .home-section .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (min-width: 800px) {
    .home-section .tile {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
    }
  }
  @media (min-width: 1000px) {
    .home-section .tile {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 23%;
              flex: 0 0 23%;
      margin: 0 0 20px;
    }
  }
  .home-section .tile__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
  .home-section .tile__title-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .home-section .home-section__tools--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (min-width: 600px) {
    .home-section .home-section__tools--wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
    }
  }
  .home-section .home-section__quiz--info .tile-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-section .home-section__quiz--info .tile-stats > div {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}
@supports (display: grid) {
  .home-section .tile {
    display: grid;
    padding-bottom: 0;
    height: 140px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media (min-width: 1200px) {
    .home-section .tile {
      grid-column-end: span 3;
    }
  }
  .home-section .tile__img-wrap {
    grid-column: span 10/5;
    height: 100%;
    width: 100%;
  }
  .home-section .tile__title-wrap {
    padding: 0;
    display: grid;
    grid-column: span 6/12;
  }
  .home-section .tile__excerpt,
  .home-section .tile__label,
  .home-section .tile__title {
    grid-column: 6/span 10;
  }
  .home-section .tile__date {
    grid-column: 6/span 10;
  }
  .home-section .description {
    grid-row: 3;
  }
  .home-section .pictures {
    grid-row: 2;
  }
  .home-section__tools--wrapper {
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 0;
  }
  @media (min-width: 600px) {
    .home-section__tools--wrapper {
      grid-template-columns: calc(50% - 25px) calc(50% - 25px);
      grid-column-gap: 50px;
    }
  }
  .home-section__quiz--info .tile-stats {
    grid-row-gap: 35px;
    grid-template-columns: 50% 50%;
  }
}
@media (min-width: 600px) {
  #tool-landing-page .hero .container, #tool-landing-page .hero body.enp-quiz .enp-breadcrumb-link__container, body.enp-quiz #tool-landing-page .hero .enp-breadcrumb-link__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @supports (display: grid) {
    #tool-landing-page .hero .container, #tool-landing-page .hero body.enp-quiz .enp-breadcrumb-link__container, body.enp-quiz #tool-landing-page .hero .enp-breadcrumb-link__container {
      grid-template-columns: 50% 50%;
    }
  }
}
#tool-landing-page .hero .container, #tool-landing-page .hero body.enp-quiz .enp-breadcrumb-link__container, body.enp-quiz #tool-landing-page .hero .enp-breadcrumb-link__container {
  display: grid;
}
#tool-landing-page .hero .container .quiz-creator-intro-copy, #tool-landing-page .hero body.enp-quiz .enp-breadcrumb-link__container .quiz-creator-intro-copy, body.enp-quiz #tool-landing-page .hero .enp-breadcrumb-link__container .quiz-creator-intro-copy {
  margin-right: 10px;
  padding: 0 25px;
}
#tool-landing-page .quiz-creator-intro-research-link {
  margin-right: 10px;
}
#tool-landing-page .quiz-creator-intro-register-link {
  margin-right: 5px;
}
#tool-landing-page .engaging-image {
  margin: 0;
}
#tool-landing-page .quiz-creator-steps .timeline {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#tool-landing-page .quiz-creator-steps .timeline .events {
  display: grid;
  grid-template-rows: auto auto auto;
}
#tool-landing-page .quiz-creator-steps .timeline .event {
  display: grid;
  grid-template-columns: 33% 66%;
  margin: 30px 0;
}
#tool-landing-page .quiz-creator-steps .timeline .event .event-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  background: #fff;
  z-index: 2;
  max-width: 80%;
  max-height: 80%;
}
#tool-landing-page .quiz-creator-steps .timeline .event .step {
  text-align: left;
}
#tool-landing-page .quiz-creator-steps .bar-container {
  width: 33%;
}
#tool-landing-page .quiz-creator-steps .bar-container .progress-bar {
  position: absolute;
  display: inline-block;
  z-index: 1;
  max-height: 100%;
  background: #bf5700;
  width: 5px;
}

@media (max-width: 399px) {
  .page-template-press-template .wrapper--pad {
    padding-left: 0;
    padding-right: 0;
  }
}

.press--page .article__title {
  font-weight: 700;
}

.press-table-top {
  color: #000;
}
@media (min-width: 800px) {
  .press-table-top {
    border-bottom: solid 0.5px #000;
  }
}

.press-table-row {
  color: #555;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px;
  text-shadow: 1px 1px 1px #fff;
}
@media (max-width: 399px) {
  .press-table-row {
    width: 100%;
  }
  .press-table-row:first-child, .press-table-row:last-child {
    width: 25%;
  }
  .press-table-row:nth-child(2) {
    width: 50%;
  }
}
@media (min-width: 800px) {
  .press-table-row {
    font-size: 14px;
    padding: 15px;
    border-bottom: solid 0.5px #000;
  }
}

.press-table-side-col {
  width: 20%;
}

.press-table-mid-col {
  width: 60%;
}

.zui-table {
  border: solid 1px #ddeeee;
  border-collapse: collapse;
  border-spacing: 0;
  font: normal 13px Arial, sans-serif;
}

.zui-table thead th {
  background-color: #ddefef;
  border: solid 1px #ddeeee;
  color: #336b6b;
  padding: 10px;
  text-align: left;
  text-shadow: 1px 1px 1px #fff;
}

.zui-table tbody td {
  border: solid 1px #ddeeee;
  color: #333;
  padding: 10px;
  text-shadow: 1px 1px 1px #fff;
}

.page-template-press-template p {
  margin-bottom: 0px;
}

.page-template-page-video-grid .main-body-wrapper {
  background: #333f48;
}
.page-template-page-video-grid .header,
.page-template-page-video-grid .video-grid-tile,
.page-template-page-video-grid .footer {
  background: #f8f8f8;
}
@media (max-width: 1000px) {
  .page-template-page-video-grid .header {
    margin-bottom: 0;
  }
}
.page-template-page-video-grid .site-logos {
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 20px;
  padding-bottom: 2.4rem;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1200px) {
  .page-template-page-video-grid .site-logos {
    grid-row-gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.page-template-page-video-grid .site-logos img {
  justify-self: center;
  padding: 1em;
}
@media (min-width: 1200px) {
  .page-template-page-video-grid .site-logos img {
    max-height: 80px;
  }
}
.page-template-page-video-grid figure {
  margin: 0;
}
.page-template-page-video-grid figure.quote {
  border-left: 2px solid #f0ad4e;
}
.page-template-page-video-grid figure.quote::before,
.page-template-page-video-grid figure.quote blockquote::after {
  color: #ddd;
}
.page-template-page-video-grid figure.quote blockquote {
  color: #fff;
  border-top: none;
  border-bottom: none;
}
.page-template-page-video-grid figure.quote cite,
.page-template-page-video-grid figure.quote figcaption {
  color: #fff;
}
@media (min-width: 1200px) {
  .page-template-page-video-grid .article__header {
    overflow: hidden;
    height: calc(100vh - 234px);
  }
}
.page-template-page-video-grid .article__title {
  padding: 3.2rem 0 2.4rem 0;
  color: #fff;
}
.page-template-page-video-grid .article__intro p,
.page-template-page-video-grid .article__intro a,
.page-template-page-video-grid .article__quotes p,
.page-template-page-video-grid .article__quotes a {
  color: #fff;
}
@media (min-width: 1200px) {
  .page-template-page-video-grid .wp-block-video {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .page-template-page-video-grid .wp-block-video video {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: 100%;
  }
}
.page-template-page-video-grid .footer__footer {
  margin-top: 0;
  padding-top: 0;
}

.pdf img {
  background: #fff;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pdf:hover img {
  -webkit-transform: scale(1.015) translate3d(0, -2px, 0);
          transform: scale(1.015) translate3d(0, -2px, 0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.video-grid .tile {
  grid-template-rows: auto;
  padding-bottom: 0;
  margin: 0.5em 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .video-grid .tile {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  @supports not (display: grid) {
    .video-grid .tile {
      margin: 0.5em;
    }
  }
}
@media (min-width: 800px) {
  .video-grid .tile {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
  }
}
@media (min-width: 1200px) {
  .video-grid .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
.video-grid .tile .img-wrap,
.video-grid .tile .title-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.video-grid .tile .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (max-width: 799px) {
  .video-grid .tile .img-wrap {
    max-height: 300px;
  }
}
@supports (display: grid) {
  .video-grid .tile .img-wrap {
    grid-column: 1/6;
  }
  @media (min-width: 800px) {
    .video-grid .tile .img-wrap {
      margin-right: 0;
    }
  }
}
.video-grid .tile .title-wrap {
  padding: 1em;
}
@supports (display: grid) {
  .video-grid .tile .title-wrap {
    grid-column: 6/12;
  }
}
.video-grid .tile .tile__img {
  width: 100%;
  height: auto;
}

.filter__item--team_category--collaborators.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--team_category--collaborators .filter__link--current-parent {
  color: #00a9b7;
}
.filter__item--team_category--collaborators .filter__link--current {
  color: #00a9b7;
}
.filter__item--team_category--collaborators .filter__link--parent {
  color: #00a9b7;
}
.filter__item--team_category--collaborators .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.filter__item--team_category--administrative-and-technology.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--team_category--administrative-and-technology .filter__link--current-parent {
  color: #00a9b7;
}
.filter__item--team_category--administrative-and-technology .filter__link--current {
  color: #00a9b7;
}
.filter__item--team_category--administrative-and-technology .filter__link--parent {
  color: #00a9b7;
}
.filter__item--team_category--administrative-and-technology .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.mate__content {
  grid-column: 1/-1;
}

.mate__bio {
  font-size: 14px;
}

.mate__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
@media (min-width: 1000px) {
  .mate__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.mate__img {
  border-radius: 50%;
}

.mate--has-img .mate__content,
.additional .mate__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}
@media (min-width: 600px) {
  .mate--has-img .mate__content,
  .additional .mate__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
}
@media (min-width: 1000px) {
  .mate--has-img .mate__content,
  .additional .mate__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 82%;
            flex: 0 0 82%;
  }
}
@media (min-width: 1200px) {
  .mate--has-img .mate__content,
  .additional .mate__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85%;
            flex: 0 0 85%;
  }
}

.mate__name {
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  color: #005f86;
  text-decoration: none;
}

.mate__labels,
.mate__phone,
.mate__designation,
.mate__email {
  font-family: "Arial", monospace;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: #333f48;
}

.size {
  font-size: 14px;
}

.meta-size {
  font-size: 0.75rem;
}

.mate--tease {
  position: relative;
  grid-column-gap: 5px;
}
.mate--tease .mate__img-wrap {
  max-width: 50px;
}
@media (min-width: 400px) {
  .mate--tease .mate__img-wrap {
    grid-row: 1;
    grid-column: 1/2;
  }
}
@media (min-width: 700px) {
  .mate--tease .mate__img-wrap {
    grid-column: 1/4;
  }
}
@media (min-width: 400px) {
  .mate--tease.mate--has-img .mate__content, .mate--tease.additional .mate__content {
    grid-row: 1;
    grid-column: 2/-1;
  }
}
@media (min-width: 700px) {
  .mate--tease.mate--has-img .mate__content, .mate--tease.additional .mate__content {
    grid-column: 4/-1;
  }
}
.mate--tease .mate__name {
  color: #005f86;
  font-size: 0.85rem;
}
.mate--tease .mate__labels {
  font-size: 0.6rem;
}

.mate-tease__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.cme-position {
  color: #005f86;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@supports not (display: grid) {
  .mate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    margin-bottom: 1.6rem;
  }
}
@supports (display: grid) {
  .mate {
    grid-column: 1/-1;
  }
  .mate__img-wrap {
    grid-row: 1;
    grid-column: 1/-1;
  }
  @media (min-width: 400px) {
    .mate__img-wrap {
      grid-row: 1;
      grid-column: 1/3;
    }
  }
  @media (min-width: 400px) {
    .mate--has-img .mate__content,
    .additional .mate__content {
      grid-column: 3/-1;
    }
  }
}
.icon-color {
  color: #333f48;
  font-size: 12px;
  top: 0.21rem;
  position: absolute;
}

.icon-box {
  float: left;
  position: relative;
}

.mate__text {
  padding-left: 20px;
}

.break-word {
  overflow-wrap: break-word;
}

.tools-section {
  margin-top: 15px;
}
.tools-section:nth-child(2) {
  margin-top: 0px;
}

.section__slanty::before {
  content: "";
  background: #ecf9ff;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
  z-index: -1;
  width: 100%;
  height: 75%;
}

#copy-embed-code {
  position: relative;
}

#copy-embed-code::after {
  content: "Copied!";
  position: absolute;
  top: calc(50% - 6.5px);
  right: 0;
  opacity: 0;
  -webkit-transition: 0.3s opacity, 0s right;
  transition: 0.3s opacity, 0s right;
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

#copy-embed-code.active::after {
  opacity: 1;
  right: -60px;
  -webkit-transition-delay: 0.1s, 0s;
          transition-delay: 0.1s, 0s;
}

#embed-code {
  width: 100%;
  min-height: 110px;
  margin-bottom: 1.6rem;
  font-size: 14px;
}

.tools-section {
  overflow: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 0px;
  padding: 10px;
}
@media (min-width: 600px) {
  .tools-section {
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
    grid-column-gap: 50px;
  }
}

.page-template-page-public-interest-standard .main-body-wrapper {
  background: #020644;
}
.page-template-page-public-interest-standard .header,
.page-template-page-public-interest-standard .video-grid-tile,
.page-template-page-public-interest-standard .footer {
  background: #f8f8f8;
}
.page-template-page-public-interest-standard .article__header {
  margin-bottom: 0.8rem;
}
@media (min-width: 1000px) {
  .page-template-page-public-interest-standard .article__header {
    overflow: hidden;
    height: 33vh;
    margin-bottom: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .page-template-page-public-interest-standard .article__header {
    height: calc(40vh - 37px);
  }
}
.page-template-page-public-interest-standard .article__intro,
.page-template-page-public-interest-standard .article__video {
  margin-bottom: 2.4rem;
}
@media (min-width: 1200px) {
  .page-template-page-public-interest-standard .article__intro,
  .page-template-page-public-interest-standard .article__video {
    margin-bottom: 4rem;
  }
}
.page-template-page-public-interest-standard p:not(.ctf-tweet-text) {
  color: #fff;
}
.page-template-page-public-interest-standard .embed-container {
  margin-top: 2.4rem;
}
@media (min-width: 1200px) {
  .page-template-page-public-interest-standard .wp-block-video {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .page-template-page-public-interest-standard .wp-block-video video {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: 100%;
  }
}
.page-template-page-public-interest-standard .footer__footer {
  margin-top: 0;
  padding-top: 0;
}

.brandbar {
  height: 34px;
  background: #333f48;
}

.brandbar__link {
  float: right;
  margin-top: 5px;
  line-height: 1;
}

.brandbar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brandbar__logo img {
  width: 112px;
  height: 25px;
}
.brandbar__logo img:first-child {
  margin-right: -26px;
}

.header {
  background: #ffedde;
  padding-top: 0.8rem;
  position: relative;
}
@media (min-width: 1200px) {
  .header {
    padding-bottom: 2.4rem;
  }
}
.header .searchform {
  padding-bottom: 0.8rem;
}
@media (min-width: 1200px) {
  .header .searchform {
    padding-bottom: 0;
  }
}
.header:after {
  content: "";
  background: #ffedde;
  position: absolute;
  top: 0;
  bottom: -100%;
  left: 0;
  right: 0;
  -webkit-transform: skewY(-7deg);
          transform: skewY(-7deg);
  z-index: -1;
}

.header__container {
  position: relative;
  z-index: 99;
  border-bottom: 1px solid #bf5700;
}
@media (min-width: 800px) {
  .header__container {
    padding-top: 10px;
    padding-bottom: 15px;
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
  }
}

.header__logo {
  max-width: 200px;
}
@media (min-width: 400px) {
  .header__logo {
    padding-right: 0;
  }
}
@media (min-width: 800px) {
  .header__logo {
    max-width: 320px;
    position: relative;
    margin-bottom: 0;
  }
}

@supports not (display: grid) {
  .header__container::after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
}
@supports not (display: flex) {
  .header__container::after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
  @media (max-width: 799px) {
    .header__logo {
      clear: both;
    }
  }
  @media (min-width: 1200px) {
    .header__logo {
      clear: both;
      float: left;
    }
  }
}
@supports (display: flex) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  @media (min-width: 800px) {
    .header__logo {
      -webkit-box-flex: 1;
          -ms-flex: 1 25%;
              flex: 1 25%;
    }
  }
}
@media (min-width: 800px) {
  .collapsable.is-hidden.menu__main-menu {
    display: block;
  }
  .collapsable.is-hidden.menu__secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.collapsable.is-open.menu__secondary {
  margin-bottom: 0.8rem;
}
@media (min-width: 400px) {
  .collapsable.is-open.menu__secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 800px) {
  .collapsable.is-open.menu__secondary {
    margin-bottom: 0;
  }
}
.collapsable.is-open.menu__secondary .menu__list {
  margin-bottom: 0.8rem;
}
@media (min-width: 400px) {
  .collapsable.is-open.menu__secondary .menu__list {
    margin-bottom: 0;
  }
}

.menu__item {
  display: inline-block;
  margin-left: 0.8rem;
  position: relative;
}

.menu__link {
  color: #333f48;
  text-decoration: none;
}

.menu__link:hover {
  color: #fab969;
}

.menu__list {
  margin-bottom: 0.8rem;
}
@media (min-width: 800px) {
  .menu__list {
    margin-bottom: 0;
  }
}

.menu__main-menu {
  -ms-flex-item-align: end;
      align-self: end;
  justify-self: end;
  padding-bottom: 30px;
  width: 100%;
}
.menu__main-menu.searchform {
  background-color: #fff;
}
@media (max-width: 799px) {
  .menu__main-menu:not(.searchform) {
    position: absolute;
    background-color: #fff;
  }
}
@media (min-width: 1000px) {
  .menu__main-menu {
    position: relative;
    padding-bottom: unset;
  }
}
@media (min-width: 1200px) {
  .menu__main-menu {
    float: right;
    clear: right;
  }
}
.menu__main-menu .menu__item {
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
@media (max-width: 799px) {
  .menu__main-menu .menu__item {
    display: block;
    margin-bottom: 10px;
  }
}
@media (min-width: 800px) {
  .menu__main-menu .menu__item {
    font-size: 1rem;
  }
}
@media (min-width: 1000px) {
  .menu__main-menu .menu__item {
    margin-left: 1.6rem;
  }
}

.menu__secondary {
  font-size: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1000px) {
  .menu__secondary {
    float: right;
    margin-bottom: 1em;
  }
}
@media (min-width: 800px) {
  .menu__secondary .menu {
    padding-right: 1.6rem;
  }
}
.menu__secondary input[type=text] {
  margin-right: 0.4rem;
}
.menu__secondary .btn:hover a:before {
  left: 10px;
}
.menu__secondary .btn a {
  border: none;
  color: #bf5700;
  margin-left: 25px;
}
.menu__secondary .btn a::before {
  background: url("/wp-content/themes/engage/assets/img/avatar.png");
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  background-repeat: no-repeat;
  left: 15px;
  top: 0px;
  display: block;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu__secondary .btn,
.menu__secondary .button {
  padding: 0;
  background: none;
  margin: 0;
  border: none;
  border-radius: none;
  font-size: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  margin-left: 0.8rem;
}
.menu__secondary .btn a,
.menu__secondary .button a {
  border-radius: 40px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid #005f86;
  font-size: 0.85rem;
}
@media (min-width: 800px) {
  .menu__secondary .btn a,
  .menu__secondary .button a {
    padding: 10px 20px;
  }
}
.menu__secondary .social {
  margin-left: 0.8rem;
  margin-bottom: 0;
}

.navbar-toggle {
  padding: 0;
  background: none;
  margin: 0;
  border: none;
  border-radius: none;
  font-size: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  position: absolute;
  top: 0;
  right: -10px;
  padding: 15px 10px;
  border: 1px solid transparent;
}
@media (min-width: 400px) {
  .navbar-toggle {
    top: 10px;
  }
}
.navbar-toggle:hover {
  background: transparent;
}
.navbar-toggle:focus {
  background: #f8f8f8;
  outline: 0;
}
.navbar-toggle .hamburger-bars,
.navbar-toggle .hamburger-bars:after,
.navbar-toggle .hamburger-bars:before {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background: #005f86;
}
.navbar-toggle .hamburger-bars {
  position: relative;
}
.navbar-toggle .hamburger-bars:after,
.navbar-toggle .hamburger-bars:before {
  content: "";
  position: absolute;
}
.navbar-toggle .hamburger-bars:before {
  top: -6px;
}
.navbar-toggle .hamburger-bars:after {
  top: 6px;
}
@media (min-width: 800px) {
  .navbar-toggle {
    display: none;
  }
}

/*             */
/* Mobile Menu */
/*             */
.navbar-toggle {
  top: 40px;
  background: #fff;
  box-shadow: 1px 2px 3px #888;
  -webkit-box-shadow: 1px 2px 3px #888;
  -moz-box-shadow: 1px 2px 3px #888;
  border-radius: 3px;
  margin-right: 20px;
}

.navbar-toggle:focus {
  background: #fff;
}

.navbar-toggle .hamburger-bars,
.navbar-toggle .hamburger-bars:after,
.navbar-toggle .hamburger-bars:before {
  background: #333f48;
}

.navbar-toggle.is-open .hamburger-bars {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.275s 0.15s ease-out;
  transition: -webkit-transform 0.275s 0.15s ease-out;
  transition: transform 0.275s 0.15s ease-out;
  transition: transform 0.275s 0.15s ease-out, -webkit-transform 0.275s 0.15s ease-out;
}
.navbar-toggle.is-open .hamburger-bars:after, .navbar-toggle.is-open .hamburger-bars:before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.15s ease-out, -webkit-transform 0.275s 0.15s ease-out;
  transition: top 0.15s ease-out, -webkit-transform 0.275s 0.15s ease-out;
  transition: top 0.15s ease-out, transform 0.275s 0.15s ease-out;
  transition: top 0.15s ease-out, transform 0.275s 0.15s ease-out, -webkit-transform 0.275s 0.15s ease-out;
}

.navbar-toggle.is-closed .hamburger-bars {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.275s ease-out;
  transition: -webkit-transform 0.275s ease-out;
  transition: transform 0.275s ease-out;
  transition: transform 0.275s ease-out, -webkit-transform 0.275s ease-out;
}
.navbar-toggle.is-closed .hamburger-bars:after, .navbar-toggle.is-closed .hamburger-bars:before {
  -webkit-transition: top 0.15s 0.275s ease-out, -webkit-transform 0.275s ease-out;
  transition: top 0.15s 0.275s ease-out, -webkit-transform 0.275s ease-out;
  transition: top 0.15s 0.275s ease-out, transform 0.275s ease-out;
  transition: top 0.15s 0.275s ease-out, transform 0.275s ease-out, -webkit-transform 0.275s ease-out;
}

.menu__sublist {
  z-index: 999;
  position: absolute;
  display: none;
  padding: 5px 0 5px 15px;
  text-align: left;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
@media (min-width: 800px) {
  .menu__sublist {
    white-space: nowrap;
  }
}
@media (max-width: 799px) {
  .menu__sublist {
    padding: 5px 0 5px 10px;
    left: 0;
    border: none;
    position: relative;
    margin-left: 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.menu__sublist-link {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  line-height: 1.3rem;
}

.menu__sublist .menu__sublist {
  z-index: 999;
  max-width: 8.9rem;
  display: none;
  position: absolute;
  top: -20px;
  left: 97%;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.175);
  padding-right: 15px;
}
@media (max-width: 799px) {
  .menu__sublist .menu__sublist {
    position: relative;
    left: 30px;
    padding-left: 0;
    margin-left: 0;
    padding-top: 15px;
    background-color: transparent !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.menu__item:focus .menu__sublist:not(.nested),
.menu__item:focus-within .menu__sublist:not(.nested),
.menu__item:hover .menu__sublist:not(.nested),
.menu__item:hover .menu__sublist:not(.nested) {
  display: block;
}

.menu__item.has-nested-menu:focus .menu__sublist,
.menu__item.has-nested-menu:focus-within .menu__sublist,
.menu__item.has-nested-menu:hover .menu__sublist,
.menu__sublist .collapsable:hover {
  display: block;
}

.menu__item.menu__sublist-item {
  margin-left: 0;
  display: block;
  padding-top: 5px;
  padding-right: 15px;
}

.menu__sublist.nested {
  margin: 0;
  top: -5px;
}

.sidebar-menu {
  margin-top: 20px;
}

.searchform.menu__main-menu {
  display: block;
  padding-left: 0.8rem;
  -webkit-box-shadow: 0px 11px 12px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 11px 12px rgba(0, 0, 0, 0.18);
}
@media (min-width: 800px) {
  .searchform.menu__main-menu {
    display: none;
  }
}
.searchform.menu__quick-links {
  display: none;
}
@media (min-width: 800px) {
  .searchform.menu__quick-links {
    display: inline-block;
  }
}

@supports not (display: flex) {
  @media (min-width: 800px) {
    .menu__main-menu {
      margin: 0.8rem auto;
      float: right;
    }
  }
  @media (min-width: 1200px) {
    .menu__main-menu:not(.searchform) {
      width: 70%;
    }
  }
  @media (min-width: 1000px) {
    .menu__main-menu:not(.searchform) .menu__list {
      float: right;
    }
  }
  @media (min-width: 800px) {
    .menu__secondary {
      float: right;
    }
  }
  @media (min-width: 800px) {
    .menu__secondary .menu {
      display: inline-block;
    }
  }
  .menu__secondary .menu__list {
    float: right;
  }
  @media (min-width: 1000px) {
    .menu__secondary .menu__list {
      float: none;
    }
  }
}
@supports (display: flex) {
  @media (max-width: 799px) {
    .menu__main-menu:not(.searchform) {
      top: 85px;
    }
  }
  @media (min-width: 800px) {
    .menu__main-menu:not(.searchform) {
      margin-top: 0.8rem;
    }
  }
  @media (min-width: 1000px) {
    .menu__main-menu:not(.searchform) {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
    }
  }
  @media (min-width: 800px) {
    .menu__main-menu .menu__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
    }
  }
  .menu__secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 100%;
            flex: 1 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@supports (display: grid) {
  @media (min-width: 800px) {
    .menu__main-menu {
      grid-column: 2;
      grid-row: 2;
    }
  }
  @media (min-width: 800px) {
    .menu__secondary {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      justify-self: end;
    }
  }
}
.footer {
  padding-top: 2.4rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .footer {
    clear: left;
  }
}
.footer:after {
  content: "";
  background: #fff3e8;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 380px;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  z-index: -1;
}
.footer:before {
  content: "";
  background: #ffedde;
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 33%;
  height: 380px;
  -webkit-transform: skewY(3deg);
          transform: skewY(3deg);
  z-index: -1;
}

.footer__footer {
  text-align: center;
  margin-top: 3.2rem;
  padding-top: 3.2rem;
}
.footer__footer .menu {
  font-size: 1rem;
  list-style-type: none;
  text-align: center;
}
.footer__footer .menu .menu-item {
  margin-left: 0;
}

.footer__container {
  padding-top: 2.4rem;
}

.social,
.share {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social__item,
.share__item {
  line-height: 1;
  margin-left: 0.8rem;
}
.social__item:first-of-type,
.share__item:first-of-type {
  margin-left: 0;
}

.share {
  line-height: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1rem;
}

@supports not (display: flex) {
  .footer.wrapper {
    clear: both;
  }
  @media (min-width: 1000px) {
    .footer__footer .widget__wrapper {
      width: 30%;
      display: inline-block;
    }
  }
  .social {
    text-align: center;
  }
  .social .widget-first {
    clear: both;
  }
  .social .social__item {
    display: inline-block;
  }
}
@supports (display: flex) {
  @media (min-width: 800px) {
    .footer__footer {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  .footer__footer .widget__wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
  }
  @media (min-width: 1000px) {
    .footer__footer {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
}
@supports (display: grid) {
  .footer__footer .widget__wrapper {
    grid-column-end: span 12;
  }
  @media (min-width: 800px) {
    .footer__footer .widget__wrapper {
      grid-column-end: span 4;
    }
  }
  .footer__footer .widget {
    display: grid;
    text-align: center;
  }
}
.widget--right .menu {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

.single-post {
  background: #fff;
}
.single-post .header {
  background-color: transparent !important;
}
.single-post .header:after {
  background-color: transparent !important;
  bottom: -100%;
}

.article__content {
  min-width: 0;
}
.article__content a {
  word-break: break-word;
}

.article__featured-img {
  margin: 0;
}

.article__post-type {
  font-size: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #5e6873;
}

.article__intro {
  padding-bottom: 2.4rem;
}

.article__quotes {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.article__meta {
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  color: #5e6873;
  font-size: 12px;
  -ms-flex-item-align: start;
      align-self: start;
}
.article__meta .vertical-name {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.article__meta-team {
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  color: #5e6873;
  font-size: 12px;
  align-self: start;
  grid-row: 2;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem 2rem 1rem;
}
@media (min-width: 600px) {
  .article__meta-team {
    display: initial;
  }
}
.article__meta-team .share {
  margin-top: 0.8rem;
  margin-bottom: 0px;
}
.article__meta-team .mate__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  text-align: center;
}
@media (min-width: 600px) {
  .article__meta-team .mate__img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.article-meta__dateline {
  padding: 1.5rem 0rem;
}

.article__video {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mce_start {
  font-size: 5vw;
}

.article-meta__item {
  margin-bottom: 0.4rem;
}

.article__title--team {
  font-weight: 400;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
@media (min-width: 600px) {
  .article__title--team {
    padding-bottom: 0;
  }
}
@media (min-width: 800px) {
  .article__title--team {
    max-width: 100%;
  }
}

.full-width .article__header,
.full-width .article__content {
  padding-left: 0;
}
.full-width .article__content {
  width: 100%;
}
.full-width .article__title {
  padding-left: 0;
}

.article__title {
  font-weight: 400;
  padding-top: 1.6rem;
  display: block;
}

@supports not (display: grid) {
  .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  @media (min-width: 600px) {
    .article {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
    }
  }
  @media (min-width: 1000px) {
    .article__header {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding-left: calc( 200px + 1.6rem );
    }
  }
  .article__meta {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  @media (min-width: 600px) {
    .article__meta {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
}
@supports not (display: flex) {
  @media (min-width: 600px) {
    .article.post-type--page .widget {
      width: 20%;
      float: left;
      margin-right: 1.6rem;
    }
  }
  @media (min-width: 600px) {
    .article__header {
      float: left;
      width: 100%;
      padding-left: calc( 200px + 0.8rem );
    }
  }
  @media (min-width: 1000px) {
    .article__header {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 1200px) {
    .article__header {
      padding-left: calc( 250px + 58px );
    }
  }
  .article__header .article__title {
    padding-left: 0;
  }
  @media (min-width: 600px) {
    .article__post-type,
    .article__title,
    .article__meta,
    .article__content {
      float: left;
    }
  }
  @media (min-width: 600px) {
    .article__post-type,
    .article__title {
      width: 100%;
      padding-left: calc( 200px + 1.6rem );
    }
  }
  @media (min-width: 1000px) {
    .article__post-type,
    .article__title {
      padding-left: calc( 250px + 58px );
    }
  }
  @media (min-width: 1200px) {
    .article__post-type,
    .article__title {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 600px) {
    .article__meta {
      width: 30%;
    }
  }
  @media (min-width: 1200px) {
    .article__meta {
      width: 30%;
    }
  }
  @media (min-width: 600px) {
    .article__content {
      width: 70%;
      padding-left: 1.6rem;
    }
  }
  @media (min-width: 1200px) {
    .article__content {
      width: 70%;
    }
  }
  .share__item {
    float: left;
  }
}
@supports (display: flex) {
  @media (min-width: 600px) {
    .article {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
    }
  }
  .article.full-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  @media (min-width: 600px) {
    .article.post-type--page .widget {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
    }
  }
  .article__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  @media (min-width: 600px) {
    .article__header {
      padding-left: calc( 200px - 0.8rem );
    }
  }
  @media (min-width: 1000px) {
    .article__header {
      padding-left: calc( 200px + 1.6rem );
    }
  }
  @media (min-width: 1200px) {
    .article__header {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 600px) {
    .article__header .article__title {
      padding-left: 0;
    }
  }
  @media (min-width: 600px) {
    .article__post-type,
    .article__title {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding-left: calc( 200px + 1.6rem );
    }
  }
  @media (min-width: 1000px) {
    .article__post-type,
    .article__title {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 1200px) {
    .article__post-type,
    .article__title {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 600px) {
    .article__meta {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
    }
  }
  @media (min-width: 1200px) {
    .article__meta {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
    }
  }
  @media (min-width: 600px) {
    .article__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 75%;
              flex: 0 0 75%;
      padding-left: 1.6rem;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
  @media (min-width: 1200px) {
    .article__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 60%;
              flex: 0 0 60%;
    }
  }
  .article__meta-board {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .article__video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .share {
    margin-top: 0.8rem;
  }
}
@supports (display: grid) {
  .article {
    display: grid;
    grid-auto-flow: row;
  }
  @media (min-width: 600px) {
    .article {
      -webkit-column-gap: 20px;
         -moz-column-gap: 20px;
              column-gap: 20px;
      row-gap: 10px;
      grid-template-columns: minmax(200px, 250px) minmax(480px, 480px) 1fr;
      grid-auto-flow: row;
    }
  }
  @media (min-width: 1000px) {
    .article {
      grid-column-gap: 40px;
      grid-template-columns: minmax(200px, 250px) minmax(480px, 580px) 1fr;
      grid-auto-flow: row;
    }
  }
  .article__header {
    grid-column: 1;
  }
  @media (min-width: 600px) {
    .article__header {
      padding-left: 0;
      grid-column: 2;
      grid-row: 1;
    }
  }
  .article__full-width {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
  }
  @media (min-width: 600px) {
    .article__full-width {
      grid-auto-columns: auto;
      grid-auto-rows: auto;
    }
  }
  .article__full-width .article__content,
  .article__full-width .article__header {
    grid-column: 1/-1;
  }
  @media (min-width: 600px) {
    .article__post-type {
      grid-column: 2;
      grid-row: 1;
      padding-left: 0;
    }
  }
  @media (min-width: 600px) {
    .article__title {
      grid-column: 2;
      grid-row: 2;
      padding-left: 0;
    }
  }
  .article__meta {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  @media (min-width: 600px) {
    .article__meta {
      grid-column: 1;
      grid-row: 3;
    }
  }
  .article__meta-board {
    grid-row: 3;
  }
  @media (min-width: 600px) {
    .article__meta-board {
      grid-column: 1;
      grid-row: 2;
    }
  }
  @media (min-width: 600px) {
    .article__meta__data {
      padding-bottom: 2rem;
      grid-row: 2;
      grid-column: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  .article__meta__data .article-meta__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article__meta__data .article-meta__item svg {
    margin-right: 0.5em;
  }
  @media (min-width: 600px) {
    .article__content {
      padding-left: 0;
      grid-column: 2;
      grid-row: 3/span 3;
    }
  }
  @media (min-width: 1000px) {
    .article__content {
      grid-column: 2;
    }
  }
  @media (min-width: 600px) {
    .article__meta-team {
      grid-column: 1;
      grid-row: 1/span 2;
    }
  }
  .article__title--team {
    grid-row: 3;
    grid-column: 1;
    padding: 0.4rem 0;
  }
  @media (min-width: 600px) {
    .article__title--team {
      padding: 1.6rem 0;
      grid-row: 1;
      grid-column: 2;
    }
  }
  @media (min-width: 600px) {
    .post-type--page .article__content {
      grid-row: 2;
    }
  }
  @media (min-width: 600px) {
    .article__content--team {
      grid-row: 2;
    }
  }
}
.widget__title {
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  margin-top: 15px;
  font-size: 20px;
}

.widget__prompt {
  margin-bottom: 1rem;
  color: #333f48;
}

.newsletter__wrapper {
  overflow: hidden;
  position: relative;
}

.newsletter-page {
  position: relative;
  padding: 2.4rem;
  padding-bottom: 0.4rem;
  background: transparent;
  text-align: left;
  font: "Libre Franklin", Arial, Helvetica, sans-serif;
}
@media (min-width: 600px) {
  .newsletter-page {
    margin: 4rem auto;
    width: 100%;
    max-width: 400px;
    background: #fbfbfb;
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  }
}
.newsletter-page .ninja-form {
  margin: 0;
}
.newsletter-page .widget__title {
  margin-top: 1rem;
  color: #333f48;
}
.newsletter-page .newsletter-prompt {
  margin-bottom: 1.6rem;
  color: #333f48;
}
.newsletter-page .newsletter-input {
  font: "Libre Franklin", Arial, Helvetica, sans-serif;
  width: 100%;
  border: 1px solid;
}
@media (min-width: 600px) {
  .newsletter-page .newsletter-input {
    border: none;
  }
}

.newsletter-post {
  grid-row: 5;
}
@media (min-width: 600px) {
  .newsletter-post {
    grid-row: 3;
    padding-top: 1.6rem;
  }
}

.newsletter-about {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.6rem 1.6rem 0 1.6rem;
  background-color: #f8f8f8;
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 700px) {
  .newsletter-about {
    grid-row: 2;
  }
}

.widget .nf-form-cont .mei-btn {
  background: #00a9b7;
}

@supports not (display: grid) {
  .newsletter-about {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@supports (display: grid) {
  .newsletter-about {
    grid-row: 4;
  }
}
.footnotes {
  color: #5e6873;
  font-size: 12px;
}

.pagination__link {
  padding: 4px 4px;
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.pagination__link:hover {
  -webkit-box-shadow: 0 3px 0 #00a9b7;
          box-shadow: 0 3px 0 #00a9b7;
}

.pagination__link--current {
  -webkit-box-shadow: 0 3px 0 #00a9b7;
          box-shadow: 0 3px 0 #00a9b7;
}

.pagination__item--disabled {
  cursor: default;
  z-index: -1;
  opacity: 0.7;
}
.pagination__item--disabled a {
  color: #888;
}

.tile {
  background: #fff;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.tile:hover {
  -webkit-transform: scale(1.015) translate3d(0, -2px, 0);
          transform: scale(1.015) translate3d(0, -2px, 0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.tile:hover .tile__label {
  padding-left: 0;
}

.tile:nth-child(2) {
  -webkit-animation: slideIn 0.2666666667s ease-out;
          animation: slideIn 0.2666666667s ease-out;
}

.tile:nth-child(3) {
  -webkit-animation: slideIn 0.4s ease-out;
          animation: slideIn 0.4s ease-out;
}

.tile:nth-child(4) {
  -webkit-animation: slideIn 0.5333333333s ease-out;
          animation: slideIn 0.5333333333s ease-out;
}

.tile:nth-child(5) {
  -webkit-animation: slideIn 0.6666666667s ease-out;
          animation: slideIn 0.6666666667s ease-out;
}

.tile:nth-child(6) {
  -webkit-animation: slideIn 0.8s ease-out;
          animation: slideIn 0.8s ease-out;
}

.tile:nth-child(7) {
  -webkit-animation: slideIn 0.9333333333s ease-out;
          animation: slideIn 0.9333333333s ease-out;
}

.tile:nth-child(8) {
  -webkit-animation: slideIn 1.0666666667s ease-out;
          animation: slideIn 1.0666666667s ease-out;
}

.tile__excerpt p {
  margin-bottom: 0;
}

.tile__label {
  width: 100%;
  padding-left: 8px;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1;
  color: #5e6873;
  -webkit-transition: padding-left 0.2s ease-out;
  transition: padding-left 0.2s ease-out;
}

.tile__date {
  grid-row: 3;
}

.tile__title {
  color: #333f48;
  margin-bottom: 0;
}

.tile__link {
  text-decoration: none;
  font-size: 0px;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.tile__date {
  color: #5e6873;
  font-size: 10px;
  margin-bottom: 0.4rem;
}

.tile__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 240px;
}

.tile__excerpt {
  font-size: 14px;
  color: #111;
}

.tile__bar {
  background: #00a9b7;
  width: 100%;
  height: 2px;
}

.tile--has-img {
  padding-top: 0;
  position: relative;
  margin-bottom: 1.6rem;
}
@media (max-width: 399px) {
  .tile--has-img {
    display: block;
  }
}

.tile--label {
  font-size: 10px;
}

.tile--intro {
  padding: 1.6rem 0 1.6rem 2.4rem;
  border-left: 3px solid #00a9b7;
  margin-bottom: 1.6rem;
}
.tile--intro:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
  cursor: default;
}

.tile__title--intro {
  color: #02B2BF;
}

.tile__excerpt--intro {
  font-size: 16px;
}

@supports not (display: flex) {
  @media (min-width: 600px) {
    .tile--has-img {
      float: left;
      width: 47%;
      clear: right;
      margin-left: 0.8rem;
    }
  }
  @media (min-width: 1000px) {
    .tile--has-img {
      float: left;
      width: 30%;
      clear: right;
    }
  }
  .tile--label {
    margin: 1.6rem;
  }
  .tile__title {
    margin: 0 1.6rem;
  }
  .tile__date {
    margin: 0.4rem 1.6rem;
  }
  .tile__excerpt {
    margin: 0.4rem 1.6rem 1.6rem 1.6rem;
  }
}
@supports not (display: grid) {
  .tile {
    display: block;
  }
  @media screen and (max-width: 1200px) {
    .tile {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 48%;
              flex: 0 1 48%;
    }
  }
  @media screen and (max-width: 600px) {
    .tile {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%;
    }
  }
  @media (min-width: 800px) {
    .tile--has-img {
      margin-right: 0.8rem;
    }
  }
}
@supports (display: flex) {
  .tile__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 0 1.6rem 1.6rem;
  }
  .tile--has-img {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  @media (min-width: 600px) {
    .tile--has-img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  @media (min-width: 1200px) {
    .tile--has-img {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 31%;
              flex: 0 0 31%;
    }
  }
  .tile--intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
}
@supports (display: grid) {
  .tile {
    display: grid;
    grid-template-columns: repeat(12, 0fr);
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: max-content max-content max-content 1fr;
    grid-column-end: span 12;
  }
  @media (min-width: 600px) {
    .tile {
      grid-column-end: span 6;
    }
  }
  @media (min-width: 1200px) {
    .tile {
      grid-column-end: span 4;
    }
  }
  .tile-col__whole {
    grid-column-end: span 12;
  }
  @media (min-width: 600px) {
    .tile-col__whole {
      padding: 1em;
    }
  }
  .tile-col__half {
    grid-column-end: span 12;
    padding: 1em;
  }
  @media (min-width: 1200px) {
    .tile-col__half {
      grid-column-end: span 6;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 48%;
              flex: 0 1 48%;
    }
  }
  @media (min-width: 1200px) {
    .tile-col__third {
      grid-column-end: span 4;
    }
  }
  .tile-col__fourth {
    padding-bottom: 15px;
    height: 140px;
  }
  @media (min-width: 1200px) {
    .tile-col__fourth {
      grid-column-end: span 3;
    }
  }
  .tile__title,
  .tile__excerpt,
  .tile__date,
  .tile__label {
    grid-column: 2/span10;
  }
  .tile--has-img {
    padding-right: 0;
    grid-row: span 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content 1fr;
  }
  .tile--has-img .tile__bar {
    grid-row: 1/span 2;
    height: 2px;
    width: calc(100% + 30px);
  }
  .tile--has-img .tile__title {
    grid-row: 4;
  }
  .tile--has-img .tile__date {
    grid-row: 5;
  }
  .tile--has-img .tile__excerpt {
    grid-row: 6;
  }
  .tile__title-wrap {
    padding: 0 0 1.6rem 0;
    display: grid;
    grid-column: 2/span 10;
  }
  .tile__img-wrap {
    grid-column: 1/-1;
    grid-row: 1/span 2;
    height: 100%;
  }
  .tile__bar {
    grid-row: 1/span 1;
    grid-column: 2;
  }
  .ethics-links .tile--has-img,
  .home-section .tile--has-img {
    grid-template-rows: 1fr -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-rows: 1fr max-content max-content max-content max-content;
  }
  @media (min-width: 1200px) {
    .tile--intro {
      grid-column-end: span 12;
    }
  }
}
.tile-stats {
  display: grid;
  text-align: center;
}
.tile-stats .tile h4 {
  background: #005f86;
  color: #fff;
}
@media (min-width: 600px) {
  .tile-stats .tile {
    grid-column-end: auto;
  }
}
.tile-stats .tile {
  grid-template-rows: auto;
  grid-template-columns: auto;
  margin: 0 10px;
  padding: 0;
  cursor: auto;
}
.tile-stats .tile h4 {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid #eee;
}
.tile-stats .tile i {
  color: #333f48;
  font-size: 50px !important;
  padding: 10px 0;
}
.tile-stats .tile p {
  padding: 5px 15px;
  font-size: 0.8em;
}

@media (min-width: 600px) {
  .page-template-publications-template .article__content {
    width: 100%;
  }
}

.publications .tile {
  padding: 1em 1em 0 1em;
}
@supports not (display: grid) {
  @media (min-width: 600px) {
    .publications .tile {
      min-height: 335px;
      width: 47%;
      margin-left: 0.8rem;
    }
  }
}
@supports (display: flex) {
  .publications .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (min-width: 800px) {
    .publications .tile {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 47%;
              flex: 0 0 47%;
    }
  }
}
@supports (display: grid) {
  .publications .tile {
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: 1fr;
    grid-column-end: span 6;
    gap: 0 20px;
    grid-template-areas: "tile__img-wrap tile__container";
  }
}
.publications .tile__img-wrap {
  width: 50%;
  float: left;
}
@supports not (display: flex) {
  .publications .tile__img-wrap {
    padding-right: 1em;
  }
}
@supports (display: flex) {
  .publications .tile__img-wrap {
    position: relative;
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
@supports (display: grid) {
  .publications .tile__img-wrap {
    grid-area: tile__img-wrap;
  }
}
.publications .tile__img {
  max-height: 280px;
}
.publications .tile__container {
  width: 50%;
  float: right;
}
@supports (display: flex) {
  .publications .tile__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@supports (display: grid) {
  .publications .tile__container {
    display: grid;
    grid-area: tile__container;
    grid-template-rows: repeat(4, -webkit-min-content);
    grid-template-rows: repeat(4, min-content);
  }
}
.publications .tile__label,
.publications .tile__date {
  padding: 0;
}
.publications .tile__label {
  margin: 9px 0 9px;
  line-height: 1.5;
}
@media (min-width: 1000px) {
  .publications .tile__label {
    font-size: 14px;
  }
}
.publications .tile__label.subtitle {
  font-style: italic;
}
.publications .tile__title,
.publications .tile__label {
  grid-row: auto;
}
.publications .tile__link {
  text-decoration: none;
  font-size: 0px;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

@supports not (display: flex) {
  .publications .tile__title {
    margin: inherit;
  }
}
.filters {
  list-style: none;
  margin: 0 0 0.8rem 10px;
}
@media (min-width: 800px) {
  .filters {
    margin-left: 0;
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 599px) {
  .filters-inline-mobile {
    display: block;
  }
}
@media (min-width: 600px) {
  .filters-inline-mobile {
    display: none;
  }
}
.filters-inline-mobile .filter__item {
  display: inline-block;
}
.filters-inline-mobile .filter__item::before {
  content: "• ";
  letter-spacing: 0.25em;
}

.filter__sublist {
  margin: 8px 0 0.8rem 0;
  list-style: none;
}
@media (min-width: 800px) {
  .filter__sublist {
    margin-bottom: 2.4rem;
  }
}

.filter__title {
  font-size: 12px;
  color: #005f86;
  text-transform: uppercase;
}

.filter__item {
  margin: 0 0 10px;
}

.filter__link {
  display: inline-block;
  padding: 0 0 0 5px;
  color: #888;
  font-size: 14px;
  text-decoration: none;
  -webkit-transform: translate3d(-5px, 0, 0);
          transform: translate3d(-5px, 0, 0);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}
.filter__link:hover {
  color: #00a9b7;
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
  border-left: 3px solid #00a9b7;
}

.filter__link--current {
  color: #00a9b7;
}
.filter__link--current:hover {
  -webkit-transform: none;
          transform: none;
  border: none;
}

.filter__link--parent {
  color: #333;
}

.filter__link--current-parent {
  font-weight: bold;
}

.filter__item--current-parent {
  padding-left: 10px;
  margin-left: 0px;
  border-left: 3px solid #00a9b7;
}
.filter__item--current-parent .filter__link:hover {
  -webkit-transform: none;
          transform: none;
  border: none;
}

.filter__item--top-item {
  margin-left: -10px;
}
.filter__item--top-item .filter__link:hover {
  -webkit-transform: none;
          transform: none;
  padding-left: 10px;
}

.announcement-banner {
  background: #bf5700;
  color: #fff;
  padding: 7px;
}
.announcement-banner .container, .announcement-banner body.enp-quiz .enp-breadcrumb-link__container, body.enp-quiz .announcement-banner .enp-breadcrumb-link__container {
  position: relative;
  padding: 5px;
  padding-right: 40px;
}
.announcement-banner p {
  padding-top: 0px;
  margin: 5px;
}
.announcement-banner a {
  color: #fff;
  text-decoration: underline;
}
.announcement-banner a:hover, .announcement-banner a:focus {
  color: #f4f4f4;
}

.announcement__close {
  position: absolute;
  top: 1rem;
  right: 4px;
  top: 0px;
  margin-top: 7px;
  padding: 17px;
  cursor: pointer;
  border: none;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.announcement__close:before, .announcement__close:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 3px;
  height: 15px;
  border-radius: 3px;
  background: #fff;
  display: block;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.announcement__close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.announcement__close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.announcement__close:hover, .announcement__close:focus {
  background: #fff;
}
.announcement__close:hover:before, .announcement__close:hover:after, .announcement__close:focus:before, .announcement__close:focus:after {
  background: #bf5700;
}

.vertical-color--journalism {
  color: #00a9b7;
}

body.vertical--journalism.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--journalism.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--journalism.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--journalism.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--journalism {
  background-color: #00a9b7;
}
.btn--journalism:hover, .btn--journalism:focus {
  background-color: #007a84;
}
.btn--journalism:active {
  background-color: #00c1d1;
}
.btn--journalism.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--journalism.btn--ghost:hover, .btn--journalism.btn--ghost:focus {
  border-color: #007a84;
}
.btn--journalism.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--journalism {
  background: #00a9b7;
}

.filter__item--verticals--journalism.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--journalism .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--journalism .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--journalism .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--journalism.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--journalism.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--journalism .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--journalism .tile__label {
  color: #00a9b7;
}
.tile--vertical--journalism .tile__bar {
  background: #00a9b7;
}

.vertical-color--science-communication {
  color: #00a9b7;
}

body.vertical--science-communication.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--science-communication.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--science-communication.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--science-communication.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--science-communication {
  background-color: #00a9b7;
}
.btn--science-communication:hover, .btn--science-communication:focus {
  background-color: #007a84;
}
.btn--science-communication:active {
  background-color: #00c1d1;
}
.btn--science-communication.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--science-communication.btn--ghost:hover, .btn--science-communication.btn--ghost:focus {
  border-color: #007a84;
}
.btn--science-communication.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--science-communication {
  background: #00a9b7;
}

.filter__item--verticals--science-communication.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--science-communication .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--science-communication .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--science-communication .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--science-communication.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--science-communication.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--science-communication .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--science-communication .tile__label {
  color: #00a9b7;
}
.tile--vertical--science-communication .tile__bar {
  background: #00a9b7;
}

.vertical-color--media-ethics {
  color: #00a9b7;
}

body.vertical--media-ethics.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--media-ethics.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--media-ethics.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--media-ethics.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--media-ethics {
  background-color: #00a9b7;
}
.btn--media-ethics:hover, .btn--media-ethics:focus {
  background-color: #007a84;
}
.btn--media-ethics:active {
  background-color: #00c1d1;
}
.btn--media-ethics.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--media-ethics.btn--ghost:hover, .btn--media-ethics.btn--ghost:focus {
  border-color: #007a84;
}
.btn--media-ethics.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--media-ethics {
  background: #00a9b7;
}

.filter__item--verticals--media-ethics.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--media-ethics .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--media-ethics .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--media-ethics .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--media-ethics.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--media-ethics.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--media-ethics .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--media-ethics .tile__label {
  color: #00a9b7;
}
.tile--vertical--media-ethics .tile__bar {
  background: #00a9b7;
}

.vertical-color--social-platforms {
  color: #00a9b7;
}

body.vertical--social-platforms.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--social-platforms.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--social-platforms.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--social-platforms.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--social-platforms {
  background-color: #00a9b7;
}
.btn--social-platforms:hover, .btn--social-platforms:focus {
  background-color: #007a84;
}
.btn--social-platforms:active {
  background-color: #00c1d1;
}
.btn--social-platforms.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--social-platforms.btn--ghost:hover, .btn--social-platforms.btn--ghost:focus {
  border-color: #007a84;
}
.btn--social-platforms.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--social-platforms {
  background: #00a9b7;
}

.filter__item--verticals--social-platforms.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--social-platforms .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--social-platforms .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--social-platforms .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--social-platforms.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--social-platforms.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--social-platforms .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--social-platforms .tile__label {
  color: #00a9b7;
}
.tile--vertical--social-platforms .tile__bar {
  background: #00a9b7;
}

.vertical-color--propaganda {
  color: #00a9b7;
}

body.vertical--propaganda.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--propaganda.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--propaganda.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--propaganda.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--propaganda {
  background-color: #00a9b7;
}
.btn--propaganda:hover, .btn--propaganda:focus {
  background-color: #007a84;
}
.btn--propaganda:active {
  background-color: #00c1d1;
}
.btn--propaganda.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--propaganda.btn--ghost:hover, .btn--propaganda.btn--ghost:focus {
  border-color: #007a84;
}
.btn--propaganda.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--propaganda {
  background: #00a9b7;
}

.filter__item--verticals--propaganda.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--propaganda .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--propaganda .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--propaganda .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--propaganda.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--propaganda.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--propaganda .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--propaganda .tile__label {
  color: #00a9b7;
}
.tile--vertical--propaganda .tile__bar {
  background: #00a9b7;
}

.vertical-color--center-leadership {
  color: #00a9b7;
}

body.vertical--center-leadership.vertical-base .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}
body.vertical--center-leadership.vertical-base .filter__link--current {
  color: #00a9b7;
}
body.vertical--center-leadership.vertical-base .filter__item--current-parent {
  border-color: #00a9b7;
}
body.vertical--center-leadership.vertical-base .filter__link--parent {
  color: #00a9b7;
}

.btn--center-leadership {
  background-color: #00a9b7;
}
.btn--center-leadership:hover, .btn--center-leadership:focus {
  background-color: #007a84;
}
.btn--center-leadership:active {
  background-color: #00c1d1;
}
.btn--center-leadership.btn--ghost {
  border-color: #00a9b7;
  color: #00a9b7;
  fill: #00a9b7;
}
.btn--center-leadership.btn--ghost:hover, .btn--center-leadership.btn--ghost:focus {
  border-color: #007a84;
}
.btn--center-leadership.btn--ghost:active {
  border-color: #00c1d1;
}

.btn--center-leadership {
  background: #00a9b7;
}

.filter__item--verticals--center-leadership.filter__item--current-parent {
  border-color: #00a9b7;
}
.filter__item--verticals--center-leadership .filter__link--current {
  color: #00a9b7;
}
.filter__item--verticals--center-leadership .filter__link--parent {
  color: #00a9b7;
}
.filter__item--verticals--center-leadership .filter__link:hover {
  color: #00a9b7;
  border-color: #00a9b7;
}

.tile--vertical--center-leadership.tile--intro {
  border-color: #00a9b7;
}
@media (min-width: 600px) {
  .tile--vertical--center-leadership.tile--intro {
    grid-column-end: span 12;
  }
}
.tile--vertical--center-leadership .tile__title--intro {
  color: #00a9b7;
}
.tile--vertical--center-leadership .tile__label {
  color: #00a9b7;
}
.tile--vertical--center-leadership .tile__bar {
  background: #00a9b7;
}

.search .tease {
  padding-bottom: 3em;
}
@media (min-width: 600px) {
  .search .tease {
    display: grid;
    grid-gap: 0 2em;
  }
}
@media (min-width: 600px) {
  .search .tease__title {
    grid-column: 1/4;
  }
}
.search .tease__img {
  max-height: unset;
}
@media (min-width: 600px) {
  .search .tease__img {
    grid-column: 1/2;
    align-self: auto;
  }
}
.search .tease__excerpt {
  grid-column: auto;
}

.home-funders {
  padding-top: 0;
}
@media (min-width: 600px) {
  .home-funders {
    padding-top: 2.4rem;
  }
}
.home-funders .container, .home-funders body.enp-quiz .enp-breadcrumb-link__container, body.enp-quiz .home-funders .enp-breadcrumb-link__container {
  padding-left: 0;
  padding-right: 0;
}

.funder {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.6rem;
  margin-right: 0.8rem;
}
@media (min-width: 600px) {
  .funder {
    margin-right: 1.6rem;
  }
}
@media (min-width: 1000px) {
  .funder {
    margin-right: 1.6rem;
  }
}

.funder--donate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px dashed #ddd;
  padding: 1.6rem;
  text-align: center;
}

.funder__donate__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

@supports not (display: flex) {
  @media (min-width: 600px) {
    .home-funders {
      float: left;
    }
  }
  .funder {
    display: inline-block;
    width: 44%;
  }
  @media (min-width: 600px) {
    .funder {
      width: 25%;
    }
  }
  @media (min-width: 1000px) {
    .funder {
      margin-right: 3.2rem;
    }
  }
  .funder--donate {
    width: 100%;
  }
}
@supports not (display: grid) {
  @media (min-width: 600px) {
    .home-funders {
      float: left;
      padding-left: calc( 200px - 0.8rem );
    }
  }
  @media (min-width: 1000px) {
    .home-funders {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 600px) {
    .funders {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
}
@supports (display: flex) {
  @media (min-width: 600px) {
    .home-funders {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
  }
  .funders {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .funder {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    margin-right: 0.8rem;
  }
  @media (min-width: 600px) {
    .funder {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      margin-right: 2.4rem;
    }
  }
  .funder--donate {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@supports (display: grid) {
  .funders {
    display: grid;
    grid-gap: 22px;
  }
  @media (min-width: 400px) {
    .funders {
      grid-gap: 30px;
    }
  }
  @media (min-width: 600px) {
    .funders {
      gap: 20px;
      grid-gap: 40px;
    }
  }
  .funder {
    grid-column: span 6;
    margin-right: 0;
  }
  @media (min-width: 600px) {
    .funder {
      grid-column: span 3;
    }
  }
  @media (min-width: 800px) {
    .funder {
      grid-column: span 3;
    }
  }
  @media (min-width: 600px) {
    .home-funders {
      grid-column: 2;
      grid-row: 5;
    }
  }
  .funder--donate {
    display: grid;
    grid-column: 1/span 6;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-column: span 12;
  }
}
.event-meta__title {
  font-size: 12px;
}

.event__venue {
  margin-top: 1.6rem;
}

.venue__name {
  font-size: 12px;
  margin-bottom: 0;
}

#tribe-events-pg-template,
.tribe-events-pg-template {
  margin: 0 auto;
  max-width: 700px;
}

.tribe-common-c-btn-icon:disabled {
  background-color: currentcolor;
}

video {
  width: 100%;
}

@supports (display: grid) {
  .cme-tweets {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

@media (min-width: 600px) {
  @supports (display: flex) {
    .ctf-tweets {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  }
}
@supports (display: grid) {
  .ctf-tweets {
    grid-template-columns: repeat(12, 1fr);
  }
}

.ctf-item {
  position: relative;
  background: #fff;
  padding: 1rem 0 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  border-top: none;
}
@supports not ((display: flex) or (display: grid)) {
  @media (min-width: 600px) {
    .ctf-item {
      float: left;
      width: 31%;
    }
  }
  @media (min-width: 800px) {
    .ctf-item {
      width: 32%;
    }
  }
}
@supports (display: flex) {
  .ctf-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
@supports (display: grid) {
  .ctf-item {
    grid-column: span 4;
  }
}

@media (min-width: 600px) {
  #ctf .ctf-item:not(:last-child) {
    margin-right: 1em;
  }
}
#ctf .ctf-author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5rem;
}
#ctf .ctf-tweet-content {
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0;
  margin-left: 0;
  padding: 1.6rem;
}
#ctf .ctf-author-box-link {
  padding-bottom: 25px;
}
#ctf .ctf-author-name {
  width: 100%;
}
#ctf .ctf-author-screenname {
  color: #bf5700;
  font-size: 0.8rem;
  text-decoration: none;
}
#ctf .ctf-quoted-tweet-text {
  display: none;
}
#ctf .ctf-author-avatar {
  border-radius: 50%;
}
#ctf .ctf-author-name {
  color: #f8f8f8;
}
#ctf .ctf-author-name:before {
  content: "";
  position: absolute;
  color: #111;
  opacity: 1;
  font-weight: 100;
}
#ctf .ctf-tweet-date:after {
  content: "h ago";
}
#ctf .ctf_more {
  display: inline-block;
}
#ctf .ctf-author-avatar {
  position: relative;
}
#ctf .ctf-author-avatar:after {
  content: "";
  width: 48px;
  height: 48px;
  background: url("//localhost:3000/wp-content/uploads/2020/10/Texas-Moody-Media-Engagement.jpg");
  top: 0;
  left: 0;
  position: absolute;
  background-size: contain;
  border-radius: 50%;
  background-repeat: no-repeat;
}

/* We can get rid of the above styles if bootstrap is added later */
.quiz-creator-research.tree::after {
  content: "";
  background-color: #f8f8f8;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: skewY(-8deg);
          transform: skewY(-8deg);
}

#embed-code {
  min-height: 80px;
  margin-bottom: 20px;
}

.subhead, .step-header {
  color: #005f86;
}

.tree-link {
  color: #bf5700;
  text-decoration: none;
}
.tree-link:hover {
  text-decoration: underline;
  color: #bf5700;
}

.col-sm-6 > h3 {
  color: #5e6873;
}

body .main-body-wrapper {
  background: url("/wp-content/themes/engage/assets/img/dots.svg");
  background-position: 150% -5%;
  background-repeat: no-repeat;
  background-size: 1024px;
}
body.vertical--journalism.archive .main-body-wrapper, body.vertical--media-ethics.archive .main-body-wrapper, body.vertical--science-communication.archive .main-body-wrapper, body.vertical--social-platforms.archive .main-body-wrapper {
  background: url("/wp-content/themes/engage/assets/img/dots.svg");
  background-position: 120% -1%;
  background-size: 1024px;
  background-repeat: no-repeat;
}

.header {
  background: transparent;
}
.header:after {
  background: none;
}
.header .header__container {
  position: relative;
  z-index: 99;
  border-bottom: none;
}
.header .menu__sublist {
  background-color: #fff !important;
}

.home-research {
  background: transparent;
  overflow: hidden;
}

.dots-right::before {
  background: url("/wp-content/themes/engage/assets/img/dots.svg");
  background-repeat: no-repeat;
  background-size: 120%;
  height: 780px;
  width: 780px;
  content: "";
  position: absolute;
  left: 25%;
  top: -200px;
  z-index: -1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.img-shadow img {
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-top: -50px;
}

.see-all-posts.see-all-posts--research {
  padding-bottom: 0px;
}

.above-dots {
  position: relative;
}

/*                */
/* tweets section */
/*                */
.wdtf-user-card,
.tweets_avatar:nth-child(2) .wdtf-user-card,
.tweets_avatar:nth-child(3) .wdtf-user-card {
  background: #f8f8f8;
  padding: 0.8rem;
  border-bottom: 1px solid #f8f8f8;
}

.tweets_avatar {
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
}

/*        */
/* footer */
/*        */
.footer:before {
  background: #f0f0f0;
}

.footer:after {
  background: #f8f8f8;
}

/*               */
/* media queries */
/*               */
@media (min-width: 600px) {
  .fetched_tweets {
    margin-bottom: 100px;
  }
  .hero__2 .tile__excerpt {
    padding-right: 35px;
  }
}
@media (min-width: 800px) {
  .header__container {
    padding-top: 10px;
    padding-bottom: 15px;
    max-width: 1400px;
  }
  .menu__secondary .btn a,
  .menu__secondary .button a {
    padding: 6px 12px;
  }
}
@media (min-width: 800px) {
  .header {
    margin-bottom: 0.5rem;
  }
}
.menu__secondary .btn a {
  border: none;
  color: #bf5700;
  margin-left: 25px;
}

.menu__secondary .btn a::before {
  background: url("/wp-content/themes/engage/assets/img/avatar.png");
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  background-repeat: no-repeat;
  left: 15px;
  top: 0px;
  display: block;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__secondary .btn:hover a:before {
  left: 10px;
}

@media (max-width: 599px) {
  .home-section .tile:nth-of-type(1n + 5) {
    display: none;
  }
}
/*! Flickity v2.3.0 custom styling
see file: assets/scss/plugins/_flickity.scss
---------------------------------------------- */
.carousel-cell {
  width: 100%; /* full width */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}
@media (min-width: 800px) {
  .carousel-cell {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.carousel-cell img {
  min-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 600px) {
  .carousel-cell img {
    max-height: 400px;
  }
}
@media (min-width: 800px) {
  .carousel-cell img {
    max-height: 400px;
  }
}

.hero__1,
.carousel-cell img {
  height: 200px;
}
@media (min-width: 600px) {
  .hero__1,
  .carousel-cell img {
    height: unset;
  }
}

.hero__2 .tile__label {
  padding-left: 0;
}
.hero__2 .tile__bar {
  margin-top: 1em;
}
.hero__2 a {
  text-decoration: none;
}

@media (min-width: 1000px) {
  .hero__1,
  .hero__2 {
    width: 50%;
    float: left;
  }
}

@supports (display: flex) {
  @media (min-width: 1000px) {
    .hero__1,
    .hero__2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
              flex: 0 0 48%;
    }
  }
}
.hero__1 {
  position: relative;
}

@supports not (display: flex) {
  @media (min-width: 1000px) {
    .hero__1 {
      padding-right: 3em;
    }
  }
}
.flickity-prev-next-button {
  top: 0;
  -webkit-transform: translateY(195px);
          transform: translateY(195px);
}
@media (max-width: 399px) {
  .flickity-prev-next-button {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}
@media (min-width: 600px) {
  .flickity-prev-next-button {
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
}
@media (min-width: 1000px) {
  .flickity-prev-next-button {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.flickity-prev-next-button.previous {
  left: auto;
  right: 55px;
}

.flickity-prev-next-button.next {
  right: 0;
}

/* flickity dots */
.flickity-page-dots {
  bottom: -22px;
}

/* flickity dots are lines */
.flickity-page-dots .dot {
  height: 4px;
  width: 40px;
  margin: 0;
  border-radius: 0;
}

/* flickity transition height changes */
.flickity-viewport {
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

/*! END Flickity v2.3.0 custom styling
---------------------------------------------- */
.past-interns-spacing {
  margin-top: 25px;
}

.past-interns__main-title {
  margin-top: 3em;
}

.past-interns-title {
  width: 480px;
  padding: 20px 60px 20px 20px;
  line-height: 25px;
  font-size: 17px;
  border-top: 1px solid #D1CECE;
  border-bottom: 1px solid #D1CECE;
}

[data-toggle-arrow]::after {
  content: attr(data-toggle-arrow);
  padding-left: 0.2em;
  right: 15px;
}

.past-interns-title:hover {
  cursor: pointer;
  border-left: 5px solid;
  border-color: #bf5700;
  background: #F2F1ED;
}

.past-interns-list {
  margin-bottom: 0px;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  position: relative;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 95%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: auto;
  background: transparent;
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  text-align: left;
}
.modal video {
  background-color: #fff;
  max-height: 60vh;
}
@media (min-width: 800px) {
  .modal video {
    width: 600px;
  }
}
.modal .modal-content p {
  margin-bottom: -9px;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@media (min-width: 600px) {
  .archive__sidebar {
    float: left;
    padding-right: 1em;
    width: 20%;
  }
}
@media (min-width: 800px) {
  .archive__sidebar {
    width: 15%;
  }
}

.newsletter-post p,
.newsletter-about p,
.newsletter-landing p {
  margin-bottom: 1.2rem;
}
@media (min-width: 600px) {
  .newsletter-post,
  .newsletter-about,
  .newsletter-landing {
    text-align: left;
    font-size: 0.75rem;
  }
}
.newsletter-post .newsletter-input,
.newsletter-about .newsletter-input,
.newsletter-landing .newsletter-input {
  width: 150px;
}

.media-ethics-sidebar .widget__title {
  margin-top: 0;
  font-family: "Libre Franklin", Arial, Helvetica, sans-serif;
  color: #5e6873;
  font-size: 0.85rem;
}

.full-width .newsletter__wrapper {
  width: 100%;
}

@supports not (display: flex) {
  @media (min-width: 600px) {
    .sidebar-primary {
      width: 75%;
      padding-left: 1.6rem;
      float: right;
    }
  }
  @media (min-width: 1200px) {
    .sidebar-primary {
      width: 80%;
      float: right;
    }
  }
}
@supports not (display: grid) {
  @media (max-width: 399px) {
    .archive__sidebar {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  @media (min-width: 600px) {
    .archive__sidebar {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
    }
  }
  .media-ethics-sidebar {
    width: 20%;
  }
}
@supports (display: flex) {
  @media (min-width: 600px) {
    .sidebar-primary {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5;
      padding-left: calc( 200px + 1.6rem );
    }
  }
  @media (min-width: 1000px) {
    .sidebar-primary {
      padding-left: calc( 250px + 58px );
    }
  }
  @media (min-width: 1200px) {
    .sidebar-primary {
      padding-left: calc( 200px + 3.2rem );
    }
  }
  @media (min-width: 600px) {
    .archive__sidebar {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 15%;
              flex: 0 0 15%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  @media (min-width: 800px) {
    .archive__sidebar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column wrap;
              flex-flow: column wrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 15%;
              flex: 0 0 15%;
    }
  }
  @media (min-width: 1000px) {
    .archive__sidebar {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
    }
  }
  @media (min-width: 600px) {
    .newsletter-post,
    .newsletter-about,
    .newsletter-landing {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20%;
              flex: 0 0 20%;
    }
  }
  .full-width .newsletter__wrapper {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@supports (display: grid) {
  .sidebar-primary {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  @media (min-width: 600px) {
    .sidebar-primary {
      grid-column: 2;
      grid-row-start: 6;
      padding-left: 0;
    }
  }
  .archive__sidebar {
    width: 100%;
    grid-column: 1/-1;
    padding-right: 10px;
  }
  @media (min-width: 600px) {
    .archive__sidebar {
      display: grid;
      grid-column: 1/4;
      grid-row: 1;
    }
  }
  @media (min-width: 600px) {
    .newsletter-about {
      grid-column: 1/4;
      grid-row: 2;
    }
  }
  @media (min-width: 600px) {
    .newsletter-post,
    .newsletter-about,
    .newsletter-landing {
      grid-column: 1;
    }
  }
  .media-ethics-sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  @media (min-width: 600px) {
    .media-ethics-sidebar {
      grid-column: 2;
    }
  }
  @media (min-width: 1200px) {
    .media-ethics-sidebar {
      grid-row: 3/span 4;
      grid-column: 3;
      font-size: 16px;
      max-width: 200px;
      margin-left: 0px;
    }
  }
}
.emoji {
  max-width: 20px;
}

.recent-posts-extended .widget__title {
  font-style: normal;
  text-decoration: none;
}

.rpwe-block ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 800px) {
  .rpwe-block ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.rpwe-block li {
  background: #fff;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 1px #e9f3f0, 0 1px 1px rgba(0, 0, 0, 0.1);
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 10px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 21%;
          flex: 1 0 21%;
}
.rpwe-block li:hover {
  -webkit-transform: scale(1.015) translate3d(0, -2px, 0);
          transform: scale(1.015) translate3d(0, -2px, 0);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@media (min-width: 800px) {
  .rpwe-block li {
    margin: 0 10px 0 0;
    max-height: 120px;
    overflow: hidden;
  }
}

.rpwe-title a {
  display: inline;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rpwe-block h3 {
  margin-bottom: 0;
  padding-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.rpwe-thumb {
  border: 1px solid #eee;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0 10px 0 0;
  padding: 0;
}

.rpwe-time {
  color: #bbb;
  font-size: 12px;
  text-decoration: none;
  font-style: normal;
}

.rpwe-comment {
  color: #bbb;
  font-size: 11px;
  padding-left: 5px;
}

.rpwe-alignleft {
  display: inline;
  float: left;
}

.rpwe-alignright {
  display: inline;
  float: right;
}

.rpwe-aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.rpwe-clearfix:before,
.rpwe-clearfix:after {
  content: "";
  display: table;
}

.rpwe-clearfix:after {
  clear: both;
}

.rpwe-clearfix {
  zoom: 1;
}
