@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,400;1,700&display=swap");
html {
  box-sizing: border-box; }

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

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@font-face {
  font-family: 'HotSans';
  src: url("../fonts/hotsans/HotSans-Regular_web.woff2") format("woff2"), url("../fonts/hotsans/HotSans-Regular_web.woff") format("woff");
  font-weight: 400; }

@font-face {
  font-family: 'HotSans';
  src: url("../fonts/hotsans/HotSans-Medium_web.woff2") format("woff2"), url("../fonts/hotsans/HotSans-Medium_web.woff") format("woff");
  font-weight: 500; }

@font-face {
  font-family: 'HotSans';
  src: url("../fonts/hotsans/HotSans-Bold_web.woff2") format("woff2"), url("../fonts/hotsans/HotSans-Bold_web.woff") format("woff");
  font-weight: bold; }

#wrapper {
  padding: 1.25rem; }
  @media screen and (min-width: 37.5rem) {
    #wrapper {
      padding: 2.5rem; } }
  @media screen and (min-width: 48rem) {
    #wrapper {
      padding: 3.75rem 5rem; } }
  @media screen and (min-width: 81.25rem) {
    #wrapper {
      padding: 5rem 10rem; } }
  @media screen and (min-width: 100rem) {
    #wrapper {
      padding: 5rem 15rem; } }
.section-categories .section-header h2 {
  font-size: 30px !important;
  font-size: 1.875rem !important;
  font-weight: 500;
  letter-spacing: -1px; }
  @media screen and (min-width: 26.5625rem) {
    .section-categories .section-header h2 {
      font-size: 34px !important;
      font-size: 2.125rem !important; } }
  @media screen and (min-width: 48rem) {
    .section-categories .section-header h2 {
      font-size: 40px !important;
      font-size: 2.5rem !important; } }
  @media screen and (min-width: 64rem) {
    .section-categories .section-header h2 {
      font-size: 48px !important;
      font-size: 3rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .section-categories .section-header h2 {
      font-size: 64px !important;
      font-size: 4rem !important; } }
h1 {
  font-size: 30px !important;
  font-size: 1.875rem !important;
  font-weight: 500; }
  @media screen and (min-width: 26.5625rem) {
    h1 {
      font-size: 32px !important;
      font-size: 2rem !important; } }
  @media screen and (min-width: 48rem) {
    h1 {
      font-size: 36px !important;
      font-size: 2.25rem !important; } }
  @media screen and (min-width: 64rem) {
    h1 {
      font-size: 40px !important;
      font-size: 2.5rem !important; } }
  @media screen and (min-width: 81.25rem) {
    h1 {
      font-size: 48px !important;
      font-size: 3rem !important; } }
.user-content h2, h3, h2 {
  font-size: 20px !important;
  font-size: 1.25rem !important; }
  @media screen and (min-width: 48rem) {
    .user-content h2, h3, h2 {
      font-size: 24px !important;
      font-size: 1.5rem !important; } }
  @media screen and (min-width: 64rem) {
    .user-content h2, h3, h2 {
      font-size: 26px !important;
      font-size: 1.625rem !important; } }
.user-content h3, h4 {
  font-size: 16px !important;
  font-size: 1rem !important; }
  @media screen and (min-width: 48rem) {
    .user-content h3, h4 {
      font-size: 18px !important;
      font-size: 1.125rem !important; } }
  @media screen and (min-width: 64rem) {
    .user-content h3, h4 {
      font-size: 20px !important;
      font-size: 1.25rem !important; } }
.user-content h4, h5 {
  font-size: 14px !important;
  font-size: 0.875rem !important; }
  @media screen and (min-width: 48rem) {
    .user-content h4, h5 {
      font-size: 16px !important;
      font-size: 1rem !important; } }
  @media screen and (min-width: 64rem) {
    .user-content h4, h5 {
      font-size: 18px !important;
      font-size: 1.125rem !important; } }
.component .component-header h2 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  color: #C8C9CC;
  letter-spacing: .6px; }
  @media screen and (min-width: 48rem) {
    .component .component-header h2 {
      font-size: 15px !important;
      font-size: 0.9375rem !important; } }
  @media screen and (min-width: 64rem) {
    .component .component-header h2 {
      font-size: 16px !important;
      font-size: 1rem !important; } }
/*
        * title xlarge
        * title large (h2)
        * title (h3)
        * title small (h4)
        * title xsmall (h5, component title?)
        * component-title
*/
p, li, table {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  letter-spacing: .2px;
  line-height: 1.6; }

body.single [role="main"] .summary p {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.5; }
  @media screen and (min-width: 48rem) {
    body.single [role="main"] .summary p {
      font-size: 28px !important;
      font-size: 1.75rem !important; } }
  @media screen and (min-width: 81.25rem) {
    body.single [role="main"] .summary p {
      font-size: 36px !important;
      font-size: 2.25rem !important; } }
.user-content .wp-caption-text {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.5;
  letter-spacing: 0;
  color: #82868C; }
  @media screen and (min-width: 64rem) {
    .user-content .wp-caption-text {
      font-size: 15px !important;
      font-size: 0.9375rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .user-content .wp-caption-text {
      font-size: 16px !important;
      font-size: 1rem !important; } }
.user-content blockquote p {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  font-weight: 400;
  line-height: 1.5;
  color: #111; }
  @media screen and (min-width: 64rem) {
    .user-content blockquote p {
      font-size: 22px !important;
      font-size: 1.375rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .user-content blockquote p {
      font-size: 28px !important;
      font-size: 1.75rem !important; } }
input[type="submit"], .button, .gfield.gfield--file .button {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1;
  font-weight: 400; }
  @media screen and (min-width: 48rem) {
    input[type="submit"], .button, .gfield.gfield--file .button {
      font-size: 15px !important;
      font-size: 0.9375rem !important; } }
  @media screen and (min-width: 64rem) {
    input[type="submit"], .button, .gfield.gfield--file .button {
      font-size: 16px !important;
      font-size: 1rem !important; } }
  @media screen and (min-width: 81.25rem) {
    input[type="submit"], .button, .gfield.gfield--file .button {
      font-size: 18px !important;
      font-size: 1.125rem !important; } }
.gfield label {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.4;
  font-weight: 700;
  color: #03060A; }

.gfield .select2 .select2-selection__placeholder {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.4;
  color: #82868c; }

.gfield input[type="text"],
.gfield input[type="email"],
.gfield input[type="url"],
.gfield select,
.gfield .select2,
.gfield textarea {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.4; }

.component-navigation {
  border: 1px solid #A8ADB3; }
  .component-navigation .component-header {
    border-bottom: 1px solid #A8ADB3; }
    .component-navigation .component-header h2 {
      margin: 0;
      padding: 0.8333333333rem 1.25rem; }
  @media screen and (min-width: 81.25rem) {
    .component-navigation .component-header h2 {
      padding: 1.25rem 2.5rem; } }
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

.clear {
  clear: both; }

.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: '';
    display: table; }
  .clearfix:after {
    clear: both; }

@media only screen and (max-width: 1023px) {
  html.admin-bar-visible {
    margin-top: 0 !important; }
  #wpadminbar {
    display: none; } }

.translation {
  opacity: .5; }

body.dark-body {
  background: #111; }
  @media screen and (min-width: 48rem) {
    body.dark-body:not(.home) {
      background-image: url(../images/19-20_pattern--invert.svg);
      background-repeat: no-repeat;
      background-position: right -20vw top 100px;
      background-size: 50vw; } }
  @media screen and (min-width: 81.25rem) {
    body.dark-body {
      background-size: 40vw; } }
  @media screen and (min-width: 100rem) {
    body.dark-body {
      background-position: right -10vw top 150px;
      background-size: 30vw; } }
a {
  transition: all 0.15s ease-out;
  color: #FF5884;
  text-decoration: none; }
  a:visited {
    color: #FF5884; }
  a:focus {
    outline: #FF5884 auto 0.3125rem; }

body {
  font: 100%/1.5 "HotSans", Helvetica, Arial, sans-serif;
  color: #3C3D40;
  background: #fff; }

#wrapper {
  width: 100%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, ul, ol, table, blockquote, img, .wp-caption, address, .gform_wrapper {
  margin: 1.25rem 0 0; }
  @media screen and (min-width: 48rem) {
    h1, h2, h3, h4, h5, h6, p, ul, ol, table, blockquote, img, .wp-caption, address, .gform_wrapper {
      margin: 1.5625rem 0 0; } }
  @media screen and (min-width: 64rem) {
    h1, h2, h3, h4, h5, h6, p, ul, ol, table, blockquote, img, .wp-caption, address, .gform_wrapper {
      margin: 2.5rem 0 0; } }
h1, h2, h3, h4 {
  margin-top: 1.875rem;
  line-height: 1.4;
  color: #111;
  clear: both; }

@media screen and (min-width: 48rem) {
  h1, h2 {
    margin: 5rem 0 0; } }

@media screen and (min-width: 48rem) {
  h3, h4 {
    margin: 2.5rem 0 0; } }

h1 {
  line-height: 1.1; }

@media screen and (min-width: 64rem) {
  h3 + p {
    margin-top: 0.625rem; } }

h4 {
  color: #e2e3e5; }
  @media screen and (min-width: 64rem) {
    h4 + p {
      margin-top: 0.625rem; } }
h5 {
  color: white; }

strong {
  color: #111; }

em {
  font-family: 'Open Sans', sans-serif;
  font-size: 95%; }

img {
  display: block; }

.user-content {
  word-break: break-word; }
  .user-content > :first-child {
    margin-top: 0; }
  .user-content h4 {
    color: #111; }
  .user-content .wp-caption, .user-content img {
    max-width: 100%;
    width: auto !important;
    height: auto; }
  .user-content .wp-caption img {
    margin: 0; }
  .user-content .wp-caption-text {
    margin-top: 0.625rem !important; }
  .user-content .alignleft {
    float: left;
    margin: 0 1.25rem 0.625rem 0;
    max-width: 50%; }
  .user-content .alignright {
    float: right;
    margin: 0 0 0.625rem 1.25rem;
    max-width: 50%; }
  .user-content .note {
    background: #fffaaa;
    padding: 0.625rem 1.25rem;
    color: #3C3D40; }
  .user-content iframe {
    max-width: 100%; }
  .user-content blockquote {
    position: relative;
    padding: 0.625rem 0 0.625rem 1.25rem; }
    .user-content blockquote:before {
      content: "";
      width: 0.25rem;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(180deg, #ffc13b 0%, #ff8a19 80%, #ff7d00 100%); }
    .user-content blockquote p {
      margin: 0; }
      .user-content blockquote p strong {
        font-size: 80%;
        display: block;
        margin-top: 0.625rem;
        text-transform: uppercase; }
  .user-content hr {
    border: 0;
    border-top: 2px solid #A8ADB3;
    margin: 5rem 0; }
    .user-content hr + * {
      margin-top: 0; }
  .user-content a {
    color: #111;
    font-weight: 700;
    border-bottom: 2px solid #eee; }
    .user-content a:hover {
      background: #eee; }
  @media screen and (min-width: 64rem) {
    .user-content blockquote {
      padding: 0; }
      .user-content blockquote:before {
        left: -1.25rem;
        top: 0.3125rem;
        bottom: 0.4375rem;
        height: auto; } }
  @media screen and (min-width: 81.25rem) {
    .user-content blockquote {
      padding: 1.25rem 0; }
      .user-content blockquote:before {
        left: -2rem;
        top: 0;
        bottom: 0; }
      .user-content blockquote p strong {
        font-size: 60%; } }
table {
  width: 100%; }
  table th, table td {
    padding: 0.3125rem 0.625rem;
    border-bottom: 1px solid #A8ADB3; }

.container {
  max-width: 68.75rem;
  margin: 0 auto; }

hr {
  border: 0;
  border-top: 1px solid #FFA323;
  margin: 1.25rem auto;
  clear: both; }
  @media screen and (min-width: 64rem) {
    hr {
      margin: 2.5rem auto; } }
.skip-links a, .visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.page-title {
  margin: 2.5rem 0; }
  @media screen and (min-width: 37.5rem) {
    body:not(.archive) .page-title {
      padding-top: 4.375rem !important; } }
  @media screen and (min-width: 48rem) {
    body:not(.archive) .page-title {
      padding-top: 5.625rem !important; } }
  @media screen and (min-width: 64rem) {
    body:not(.archive) .page-title {
      padding-top: 6.875rem !important; } }
  @media screen and (min-width: 37.5rem) {
    .page-title body.dark-header:not(.archive) {
      padding-top: 4.375rem !important; } }
  @media screen and (min-width: 48rem) {
    .page-title body.dark-header:not(.archive) {
      padding-top: 5.625rem !important; } }
  @media screen and (min-width: 64rem) {
    .page-title body.dark-header:not(.archive) {
      padding-top: 6.875rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .page-title body.dark-header:not(.archive) {
      padding-top: 10rem !important; } }
  body.dark-header .page-title {
    background: linear-gradient(180deg, #ffc13b 0%, #ff8a19 80%, #ff7d00 100%);
    margin-top: 0;
    width: 100vw;
    margin-left: -1.25rem;
    padding: 1px 1.25rem 2.5rem;
    padding-top: 4.375rem;
    position: relative;
    overflow: hidden; }
    body.dark-header .page-title:before {
      content: "";
      display: block;
      width: calc(603px/5);
      height: calc(661px/5);
      position: absolute;
      top: 50%;
      margin-top: 2.1875rem;
      transform: translateY(-50%);
      right: 0;
      background: url(../images/2122-background-graphic.png) no-repeat center center;
      background-size: 100%; }
    @media screen and (min-width: 48rem) {
      body.dark-header .page-title:before {
        right: 2.5rem;
        width: calc(603px/4);
        height: calc(661px/4);
        margin-top: 2.75rem; } }
    @media screen and (min-width: 64rem) {
      body.dark-header .page-title:before {
        margin-top: 3.375rem; } }
    @media screen and (min-width: 81.25rem) {
      body.dark-header .page-title:before {
        width: calc(603px/3);
        height: calc(661px/3);
        right: 32%; } }
    body.dark-header .page-title.custom-height:before {
      width: calc(603px/2) !important;
      height: calc(661px/2) !important;
      right: -5rem; }
      @media screen and (min-width: 37.5rem) {
        body.dark-header .page-title.custom-height:before {
          right: -3.125rem;
          width: calc(603px/1.5) !important;
          height: calc(661px/1.5) !important; } }
      @media screen and (min-width: 81.25rem) {
        body.dark-header .page-title.custom-height:before {
          right: 27%;
          width: calc(603px/1) !important;
          height: calc(661px/1) !important; } }
    body.dark-header .page-title > * {
      position: relative;
      z-index: 10; }
    body.dark-header .page-title h1 {
      color: #fff;
      margin-top: 0;
      padding-top: 2.5rem;
      font-weight: 700; }
      body.dark-header .page-title h1 span {
        display: block;
        color: rgba(255, 255, 255, 0.75); }
  .page-title h1 {
    margin: 0;
    font-size: 36px !important;
    font-size: 2.25rem !important;
    line-height: 3rem; }
    .page-title h1 span {
      display: block;
      color: rgba(255, 255, 255, 0.75); }
  .page-title small {
    border-top: 2px solid #fff;
    padding-top: 1.875rem;
    margin-bottom: 1.875rem;
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.375rem;
    display: block;
    color: #fff;
    font-weight: 700; }
  @media screen and (min-width: 37.5rem) {
    body.dark-header .page-title {
      margin-left: -2.5rem;
      padding: 1px 2.5rem 3.75rem; }
      body.dark-header .page-title h1 {
        padding-top: 3.75rem; }
    .page-title h1 {
      font-size: 42px !important;
      font-size: 2.625rem !important;
      line-height: 3.375rem; } }
  @media screen and (min-width: 48rem) {
    body.dark-header .page-title {
      margin-left: -5rem;
      padding: 1px 5rem 3.75rem; }
    body.index .page-title {
      background: none; } }
  @media screen and (min-width: 64rem) {
    .page-title {
      margin: 2.5rem 0 5rem; }
      .page-title h1 {
        font-size: 48px !important;
        font-size: 3rem !important;
        line-height: 1.35; } }
  @media screen and (min-width: 81.25rem) {
    .page-title {
      margin: 2.5rem 0 7.5rem; }
      body.dark-header .page-title {
        padding: 1px 100% 7.5rem;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        width: 300%;
        background-position: right 25% center;
        background-size: 45vw; } }
  @media screen and (min-width: 100rem) {
    body.dark-header .page-title {
      background-size: 15%;
      background-position: right 20% center; }
      body.dark-header .page-title h1 {
        padding-top: 2.5rem; } }
@media screen and (min-width: 64rem) {
  body.page:not(.full-width) .section-main .container {
    margin: 5rem auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 2.5rem; }
    body.page:not(.full-width) .section-main .container .page-title {
      margin: 0; } }

@media screen and (min-width: 64rem) {
  body.page:not(.full-width) .section-main .container {
    grid-gap: 5rem; } }

@media screen and (min-width: 37.5rem) {
  body.page .main-content {
    padding-top: 4.375rem !important; } }

@media screen and (min-width: 48rem) {
  body.page .main-content {
    padding-top: 5.625rem !important; } }

@media screen and (min-width: 64rem) {
  body.page .main-content {
    padding-top: 6.875rem !important; } }

body.full-width {
  padding-top: 4.375rem; }
  @media screen and (min-width: 48rem) {
    body.full-width {
      padding-top: 5.625rem; } }
  @media screen and (min-width: 64rem) {
    body.full-width {
      padding-top: 6.875rem; } }
body.single [role="main"] {
  display: grid;
  grid-gap: 2.5rem; }
  body.single [role="main"] .featured-image img {
    width: calc(100% + 40px);
    height: auto;
    position: relative;
    margin: 0 0 0 -1.25rem; }
  body.single [role="main"] .summary p:first-child {
    margin-top: 0; }

@media screen and (min-width: 37.5rem) {
  body.single [role="main"] .featured-image img {
    width: calc(100% + 80px);
    margin-left: -2.5rem; } }

@media screen and (min-width: 48rem) {
  body.single [role="main"] {
    grid-gap: 3.75rem; }
    body.single [role="main"] .featured-image img {
      width: 100%;
      margin: 0; } }

@media screen and (min-width: 64rem) {
  body.single [role="main"] {
    grid-template-columns: 1fr 2fr; }
    body.single [role="main"] .featured-image {
      grid-column: 1 / span 2; }
    body.single [role="main"] .summary {
      grid-column: 1 / span 2; }
    body.single [role="main"] .user-content {
      grid-column: 2; }
      body.single [role="main"] .user-content blockquote {
        width: calc(150% + 60px);
        margin-left: calc(-50% - 60px); }
      body.single [role="main"] .user-content .wp-caption {
        width: calc(150% + 60px) !important;
        max-width: none;
        margin-left: calc(-50% - 60px);
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-gap: 2.5rem; }
        body.single [role="main"] .user-content .wp-caption .wp-caption-text {
          grid-column: 1;
          grid-row: 1;
          position: relative;
          margin-top: 0 !important;
          padding-top: 1.25rem;
          text-align: right; }
          body.single [role="main"] .user-content .wp-caption .wp-caption-text:before {
            content: "";
            width: 50%;
            height: 0.125rem;
            background: #A8ADB2;
            position: absolute;
            top: 0;
            right: 0; }
        body.single [role="main"] .user-content .wp-caption img {
          grid-column: 2; } }

body.jury-member [role="main"] {
  display: grid;
  grid-gap: 2.5rem; }
  body.jury-member [role="main"] .featured-image img {
    max-width: 18.75rem;
    width: 100%;
    height: auto;
    border-radius: 31.25rem;
    margin: 0; }

@media screen and (min-width: 64rem) {
  body.jury-member [role="main"] {
    grid-template-columns: 1fr 2fr; } }

header[role="banner"] {
  position: fixed;
  width: 300%;
  padding: 0 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1000;
  background: #fff;
  margin: 0;
  transition: background-color .5s ease-out; }
  header[role="banner"].has-shadow {
    background: #FFA323 !important;
    color: #fff; }
    header[role="banner"].has-shadow hr {
      display: none; }
  body.entry header[role="banner"] hr {
    display: none; }
  body.overlay--is-active header[role="banner"] {
    z-index: 9999; }
  @media screen and (min-width: 64rem) {
    html.admin-bar-visible header[role="banner"] {
      margin-top: 2rem; } }
  header[role="banner"]:not(.has-shadow) .container {
    padding-bottom: 0 !important; }
  header[role="banner"] .container {
    *zoom: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.625rem 1.25rem; }
    header[role="banner"] .container:before, header[role="banner"] .container:after {
      content: '';
      display: table; }
    header[role="banner"] .container:after {
      clear: both; }
    @media screen and (min-width: 37.5rem) {
      header[role="banner"] .container {
        padding: 0.625rem 2.5rem; } }
    @media screen and (min-width: 48rem) {
      header[role="banner"] .container {
        padding: 1.25rem 5rem; } }
    @media screen and (min-width: 64rem) {
      header[role="banner"] .container {
        padding: 1.875rem 5rem;
        max-width: 78.75rem; } }
    @media screen and (min-width: 81.25rem) {
      header[role="banner"] .container {
        padding: 1.875rem 10rem;
        max-width: 88.75rem; } }
  body.overlay--is-active header[role="banner"] {
    transform: none !important; }
  body.entries-subcategory header[role="banner"] hr {
    display: none; }
  body.dark-header header[role="banner"], body.home header[role="banner"], header[role="banner"].has-shadow {
    background: transparent; }
    body.dark-header header[role="banner"] > *, body.home header[role="banner"] > *, header[role="banner"].has-shadow > * {
      transition: color background-color .15s ease-out; }
    body.dark-header header[role="banner"] hr, body.home header[role="banner"] hr, header[role="banner"].has-shadow hr {
      background: #fff; }
    body.dark-header header[role="banner"] a, body.home header[role="banner"] a, header[role="banner"].has-shadow a {
      color: #fff !important; }
    body.dark-header header[role="banner"] .site-logo a, body.home header[role="banner"] .site-logo a, header[role="banner"].has-shadow .site-logo a {
      color: #fff; }
    body.dark-header header[role="banner"] svg polygon, body.home header[role="banner"] svg polygon, header[role="banner"].has-shadow svg polygon {
      fill: #fff !important; }
    body.dark-header header[role="banner"] nav .site-nav-switch .icon, body.dark-header header[role="banner"] nav .site-nav-switch input[type="submit"].button-icon-right:before, body.dark-header header[role="banner"] nav .site-nav-switch .button.button-icon-right:before, body.dark-header header[role="banner"] nav .site-nav-switch .overlay-container .close:before, body.dark-header header[role="banner"] nav .overlay-container .site-nav-switch .close:before, body.dark-header header[role="banner"] nav .site-nav-switch .site-branding .site-logo:not(h1) a:before, body.dark-header header[role="banner"] .site-branding .site-logo:not(h1) nav .site-nav-switch a:before, body.home header[role="banner"] nav .site-nav-switch .icon, body.home header[role="banner"] nav .site-nav-switch input[type="submit"].button-icon-right:before, body.home header[role="banner"] nav .site-nav-switch .button.button-icon-right:before, body.home header[role="banner"] nav .site-nav-switch .overlay-container .close:before, body.home header[role="banner"] nav .overlay-container .site-nav-switch .close:before, body.home header[role="banner"] nav .site-nav-switch .site-branding .site-logo:not(h1) a:before, body.home header[role="banner"] .site-branding .site-logo:not(h1) nav .site-nav-switch a:before, header[role="banner"].has-shadow nav .site-nav-switch .icon, header[role="banner"].has-shadow nav .site-nav-switch input[type="submit"].button-icon-right:before, header[role="banner"].has-shadow nav .site-nav-switch .button.button-icon-right:before, header[role="banner"].has-shadow nav .site-nav-switch .overlay-container .close:before, header[role="banner"].has-shadow nav .overlay-container .site-nav-switch .close:before, header[role="banner"].has-shadow nav .site-nav-switch .site-branding .site-logo:not(h1) a:before, header[role="banner"].has-shadow .site-branding .site-logo:not(h1) nav .site-nav-switch a:before {
      color: #fff; }
    body.dark-header header[role="banner"] nav .site-nav a, body.home header[role="banner"] nav .site-nav a, header[role="banner"].has-shadow nav .site-nav a {
      color: #fff; }
    body.dark-header header[role="banner"] .lang-nav li:before, body.home header[role="banner"] .lang-nav li:before, header[role="banner"].has-shadow .lang-nav li:before {
      background: #fff; }
    body.dark-header header[role="banner"] .lang-nav a, body.home header[role="banner"] .lang-nav a, header[role="banner"].has-shadow .lang-nav a {
      color: rgba(255, 255, 255, 0.5) !important; }
    body.dark-header header[role="banner"] .lang-nav .wpml-ls-current-language a, body.home header[role="banner"] .lang-nav .wpml-ls-current-language a, header[role="banner"].has-shadow .lang-nav .wpml-ls-current-language a {
      color: #fff !important; }
    @media screen and (min-width: 48rem) {
      body.dark-header header[role="banner"] nav .site-nav a, body.home header[role="banner"] nav .site-nav a, header[role="banner"].has-shadow nav .site-nav a {
        border: 0; } }
  header[role="banner"] .site-branding {
    margin-right: auto; }
    header[role="banner"] .site-branding .site-logo {
      font-size: 18px !important;
      font-size: 1.125rem !important;
      line-height: 2rem;
      font-weight: 700;
      margin: 0; }
      header[role="banner"] .site-branding .site-logo a {
        text-decoration: none;
        color: #111;
        display: flex;
        align-items: center;
        justify-content: center; }
      header[role="banner"] .site-branding .site-logo svg polygon {
        fill: #111; }
      header[role="banner"] .site-branding .site-logo .title {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden; }
      header[role="banner"] .site-branding .site-logo .description {
        font-size: 1rem;
        max-width: 7.5rem;
        line-height: 1; }
      header[role="banner"] .site-branding .site-logo em {
        padding: 0 0.75rem; }
      header[role="banner"] .site-branding .site-logo:not(h1) a:before {
        margin-right: 0.625rem;
        position: relative;
        top: 0.0625rem; }
    @media screen and (min-width: 48rem) {
      header[role="banner"] .site-branding .site-logo .description {
        display: inline-block; } }
  header[role="banner"] hr {
    width: 100%;
    height: 1px;
    background: #111;
    border: none;
    margin: 0;
    margin-top: 0.625rem; }
    @media screen and (min-width: 48rem) {
      header[role="banner"] hr {
        margin-top: 1.25rem; } }
    @media screen and (min-width: 64rem) {
      header[role="banner"] hr {
        margin-top: 1.875rem; } }
  header[role="banner"] nav {
    *zoom: 1; }
    header[role="banner"] nav:before, header[role="banner"] nav:after {
      content: '';
      display: table; }
    header[role="banner"] nav:after {
      clear: both; }
    header[role="banner"] nav .site-nav-switch {
      float: right;
      width: 2rem;
      height: 2rem;
      text-decoration: none;
      text-align: center; }
      header[role="banner"] nav .site-nav-switch .icon, header[role="banner"] nav .site-nav-switch input[type="submit"].button-icon-right:before, header[role="banner"] nav .site-nav-switch .button.button-icon-right:before, header[role="banner"] nav .site-nav-switch .overlay-container .close:before, header[role="banner"] nav .overlay-container .site-nav-switch .close:before, header[role="banner"] nav .site-nav-switch .site-branding .site-logo:not(h1) a:before, header[role="banner"] .site-branding .site-logo:not(h1) nav .site-nav-switch a:before {
        font-size: 24px !important;
        font-size: 1.5rem !important;
        line-height: 2rem;
        color: #111; }
      header[role="banner"] nav .site-nav-switch .icon-ui--close {
        display: none; }
    header[role="banner"] nav.nav--is-open .icon-ui--close {
      display: none; }
    header[role="banner"] nav.nav--is-open .site-nav-switch .icon-ui--menu {
      display: none; }
    header[role="banner"] nav.nav--is-open .overlay-container {
      display: block; }
    header[role="banner"] nav .overlay-container {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, #ffc13b 0%, #ff8a19 80%, #ff7d00 100%);
      z-index: 3000;
      padding: 1.25rem;
      padding-top: 0.8125rem; }
      header[role="banner"] nav .overlay-container:before {
        content: "";
        display: block;
        width: 37.6875rem;
        height: 41.3125rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) scale(50%);
        right: 0;
        background: url(../images/2122-background-graphic.png) no-repeat center center; }
      header[role="banner"] nav .overlay-container .inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        position: relative; }
      header[role="banner"] nav .overlay-container .overlay-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #fff;
        padding-bottom: 0.625rem; }
        @media screen and (min-width: 48rem) {
          header[role="banner"] nav .overlay-container .overlay-nav {
            padding-bottom: 1.25rem; } }
        @media screen and (min-width: 64rem) {
          header[role="banner"] nav .overlay-container .overlay-nav {
            padding-bottom: 1.875rem; } }
      header[role="banner"] nav .overlay-container .homepage-link,
      header[role="banner"] nav .overlay-container .close {
        font-weight: 700;
        color: #fff;
        font-size: 18px !important;
        font-size: 1.125rem !important; }
      header[role="banner"] nav .overlay-container .homepage-link {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -0.1875rem; }
        header[role="banner"] nav .overlay-container .homepage-link .title {
          position: absolute;
          left: -10000px;
          top: auto;
          width: 1px;
          height: 1px;
          overflow: hidden; }
        header[role="banner"] nav .overlay-container .homepage-link .description {
          font-size: 1rem;
          max-width: 7.5rem;
          line-height: 1; }
        header[role="banner"] nav .overlay-container .homepage-link em {
          padding: 0 0.75rem; }
      header[role="banner"] nav .overlay-container .close {
        padding-right: 2rem;
        right: 0;
        position: relative; }
        header[role="banner"] nav .overlay-container .close:before {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          margin-top: -0.125rem;
          right: 0; }
    header[role="banner"] nav .site-nav {
      margin-top: auto; }
      header[role="banner"] nav .site-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        float: left;
        width: 100%; }
      header[role="banner"] nav .site-nav li {
        margin: 0.3125rem 0; }
      header[role="banner"] nav .site-nav a {
        color: #fff;
        display: inline-block;
        text-decoration: none;
        font-size: 36px !important;
        font-size: 2.25rem !important; }
      header[role="banner"] nav .site-nav .current_page_item a,
      header[role="banner"] nav .site-nav a:hover,
      header[role="banner"] nav .site-nav a:focus {
        outline: none;
        background: linear-gradient(to top, transparent 20%, #3C3D40 20%, #3C3D40 50%, transparent 0); }
    header[role="banner"] nav .social-nav {
      margin-top: auto;
      border-top: 1px solid #fff;
      padding-top: 1.25rem; }
      header[role="banner"] nav .social-nav ol {
        list-style: none;
        margin: 0;
        padding: 0; }
      header[role="banner"] nav .social-nav li {
        text-transform: uppercase;
        color: #fff;
        font-weight: 700; }
        header[role="banner"] nav .social-nav li span {
          display: inline-block;
          width: 3.75rem; }
      header[role="banner"] nav .social-nav a {
        color: rgba(255, 255, 255, 0.5);
        text-transform: none; }
    header[role="banner"] nav .lang-nav {
      float: left; }
      header[role="banner"] nav .lang-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        padding-top: 0.5rem; }
      header[role="banner"] nav .lang-nav li {
        position: relative;
        font-size: 16px !important;
        font-size: 1rem !important;
        line-height: 1; }
        header[role="banner"] nav .lang-nav li:before {
          content: "";
          width: 0.125rem;
          height: 100%;
          background: #111;
          position: absolute;
          top: 0;
          left: 0; }
        header[role="banner"] nav .lang-nav li:first-child:before {
          display: none; }
      header[role="banner"] nav .lang-nav a {
        font-size: 14px !important;
        font-size: 0.875rem !important;
        text-transform: uppercase;
        font-weight: 700;
        padding: 0.5625rem 0.625rem;
        color: rgba(17, 17, 17, 0.5) !important; }
      header[role="banner"] nav .lang-nav .wpml-ls-current-language a {
        color: #111 !important; }
      header[role="banner"] nav .lang-nav .wpml-ls-display {
        display: none; }
    @media screen and (min-width: 37.5rem) {
      header[role="banner"] nav .overlay-container {
        padding: 0.8125rem 2.5rem 2.5rem; }
        header[role="banner"] nav .overlay-container .homepage-link .description {
          display: inline-block; }
      header[role="banner"] nav .site-nav li {
        margin: 0.625rem 0; } }
    @media screen and (min-width: 48rem) {
      header[role="banner"] nav .overlay-container {
        padding: 1.4375rem 5rem 2.5rem; }
      header[role="banner"] nav .site-nav li {
        margin: 0.8333333333rem 0; } }
    @media screen and (min-width: 64rem) {
      header[role="banner"] nav .overlay-container {
        padding: 2.0625rem 5rem 5rem; } }
    @media screen and (min-width: 81.25rem) {
      header[role="banner"] nav .overlay-container {
        padding: 2.0625rem 10rem 5rem; }
        header[role="banner"] nav .overlay-container .inner {
          max-width: 68.75rem;
          margin: 0 auto; } }
footer[role="contentinfo"] .container {
  padding: 10rem 0 2.5rem;
  position: relative; }
  footer[role="contentinfo"] .container:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.125rem;
    background: #111;
    position: absolute;
    top: 7.5rem;
    left: 0; }
    body.dark-body footer[role="contentinfo"] .container:before {
      background: #fff; }
  footer[role="contentinfo"] .container > div {
    position: relative;
    z-index: 10; }
  footer[role="contentinfo"] .container:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(204, 204, 204, 0) 0%, #CCCCCC 100%); }
    body.dark-body footer[role="contentinfo"] .container:after {
      display: none !important; }

footer[role="contentinfo"] .partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 1.25rem;
  max-width: 25rem; }
  footer[role="contentinfo"] .partner-logos img {
    max-width: 6.25rem;
    height: auto !important;
    margin: 0; }
  footer[role="contentinfo"] .partner-logos a:nth-child(3) {
    grid-column: 1; }

footer[role="contentinfo"] .info .column {
  margin-top: 2.5rem; }

footer[role="contentinfo"] .info p {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5;
  margin: 0 0 1.25rem; }

footer[role="contentinfo"] a {
  color: #111;
  text-decoration: none;
  font-weight: 700; }

footer[role="contentinfo"] nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem; }

footer[role="contentinfo"] nav a {
  font-weight: 400;
  font-size: 16px !important;
  font-size: 1rem !important; }

body.dark-body footer[role="contentinfo"] {
  color: #fff; }
  body.dark-body footer[role="contentinfo"] strong,
  body.dark-body footer[role="contentinfo"] nav a {
    color: #fff; }
  body.dark-body footer[role="contentinfo"] .container {
    border-color: #82868C; }

@media screen and (min-width: 37.5rem) {
  footer[role="contentinfo"] .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.5rem; }
  footer[role="contentinfo"] .info .column:first-of-type {
    margin-top: 0; }
    footer[role="contentinfo"] .info .column:first-of-type p:first-child {
      margin-top: 0; }
  footer[role="contentinfo"] .info p {
    margin: 0.625rem 0 1.25rem; } }

@media screen and (min-width: 81.25rem) {
  footer[role="contentinfo"] .container {
    grid-gap: 5rem;
    padding-top: 20rem;
    padding-bottom: 10rem;
    grid-template-columns: 1fr 2fr; }
    footer[role="contentinfo"] .container:before {
      top: 15rem; }
  footer[role="contentinfo"] .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.875rem; }
  footer[role="contentinfo"] .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5rem; }
    footer[role="contentinfo"] .info .column {
      margin-top: 0; } }

.section {
  margin: 2.5rem 0; }
  .section:first-of-type:not(.section-categories) {
    margin-top: 0; }
  @media screen and (min-width: 64rem) {
    .section {
      margin: 5rem 0; } }
  @media screen and (min-width: 81.25rem) {
    .section {
      margin: 7.5rem 0; } }
body.home .section {
  margin: 7.5rem 0 !important; }

.section-homepage-intro {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-out;
  transition-delay: .2s; }
  body.home .section-homepage-intro {
    margin: 0 !important; }
    body.home .section-homepage-intro + .section + .section-articles-grid {
      margin-top: 2.5rem !important; }
  .section-homepage-intro.is-loaded {
    visibility: visible;
    opacity: 1; }
  .section-homepage-intro video {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block; }
  .section-homepage-intro h1 {
    font-size: 36px !important;
    font-size: 2.25rem !important;
    font-weight: 500;
    line-height: 1.3; }
    body.dark-body .section-homepage-intro h1 {
      color: #fff; }
  @media screen and (min-width: 48rem) {
    .section-homepage-intro h1 {
      font-size: 42px !important;
      font-size: 2.625rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .section-homepage-intro h1 {
      font-size: 64px !important;
      font-size: 4rem !important; } }
.section-homepage-text .section-content {
  border-radius: 2rem;
  padding: 2.5rem;
  background: #FF5884;
  box-shadow: 0 8 1.25rem rgba(17, 17, 17, 0.15); }
  .section-homepage-text .section-content * {
    margin: 0; }
  .section-homepage-text .section-content p {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: #fff; }
    .section-homepage-text .section-content p:last-child {
      margin: 0; }
  .section-homepage-text .section-content .button.button-icon-right {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    padding-right: 3.125rem !important;
    background: none !important;
    color: #fff !important;
    border: 1px solid #fff !important; }

@media screen and (min-width: 48rem) {
  .section-homepage-text .section-content p {
    font-size: 36px !important;
    font-size: 2.25rem !important; } }

.section-homepage-navigation {
  display: none; }
  @media screen and (min-width: 48rem) {
    .section-homepage-navigation {
      display: block; }
      .section-homepage-navigation .section-content {
        display: flex;
        flex-wrap: wrap; }
      .section-homepage-navigation .button, .section-homepage-navigation .gfield.gfield--file .button, .gfield.gfield--file .section-homepage-navigation .button {
        color: #fff !important;
        background: #FF5884 !important;
        border: 1px solid #FF5884 !important;
        margin: 0 0.625rem 0.625rem 0;
        font-size: 18px !important;
        font-size: 1.125rem !important;
        padding: 0.9375rem 2.5rem !important; } }
  @media screen and (min-width: 81.25rem) {
    .section-homepage-navigation .button, .section-homepage-navigation .gfield.gfield--file .button, .gfield.gfield--file .section-homepage-navigation .button {
      padding: 0.9375rem 1.875rem !important; } }
.section-grid .section-content {
  overflow-x: scroll;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100vw;
  padding: 1.25rem; }

.section-grid .grid-container {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(10, 80%);
  width: 100%; }
  .section-grid .grid-container:after {
    content: "";
    width: 1px; }

.section-grid.count-1 .grid-container {
  grid-template-columns: 100%; }

@media screen and (min-width: 37.5rem) {
  .section-grid .section-content {
    padding: 1.25rem 2.5rem 0; } }

@media screen and (min-width: 48rem) {
  .section-grid .section-content {
    padding: 1.25rem 5rem 0; }
  .section-grid .grid-container {
    grid-template-columns: repeat(10, minmax(25rem, 60%)); } }

@media screen and (min-width: 81.25rem) {
  .section-grid .section-content {
    padding: 1.25rem 10rem 0; }
  .section-grid .grid-container {
    grid-template-columns: repeat(10, minmax(25rem, 60%)); } }

@media screen and (min-width: 100rem) {
  .section-grid .section-content {
    padding: 1.25rem 0;
    width: auto;
    overflow: visible; }
  .section-grid .grid-container {
    grid-template-columns: repeat(2, 1fr); } }

.section-homepage-jury .section-header h2 {
  font-size: 36px !important;
  font-size: 2.25rem !important;
  line-height: 1.3;
  font-weight: 500; }
  body.dark-body .section-homepage-jury .section-header h2 {
    color: #fff; }
  .section-homepage-jury .section-header h2 span {
    display: block;
    color: #A8ADB2; }

.section-homepage-jury article * {
  margin: 0; }

.section-homepage-jury article h3 {
  font-size: 22px !important;
  font-size: 1.375rem !important;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none; }
  body.dark-body .section-homepage-jury article h3 {
    color: #fff; }
  .section-homepage-jury article h3 span {
    display: block;
    color: #A8ADB2;
    padding-top: 1.25rem; }

.section-homepage-jury article .meta {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  color: #A8ADB2; }

.section-homepage-jury article img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.25rem; }

@media screen and (min-width: 37.5rem) {
  .section-homepage-jury .grid-container {
    grid-template-columns: repeat(10, 60%); } }

@media screen and (min-width: 48rem) {
  .section-homepage-jury .section-header h2 {
    font-size: 40px !important;
    font-size: 2.5rem !important; }
  .section-homepage-jury .grid-container {
    grid-template-columns: repeat(10, minmax(21.875rem, 40vw)); } }

@media screen and (min-width: 81.25rem) {
  .section-homepage-jury .section-header h2 {
    font-size: 64px !important;
    font-size: 4rem !important; } }

@media screen and (min-width: 100rem) {
  .section-homepage-jury .grid-container {
    grid-template-columns: repeat(3, 1fr); } }

.section-infobox {
  width: 100vw;
  padding: 0 1.25rem;
  margin-left: -1.25rem; }
  .section-infobox .inner-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 2.5rem; }
  .section-infobox p {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.4;
    margin: 0;
    grid-column: 1; }
  .section-infobox strong {
    font-size: 56px !important;
    font-size: 3.5rem !important;
    line-height: 1;
    display: block;
    font-weight: 400; }
  @media screen and (min-width: 64rem) {
    .section-infobox {
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      margin: -5rem 0;
      padding: 5rem; }
      .section-infobox .inner-container {
        grid-template-columns: repeat(4, 1fr);
        max-width: 68.75rem; }
      .section-infobox p {
        grid-column: auto; } }
  @media screen and (min-width: 81.25rem) {
    .section-infobox {
      padding: 7.5rem 15rem;
      margin: -7.5rem auto;
      width: 100vw; }
      .section-infobox .inner-container {
        margin: 0 auto; } }
.section-categories .section-header {
  margin-bottom: 1.25rem; }
  .section-categories .section-header h2 {
    line-height: 1.2;
    margin: 0; }
    .section-categories .section-header h2 strong {
      display: block;
      color: #C8C9CC; }
  body.dark-body .section-categories .section-header h2 {
    color: #fff; }
    body.dark-body .section-categories .section-header h2 strong {
      color: #A8ADB2; }

.section-categories .section-content {
  background-size: 3.75rem 3.75rem;
  width: 100vw;
  padding: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  position: relative; }
  .section-categories .section-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid; }
  .section-categories .section-content li {
    margin: 0.3125rem; }
  .section-categories .section-content a {
    display: flex;
    justify-items: space-between;
    align-items: center;
    background: #FF5884;
    border-radius: 6.25rem;
    padding: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 700;
    outline: none; }
    .section-categories .section-content a * {
      color: #fff; }
    .section-categories .section-content a .count,
    .section-categories .section-content a .dot {
      visibility: hidden;
      opacity: 0;
      width: 0; }
    .section-categories .section-content a .count {
      font-size: 2rem;
      line-height: 1; }
    .section-categories .section-content a .dot {
      padding: 0 0.75rem;
      font-size: 1.5rem;
      line-height: 1; }
    .section-categories .section-content a .cta {
      margin-left: auto;
      padding: 0 0.375rem;
      visibility: visible;
      opacity: 1;
      width: auto; }
    .section-categories .section-content a .icon, .section-categories .section-content a input[type="submit"].button-icon-right:before, .section-categories .section-content a .button.button-icon-right:before, .section-categories .section-content a header[role="banner"] .site-branding .site-logo:not(h1) a:before, header[role="banner"] .site-branding .site-logo:not(h1) .section-categories .section-content a a:before, .section-categories .section-content a header[role="banner"] nav .overlay-container .close:before, header[role="banner"] nav .overlay-container .section-categories .section-content a .close:before {
      position: relative;
      top: -0.0625rem; }
    .section-categories .section-content a:hover .count,
    .section-categories .section-content a:hover .dot, .section-categories .section-content a:focus .count,
    .section-categories .section-content a:focus .dot {
      visibility: visible;
      opacity: 1;
      width: auto; }
    .section-categories .section-content a:hover .cta, .section-categories .section-content a:focus .cta {
      visibility: hidden;
      opacity: 0;
      width: 0; }
    .section-categories .section-content a:hover .title, .section-categories .section-content a:focus .title {
      padding-right: 2.5rem; }
    body.entries-category .section-categories .section-content a .count {
      visibility: visible;
      opacity: 1;
      width: auto;
      min-width: 3.125rem; }
    body.entries-category .section-categories .section-content a .title {
      padding: 0 1.25rem 0 0 !important; }
    body.entries-category .section-categories .section-content a .dot {
      visibility: visible;
      opacity: 1;
      width: auto;
      font-size: 0; }
      body.entries-category .section-categories .section-content a .dot:after {
        content: "";
        display: block;
        width: 0.1875rem;
        height: 3rem;
        background: #fff;
        margin: 0 0.25rem; }
    body.entries-category .section-categories .section-content a .cta {
      display: none; }
    body.entries-category .section-categories .section-content a .icon, body.entries-category .section-categories .section-content a input[type="submit"].button-icon-right:before, body.entries-category .section-categories .section-content a .button.button-icon-right:before, body.entries-category .section-categories .section-content a header[role="banner"] .site-branding .site-logo:not(h1) a:before, header[role="banner"] .site-branding .site-logo:not(h1) body.entries-category .section-categories .section-content a a:before, body.entries-category .section-categories .section-content a header[role="banner"] nav .overlay-container .close:before, header[role="banner"] nav .overlay-container body.entries-category .section-categories .section-content a .close:before {
      margin-left: auto; }

.section-categories.section-categories--student .section-content a {
  background: #FFA323; }

@media screen and (min-width: 48rem) {
  .section-categories .section-header {
    margin-bottom: 2.5rem; }
  .section-categories .section-content ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.25rem; }
  .section-categories .section-content li {
    margin: 0 !important;
    display: flex; }
  .section-categories .section-content a {
    padding: 1.875rem 2.5rem;
    width: 100%; } }

@media screen and (min-width: 64rem) {
  .section-categories .section-content a {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem; } }

@media screen and (min-width: 81.25rem) {
  .section-categories .section-header {
    margin-bottom: 5rem; }
  .section-categories .section-content {
    width: auto;
    padding: 0; }
    .section-categories .section-content ul {
      position: relative; }
    .section-categories .section-content a {
      padding: 2.5rem 3.75rem; } }

.section-entries .section-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5rem; }

.section-entries .section-footer {
  margin-top: 5rem; }

.section-entries .entry-short * {
  margin: 0; }

.section-entries .entry-short a {
  color: #111;
  transition: all 0.15s ease-out; }
  .section-entries .entry-short a img, .section-entries .entry-short a small, .section-entries .entry-short a h3, .section-entries .entry-short a .meta {
    position: relative;
    top: 0;
    transition: all .25s ease-in-out; }
  .section-entries .entry-short a h3 {
    transition-delay: .075s; }
  .section-entries .entry-short a .meta {
    transition-delay: .125s; }
  .section-entries .entry-short a:hover img, .section-entries .entry-short a:hover small, .section-entries .entry-short a:hover h3, .section-entries .entry-short a:hover .meta {
    top: -0.8125rem; }

.section-entries .entry-short small {
  font-size: 16px !important;
  font-size: 1rem !important;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: block;
  margin: 1.25rem 0 -0.9375rem; }
  .section-entries .entry-short small.has-award {
    color: #FF5884; }
  .section-entries .entry-short small.has-recognition {
    color: #FFC03B; }

.section-entries .entry-short h3 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  text-transform: none;
  margin: 1.25rem 0 0; }

.section-entries .entry-short .meta {
  font-size: 16px !important;
  font-size: 1rem !important;
  font-weight: 400; }

.section-entries .entry-short img {
  width: 100%;
  height: auto; }

@media screen and (min-width: 48rem) {
  .section-entries .section-content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.25rem; }
  .section-entries.section-entries-awards .section-content, .section-entries.section-entries-special-recognition .section-content {
    grid-template-columns: 1fr; } }

@media screen and (min-width: 81.25rem) {
  .section-entries .section-content {
    grid-template-columns: repeat(3, 1fr); }
  .section-entries.section-entries-special-recognition .section-content {
    grid-template-columns: repeat(2, 1fr); } }

.section-articles .section-content {
  display: grid;
  grid-gap: 2.5rem; }

.section-articles article * {
  margin: 0 0 1.25rem; }

.section-articles article h2 {
  font-size: 36px !important;
  font-size: 2.25rem !important;
  font-weight: 700;
  margin-bottom: 2.5rem; }
  .section-articles article h2 span {
    display: block;
    color: #A8ADB2; }

.section-articles article:first-child {
  position: relative; }
  .section-articles article:first-child h2 {
    color: #fff; }

.section-articles article .meta {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  color: #A8ADB2;
  font-weight: 700; }

.section-articles article p {
  color: #111; }

.section-articles article img {
  width: 100%;
  height: auto;
  border-radius: 1rem; }

@media screen and (min-width: 48rem) {
  .section-articles article:first-child h2 {
    font-size: 42px !important;
    font-size: 2.625rem !important; } }

@media screen and (min-width: 64rem) {
  .section-articles .section-content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5rem;
    grid-row-gap: 7.5rem; }
  .section-articles article:first-child {
    grid-column: 1 / span 2; }
    .section-articles article:first-child h2 {
      font-size: 48px !important;
      font-size: 3rem !important; }
  .section-articles article h2 {
    font-weight: 500; } }

.dark-body .section-articles-grid .section-header h2 {
  color: #fff; }

.section-articles-grid article * {
  margin: 0 0 0.625rem; }

.section-articles-grid article h2 {
  font-size: 28px !important;
  font-size: 1.75rem !important;
  font-weight: 500;
  margin-bottom: 0; }
  body.dark-body .section-articles-grid article h2 {
    color: #fff; }
  .section-articles-grid article h2 span {
    display: block;
    color: #A8ADB2; }

.section-articles-grid article .meta {
  font-size: 16px !important;
  font-size: 1rem !important;
  color: #A8ADB2;
  font-weight: 700; }

.section-articles-grid article img {
  width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 1rem; }

@media screen and (min-width: 100rem) {
  .section-articles-grid article h2 {
    font-size: 36px !important;
    font-size: 2.25rem !important; } }

.section-jury .section-content {
  display: grid;
  grid-gap: 5rem; }

.section-jury .jury-member * {
  margin: 0; }

.section-jury .jury-member h3 {
  font-size: 22px !important;
  font-size: 1.375rem !important;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 0.625rem; }

.section-jury .jury-member .meta {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  font-weight: 400;
  color: #111; }

.section-jury .jury-member .featured-image {
  margin-bottom: 2.5rem; }
  .section-jury .jury-member .featured-image img {
    border-radius: 1rem;
    max-width: 18.75rem;
    width: 100%;
    height: auto; }

@media screen and (min-width: 37.5rem) {
  .section-jury .section-content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3.75rem; } }

@media screen and (min-width: 64rem) {
  .section-jury .section-content {
    grid-template-columns: repeat(3, 1fr); } }

.section-index .section-content p {
  font-size: 22px !important;
  font-size: 1.375rem !important;
  color: #fff;
  margin-top: 2.5rem; }
  .section-index .section-content p:first-of-type {
    margin-top: 0; }

.section-index .section-content ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.section-index .section-content li {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5;
  color: #fff;
  display: block; }
  .section-index .section-content li:first-child {
    margin-top: 0; }

.section-index .section-content a {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: bold;
  text-decoration: underline;
  color: #A1A9B3; }

@media screen and (min-width: 37.5rem) {
  .section-index .section-content ul {
    column-count: 2;
    column-gap: 2.5rem; } }

@media screen and (min-width: 64rem) {
  .section-index .section-content ul {
    column-count: 3; } }

@media screen and (min-width: 81.25rem) {
  .section-index .section-content ul {
    column-count: 4; } }

.main-content.entry .entry__title,
.main-content.entry .entry__featured-image,
.main-content.entry .entry__information,
.main-content.entry .entry__video,
.main-content.entry .entry__gallery,
.main-content.entry .entry__prev-next,
.main-content.entry .entry__information .information .button {
  margin-top: 2.5rem; }

@media screen and (min-width: 48rem) {
  .main-content.entry .entry__title,
  .main-content.entry .entry__featured-image,
  .main-content.entry .entry__information,
  .main-content.entry .entry__video,
  .main-content.entry .entry__gallery,
  .main-content.entry .entry__prev-next {
    margin-top: 3.75rem; } }

@media screen and (min-width: 81.25rem) {
  .main-content.entry .entry__title,
  .main-content.entry .entry__featured-image,
  .main-content.entry .entry__information,
  .main-content.entry .entry__video,
  .main-content.entry .entry__gallery,
  .main-content.entry .entry__prev-next {
    margin-top: 6.25rem; } }

body.entry .entry__overview {
  margin-top: 5rem; }
  @media screen and (min-width: 48rem) {
    body.entry .entry__overview {
      margin-top: 6.25rem; } }
  @media screen and (min-width: 64rem) {
    body.entry .entry__overview {
      margin-top: 7.5rem; } }
.entry__overview .entry__title {
  font-size: 36px !important;
  font-size: 2.25rem !important;
  line-height: 1.3;
  font-weight: 500; }
  body.entry--has-award .entry__overview .entry__title {
    color: #FF5884; }
  body.entry--has-recognition .entry__overview .entry__title {
    color: #FFC03B; }
  .entry__overview .entry__title span {
    display: block;
    color: #A8ADB2; }

.entry__overview .entry--has-awards + .entry__title svg {
  display: none; }

@media screen and (min-width: 64rem) {
  .entry__overview .entry--has-awards + .entry__title {
    padding-left: 10rem;
    position: relative; }
    .entry__overview .entry--has-awards + .entry__title svg {
      display: block;
      position: absolute;
      top: 1.25rem;
      left: 0;
      width: 10rem; } }

.entry__overview .entry__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem; }
  .entry__overview .entry__meta p {
    border-top: 2px solid #A8ADB2;
    margin: 0;
    padding: 1.25rem 0 0;
    font-weight: 700;
    color: #A8ADB2;
    font-size: 16px !important;
    font-size: 1rem !important; }
    .entry__overview .entry__meta p:last-child {
      padding-bottom: 0; }
  .entry__overview .entry__meta .meta-type {
    grid-column: 1; }
  .entry__overview .entry__meta .meta-category {
    grid-row: 2;
    grid-column: 1 / span 2; }
  .entry__overview .entry__meta .meta-date {
    grid-column: 2;
    grid-row: 1; }
  .entry__overview .entry__meta .meta-awards {
    grid-row: 3;
    grid-column: 1 / span 2; }
  .entry__overview .entry__meta .has-award {
    border-color: #FF5884 !important;
    color: #FF5884 !important; }
  .entry__overview .entry__meta .has-special-recognition {
    border-color: #FFC03B;
    color: #FFC03B; }

.entry__overview .entry__featured-image img {
  width: 100vw;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  height: auto; }

@media screen and (min-width: 48rem) {
  .entry__overview .entry__title {
    font-size: 42px !important;
    font-size: 2.625rem !important; }
  .entry__overview .entry__meta {
    grid-template-columns: repeat(4, 1fr); }
    .entry__overview .entry__meta .meta-category {
      grid-row: 1;
      grid-column: 2 / span 2; }
    .entry__overview .entry__meta .meta-date {
      grid-column: 4; }
    .entry__overview .entry__meta .meta-awards {
      grid-row: 2;
      grid-column: 1 / span 4; } }

@media screen and (min-width: 81.25rem) {
  .entry__overview .entry__title {
    font-size: 64px !important;
    font-size: 4rem !important; }
  .entry__overview .entry__featured-image img {
    width: 100%; }
  .entry__overview .entry__meta.entry--has-awards {
    grid-template-columns: repeat(6, 1fr); }
    .entry__overview .entry__meta.entry--has-awards .meta-awards {
      grid-row: 1;
      grid-column: 5 / span 2;
      text-align: right; } }

.entry__information {
  display: grid;
  grid-gap: 2.5rem; }
  .entry__information * {
    margin: 0; }
  .entry__information .label {
    font-size: 16px !important;
    font-size: 1rem !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 0.3125rem; }
  .entry__information .information p {
    font-size: 18px !important;
    font-size: 1.125rem !important; }
  @media screen and (min-width: 48rem) {
    .entry__information {
      grid-gap: 3.75rem; } }
  @media screen and (min-width: 81.25rem) {
    .entry__information {
      grid-template-columns: 1fr 2fr;
      grid-gap: 0;
      grid-row-gap: 1.875rem; }
      .entry__information .info-block {
        grid-column: 2;
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 1.875rem; }
        .entry__information .info-block:first-child {
          margin-bottom: 4.375rem; }
      .entry__information .label {
        text-align: right;
        padding-top: 0.125rem; } }
.entry__gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem; }
  .entry__gallery img {
    width: 100%;
    height: auto;
    margin: 0;
    transition: all .5s ease-in-out;
    transition-delay: .2s;
    position: relative;
    opacity: 0;
    left: -1.875rem; }
    .entry__gallery img.animate {
      opacity: 1;
      left: 0; }
  @media screen and (min-width: 81.25rem) {
    .entry__gallery {
      grid-template-columns: 1fr 2fr;
      grid-gap: 0;
      grid-row-gap: 1.875rem; }
      .entry__gallery img {
        grid-column: 2; } }
.entry__video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }

.entry__video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.entry__details .info-block {
  border-bottom: 2px solid #111;
  padding: 1.25rem 0; }
  .entry__details .info-block:first-of-type {
    border-top: 2px solid #111; }
  .entry__details .info-block * {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    color: #111;
    margin: 0; }
  .entry__details .info-block h3 {
    text-transform: none;
    margin-bottom: 0.4166666667rem; }

.entry__prev-next {
  padding: 1.25rem 0 2.5rem 0; }
  .entry__prev-next p {
    font-size: 16px !important;
    font-size: 1rem !important; }
  .main-content.entry .entry__prev-next h2 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    margin-top: 0.625rem; }
  .entry__prev-next a {
    color: #111; }
  .entry__prev-next .arrow {
    border-radius: 6.25rem;
    border: 1px solid #111;
    display: inline-block;
    position: relative;
    padding: 2.1875rem; }
    .entry__prev-next .arrow i {
      font-size: 26px !important;
      font-size: 1.625rem !important;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .entry__prev-next .next {
    text-align: right; }
  @media screen and (min-width: 48rem) {
    .entry__prev-next {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 5rem; }
      .entry__prev-next .prev, .entry__prev-next .next {
        position: relative; }
        .entry__prev-next .prev .arrow, .entry__prev-next .next .arrow {
          position: absolute;
          top: 0;
          padding: 2rem; }
        .entry__prev-next .prev p, .entry__prev-next .next p {
          margin: 0; }
        .entry__prev-next .prev h2, .entry__prev-next .next h2 {
          margin: 1.25rem 0 0; }
      .entry__prev-next .prev {
        text-align: right;
        padding-left: 6.25rem; }
        .entry__prev-next .prev .arrow {
          left: 0; }
      .entry__prev-next .next {
        text-align: left;
        padding-right: 6.25rem; }
        .entry__prev-next .next .arrow {
          right: 0; } }
  @media screen and (min-width: 64rem) {
    .entry__prev-next {
      grid-template-columns: 1fr 1fr;
      grid-gap: 1.25rem;
      padding-bottom: 5rem; }
      .entry__prev-next .prev {
        grid-column: 1;
        grid-row: 1;
        text-align: left; }
      .entry__prev-next .next {
        grid-column: 2;
        grid-row: 1;
        text-align: right; } }
.component {
  margin-top: 1.25rem; }
  .component:first-of-type {
    margin-top: 0; }
  .component .component-footer {
    margin-top: 1.25rem; }

.component-navigation {
  text-align: center; }
  .component-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .component-navigation ul li:last-child a {
      border-bottom: 0; }
    .component-navigation ul li a {
      display: block;
      padding: 0.4166666667rem 1.25rem;
      border-bottom: 1px solid #A8ADB3;
      color: #FF5884;
      font-weight: 700; }
      .component-navigation ul li a:hover {
        color: #111; }
    .component-navigation ul li.current_page_item > a {
      background: #d4d6d9;
      color: #3C3D40;
      font-weight: 700; }
    .component-navigation ul li ul {
      border-bottom: 1px solid #A8ADB3; }
    .component-navigation ul li li a {
      font-size: 13px !important;
      font-size: 0.8125rem !important;
      text-transform: uppercase;
      color: #C8C9CC;
      font-weight: 400; }
  @media screen and (min-width: 48rem) {
    .component-navigation {
      text-align: left; }
      .component-navigation ul li a {
        font-size: 16px !important;
        font-size: 1rem !important;
        line-height: 1.3; }
      .component-navigation ul li li a {
        padding-left: 1.875rem; } }
  @media screen and (min-width: 64rem) {
    .component-navigation ul li a {
      font-size: 17px !important;
      font-size: 1.0625rem !important;
      padding: 0.8333333333rem 2.5rem; }
    .component-navigation ul li li a {
      font-size: 15px !important;
      font-size: 0.9375rem !important;
      padding-left: 2.5rem; } }
.component-pagination a, .component-pagination span {
  color: #111;
  margin: 0 0.15625rem;
  display: inline-block;
  text-align: center;
  padding: 0.625rem 1rem;
  border-radius: 6.25rem;
  width: 2.75rem; }
  .component-pagination a:first-child, .component-pagination span:first-child {
    margin-left: 0; }
  .component-pagination a:last-child, .component-pagination span:last-child {
    margin-right: 0; }
  .component-pagination a.prev, .component-pagination a.next, .component-pagination span.prev, .component-pagination span.next {
    padding: 0;
    width: auto; }
  .component-pagination a.prev, .component-pagination span.prev {
    margin-right: 0.375rem; }
  .component-pagination a.next, .component-pagination span.next {
    margin-left: 0.375rem; }
  .component-pagination a.current, .component-pagination span.current {
    background: #f6f6f6; }

.component-pagination i {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  position: relative;
  top: 0.1875rem; }

#cookie-notice {
  background: rgba(17, 17, 17, 0.9) !important; }
  #cookie-notice .cookie-notice-container {
    padding: 1.25rem; }
  #cookie-notice a {
    color: #F5F6F7;
    font-weight: 700;
    border: 0;
    text-decoration: underline; }
  #cookie-notice #cn-accept-cookie {
    display: block;
    max-width: 6.25rem;
    text-decoration: none;
    margin: 0.3125rem auto 0; }
  @media screen and (min-width: 48rem) {
    #cookie-notice {
      font-size: 16px !important;
      font-size: 1rem !important; } }
  @media screen and (min-width: 64rem) {
    #cookie-notice .cookie-notice-container {
      padding: 1.25rem 2.5rem;
      padding-right: 13.75rem;
      position: relative; }
    #cookie-notice #cn-accept-cookie {
      width: 8.75rem;
      max-width: none;
      position: absolute;
      top: 50%;
      right: 2.5rem;
      transform: translateY(-50%);
      margin: 0; } }
input[type="submit"], .button, .gfield.gfield--file .button {
  background: #111;
  border: 1px solid #111;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
  /*
  
  &.button-dark {
    background: $darkgrey;
    color: $darkwhite;
    border: 1px solid $darkgrey;
    
    &:hover {

    }
  }
*/ }
  @media screen and (min-width: 48rem) {
    input[type="submit"], .button, .gfield.gfield--file .button {
      padding: 0.8333333333rem 1.5625rem; } }
  @media screen and (min-width: 64rem) {
    input[type="submit"], .button, .gfield.gfield--file .button {
      padding: 1rem 2rem; } }
  input[type="submit"].button-primary, #cookie-notice [type="submit"]#cn-accept-cookie, .button.button-primary, .gfield.gfield--file .button-primary.button, #cookie-notice .button#cn-accept-cookie {
    background: #FF5884;
    border: 1px solid #FF5884;
    color: #fff; }
    input[type="submit"].button-primary:hover, #cookie-notice [type="submit"]#cn-accept-cookie:hover, input[type="submit"].button-primary:focus, #cookie-notice [type="submit"]#cn-accept-cookie:focus, .button.button-primary:hover, #cookie-notice .button#cn-accept-cookie:hover, .button.button-primary:focus, #cookie-notice .button#cn-accept-cookie:focus {
      background: #ff255e;
      border: 1px solid #ff255e; }
  input[type="submit"].button-ghost, .button.button-ghost, .gfield.gfield--file .button-ghost.button {
    background: #fff;
    color: #111;
    border: 1px solid #111;
    transition: 300ms ease; }
    input[type="submit"].button-ghost:hover, .button.button-ghost:hover {
      border: 1px solid #FFA323;
      color: #fff;
      background: #FFA323; }
      input[type="submit"].button-ghost:hover:before, .button.button-ghost:hover:before {
        color: #fff !important;
        z-index: 2; }
    input[type="submit"].button-ghost .text, .button.button-ghost .text {
      position: relative;
      z-index: 2; }
  input[type="submit"].button-white, .button.button-white, .gfield.gfield--file .button-white.button {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #111 !important; }
  input[type="submit"].button-icon-right, .button.button-icon-right, .gfield.gfield--file .button-icon-right.button {
    padding-right: 2.5rem !important; }
    input[type="submit"].button-icon-right:before, .button.button-icon-right:before, .gfield.gfield--file .button-icon-right.button:before {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 1.25rem; }
  input[type="submit"]:focus:not(.button-ghost), input[type="submit"]:hover:not(.button-ghost), .button:focus:not(.button-ghost), .button:hover:not(.button-ghost) {
    background: #2200F2 !important;
    color: #fff !important;
    border: 1px solid #2200F2 !important;
    outline: none !important; }
  input[type="submit"].button-large, .button.button-large, .gfield.gfield--file .button-large.button {
    padding: 0.8333333333rem 1.25rem; }
  @media screen and (min-width: 48rem) {
    input[type="submit"].button-xsmall, #cookie-notice [type="submit"]#cn-accept-cookie, .button.button-xsmall, .gfield.gfield--file .button-xsmall.button, #cookie-notice .button#cn-accept-cookie {
      font-size: 13px !important;
      font-size: 0.8125rem !important; }
    input[type="submit"].button-small, input[type="submit"].button-xsmall, #cookie-notice [type="submit"]#cn-accept-cookie, .button.button-small, .gfield.gfield--file .button-small.button, .button.button-xsmall, .gfield.gfield--file .button-xsmall.button, #cookie-notice .button#cn-accept-cookie {
      padding: 0.3125rem 0.625rem; }
    input[type="submit"].button-medium, .button.button-medium, .gfield.gfield--file .button-medium.button {
      padding: 0.4166666667rem 0.7142857143rem; }
    input[type="submit"].button-large, .button.button-large, .gfield.gfield--file .button-large.button {
      padding: 1rem 1.5625rem; }
      input[type="submit"].button-large.button-icon-right, .button.button-large.button-icon-right {
        padding-right: 2.75rem !important; } }
  @media screen and (min-width: 64rem) {
    input[type="submit"].button-small, input[type="submit"].button-xsmall, #cookie-notice [type="submit"]#cn-accept-cookie, .button.button-small, .gfield.gfield--file .button-small.button, .button.button-xsmall, .gfield.gfield--file .button-xsmall.button, #cookie-notice .button#cn-accept-cookie {
      padding: 0.4166666667rem 1rem; }
    input[type="submit"].button-medium, .button.button-medium, .gfield.gfield--file .button-medium.button {
      padding: 0.625rem 1.25rem; }
    input[type="submit"].button-large, .button.button-large, .gfield.gfield--file .button-large.button {
      padding: 1.25rem 1.875rem; }
    input[type="submit"].button-icon-right, .button.button-icon-right, .gfield.gfield--file .button-icon-right.button {
      padding-right: 3.125rem !important; } }
.gform_body {
  width: 100vw;
  margin-left: -1.25rem; }

.gform_body > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid; }

.gfield {
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem; }
  .gfield:after, .gfield:before {
    content: "";
    height: 0.125rem;
    display: block;
    background: #111;
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    display: none; }
  .gfield:not(.gsection) {
    margin: 0;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    transition: all 0.15s ease-out;
    cursor: pointer; }
    .gfield:not(.gsection):after {
      bottom: 0;
      display: block; }
    .gfield:not(.gsection):before {
      top: 0;
      display: none; }
  .gfield.gfield_error label {
    color: #F54559; }
  .gfield.gfield_error:before, .gfield.gfield_error:after {
    background: #F54559; }
  .gfield.gsection + .gfield:before {
    display: block; }
  .gfield.gform_hidden {
    display: none; }
  .gfield label {
    display: block;
    margin: 0 0 0.3125rem; }
    .gfield label em {
      color: #82868c;
      font-style: normal; }
    .gfield label .gfield_required {
      display: none; }
  .gfield .gfield_description {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    color: #3C3D40;
    margin-top: 1.25rem; }
  .gfield.is-focused {
    background: #F5F6F7;
    outline: none; }
  .gfield input[type="text"],
  .gfield input[type="email"],
  .gfield input[type="url"],
  .gfield select,
  .gfield .select2,
  .gfield textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    border: 0;
    background: none;
    width: 100%;
    padding: 0; }
    html.js-ready .gfield input[type="text"]:focus, html.js-ready .gfield input[type="email"]:focus, html.js-ready .gfield input[type="url"]:focus, html.js-ready .gfield select:focus, html.js-ready .gfield .select2:focus, html.js-ready .gfield textarea:focus {
      outline: none; }
  .gfield input[type="text"]::-webkit-input-placeholder,
  .gfield input[type="email"]::-webkit-input-placeholder,
  .gfield input[type="url"]::-webkit-input-placeholder,
  .gfield textarea::-webkit-input-placeholder {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.4;
    color: #82868c; }
  .gfield input[type="text"]::-moz-placeholder,
  .gfield input[type="email"]::-moz-placeholder,
  .gfield input[type="url"]::-moz-placeholder,
  .gfield textarea::-moz-placeholder {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.4;
    color: #82868c; }
  .gfield input[type="text"]:-moz-placeholder,
  .gfield input[type="email"]:-moz-placeholder,
  .gfield input[type="url"]:-moz-placeholder,
  .gfield textarea:-moz-placeholder {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.4;
    color: #82868c; }
  .gfield input[type="text"]:-ms-input-placeholder,
  .gfield input[type="email"]:-ms-input-placeholder,
  .gfield input[type="url"]:-ms-input-placeholder,
  .gfield textarea:-ms-input-placeholder {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.4;
    color: #82868c; }
  .gfield textarea {
    height: 7.5rem;
    resize: none; }
  .gfield select {
    background: url("../images/icons/icon-ui--arrow-bottom@2x.png") no-repeat right center;
    background-size: 20px 20px;
    display: none; }
  .gfield .select2 {
    width: 100% !important;
    background: url("../images/icons/icon-ui--arrow-bottom@2x.png") no-repeat right center;
    background-size: 20px 20px;
    outline: none; }
    .gfield .select2 .select2-selection__rendered {
      display: block;
      outline: none; }
    .gfield .select2 .select2-selection {
      outline: none; }
  .gfield.gfield--file {
    padding-top: 0; }
    .gfield.gfield--file:before, .gfield.gfield--file:after {
      display: none !important; }
    .gfield.gfield--file input[type="file"] {
      width: 0.1px;
      height: 0.1px;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      z-index: -1; }
    .gfield.gfield--file .button {
      margin-bottom: 0; }
      .gfield.gfield--file .button .gfield_required {
        display: none; }
    .gfield.gfield--file.is-focused .button {
      background: #2200F2 !important;
      color: #fff !important;
      border: 1px solid #2200F2 !important; }
  .gfield.gfield--files {
    padding-bottom: 5rem; }
    .gfield.gfield--files .screen-reader-text {
      display: none; }
  .gfield.gfield--file.is-focused, .gfield.gfield--files.is-focused {
    background: none; }
  .gfield.gfield--file .ginput_preview, .gfield.gfield--files .ginput_preview {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 0.5rem; }
    .gfield.gfield--file .ginput_preview:first-of-type, .gfield.gfield--files .ginput_preview:first-of-type {
      margin-top: 1rem; }
    .gfield.gfield--file .ginput_preview img, .gfield.gfield--files .ginput_preview img {
      margin: 0;
      display: block;
      padding: 0.625rem;
      margin-right: auto; }
    .gfield.gfield--file .ginput_preview strong, .gfield.gfield--files .ginput_preview strong {
      font-size: 16px !important;
      font-size: 1rem !important;
      line-height: 2rem;
      font-weight: 500; }
  .gfield.gfield--file .validation_message ul, .gfield.gfield--files .validation_message ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .gfield.gfield--file .validation_message li, .gfield.gfield--files .validation_message li {
    margin-top: 0.625rem;
    font-size: 16px !important;
    font-size: 1rem !important;
    background: #fffaaa;
    padding: 0.3125rem;
    border-radius: 0.1875rem; }
  .gfield.gfield--title {
    padding-bottom: 0; }
    .gfield.gfield--title textarea {
      font-size: 36px !important;
      font-size: 2.25rem !important;
      font-weight: 700;
      height: 12.5rem; }
      .gfield.gfield--title textarea::-webkit-input-placeholder {
        font-size: 36px !important;
        font-size: 2.25rem !important;
        color: #C8C9CC; }
      .gfield.gfield--title textarea::-moz-placeholder {
        font-size: 36px !important;
        font-size: 2.25rem !important;
        color: #C8C9CC; }
      .gfield.gfield--title textarea:-moz-placeholder {
        font-size: 36px !important;
        font-size: 2.25rem !important;
        color: #C8C9CC; }
      .gfield.gfield--title textarea:-ms-input-placeholder {
        font-size: 36px !important;
        font-size: 2.25rem !important;
        color: #C8C9CC; }
    .gfield.gfield--title:after {
      display: none; }
    .gfield.gfield--title.is-focused {
      background: none; }
  .gfield.gfield--captcha label, .gfield.gfield--captcha:after, .gfield.gfield--captcha:before {
    display: none !important; }
  .gfield .ginput_counter {
    display: none; }

.gsection {
  margin: 5rem 0 2.5rem; }
  .gsection h2 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    font-weight: 400;
    margin: 0 0 0.625rem; }
  .gsection .gsection_description {
    color: #82868C;
    font-size: 16px !important;
    font-size: 1rem !important; }
  .gsection.gsection--final {
    margin-bottom: 0; }

.gform_footer {
  margin-bottom: 3.75rem; }

.select2-container {
  display: block; }
  .select2-container .select2-search--dropdown {
    display: none; }
  .select2-container .select2-results {
    background: #fff;
    display: block;
    width: 75vw;
    max-width: 28.125rem;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1.25rem; }
  .select2-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    max-height: 14.0625rem; }
    .select2-container ul li {
      font-size: 16px !important;
      font-size: 1rem !important;
      padding: 0.625rem 1.25rem;
      position: relative;
      color: #A1A9B3; }
      .select2-container ul li[aria-selected="true"], .select2-container ul li:hover {
        color: #03060A;
        cursor: pointer; }
        .select2-container ul li[aria-selected="true"]:before, .select2-container ul li:hover:before {
          content: "";
          display: block;
          width: 0.125rem;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          background: #111; }

@media screen and (min-width: 37.5rem) {
  .gform_body {
    margin-left: -2.5rem; }
  .gfield {
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
    .gfield:before, .gfield:after {
      left: 2.5rem;
      right: 2.5rem; } }

@media screen and (min-width: 48rem) {
  .gform_body {
    margin-left: -5rem; }
  .gfield {
    padding-left: 5rem;
    padding-right: 5rem; }
    .gfield:before, .gfield:after {
      left: 5rem;
      right: 5rem; }
    .gfield .gfield_description {
      font-size: 16px !important;
      font-size: 1rem !important; }
    .gfield.gfield--title textarea {
      font-size: 48px !important;
      font-size: 3rem !important; }
      .gfield.gfield--title textarea::-webkit-input-placeholder {
        font-size: 48px !important;
        font-size: 3rem !important; }
      .gfield.gfield--title textarea::-moz-placeholder {
        font-size: 48px !important;
        font-size: 3rem !important; }
      .gfield.gfield--title textarea:-moz-placeholder {
        font-size: 48px !important;
        font-size: 3rem !important; }
      .gfield.gfield--title textarea:-ms-input-placeholder {
        font-size: 48px !important;
        font-size: 3rem !important; } }

@media screen and (min-width: 64rem) {
  .gform_body {
    margin-left: -20px;
    width: calc(100% + 40px); }
  .gform_body ul {
    grid-template-columns: 1fr 1.5fr;
    grid-column-gap: 2.5rem; }
  .gfield {
    grid-column: 2;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
    .gfield:before, .gfield:after {
      left: 1.25rem;
      right: 1.25rem; }
    .gfield.gfield--title:after {
      display: none; }
    .gfield.gfield--captcha {
      margin-top: 0 !important; }
    .gfield.gsection {
      grid-column: 1;
      grid-row: auto / span 2; }
      .gfield.gsection + .gfield {
        margin-top: 5rem; }
  .gsection--final {
    grid-column: 2 !important;
    grid-row: auto !important; }
  .gform_footer {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-column-gap: 2.5rem; }
    .gform_footer .button-container {
      grid-column: 2;
      padding: 0 1.25rem; } }

@media screen and (min-width: 81.25rem) {
  .gform_body ul {
    grid-column-gap: 5rem; }
  .gfield.gsection {
    margin-top: 10rem; }
    .gfield.gsection + .gfield {
      margin-top: 10rem; }
  .gform_footer {
    grid-gap: 5rem; } }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?szf9rz");
  src: url("../fonts/icomoon.eot?szf9rz#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff2?szf9rz") format("woff2"), url("../fonts/icomoon.ttf?szf9rz") format("truetype"), url("../fonts/icomoon.woff?szf9rz") format("woff"), url("../fonts/icomoon.svg?szf9rz#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"], .icon, header[role="banner"] .site-branding .site-logo:not(h1) a:before, header[role="banner"] nav .overlay-container .close:before, input[type="submit"].button-icon-right:before, .button.button-icon-right:before, .gfield.gfield--file .button-icon-right.button:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-ui--star-full:before {
  content: "\e909"; }

.icon-ui--star-empty:before {
  content: "\e908"; }

.icon-ui--add:before {
  content: "\e907"; }

.icon-ui--arrow-bottom:before {
  content: "\e900"; }

.icon-ui--arrow-left:before, header[role="banner"] .site-branding .site-logo:not(h1) a:before {
  content: "\e901"; }

.icon-ui--arrow-right:before, input[type="submit"].button-icon-right:before, .button.button-icon-right:before, .gfield.gfield--file .button-icon-right.button:before {
  content: "\e902"; }

.icon-ui--arrow-top:before {
  content: "\e903"; }

.icon-ui--close-rounded:before, header[role="banner"] nav .overlay-container .close:before {
  content: "\e904"; }

.icon-ui--close:before {
  content: "\e905"; }

.icon-ui--menu:before {
  content: "\e906"; }
