/*!*******************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[4]!./src/sass/index.scss ***!
  \*******************************************************************************************************************************************************************************************************************************/
/**
 * Strips css units from variables.
 */
/**
 * Rounds number to certain amount of decimal places.
 */
:root {
  --font-size--x-small: clamp(0.565rem, calc(0.193vw + 0.521rem), 0.694rem);
  --font-size--small: clamp(0.752rem, calc(0.122vw + 0.724rem), 0.833rem);
  --font-size--medium: clamp(1rem, calc(0vw + 1rem), 1rem);
  --font-size--large: clamp(1.2rem, calc(0.194vw + 1.155rem), 1.33rem);
  --font-size--x-large: clamp(1.44rem, calc(0.491vw + 1.327rem), 1.769rem);
  --font-size--huge: clamp(1.728rem, calc(0.932vw + 1.514rem), 2.353rem);
  --font-size--gigantic: clamp(2.074rem, calc(1.575vw + 1.711rem), 3.129rem);
  --font-size--enormous: clamp(2.488rem, calc(2.497vw + 1.914rem), 4.162rem);
  --font-size--colossal: clamp(2.986rem, calc(3.804vw + 2.111rem), 5.535rem);
  --letter-spacing--x-small: clamp(0.076em, calc(-0.048vw + 0.12em), 0.109em);
  --letter-spacing--small: clamp(0.021em, calc(-0.015vw + 0.035em), 0.031em);
  --letter-spacing--medium: clamp(0em, calc(0vw + 0em), 0em);
  --letter-spacing--large: clamp(-0.021em, calc(-0.012vw + -0.01em), -0.013em);
  --letter-spacing--x-large: clamp(-0.038em, calc(-0.025vw + -0.016em), -0.022em);
  --letter-spacing--huge: clamp(-0.056em, calc(-0.039vw + -0.021em), -0.03em);
  --letter-spacing--gigantic: clamp(-0.076em, calc(-0.056vw + -0.025em), -0.038em);
  --letter-spacing--enormous: clamp(-0.099em, calc(-0.078vw + -0.029em), -0.047em);
  --letter-spacing--colossal: clamp(-0.126em, calc(-0.106vw + -0.031em), -0.055em);
  --line-height--x-small: 1.538;
  --line-height--small: 1.522;
  --line-height--medium: 1.5;
  --line-height--large: 1.471;
  --line-height--x-large: 1.432;
  --line-height--huge: 1.381;
  --line-height--gigantic: 1.312;
  --line-height--enormous: 1.221;
  --line-height--colossal: 1.1;
  --font-weight--200: 200;
  --font-weight--300: 300;
  --font-weight--400: 400;
  --font-weight--500: 500;
  --font-weight--600: 600;
  --font-weight--700: 700;
  --font-weight--800: 800;
  --font-weight--900: 900;
}

body {
  position: relative;
}

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0;
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: theme("fontFamily.mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/
[hidden] {
  display: none;
}

h1 {
  font-size: var(--font-size--gigantic);
  letter-spacing: var(--letter-spacing--gigantic);
  line-height: var(--line-height--gigantic);
}

h2 {
  font-size: var(--font-size--huge);
  letter-spacing: var(--letter-spacing--huge);
  line-height: var(--line-height--huge);
}

h3 {
  font-size: var(--font-size--x-large);
  letter-spacing: var(--letter-spacing--x-large);
  line-height: var(--line-height--x-large);
}

h4 {
  font-size: var(--font-size--large);
  letter-spacing: var(--letter-spacing--large);
  line-height: var(--line-height--large);
}

h5 {
  font-size: var(--font-size--medium);
  letter-spacing: var(--letter-spacing--medium);
  line-height: var(--line-height--medium);
}

h6 {
  font-size: var(--font-size--small);
  letter-spacing: var(--letter-spacing--small);
  line-height: var(--line-height--small);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.small {
  font-weight: 700;
  font-size: var(--font-size--small);
  letter-spacing: var(--letter-spacing--x-small);
  line-height: var(--line-height--small);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
}

.button--secondary {
  position: relative;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: 0.15rem solid #000;
  margin-left: 0.375rem;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  background-color: transparent;
}
.button--secondary:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.375rem;
  top: -0.375rem;
  background-color: #fff;
  border-radius: 0.25rem;
}

.button--tertiary, .wp-block-button__link {
  position: relative;
  color: #000 !important;
  padding: 0.75rem 1.5rem;
  border: 0.15rem solid #000;
  margin-left: 0.375rem;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  background-color: transparent;
}
.button--tertiary:hover, .wp-block-button__link:hover {
  color: #000;
}
.button--tertiary:before, .wp-block-button__link:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.375rem;
  top: -0.375rem;
  background-color: var(--wp--preset--color--primary-light);
  border-radius: 0.25rem;
}

.mt {
  margin-top: 3rem;
}

.brand {
  display: flex;
  align-items: center;
}
.brand__image {
  max-width: 8rem;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card--blured {
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.card__media {
  flex: 0 0 40%;
}
.card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--wp--custom--spacing--large);
}
.card__body > * + * {
  margin-top: var(--wp--custom--spacing--small);
}
.card__header {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--tiny);
}
.card__content {
  flex-grow: 1;
}
@media screen and (min-width: 36rem) {
  .card--horizontal {
    flex-direction: row;
  }
}
@media screen and (min-width: 75rem) {
  .card--horizontal {
    flex-direction: row;
  }
}
.card--bordered {
  border-radius: 0.25rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in;
}
.card--bordered:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.icon {
  width: var(--wp--custom--spacing--x-large);
}

.list--inline {
  display: flex;
  align-items: center;
}

.open, .close {
  color: #10189F;
}
.open svg, .close svg {
  width: 2rem;
  height: 2rem;
}

.open {
  display: block;
}
@media screen and (min-width: 62rem) {
  .open {
    display: none;
  }
}

.close {
  z-index: 200;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.close svg {
  width: 2rem;
  height: 2rem;
}

.nav--open {
  overflow: hidden;
}

.navigation {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.navigation--open {
  display: flex;
}
.navigation > * + * {
  margin-top: var(--wp--preset--font-size--large);
}
@media screen and (min-width: 62rem) {
  .navigation > * + * {
    margin-top: 0;
    margin-left: var(--wp--preset--font-size--large);
  }
}
@media screen and (min-width: 62rem) {
  .navigation {
    display: flex;
    position: static;
    min-height: auto;
    flex-direction: row;
    justify-content: space-between;
    background-color: #fff;
  }
}

.nav__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 62rem) {
  .nav__menu {
    flex-direction: row;
  }
}
.nav__menu > * + * {
  margin-top: var(--wp--preset--font-size--large);
}
@media screen and (min-width: 62rem) {
  .nav__menu > * + * {
    margin-top: 0;
    margin-left: var(--wp--preset--font-size--large);
  }
}
.nav__link {
  font-size: var(--wp--preset--font-size--large);
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 62rem) {
  .nav__link {
    font-size: var(--wp--preset--font-size--medium);
  }
}

.close {
  font-size: var(--wp--preset--font-size--large);
  position: absolute;
  right: var(--wp--custom--spacing--large);
  top: var(--wp--custom--spacing--large);
}
@media screen and (min-width: 62rem) {
  .close {
    display: none;
  }
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__link {
  padding: 0.25rem 0.5rem;
}

.search {
  outline: none;
  color: var(--wp--preset--color--primary);
}
.search::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #777;
}
.search::-moz-placeholder {
  /* Firefox 19+ */
  color: #777;
}
.search:-ms-input-placeholder {
  /* IE 10+ */
  color: #777;
}
.search:-moz-placeholder {
  /* Firefox 18- */
  color: #777;
}

.widget {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--small);
  border-radius: 0.25rem;
}
.widget__content {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--medium);
}
.widget--categories {
  padding: var(--wp--custom--spacing--medium);
  background-color: var(--wp--preset--color--secondary);
  color: #fff;
}
.widget--tag-cloud {
  padding: var(--wp--custom--spacing--medium);
  background-color: #f2f2f2;
}
.widget--tag-cloud .widget__content {
  display: block;
}
.widget--latest-posts {
  gap: 0;
}

.field {
  position: relative;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.field br {
  display: none;
}
.field__label {
  font-weight: 500;
}
.field__label--upload {
  display: block;
  padding: 1.25rem;
  background-color: #f2f2f2;
  border-radius: 0.25rem;
  z-index: 1;
  border: 1px solid #888;
  text-align: center;
  cursor: pointer;
}
.field__label--upload ~ span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field__control {
  width: 100%;
  display: block;
  border-radius: 0.25rem;
  border: 1px solid #888;
  padding: 0.5rem 0.75rem;
}
.field__upload {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field button {
  cursor: pointer;
}

.banner .wp-block-cover {
  padding-top: var(--wp--custom--spacing--colossal);
  padding-bottom: var(--wp--custom--spacing--colossal);
  min-height: 90vh;
}
.banner .wp-block-cover__inner-container {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--x-large);
  width: 100%;
  max-width: 82.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wp--custom--spacing--medium);
  padding-right: var(--wp--custom--spacing--medium);
  color: #fff !important;
}
.banner .wp-block-cover__inner-container > * {
  max-width: 48rem;
}

.error-404 {
  display: block;
}

.container {
  width: 100%;
  max-width: 82.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--wp--custom--spacing--medium);
  padding-right: var(--wp--custom--spacing--medium);
}

.section {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--x-large);
  padding-top: var(--wp--custom--spacing--gigantic);
  padding-bottom: var(--wp--custom--spacing--gigantic);
}
.section__header--bg {
  background-color: #f2f2f2;
}
.section__title {
  display: grid;
  grid-auto-flow: row;
  gap: 0;
}
.section__content {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--large);
}
.section--bordered {
  border-top: var(--wp--custom--spacing--colossal) solid #f2f2f2;
}

.layout {
  display: grid;
}

.creative {
  background-color: #f2f2f2;
}
.creative .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: var(--wp--custom--spacing--large);
}

.layout--creative {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacing--medium);
  align-items: start;
}
@media screen and (min-width: 62rem) {
  .layout--creative {
    grid-template-columns: 3fr 5fr;
  }
}
.layout--creative > * {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.layout--creative > *:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: var(--wp--custom--spacing--medium);
}

.news {
  background-color: #fff;
}
.layout--news {
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacing--large);
}
@media screen and (min-width: 48rem) {
  .layout--news {
    grid-template-columns: repeat(2, 1fr);
  }
}
.layout--news > * {
  display: flex;
  flex-direction: column;
}
.layout--news > * > * + * {
  margin-top: var(--wp--custom--spacing--large);
}

.join {
  overflow: hidden;
  background-color: var(--wp--preset--color--primary-light);
}
.join__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 0 var(--wp--custom--spacing--x-large);
  text-align: center;
}
@media screen and (min-width: 62rem) {
  .join__content {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    text-align: left;
  }
}
.join__text {
  display: grid;
  padding-top: var(--wp--custom--spacing--huge);
  padding-bottom: var(--wp--custom--spacing--gigantic);
  align-self: center;
  z-index: 5;
  grid-column: 1/-1;
  grid-row: 1/2;
}
.join__text > * + * {
  margin-top: var(--wp--custom--spacing--large);
}
@media screen and (min-width: 62rem) {
  .join__text {
    padding-top: 0;
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
.join__image {
  align-self: end;
  position: relative;
  grid-column: 1/-1;
  grid-row: 2/-1;
}
@media screen and (min-width: 62rem) {
  .join__image {
    grid-column: 3/-1;
    grid-row: 1/2;
  }
}
.join__image img {
  position: relative;
}
@media screen and (min-width: 62rem) {
  .join__image img {
    right: -10vw;
  }
}

.footer {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--x-large);
  padding-top: var(--wp--custom--spacing--gigantic);
  background-color: var(--wp--preset--color--secondary-dark);
  color: #fff;
}
.footer__content {
  display: grid;
  gap: var(--wp--custom--spacing--x-large);
  grid-template-columns: 1fr;
}
@media screen and (min-width: 36rem) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 62rem) {
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__copyright {
  border-top: 1px solid #51626f;
  color: #b7c7d2;
}
.footer h2 {
  color: #b7c7d2;
}
.footer .icon {
  color: var(--wp--preset--color--primary-light);
}

.layout--page {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacing--x-large);
}
@media screen and (min-width: 62rem) {
  .layout--page {
    grid-template-columns: 5fr 2fr;
  }
}
.layout--page > * {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacing--large);
  align-items: start;
}
.layout--page > *:last-child {
  display: grid;
}

.article-list {
  display: grid;
  grid-auto-flow: row;
  gap: var(--wp--custom--spacing--medium);
  align-items: start;
}
.widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacing--medium);
  align-items: start;
}

.header {
  padding-top: var(--wp--custom--spacing--x-small);
  padding-bottom: var(--wp--custom--spacing--x-small);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.language {
  display: flex;
  justify-content: flex-end;
}

.page {
  gap: var(--wp--custom--spacing--medium);
}
.page, .page__media, .page__header, .page__footer {
  display: grid;
  grid-auto-flow: row;
}
.page__media {
  gap: var(--wp--custom--spacing--x-small);
}
.page__header, .page__footer {
  gap: var(--wp--custom--spacing--small);
}
.page a {
  color: #10189F;
}
.page a:active, .page a:focus, .page a:hover {
  text-decoration: underline;
}

.aspect {
  position: relative;
  width: 100%;
}
.aspect > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aspect--1-1::before {
  float: left;
  padding-top: 100%;
  content: '';
}
.aspect--1-1::after {
  display: block;
  content: '';
  clear: both;
}
.aspect--4-3::before {
  float: left;
  padding-top: 75%;
  content: '';
}
.aspect--4-3::after {
  display: block;
  content: '';
  clear: both;
}
.aspect--16-9::before {
  float: left;
  padding-top: 56.25%;
  content: '';
}
.aspect--16-9::after {
  display: block;
  content: '';
  clear: both;
}

.flow-y--x-small > * + * {
  margin-top: var(--wp--custom--spacing--x-small);
}

.flow-x--x-small > * + * {
  margin-left: var(--wp--custom--spacing--x-small);
}

.flow-y--small > * + * {
  margin-top: var(--wp--custom--spacing--small);
}

.flow-x--small > * + * {
  margin-left: var(--wp--custom--spacing--small);
}

.flow-y--medium > * + * {
  margin-top: var(--wp--custom--spacing--medium);
}

.flow-x--medium > * + * {
  margin-left: var(--wp--custom--spacing--medium);
}

.flow-y--large > * + * {
  margin-top: var(--wp--custom--spacing--large);
}

.flow-x--large > * + * {
  margin-left: var(--wp--custom--spacing--large);
}

.flow-y--x-large > * + * {
  margin-top: var(--wp--custom--spacing--x-large);
}

.flow-x--x-large > * + * {
  margin-left: var(--wp--custom--spacing--x-large);
}

.flow-y--huge > * + * {
  margin-top: var(--wp--custom--spacing--huge);
}

.flow-x--huge > * + * {
  margin-left: var(--wp--custom--spacing--huge);
}

.flow-y--gigantic > * + * {
  margin-top: var(--wp--custom--spacing--gigantic);
}

.flow-x--gigantic > * + * {
  margin-left: var(--wp--custom--spacing--gigantic);
}

.flow-y--enormous > * + * {
  margin-top: var(--wp--custom--spacing--enormous);
}

.flow-x--enormous > * + * {
  margin-left: var(--wp--custom--spacing--enormous);
}

.flow-y--colossal > * + * {
  margin-top: var(--wp--custom--spacing--colossal);
}

.flow-x--colossal > * + * {
  margin-left: var(--wp--custom--spacing--colossal);
}

.text--x-small {
  font-size: var(--font-size--x-small);
  letter-spacing: var(--letter-spacing--x-small);
  line-height: var(--line-height--x-small);
}

.text--small {
  font-size: var(--font-size--small);
  letter-spacing: var(--letter-spacing--small);
  line-height: var(--line-height--small);
}

.text--medium {
  font-size: var(--font-size--medium);
  letter-spacing: var(--letter-spacing--medium);
  line-height: var(--line-height--medium);
}

.text--large {
  font-size: var(--font-size--large);
  letter-spacing: var(--letter-spacing--large);
  line-height: var(--line-height--large);
}

.text--x-large {
  font-size: var(--font-size--x-large);
  letter-spacing: var(--letter-spacing--x-large);
  line-height: var(--line-height--x-large);
}

.text--huge {
  font-size: var(--font-size--huge);
  letter-spacing: var(--letter-spacing--huge);
  line-height: var(--line-height--huge);
}

.text--gigantic {
  font-size: var(--font-size--gigantic);
  letter-spacing: var(--letter-spacing--gigantic);
  line-height: var(--line-height--gigantic);
}

.text--enormous {
  font-size: var(--font-size--enormous);
  letter-spacing: var(--letter-spacing--enormous);
  line-height: var(--line-height--enormous);
}

.text--colossal {
  font-size: var(--font-size--colossal);
  letter-spacing: var(--letter-spacing--colossal);
  line-height: var(--line-height--colossal);
}

.text-italic {
  font-style: italic;
}

.text-weight--200 {
  font-weight: var(--font-weight--200);
}

.text-weight--300 {
  font-weight: var(--font-weight--300);
}

.text-weight--400 {
  font-weight: var(--font-weight--400);
}

.text-weight--500 {
  font-weight: var(--font-weight--500);
}

.text-weight--600 {
  font-weight: var(--font-weight--600);
}

.text-weight--700 {
  font-weight: var(--font-weight--700);
}

.text-weight--800 {
  font-weight: var(--font-weight--800);
}

.text-weight--900 {
  font-weight: var(--font-weight--900);
}

.p--x-small {
  padding: var(--wp--custom--spacing--x-small);
}

.p-x--x-small {
  padding-left: var(--wp--custom--spacing--x-small);
  padding-right: var(--wp--custom--spacing--x-small);
}

.p-y--x-small {
  padding-top: var(--wp--custom--spacing--x-small);
  padding-bottom: var(--wp--custom--spacing--x-small);
}

.p-t--x-small {
  padding-top: var(--wp--custom--spacing--x-small);
}

.p-b--x-small {
  padding-bottom: var(--wp--custom--spacing--x-small);
}

.p-l--x-small {
  padding-left: var(--wp--custom--spacing--x-small);
}

.p-r--x-small {
  padding-right: var(--wp--custom--spacing--x-small);
}

.m--x-small {
  margin: var(--wp--custom--spacing--x-small);
}

.m-x--x-small {
  margin-left: var(--wp--custom--spacing--x-small);
  margin-right: var(--wp--custom--spacing--x-small);
}

.m-y--x-small {
  margin-top: var(--wp--custom--spacing--x-small);
  margin-bottom: var(--wp--custom--spacing--x-small);
}

.m-t--x-small {
  margin-top: var(--wp--custom--spacing--x-small);
}

.m-b--x-small {
  margin-bottom: var(--wp--custom--spacing--x-small);
}

.m-l--x-small {
  margin-left: var(--wp--custom--spacing--x-small);
}

.m-r--x-small {
  margin-right: var(--wp--custom--spacing--x-small);
}

.p--small {
  padding: var(--wp--custom--spacing--small);
}

.p-x--small {
  padding-left: var(--wp--custom--spacing--small);
  padding-right: var(--wp--custom--spacing--small);
}

.p-y--small {
  padding-top: var(--wp--custom--spacing--small);
  padding-bottom: var(--wp--custom--spacing--small);
}

.p-t--small {
  padding-top: var(--wp--custom--spacing--small);
}

.p-b--small {
  padding-bottom: var(--wp--custom--spacing--small);
}

.p-l--small {
  padding-left: var(--wp--custom--spacing--small);
}

.p-r--small {
  padding-right: var(--wp--custom--spacing--small);
}

.m--small {
  margin: var(--wp--custom--spacing--small);
}

.m-x--small {
  margin-left: var(--wp--custom--spacing--small);
  margin-right: var(--wp--custom--spacing--small);
}

.m-y--small {
  margin-top: var(--wp--custom--spacing--small);
  margin-bottom: var(--wp--custom--spacing--small);
}

.m-t--small {
  margin-top: var(--wp--custom--spacing--small);
}

.m-b--small {
  margin-bottom: var(--wp--custom--spacing--small);
}

.m-l--small {
  margin-left: var(--wp--custom--spacing--small);
}

.m-r--small {
  margin-right: var(--wp--custom--spacing--small);
}

.p--medium {
  padding: var(--wp--custom--spacing--medium);
}

.p-x--medium {
  padding-left: var(--wp--custom--spacing--medium);
  padding-right: var(--wp--custom--spacing--medium);
}

.p-y--medium {
  padding-top: var(--wp--custom--spacing--medium);
  padding-bottom: var(--wp--custom--spacing--medium);
}

.p-t--medium {
  padding-top: var(--wp--custom--spacing--medium);
}

.p-b--medium {
  padding-bottom: var(--wp--custom--spacing--medium);
}

.p-l--medium {
  padding-left: var(--wp--custom--spacing--medium);
}

.p-r--medium {
  padding-right: var(--wp--custom--spacing--medium);
}

.m--medium {
  margin: var(--wp--custom--spacing--medium);
}

.m-x--medium {
  margin-left: var(--wp--custom--spacing--medium);
  margin-right: var(--wp--custom--spacing--medium);
}

.m-y--medium {
  margin-top: var(--wp--custom--spacing--medium);
  margin-bottom: var(--wp--custom--spacing--medium);
}

.m-t--medium {
  margin-top: var(--wp--custom--spacing--medium);
}

.m-b--medium {
  margin-bottom: var(--wp--custom--spacing--medium);
}

.m-l--medium {
  margin-left: var(--wp--custom--spacing--medium);
}

.m-r--medium {
  margin-right: var(--wp--custom--spacing--medium);
}

.p--large {
  padding: var(--wp--custom--spacing--large);
}

.p-x--large {
  padding-left: var(--wp--custom--spacing--large);
  padding-right: var(--wp--custom--spacing--large);
}

.p-y--large {
  padding-top: var(--wp--custom--spacing--large);
  padding-bottom: var(--wp--custom--spacing--large);
}

.p-t--large {
  padding-top: var(--wp--custom--spacing--large);
}

.p-b--large {
  padding-bottom: var(--wp--custom--spacing--large);
}

.p-l--large {
  padding-left: var(--wp--custom--spacing--large);
}

.p-r--large {
  padding-right: var(--wp--custom--spacing--large);
}

.m--large {
  margin: var(--wp--custom--spacing--large);
}

.m-x--large {
  margin-left: var(--wp--custom--spacing--large);
  margin-right: var(--wp--custom--spacing--large);
}

.m-y--large {
  margin-top: var(--wp--custom--spacing--large);
  margin-bottom: var(--wp--custom--spacing--large);
}

.m-t--large {
  margin-top: var(--wp--custom--spacing--large);
}

.m-b--large {
  margin-bottom: var(--wp--custom--spacing--large);
}

.m-l--large {
  margin-left: var(--wp--custom--spacing--large);
}

.m-r--large {
  margin-right: var(--wp--custom--spacing--large);
}

.p--x-large {
  padding: var(--wp--custom--spacing--x-large);
}

.p-x--x-large {
  padding-left: var(--wp--custom--spacing--x-large);
  padding-right: var(--wp--custom--spacing--x-large);
}

.p-y--x-large {
  padding-top: var(--wp--custom--spacing--x-large);
  padding-bottom: var(--wp--custom--spacing--x-large);
}

.p-t--x-large {
  padding-top: var(--wp--custom--spacing--x-large);
}

.p-b--x-large {
  padding-bottom: var(--wp--custom--spacing--x-large);
}

.p-l--x-large {
  padding-left: var(--wp--custom--spacing--x-large);
}

.p-r--x-large {
  padding-right: var(--wp--custom--spacing--x-large);
}

.m--x-large {
  margin: var(--wp--custom--spacing--x-large);
}

.m-x--x-large {
  margin-left: var(--wp--custom--spacing--x-large);
  margin-right: var(--wp--custom--spacing--x-large);
}

.m-y--x-large {
  margin-top: var(--wp--custom--spacing--x-large);
  margin-bottom: var(--wp--custom--spacing--x-large);
}

.m-t--x-large {
  margin-top: var(--wp--custom--spacing--x-large);
}

.m-b--x-large {
  margin-bottom: var(--wp--custom--spacing--x-large);
}

.m-l--x-large {
  margin-left: var(--wp--custom--spacing--x-large);
}

.m-r--x-large {
  margin-right: var(--wp--custom--spacing--x-large);
}

.p--huge {
  padding: var(--wp--custom--spacing--huge);
}

.p-x--huge {
  padding-left: var(--wp--custom--spacing--huge);
  padding-right: var(--wp--custom--spacing--huge);
}

.p-y--huge {
  padding-top: var(--wp--custom--spacing--huge);
  padding-bottom: var(--wp--custom--spacing--huge);
}

.p-t--huge {
  padding-top: var(--wp--custom--spacing--huge);
}

.p-b--huge {
  padding-bottom: var(--wp--custom--spacing--huge);
}

.p-l--huge {
  padding-left: var(--wp--custom--spacing--huge);
}

.p-r--huge {
  padding-right: var(--wp--custom--spacing--huge);
}

.m--huge {
  margin: var(--wp--custom--spacing--huge);
}

.m-x--huge {
  margin-left: var(--wp--custom--spacing--huge);
  margin-right: var(--wp--custom--spacing--huge);
}

.m-y--huge {
  margin-top: var(--wp--custom--spacing--huge);
  margin-bottom: var(--wp--custom--spacing--huge);
}

.m-t--huge {
  margin-top: var(--wp--custom--spacing--huge);
}

.m-b--huge {
  margin-bottom: var(--wp--custom--spacing--huge);
}

.m-l--huge {
  margin-left: var(--wp--custom--spacing--huge);
}

.m-r--huge {
  margin-right: var(--wp--custom--spacing--huge);
}

.p--gigantic {
  padding: var(--wp--custom--spacing--gigantic);
}

.p-x--gigantic {
  padding-left: var(--wp--custom--spacing--gigantic);
  padding-right: var(--wp--custom--spacing--gigantic);
}

.p-y--gigantic {
  padding-top: var(--wp--custom--spacing--gigantic);
  padding-bottom: var(--wp--custom--spacing--gigantic);
}

.p-t--gigantic {
  padding-top: var(--wp--custom--spacing--gigantic);
}

.p-b--gigantic {
  padding-bottom: var(--wp--custom--spacing--gigantic);
}

.p-l--gigantic {
  padding-left: var(--wp--custom--spacing--gigantic);
}

.p-r--gigantic {
  padding-right: var(--wp--custom--spacing--gigantic);
}

.m--gigantic {
  margin: var(--wp--custom--spacing--gigantic);
}

.m-x--gigantic {
  margin-left: var(--wp--custom--spacing--gigantic);
  margin-right: var(--wp--custom--spacing--gigantic);
}

.m-y--gigantic {
  margin-top: var(--wp--custom--spacing--gigantic);
  margin-bottom: var(--wp--custom--spacing--gigantic);
}

.m-t--gigantic {
  margin-top: var(--wp--custom--spacing--gigantic);
}

.m-b--gigantic {
  margin-bottom: var(--wp--custom--spacing--gigantic);
}

.m-l--gigantic {
  margin-left: var(--wp--custom--spacing--gigantic);
}

.m-r--gigantic {
  margin-right: var(--wp--custom--spacing--gigantic);
}

.p--enormous {
  padding: var(--wp--custom--spacing--enormous);
}

.p-x--enormous {
  padding-left: var(--wp--custom--spacing--enormous);
  padding-right: var(--wp--custom--spacing--enormous);
}

.p-y--enormous {
  padding-top: var(--wp--custom--spacing--enormous);
  padding-bottom: var(--wp--custom--spacing--enormous);
}

.p-t--enormous {
  padding-top: var(--wp--custom--spacing--enormous);
}

.p-b--enormous {
  padding-bottom: var(--wp--custom--spacing--enormous);
}

.p-l--enormous {
  padding-left: var(--wp--custom--spacing--enormous);
}

.p-r--enormous {
  padding-right: var(--wp--custom--spacing--enormous);
}

.m--enormous {
  margin: var(--wp--custom--spacing--enormous);
}

.m-x--enormous {
  margin-left: var(--wp--custom--spacing--enormous);
  margin-right: var(--wp--custom--spacing--enormous);
}

.m-y--enormous {
  margin-top: var(--wp--custom--spacing--enormous);
  margin-bottom: var(--wp--custom--spacing--enormous);
}

.m-t--enormous {
  margin-top: var(--wp--custom--spacing--enormous);
}

.m-b--enormous {
  margin-bottom: var(--wp--custom--spacing--enormous);
}

.m-l--enormous {
  margin-left: var(--wp--custom--spacing--enormous);
}

.m-r--enormous {
  margin-right: var(--wp--custom--spacing--enormous);
}

.p--colossal {
  padding: var(--wp--custom--spacing--colossal);
}

.p-x--colossal {
  padding-left: var(--wp--custom--spacing--colossal);
  padding-right: var(--wp--custom--spacing--colossal);
}

.p-y--colossal {
  padding-top: var(--wp--custom--spacing--colossal);
  padding-bottom: var(--wp--custom--spacing--colossal);
}

.p-t--colossal {
  padding-top: var(--wp--custom--spacing--colossal);
}

.p-b--colossal {
  padding-bottom: var(--wp--custom--spacing--colossal);
}

.p-l--colossal {
  padding-left: var(--wp--custom--spacing--colossal);
}

.p-r--colossal {
  padding-right: var(--wp--custom--spacing--colossal);
}

.m--colossal {
  margin: var(--wp--custom--spacing--colossal);
}

.m-x--colossal {
  margin-left: var(--wp--custom--spacing--colossal);
  margin-right: var(--wp--custom--spacing--colossal);
}

.m-y--colossal {
  margin-top: var(--wp--custom--spacing--colossal);
  margin-bottom: var(--wp--custom--spacing--colossal);
}

.m-t--colossal {
  margin-top: var(--wp--custom--spacing--colossal);
}

.m-b--colossal {
  margin-bottom: var(--wp--custom--spacing--colossal);
}

.m-l--colossal {
  margin-left: var(--wp--custom--spacing--colossal);
}

.m-r--colossal {
  margin-right: var(--wp--custom--spacing--colossal);
}

.p--0 {
  padding: 0;
}

.p-x--0 {
  padding-left: 0;
  padding-right: 0;
}

.p-y--0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-t--0 {
  padding-top: 0;
}

.p-b--0 {
  padding-bottom: 0;
}

.p-l--0 {
  padding-left: 0;
}

.p-r--0 {
  padding-right: 0;
}

.m--0 {
  margin: 0;
}

.m-x--0 {
  margin-left: 0;
  margin-right: 0;
}

.m-y--0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-t--0 {
  margin-top: 0;
}

.m-b--0 {
  margin-bottom: 0;
}

.m-l--0 {
  margin-left: 0;
}

.m-r--0 {
  margin-right: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}
