@charset "UTF-8";
/**
 * Square mixin
 *
 * @param [Number] $dimensions = the height and width of the element
 */
/* stylelint-disable */
/* stylelint-enable */
.icon--icon-usp:before {
  display: inline-block;
  height: 3.785em;
  width: 4.16em;
  font-size: 0.390625rem;
  background-image: url("../images/generated/sprite.svg");
  background-position: 0em 0em;
  background-size: 11.5em 11.125em;
  content: "";
}

.icon--test:before {
  display: inline-block;
  height: 6.5em;
  width: 6.5em;
  font-size: 0.25rem;
  background-image: url("../images/generated/sprite.svg");
  background-position: -4.625em -4.25em;
  background-size: 11.5em 11.125em;
  content: "";
}

/*!
 * Font Awesome Free 5.12 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
body::after {
  content: "bp-xs";
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  padding: 0.625rem;
  background: red;
  visibility: hidden;
  opacity: 0;
}

body.theme-debug-mode::after {
  visibility: visible;
}

@media (min-width: 768px) {
  body::after {
    content: "bp-sm";
    position: fixed;
    bottom: 0;
    right: 0;
    background: #ffce00;
  }
}
@media (min-width: 940px) {
  body::after {
    content: "bp-md";
    position: fixed;
    bottom: 0;
    right: 0;
    background: yellow;
  }
}
@media (min-width: 1201px) {
  body::after {
    content: "bp-lg";
    position: fixed;
    bottom: 0;
    right: 0;
    background: green;
  }
}
/* stylelint-disable */
/* stylelint-enable */
:root {
  --c-text: #313131;
  --c-background: #fff;
  --c-primary-1: #25328a;
  --c-primary-2: #92d5f6;
  --c-primary-3: #f4fbfe;
  --c-secondary: #fad0cd;
  --c-tertiary: #92d5f6;
  --c-tertiary-1: #6cbe99;
  --c-tertiary-2: #d9dada;
  --c-tertiary-3: #fcea0b;
  --c-tertiary-4: #6099b3;
  --c-disabled: #e5e5e5;
  --c-gray-light-1: #e5e5e5;
  --c-gray-light-2: #d1d1d1;
  --c-gray-light-3: #a2a2a2;
  --c-gray-medium: #707070;
  --c-success: #3fc380;
  --c-warning: #eb9532;
  --c-error: #e74c3c;
}
@media (prefers-color-scheme: dark) {
  :root {
    --c-text: #313131;
    --c-background: #fff;
  }
}
:root [data-theme=default] {
  --c-text: #313131;
  --c-background: #fff;
  --c-primary-1: #25328a;
  --c-primary-2: #92d5f6;
  --c-primary-3: #f4fbfe;
  --c-secondary: #fad0cd;
  --c-tertiary: #92d5f6;
  --c-tertiary-1: #6cbe99;
  --c-tertiary-2: #d9dada;
  --c-tertiary-3: #fcea0b;
  --c-tertiary-4: #6099b3;
  --c-disabled: #e5e5e5;
  --c-gray-light-1: #e5e5e5;
  --c-gray-light-2: #d1d1d1;
  --c-gray-light-3: #a2a2a2;
  --c-gray-medium: #707070;
  --c-success: #3fc380;
  --c-warning: #eb9532;
  --c-error: #e74c3c;
}
:root [data-theme=dark] {
  --c-text: #313131;
  --c-background: #fff;
}

.cl-colors {
  padding: 1rem;
}

.cl-colors__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding: 0;
}

.cl-colors__item {
  display: flex;
  flex: 1 1 20%;
  align-items: flex-end;
  justify-content: center;
  min-height: 150px;
  min-width: 150px;
  margin: 0.25rem;
  padding: 1rem 2rem;
  list-style: none;
  transition: all 0.4s;
}

.cl-colors__item--default-text {
  color: var(--c-off-white);
  background-color: var(--c-text);
}

.cl-colors__item--default-background {
  color: var(--c-color-black);
  background-color: var(--c-background);
}

.cl-colors__item--default-primary-1 {
  color: var(--c-off-white);
  background-color: var(--c-primary-1);
}

.cl-colors__item--default-primary-2 {
  color: var(--c-color-black);
  background-color: var(--c-primary-2);
}

.cl-colors__item--default-primary-3 {
  color: var(--c-color-black);
  background-color: var(--c-primary-3);
}

.cl-colors__item--default-secondary {
  color: var(--c-color-black);
  background-color: var(--c-secondary);
}

.cl-colors__item--default-tertiary {
  color: var(--c-color-black);
  background-color: var(--c-tertiary);
}

.cl-colors__item--default-tertiary-1 {
  color: var(--c-color-black);
  background-color: var(--c-tertiary-1);
}

.cl-colors__item--default-tertiary-2 {
  color: var(--c-color-black);
  background-color: var(--c-tertiary-2);
}

.cl-colors__item--default-tertiary-3 {
  color: var(--c-color-black);
  background-color: var(--c-tertiary-3);
}

.cl-colors__item--default-tertiary-4 {
  color: var(--c-color-black);
  background-color: var(--c-tertiary-4);
}

.cl-colors__item--default-disabled {
  color: var(--c-color-black);
  background-color: var(--c-disabled);
}

.cl-colors__item--default-gray-light-1 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-1);
}

.cl-colors__item--default-gray-light-2 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-2);
}

.cl-colors__item--default-gray-light-3 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-3);
}

.cl-colors__item--default-gray-medium {
  color: var(--c-off-white);
  background-color: var(--c-gray-medium);
}

.cl-colors__item--default-success {
  color: var(--c-color-black);
  background-color: var(--c-success);
}

.cl-colors__item--default-warning {
  color: var(--c-color-black);
  background-color: var(--c-warning);
}

.cl-colors__item--default-error {
  color: var(--c-color-black);
  background-color: var(--c-error);
}

.cl-colors__item--dark-text {
  color: var(--c-accent-high);
  background-color: var(--c-text);
}

.cl-colors__item--dark-background {
  color: var(--c-muted);
  background-color: var(--c-background);
}

.motion {
  padding: 0 1rem;
}

@media (min-width: 920px) {
  .motion__grid {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 920px) {
  .motion__grid-item {
    margin-bottom: 1rem;
    margin-right: 1rem;
    width: 49%;
  }
  .motion__grid-item:nth-child(2n) {
    margin-right: 0;
  }
}

.demo-motion {
  padding: 3rem;
  border-radius: 2px;
  text-align: center;
  color: #fff;
  background-color: #25328a;
  cursor: pointer;
}
.demo-motion::before {
  display: block;
  content: "Duration: 0.3s";
}
.demo-motion::after {
  content: "Timing Function: ease-in-out";
}
.demo-motion span {
  display: block;
  margin: 0.25rem;
}

.demo-motion--fade {
  transition: all 0.3s ease-in-out;
}
.demo-motion--fade:hover {
  color: #fff;
  background-color: #fad0cd;
}

.demo-motion--slide-up {
  transition: transform 0.3s ease-in-out;
}
.demo-motion--slide-up::before {
  content: "Duration: 0.3s";
  display: block;
}
.demo-motion--slide-up::after {
  content: "Timing Function: ease-in-out";
}
.demo-motion--slide-up:hover {
  transform: translateY(-10px);
}

.demo-motion--slide-down {
  transition: transform 0.3s ease-in-out;
}
.demo-motion--slide-down::before {
  content: "Duration: 0.3s";
  display: block;
}
.demo-motion--slide-down::after {
  content: "Timing Function: ease-in-out";
}
.demo-motion--slide-down:hover {
  transform: translateY(10px);
}

.demo-motion--expand {
  transition: transform 0.3s ease-in-out;
}
.demo-motion--expand::before {
  content: "Duration: 0.3s";
  display: block;
}
.demo-motion--expand::after {
  content: "Timing Function: ease-in-out";
}
.demo-motion--expand:hover {
  transform: scale(1.03);
}

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

html {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 400;
  text-align: left;
  text-rendering: optimizeSpeed;
  color: #313131;
  background-color: #fff;
  scroll-behavior: smooth;
}

.font-text-01-loaded body {
  font-family: "Source Sans Pro", "Arial", sans-serif;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

figure {
  margin: 0;
}

hr {
  display: none;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

svg:not(:root) {
  overflow: hidden;
}

picture {
  background-image: none !important;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

output {
  display: inline-block;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

abbr[title],
abbr[data-original-title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
}

address {
  margin-top: 0;
  margin-bottom: 1.625rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1.625rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-top: 0;
  margin-bottom: 0.9375rem;
  margin-left: 0;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border: 0 none;
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  box-sizing: border-box;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=week] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=date]::-webkit-calendar-picker-indicator:hover,
input[type=datetime]::-webkit-calendar-picker-indicator:hover,
input[type=datetime-local]::-webkit-calendar-picker-indicator:hover,
input[type=week]::-webkit-calendar-picker-indicator:hover {
  background: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  white-space: normal;
  color: inherit;
  margin-bottom: 0.5rem;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
          appearance: button;
}

input[type=button], input[type=reset], input[type=submit] {
  outline: 0;
}
input[type=button]:focus, input[type=button]:focus:hover, input[type=reset]:focus, input[type=reset]:focus:hover, input[type=submit]:focus, input[type=submit]:focus:hover {
  outline: 0;
}

#styleguide-header .item-list {
  width: 100%;
  margin: 0 0 1.625rem 0;
}
@media (min-width: 480px) and (max-width: 767px) {
  #styleguide-header {
    display: flex;
    flex-wrap: wrap;
  }
  #styleguide-header .item-list {
    width: 50%;
    padding: 0 0.625rem;
  }
}
@media (min-width: 768px) {
  #styleguide-header {
    display: flex;
    flex-wrap: wrap;
  }
  #styleguide-header .item-list {
    width: 25%;
    padding: 0 0.625rem;
  }
}

.iframe-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  width: 100%;
}
.iframe-responsive--full {
  padding-bottom: 75%;
}
.iframe-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pull-right,
[class*=col--].pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.clear {
  clear: both;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.hide,
.visually-hidden {
  position: absolute !important;
  display: block !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 0.0625rem !important;
  width: 0.0625rem !important;
  word-wrap: normal !important;
}
.hide.focusable:focus,
.visually-hidden.focusable:focus {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 10010 !important;
  display: block !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  width: auto !important;
  background: #fff;
}

.hide-text,
.hidden-text {
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
}

.hidden {
  display: none;
}

.invisible,
.element-invisible {
  visibility: hidden;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .visible-sm {
    display: none !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 939px) {
  .visible-xs {
    display: none !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: none !important;
  }
}
@media (min-width: 940px) and (max-width: 1200px) {
  .visible-xs {
    display: none !important;
  }
  .visible-sm {
    display: none !important;
  }
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
  .visible-lg {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .visible-xs {
    display: none !important;
  }
  .visible-sm {
    display: none !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
  .hidden-lg {
    display: none !important;
  }
}
.animate-fade {
  transition: opacity 0.3s ease-out;
}
.animate-fade:hover {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

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

.container {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin: 0 auto;
  max-width: none;
}
@media (min-width: 768px) {
  .container {
    max-width: none;
  }
}
@media (min-width: 940px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}
.container .container {
  padding: 0;
  margin: 0;
  max-width: none;
}

.container--fluid {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.container--fluid .container {
  padding: 0;
}

.page-wrapper {
  overflow: hidden;
}

.button,
input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: #fad0cd;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fad0cd;
}
.button, .button:visited,
input[type=button],
input[type=button]:visited, input[type=reset], input[type=reset]:visited, input[type=submit], input[type=submit]:visited {
  color: #25328a;
}
.button:focus, .button:hover, .button:active,
input[type=button]:focus,
input[type=button]:hover,
input[type=button]:active, input[type=reset]:focus, input[type=reset]:hover, input[type=reset]:active, input[type=submit]:focus, input[type=submit]:hover, input[type=submit]:active {
  border: 0 none;
  color: #25328a;
  background: transparent;
  outline: none;
  box-shadow: inset 0 0 0 2px true;
}
.button:focus, .button:focus:hover,
input[type=button]:focus,
input[type=button]:focus:hover, input[type=reset]:focus, input[type=reset]:focus:hover, input[type=submit]:focus, input[type=submit]:focus:hover {
  outline: 0;
}
.button.disabled, .button:disabled, .button[disabled],
input[type=button].disabled,
input[type=button]:disabled,
input[type=button][disabled], input[type=reset].disabled, input[type=reset]:disabled, input[type=reset][disabled], input[type=submit].disabled, input[type=submit]:disabled, input[type=submit][disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 .button:focus, .paragraph.bg--spot-1 .button:hover, .paragraph.bg--spot-1 .button:active,
.paragraph.bg--spot-1 input[type=button]:focus,
.paragraph.bg--spot-1 input[type=button]:hover,
.paragraph.bg--spot-1 input[type=button]:active, .paragraph.bg--spot-1 input[type=reset]:focus, .paragraph.bg--spot-1 input[type=reset]:hover, .paragraph.bg--spot-1 input[type=reset]:active, .paragraph.bg--spot-1 input[type=submit]:focus, .paragraph.bg--spot-1 input[type=submit]:hover, .paragraph.bg--spot-1 input[type=submit]:active {
  color: #fff;
}
.paragraph.bg--spot-2 .button,
.paragraph.bg--spot-2 input[type=button], .paragraph.bg--spot-2 input[type=reset], .paragraph.bg--spot-2 input[type=submit] {
  color: #fff;
  background: #25328a;
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-2 .button:focus, .paragraph.bg--spot-2 .button:hover, .paragraph.bg--spot-2 .button:active,
.paragraph.bg--spot-2 input[type=button]:focus,
.paragraph.bg--spot-2 input[type=button]:hover,
.paragraph.bg--spot-2 input[type=button]:active, .paragraph.bg--spot-2 input[type=reset]:focus, .paragraph.bg--spot-2 input[type=reset]:hover, .paragraph.bg--spot-2 input[type=reset]:active, .paragraph.bg--spot-2 input[type=submit]:focus, .paragraph.bg--spot-2 input[type=submit]:hover, .paragraph.bg--spot-2 input[type=submit]:active {
  color: #25328a;
  background: transparent;
}

.button--secondary {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: transparent;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #6cbe99;
}
.button--secondary, .button--secondary:visited {
  color: #25328a;
}
.button--secondary:focus, .button--secondary:hover, .button--secondary:active {
  border: 0 none;
  color: #25328a;
  background: #6cbe99;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(108, 190, 153, 0);
}
.button--secondary:focus, .button--secondary:focus:hover {
  outline: 0;
}
.button--secondary.disabled, .button--secondary:disabled, .button--secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 .button--secondary {
  color: #fff;
}
.paragraph.bg--spot-3 .button--secondary {
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-3 .button--secondary:focus, .paragraph.bg--spot-3 .button--secondary:hover, .paragraph.bg--spot-3 .button--secondary:active {
  color: #fff;
  background: #25328a;
}

.button--negative {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: #fad0cd;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fad0cd;
}
.button--negative, .button--negative:visited {
  color: #25328a;
}
.button--negative:focus, .button--negative:hover, .button--negative:active {
  border: 0 none;
  color: #fff;
  background: transparent;
  outline: none;
  box-shadow: inset 0 0 0 2px true;
}
.button--negative:focus, .button--negative:focus:hover {
  outline: 0;
}
.button--negative.disabled, .button--negative:disabled, .button--negative[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.button--negative-secondary {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: transparent;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #6cbe99;
}
.button--negative-secondary, .button--negative-secondary:visited {
  color: #fff;
}
.button--negative-secondary:focus, .button--negative-secondary:hover, .button--negative-secondary:active {
  border: 0 none;
  color: #25328a;
  background: #6cbe99;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(108, 190, 153, 0);
}
.button--negative-secondary:focus, .button--negative-secondary:focus:hover {
  outline: 0;
}
.button--negative-secondary.disabled, .button--negative-secondary:disabled, .button--negative-secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

[id*=edit-cancel] {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: transparent;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #6cbe99;
}
[id*=edit-cancel], [id*=edit-cancel]:visited {
  color: #25328a;
}
[id*=edit-cancel]:focus, [id*=edit-cancel]:hover, [id*=edit-cancel]:active {
  border: 0 none;
  color: #25328a;
  background: #6cbe99;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(108, 190, 153, 0);
}
[id*=edit-cancel]:focus, [id*=edit-cancel]:focus:hover {
  outline: 0;
}
[id*=edit-cancel].disabled, [id*=edit-cancel]:disabled, [id*=edit-cancel][disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 [id*=edit-cancel] {
  color: #fff;
}
.paragraph.bg--spot-3 [id*=edit-cancel] {
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-3 [id*=edit-cancel]:focus, .paragraph.bg--spot-3 [id*=edit-cancel]:hover, .paragraph.bg--spot-3 [id*=edit-cancel]:active {
  color: #fff;
  background: #25328a;
}

.actions {
  margin-top: 0.625rem;
}
.actions .actions__divider,
.actions .button {
  display: block;
  margin-top: 0.625rem;
}
.actions .actions__divider {
  text-align: center;
}
@media (min-width: 768px) {
  .actions {
    margin-top: 0.625rem;
    margin-left: -0.625rem;
  }
  .actions .actions__divider {
    text-align: left;
  }
  .actions .actions__divider,
  .actions .button {
    display: inline-block;
    margin-left: 0.625rem;
  }
}

.text-long .cke-button,
.ck-editor__editable .cke-button,
.tab-item__content .cke-button {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: #fad0cd;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fad0cd;
}
.text-long .cke-button, .text-long .cke-button:visited,
.ck-editor__editable .cke-button,
.ck-editor__editable .cke-button:visited,
.tab-item__content .cke-button,
.tab-item__content .cke-button:visited {
  color: #25328a;
}
.text-long .cke-button:focus, .text-long .cke-button:hover, .text-long .cke-button:active,
.ck-editor__editable .cke-button:focus,
.ck-editor__editable .cke-button:hover,
.ck-editor__editable .cke-button:active,
.tab-item__content .cke-button:focus,
.tab-item__content .cke-button:hover,
.tab-item__content .cke-button:active {
  border: 0 none;
  color: #25328a;
  background: transparent;
  outline: none;
  box-shadow: inset 0 0 0 2px true;
}
.text-long .cke-button:focus, .text-long .cke-button:focus:hover,
.ck-editor__editable .cke-button:focus,
.ck-editor__editable .cke-button:focus:hover,
.tab-item__content .cke-button:focus,
.tab-item__content .cke-button:focus:hover {
  outline: 0;
}
.text-long .cke-button.disabled, .text-long .cke-button:disabled, .text-long .cke-button[disabled],
.ck-editor__editable .cke-button.disabled,
.ck-editor__editable .cke-button:disabled,
.ck-editor__editable .cke-button[disabled],
.tab-item__content .cke-button.disabled,
.tab-item__content .cke-button:disabled,
.tab-item__content .cke-button[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 .text-long .cke-button:focus, .paragraph.bg--spot-1 .text-long .cke-button:hover, .paragraph.bg--spot-1 .text-long .cke-button:active,
.paragraph.bg--spot-1 .ck-editor__editable .cke-button:focus,
.paragraph.bg--spot-1 .ck-editor__editable .cke-button:hover,
.paragraph.bg--spot-1 .ck-editor__editable .cke-button:active,
.paragraph.bg--spot-1 .tab-item__content .cke-button:focus,
.paragraph.bg--spot-1 .tab-item__content .cke-button:hover,
.paragraph.bg--spot-1 .tab-item__content .cke-button:active {
  color: #fff;
}
.paragraph.bg--spot-2 .text-long .cke-button,
.paragraph.bg--spot-2 .ck-editor__editable .cke-button,
.paragraph.bg--spot-2 .tab-item__content .cke-button {
  color: #fff;
  background: #25328a;
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-2 .text-long .cke-button:focus, .paragraph.bg--spot-2 .text-long .cke-button:hover, .paragraph.bg--spot-2 .text-long .cke-button:active,
.paragraph.bg--spot-2 .ck-editor__editable .cke-button:focus,
.paragraph.bg--spot-2 .ck-editor__editable .cke-button:hover,
.paragraph.bg--spot-2 .ck-editor__editable .cke-button:active,
.paragraph.bg--spot-2 .tab-item__content .cke-button:focus,
.paragraph.bg--spot-2 .tab-item__content .cke-button:hover,
.paragraph.bg--spot-2 .tab-item__content .cke-button:active {
  color: #25328a;
  background: transparent;
}
.text-long .cke-button--secondary,
.ck-editor__editable .cke-button--secondary,
.tab-item__content .cke-button--secondary {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: transparent;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #6cbe99;
}
.text-long .cke-button--secondary, .text-long .cke-button--secondary:visited,
.ck-editor__editable .cke-button--secondary,
.ck-editor__editable .cke-button--secondary:visited,
.tab-item__content .cke-button--secondary,
.tab-item__content .cke-button--secondary:visited {
  color: #25328a;
}
.text-long .cke-button--secondary:focus, .text-long .cke-button--secondary:hover, .text-long .cke-button--secondary:active,
.ck-editor__editable .cke-button--secondary:focus,
.ck-editor__editable .cke-button--secondary:hover,
.ck-editor__editable .cke-button--secondary:active,
.tab-item__content .cke-button--secondary:focus,
.tab-item__content .cke-button--secondary:hover,
.tab-item__content .cke-button--secondary:active {
  border: 0 none;
  color: #25328a;
  background: #6cbe99;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(108, 190, 153, 0);
}
.text-long .cke-button--secondary:focus, .text-long .cke-button--secondary:focus:hover,
.ck-editor__editable .cke-button--secondary:focus,
.ck-editor__editable .cke-button--secondary:focus:hover,
.tab-item__content .cke-button--secondary:focus,
.tab-item__content .cke-button--secondary:focus:hover {
  outline: 0;
}
.text-long .cke-button--secondary.disabled, .text-long .cke-button--secondary:disabled, .text-long .cke-button--secondary[disabled],
.ck-editor__editable .cke-button--secondary.disabled,
.ck-editor__editable .cke-button--secondary:disabled,
.ck-editor__editable .cke-button--secondary[disabled],
.tab-item__content .cke-button--secondary.disabled,
.tab-item__content .cke-button--secondary:disabled,
.tab-item__content .cke-button--secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 .text-long .cke-button--secondary,
.paragraph.bg--spot-1 .ck-editor__editable .cke-button--secondary,
.paragraph.bg--spot-1 .tab-item__content .cke-button--secondary {
  color: #fff;
}
.paragraph.bg--spot-3 .text-long .cke-button--secondary,
.paragraph.bg--spot-3 .ck-editor__editable .cke-button--secondary,
.paragraph.bg--spot-3 .tab-item__content .cke-button--secondary {
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-3 .text-long .cke-button--secondary:focus, .paragraph.bg--spot-3 .text-long .cke-button--secondary:hover, .paragraph.bg--spot-3 .text-long .cke-button--secondary:active,
.paragraph.bg--spot-3 .ck-editor__editable .cke-button--secondary:focus,
.paragraph.bg--spot-3 .ck-editor__editable .cke-button--secondary:hover,
.paragraph.bg--spot-3 .ck-editor__editable .cke-button--secondary:active,
.paragraph.bg--spot-3 .tab-item__content .cke-button--secondary:focus,
.paragraph.bg--spot-3 .tab-item__content .cke-button--secondary:hover,
.paragraph.bg--spot-3 .tab-item__content .cke-button--secondary:active {
  color: #fff;
  background: #25328a;
}
.text-long p .actions__divider,
.ck-editor__editable p .actions__divider,
.tab-item__content p .actions__divider {
  margin-right: 0.625rem;
}
.text-long p .cke-button,
.ck-editor__editable p .cke-button,
.tab-item__content p .cke-button {
  margin-top: 0.625rem;
  margin-right: 0.625rem;
  border-bottom: 0 none;
}
.text-long p .cke-button:last-child,
.ck-editor__editable p .cke-button:last-child,
.tab-item__content p .cke-button:last-child {
  margin-right: 0;
}
.text-long p .cke-button::before, .text-long p .cke-button::after,
.ck-editor__editable p .cke-button::before,
.ck-editor__editable p .cke-button::after,
.tab-item__content p .cke-button::before,
.tab-item__content p .cke-button::after {
  display: none;
}
.text-long p .cke-button--secondary,
.ck-editor__editable p .cke-button--secondary,
.tab-item__content p .cke-button--secondary {
  margin-top: 0.625rem;
  margin-right: 0.625rem;
  border-bottom: 0 none;
}
.text-long p .cke-button--secondary:last-child,
.ck-editor__editable p .cke-button--secondary:last-child,
.tab-item__content p .cke-button--secondary:last-child {
  margin-right: 0;
}
.text-long p .cke-button--secondary::before, .text-long p .cke-button--secondary::after,
.ck-editor__editable p .cke-button--secondary::before,
.ck-editor__editable p .cke-button--secondary::after,
.tab-item__content p .cke-button--secondary::before,
.tab-item__content p .cke-button--secondary::after {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  /**
  * Remove the outline on focused links when they are also active or hovered
  * in all browsers (opinionated).
  */
  /**
  * Target external links
  */
}
a, a:visited {
  color: #6099b3;
}
.bg--spot-1 a, .bg--spot-1 a:visited {
  color: #6cbe99;
}
.bg--spot-2 a, .bg--spot-3 a, .bg--spot-2 a:visited, .bg--spot-3 a:visited {
  color: #25328a;
}
a:focus, a:hover {
  color: #25328a;
}
.bg--spot-1 a:focus, .bg--spot-2 a:focus, .bg--spot-3 a:focus, .bg--spot-1 a:hover, .bg--spot-2 a:hover, .bg--spot-3 a:hover {
  color: #fff;
}
a:active {
  color: #92d5f6;
}
.bg--spot-1 a:active {
  color: #92d5f6;
}
.bg--spot-2 a:active, .bg--spot-3 a:active {
  color: #6099b3;
}
a::after, a::before {
  transition: all 0.3s ease-in-out;
}
a:focus, a:hover, a:active {
  outline-width: 0;
}
a[href*=http]::after {
  content: "\f35d";
  display: inline-block;
  margin: -0.0625rem 0 0 0.1875rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.75rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
}
a[href*=http]::after {
  position: relative;
  z-index: 10;
  transition: auto;
}

.more-link a {
  display: inline-block;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #6cbe99;
}
.more-link a::after {
  content: "\f105";
  display: inline-block;
  margin: 0.0625rem 0 0 0.3125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
}
.more-link a::after {
  display: inline-block;
  vertical-align: top;
  text-decoration: underline;
  line-height: inherit;
  transition: none;
}
.more-link a::after {
  text-decoration: none;
}
.more-link a:focus, .more-link a:hover {
  text-decoration: underline;
  color: #6cbe99;
}

.link--more {
  display: inline-block;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #6cbe99;
}
.link--more::after {
  content: "\f105";
  display: inline-block;
  margin: 0.0625rem 0 0 0.3125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
}
.link--more::after {
  display: inline-block;
  vertical-align: top;
  text-decoration: underline;
  line-height: inherit;
  transition: none;
}
.link--more::after {
  text-decoration: none;
}
.link--more:focus, .link--more:hover {
  text-decoration: underline;
  color: #6cbe99;
}

.link--more-big {
  display: inline-block;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #6cbe99;
  text-transform: none;
}
.link--more-big::after {
  content: "\f105";
  display: inline-block;
  margin: 0.0625rem 0 0 0.3125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
}
.link--more-big::after {
  display: inline-block;
  vertical-align: top;
  text-decoration: underline;
  line-height: inherit;
  transition: none;
}
.link--more-big::after {
  text-decoration: none;
}
.link--more-big:focus, .link--more-big:hover {
  text-decoration: underline;
  color: #6cbe99;
}
.link--more-big::after {
  content: none;
}

.back-link a {
  display: inline-block;
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
  color: #6cbe99;
}
.back-link a::before {
  content: "\f104";
  display: inline-block;
  margin: 0 0.625rem 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: inherit;
}
.back-link a::before {
  transition: none;
}
.back-link a:focus, .back-link a:hover {
  color: #6099b3;
}

.link--back {
  display: inline-block;
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
  color: #6cbe99;
}
.link--back::before {
  content: "\f104";
  display: inline-block;
  margin: 0 0.625rem 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: inherit;
}
.link--back::before {
  transition: none;
}
.link--back:focus, .link--back:hover {
  color: #6099b3;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

[onclick^="location.href="],
[onclick^="window.open"] {
  cursor: pointer;
}

.field--type-file {
  margin-top: 2.5rem;
}
.field--type-file .file {
  padding: 0;
}
.field--type-file .file a:not(.link--receive-paper) {
  cursor: pointer;
  display: inline-block;
  padding: 0.5625rem 1.375rem;
  border: 0 none;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  background: #fad0cd;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fad0cd;
}
.field--type-file .file a:not(.link--receive-paper), .field--type-file .file a:not(.link--receive-paper):visited {
  color: #25328a;
}
.field--type-file .file a:not(.link--receive-paper):focus, .field--type-file .file a:not(.link--receive-paper):hover, .field--type-file .file a:not(.link--receive-paper):active {
  border: 0 none;
  color: #25328a;
  background: transparent;
  outline: none;
  box-shadow: inset 0 0 0 2px true;
}
.field--type-file .file a:not(.link--receive-paper):focus, .field--type-file .file a:not(.link--receive-paper):focus:hover {
  outline: 0;
}
.field--type-file .file a:not(.link--receive-paper).disabled, .field--type-file .file a:not(.link--receive-paper):disabled, .field--type-file .file a:not(.link--receive-paper)[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.paragraph.bg--spot-1 .field--type-file .file a:not(.link--receive-paper):focus, .paragraph.bg--spot-1 .field--type-file .file a:not(.link--receive-paper):hover, .paragraph.bg--spot-1 .field--type-file .file a:not(.link--receive-paper):active {
  color: #fff;
}
.paragraph.bg--spot-2 .field--type-file .file a:not(.link--receive-paper) {
  color: #fff;
  background: #25328a;
  box-shadow: inset 0 0 0 2px #25328a;
}
.paragraph.bg--spot-2 .field--type-file .file a:not(.link--receive-paper):focus, .paragraph.bg--spot-2 .field--type-file .file a:not(.link--receive-paper):hover, .paragraph.bg--spot-2 .field--type-file .file a:not(.link--receive-paper):active {
  color: #25328a;
  background: transparent;
}
.field--type-file .file a:not(.link--receive-paper)::before {
  content: "\f33d";
  display: inline-block;
  margin: 0 0.625rem 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: inherit;
}
.field--type-file .file a:not(.link--receive-paper) + .additional-link {
  padding: 0 0.625rem;
}
.field--type-file .file a:not(.link--receive-paper) + .additional-link a {
  display: inline-block;
}
.field--type-file .icon {
  display: none;
}

.field--name-field-magazine-file .file a {
  color: #6cbe99;
}
.field--name-field-magazine-file .icon--file {
  transition: all 0.3s ease-in-out;
}
.field--name-field-magazine-file .icon--file::before {
  content: "\f1c1";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 300;
  color: #6cbe99;
}

.file-mimetype .icon::before {
  font-size: 1.875rem;
  color: #6cbe99;
}

.file {
  position: relative;
  display: block;
  padding-left: 1.25rem;
  background: none;
}
.file .icon {
  position: absolute;
  left: 0;
  top: -0.125rem;
  width: 0.875rem;
  text-align: center;
}
.file a {
  display: block;
}
.file a[href*=http]::after {
  content: none;
}

.icon--file {
  transition: all 0.3s ease-in-out;
}
.icon--file::before {
  content: "\f15b";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #313131;
}

.icon--image {
  transition: all 0.3s ease-in-out;
}
.icon--image::before {
  content: "\f1c5";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #313131;
}

.icon--pdf {
  transition: all 0.3s ease-in-out;
}
.icon--pdf::before {
  content: "\f1c1";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: #313131;
}

.icon--doc,
.icon--docx {
  transition: all 0.3s ease-in-out;
}
.icon--doc::before,
.icon--docx::before {
  content: "\f1c2";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: #313131;
}

.icon--xls,
.icon--xlsx {
  transition: all 0.3s ease-in-out;
}
.icon--xls::before,
.icon--xlsx::before {
  content: "\f1c3";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 400;
  color: #313131;
}

.list__item--download {
  font-size: 0.875rem;
  line-height: 1.125rem;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.list__item--download:focus, .list__item--download:hover {
  color: #fff;
  background-color: #25328a;
  box-shadow: 0 0 0 0.2em #25328a;
}
.list__item--download:focus .icon::before, .list__item--download:hover .icon::before {
  color: #fff;
}
.list__item--download .icon--file::before {
  content: "\f15b";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #25328a;
}
.list__item--download a,
.list__item--download a:visited {
  color: #25328a;
  transition: all 0.3s ease-in-out;
}
.list__item--download a:focus,
.list__item--download a:hover,
.list__item--download a:active {
  color: #fff;
}

.media--type-file.media--view-mode-embed {
  margin-bottom: 0.8125rem;
}
figure.align-center .media--type-file.media--view-mode-embed, .media--type-file.media--view-mode-embed.align-left, .media--type-file.media--view-mode-embed.align-right, .media--type-file.media--view-mode-embed.align-center {
  display: flex;
  justify-content: center;
  float: none;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .media--type-file.media--view-mode-embed.align-left {
    display: block;
    float: left;
    width: auto;
    margin: 0 0.9375rem 1.625rem 0;
  }
  .media--type-file.media--view-mode-embed.align-right {
    display: block;
    float: right;
    width: auto;
    margin: 0 0 1.625rem 0.9375rem;
  }
  .media--type-file.media--view-mode-embed.align-center {
    margin: 0 0 1.625rem 0;
  }
}
figure .media--type-file.media--view-mode-embed {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Arial", sans-serif;
}

.font-text-01-loaded h1,
.font-text-01-loaded h2,
.font-text-01-loaded h3,
.font-text-01-loaded h4,
.font-text-01-loaded h5,
.font-text-01-loaded h6,
.font-text-01-loaded .h1,
.font-text-01-loaded .h2,
.font-text-01-loaded .h3,
.font-text-01-loaded .h4,
.font-text-01-loaded .h5,
.font-text-01-loaded .h6 {
  font-family: "Source Sans Pro", "Arial", sans-serif;
  font-weight: 700;
}
.font-text-01-loaded h1 a,
.font-text-01-loaded h1 a:visited,
.font-text-01-loaded h2 a,
.font-text-01-loaded h2 a:visited,
.font-text-01-loaded h3 a,
.font-text-01-loaded h3 a:visited,
.font-text-01-loaded h4 a,
.font-text-01-loaded h4 a:visited,
.font-text-01-loaded h5 a,
.font-text-01-loaded h5 a:visited,
.font-text-01-loaded h6 a,
.font-text-01-loaded h6 a:visited,
.font-text-01-loaded .h1 a,
.font-text-01-loaded .h1 a:visited,
.font-text-01-loaded .h2 a,
.font-text-01-loaded .h2 a:visited,
.font-text-01-loaded .h3 a,
.font-text-01-loaded .h3 a:visited,
.font-text-01-loaded .h4 a,
.font-text-01-loaded .h4 a:visited,
.font-text-01-loaded .h5 a,
.font-text-01-loaded .h5 a:visited,
.font-text-01-loaded .h6 a,
.font-text-01-loaded .h6 a:visited {
  text-decoration: none;
  color: #6099b3;
}
.font-text-01-loaded h1 a:focus,
.font-text-01-loaded h1 a:hover,
.font-text-01-loaded h2 a:focus,
.font-text-01-loaded h2 a:hover,
.font-text-01-loaded h3 a:focus,
.font-text-01-loaded h3 a:hover,
.font-text-01-loaded h4 a:focus,
.font-text-01-loaded h4 a:hover,
.font-text-01-loaded h5 a:focus,
.font-text-01-loaded h5 a:hover,
.font-text-01-loaded h6 a:focus,
.font-text-01-loaded h6 a:hover,
.font-text-01-loaded .h1 a:focus,
.font-text-01-loaded .h1 a:hover,
.font-text-01-loaded .h2 a:focus,
.font-text-01-loaded .h2 a:hover,
.font-text-01-loaded .h3 a:focus,
.font-text-01-loaded .h3 a:hover,
.font-text-01-loaded .h4 a:focus,
.font-text-01-loaded .h4 a:hover,
.font-text-01-loaded .h5 a:focus,
.font-text-01-loaded .h5 a:hover,
.font-text-01-loaded .h6 a:focus,
.font-text-01-loaded .h6 a:hover {
  text-decoration: underline;
  color: #6099b3;
}

h1,
.h1 {
  margin: 0 0 3.125rem 0;
  font-size: 3.125rem;
  line-height: 3.625rem;
  color: #25328a;
}
@media (max-width: 939px) {
  h1,
  .h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h2,
.h2 {
  margin: 0 0 1.625rem 0;
  font-size: 1.875rem;
  line-height: 2.375rem;
  color: #25328a;
}

h3,
.h3 {
  margin: 0 0 0.9375rem 0;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #313131;
}

h4,
.h4 {
  margin: 0 0 0.9375rem 0;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #313131;
}

h5,
.h5 {
  margin: 0 0 0.3125rem 0;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #313131;
}

h6,
.h6 {
  margin: 0 0 0.3125rem 0;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #313131;
}

.text-long h2.no-margin,
.text-long h3.no-margin,
.text-long h4.no-margin,
.text-long h5.no-margin,
.text-long h6.no-margin {
  margin-bottom: 0;
}

mark,
.marker,
.highlight {
  display: inline-block;
  color: #181818;
  background-color: #ff0;
}

small,
.small {
  font-size: 0.75rem;
  line-height: 0.9375rem;
}

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

.text-long .text-align-right {
  text-align: right;
}
.text-long .text-align-center {
  text-align: center;
}
.text-long .text-align-justify {
  text-align: justify;
}
.text-long::after {
  clear: both;
  content: "";
  display: table;
}
.text-long p:last-child,
.text-long .p:last-child {
  margin-bottom: 0;
}
.text-long p.no-margin,
.text-long .p.no-margin {
  margin-bottom: 0;
}
.text-long blockquote,
.text-long .blockquote {
  position: relative;
  margin: 0 0 1.625rem 0;
  padding: 0;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-style: italic;
  color: #25328a;
  background-color: transparent;
}
.text-long blockquote::before,
.text-long .blockquote::before {
  content: "“";
  margin-right: 0.25rem;
}
.text-long blockquote::after,
.text-long .blockquote::after {
  content: "”";
  margin-left: -0.25rem;
}
.text-long blockquote p,
.text-long .blockquote p {
  display: inline;
}
.text-long blockquote:last-child,
.text-long .blockquote:last-child {
  margin-bottom: 0;
}
.text-long hr,
.text-long .hr {
  display: block;
  box-sizing: content-box;
  overflow: visible;
  margin: 1.625rem 0;
  padding: 0;
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #d1d1d1;
}
.text-long hr:last-child,
.text-long .hr:last-child {
  margin-bottom: 0;
}
.text-long pre,
.text-long .pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  margin: 0 0 1.625rem 0;
  padding: 0.9375rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.3125rem;
  font-family: monospace;
  font-size: 1em;
  white-space: pre-line;
  color: #313131;
  background-color: #fff;
}
.text-long pre:last-child,
.text-long .pre:last-child {
  margin-bottom: 0;
}
.text-long .text-with-checkmark::before {
  content: "\f058";
  display: inline-block;
  margin: 0 0 1.875rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 2rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 300;
  color: #6cbe99;
}
.text-long .text-with-checkmark::before {
  display: block;
}
@media (min-width: 940px) {
  .text-long .actions-separator {
    margin: 0 1.25rem;
  }
}

ul,
ol,
dl {
  margin: 0 0 0.9375rem 0;
}
ul ul, ul ol,
ol ul,
ol ol,
dl ul,
dl ol {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}
ul li,
ol li,
dl li {
  margin-bottom: 0.40625rem;
  list-style-position: inside;
}
ul li:last-child,
ol li:last-child,
dl li:last-child {
  margin-bottom: 0;
}

ul {
  padding: 0 0 0 1.25rem;
}

ol {
  padding: 0 0 0 1.5rem;
}

dl {
  padding: 0 0 0 1.5rem;
}
dl dt {
  margin-top: 0.9375rem;
}
dl dt:first-child {
  margin-top: 0;
}
dl dt + dd {
  margin-top: 0.9375rem;
}
dl dd {
  margin-bottom: 0.40625rem;
}

nav ul.clearfix::after {
  content: none;
}
nav ul,
nav ol {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul > li,
nav ol > li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.inline {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: -0.3125rem -0.3125rem 1.625rem -0.3125rem;
}
ul.inline li {
  display: inline-block;
  margin: 0.3125rem 0.3125rem 0 0.3125rem;
  padding: 0;
}

.filter-type ul:not(.inline),
.text-long ul:not(.inline),
.tab-item__content ul:not(.inline) {
  display: block;
  padding-left: 0;
  margin-left: 0;
  overflow: hidden;
}
.filter-type ul:not(.inline) > li,
.text-long ul:not(.inline) > li,
.tab-item__content ul:not(.inline) > li {
  position: relative;
  display: block;
  margin-bottom: 0.40625rem;
  list-style: none;
}
.filter-type ul:not(.inline) > li:last-child,
.text-long ul:not(.inline) > li:last-child,
.tab-item__content ul:not(.inline) > li:last-child {
  margin-bottom: 0;
}
.filter-type ul:not(.inline) > li,
.text-long ul:not(.inline) > li,
.tab-item__content ul:not(.inline) > li {
  padding-left: 1.1875rem;
}
.filter-type ul:not(.inline) > li::before,
.text-long ul:not(.inline) > li::before,
.tab-item__content ul:not(.inline) > li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.8125rem;
  display: block;
  margin-top: -1px;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #25328a;
}
.filter-type ul:not(.inline) > li ul li::before,
.text-long ul:not(.inline) > li ul li::before,
.tab-item__content ul:not(.inline) > li ul li::before {
  border: 1px solid #25328a;
  border-radius: 50%;
  background: transparent;
}
.filter-type ul:not(.inline) > li ul li li::before,
.text-long ul:not(.inline) > li ul li li::before,
.tab-item__content ul:not(.inline) > li ul li li::before {
  border: 0 none;
  border-radius: 0;
  background: #25328a;
}
.filter-type ul:not(.inline) p,
.text-long ul:not(.inline) p,
.tab-item__content ul:not(.inline) p {
  margin-bottom: 0.9375rem;
}
.filter-type ol,
.text-long ol,
.tab-item__content ol {
  display: block;
  padding-left: 0;
  margin-left: 0;
  counter-reset: listStyle1;
  overflow: hidden;
}
.filter-type ol > li,
.text-long ol > li,
.tab-item__content ol > li {
  position: relative;
  display: block;
  margin-bottom: 0.40625rem;
  list-style: none;
}
.filter-type ol > li:last-child,
.text-long ol > li:last-child,
.tab-item__content ol > li:last-child {
  margin-bottom: 0;
}
.filter-type ol > li,
.text-long ol > li,
.tab-item__content ol > li {
  padding-left: 1.625rem;
  counter-increment: listStyle1;
}
.filter-type ol > li::before,
.text-long ol > li::before,
.tab-item__content ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(listStyle1) ".";
  font-family: "Source Sans Pro", "Arial", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #25328a;
}
.filter-type ol > li ol,
.text-long ol > li ol,
.tab-item__content ol > li ol {
  counter-reset: listStyle2;
}
.filter-type ol > li ol > li,
.text-long ol > li ol > li,
.tab-item__content ol > li ol > li {
  counter-increment: listStyle2;
}
.filter-type ol > li ol > li::before,
.text-long ol > li ol > li::before,
.tab-item__content ol > li ol > li::before {
  content: counter(listStyle2, lower-alpha) ".";
}
.filter-type ol > li ol > li > ol,
.text-long ol > li ol > li > ol,
.tab-item__content ol > li ol > li > ol {
  counter-reset: listStyle3;
}
.filter-type ol > li ol > li > ol > li,
.text-long ol > li ol > li > ol > li,
.tab-item__content ol > li ol > li > ol > li {
  counter-increment: listStyle3;
}
.filter-type ol > li ol > li > ol > li::before,
.text-long ol > li ol > li > ol > li::before,
.tab-item__content ol > li ol > li > ol > li::before {
  content: counter(listStyle3, lower-roman) ".";
}
.filter-type ol p,
.text-long ol p,
.tab-item__content ol p {
  margin-bottom: 0.9375rem;
}
.filter-type ul:not(.inline),
.filter-type ol,
.text-long ul:not(.inline),
.text-long ol,
.tab-item__content ul:not(.inline),
.tab-item__content ol {
  text-align: left;
}
.filter-type ul:not(.inline).is-horizontal,
.filter-type ol.is-horizontal,
.text-long ul:not(.inline).is-horizontal,
.text-long ol.is-horizontal,
.tab-item__content ul:not(.inline).is-horizontal,
.tab-item__content ol.is-horizontal {
  margin-right: -1.875rem;
}
.filter-type ul:not(.inline).is-horizontal li,
.filter-type ol.is-horizontal li,
.text-long ul:not(.inline).is-horizontal li,
.text-long ol.is-horizontal li,
.tab-item__content ul:not(.inline).is-horizontal li,
.tab-item__content ol.is-horizontal li {
  display: inline-block;
  margin-right: 1.875rem;
}
.filter-type ul:not(.inline):last-child,
.filter-type ol:last-child,
.text-long ul:not(.inline):last-child,
.text-long ol:last-child,
.tab-item__content ul:not(.inline):last-child,
.tab-item__content ol:last-child {
  margin-bottom: 0;
}
.filter-type ul:not(.inline).no-margin,
.filter-type ol.no-margin,
.text-long ul:not(.inline).no-margin,
.text-long ol.no-margin,
.tab-item__content ul:not(.inline).no-margin,
.tab-item__content ol.no-margin {
  margin-bottom: 0;
}
.filter-type li > ol:last-child,
.filter-type li > ul:not(.inline):last-child,
.text-long li > ol:last-child,
.text-long li > ul:not(.inline):last-child,
.tab-item__content li > ol:last-child,
.tab-item__content li > ul:not(.inline):last-child {
  margin-bottom: 0.9375rem;
}

img {
  display: block;
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.text-long::after,
.tab-item__content::after {
  clear: both;
  content: "";
  display: table;
}
.text-long img, .text-long img.align-left, .text-long img.align-right, .text-long img.align-center,
.text-long figure,
.text-long figure.align-left,
.text-long figure.align-right,
.text-long figure.align-center,
.text-long [data-entity-type=media],
.text-long [data-entity-type=media].align-left,
.text-long [data-entity-type=media].align-right,
.text-long [data-entity-type=media].align-center,
.tab-item__content img,
.tab-item__content img.align-left,
.tab-item__content img.align-right,
.tab-item__content img.align-center,
.tab-item__content figure,
.tab-item__content figure.align-left,
.tab-item__content figure.align-right,
.tab-item__content figure.align-center,
.tab-item__content [data-entity-type=media],
.tab-item__content [data-entity-type=media].align-left,
.tab-item__content [data-entity-type=media].align-right,
.tab-item__content [data-entity-type=media].align-center {
  display: block;
  float: none;
  margin: 0 0 1.875rem 0;
  max-width: 100%;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .text-long img.align-left,
  .text-long figure.align-left,
  .text-long [data-entity-type=media].align-left,
  .tab-item__content img.align-left,
  .tab-item__content figure.align-left,
  .tab-item__content [data-entity-type=media].align-left {
    float: left;
    margin: 0 1.875rem 1.875rem 0;
  }
  .text-long img.align-right,
  .text-long figure.align-right,
  .text-long [data-entity-type=media].align-right,
  .tab-item__content img.align-right,
  .tab-item__content figure.align-right,
  .tab-item__content [data-entity-type=media].align-right {
    float: right;
    margin: 0 0 1.875rem 1.875rem;
  }
  .text-long img.align-center,
  .text-long figure.align-center,
  .text-long [data-entity-type=media].align-center,
  .tab-item__content img.align-center,
  .tab-item__content figure.align-center,
  .tab-item__content [data-entity-type=media].align-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.text-long figure.align-center img,
.text-long [data-entity-type=media].align-center img,
.tab-item__content figure.align-center img,
.tab-item__content [data-entity-type=media].align-center img {
  margin: 0 auto;
}
.text-long figure img,
.text-long [data-entity-type=media] img,
.tab-item__content figure img,
.tab-item__content [data-entity-type=media] img {
  float: none;
  padding: 0;
}
.text-long figcaption,
.tab-item__content figcaption {
  margin-top: 0.625rem;
  display: block;
  text-align: center;
  font-style: italic;
  color: #707070;
}

.icons-demo {
  display: flex;
}
.icons-demo .icon {
  height: 100px;
  padding: 0.625rem;
  width: 100px;
}
.icons-demo pre {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  background-color: var(--c-off-white);
}

.icons-demo__item {
  margin: 0.625rem;
  border: 1px solid var(--c-off-white);
}

.form__group--checkboxes,
.form__group--radios {
  margin-bottom: 1.625rem;
  width: 100%;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  top: 0.5rem;
  display: inline-block;
  margin: 0 0.625rem 0 0;
  padding: 0;
  border: 1px solid #d9dada;
  border-radius: 0;
  vertical-align: top;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
input[type=radio]:hover, input[type=radio]:focus,
input[type=checkbox]:hover,
input[type=checkbox]:focus {
  cursor: pointer;
  outline: 0;
  border-color: #3041b2;
}
input[type=radio]:disabled,
input[type=checkbox]:disabled {
  opacity: 0.5;
  background: #fff;
}
input[type=radio]:disabled:focus, input[type=radio]:disabled:hover,
input[type=checkbox]:disabled:focus,
input[type=checkbox]:disabled:hover {
  cursor: default;
  border-color: #313131;
}
input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline;
  font-weight: 400;
}
input[type=radio] + label .form__label__not-required,
input[type=checkbox] + label .form__label__not-required {
  display: none;
}

input[type=checkbox] {
  background-color: #fff;
  width: 0.75rem;
  height: 0.75rem;
  transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
}
input[type=checkbox]::-ms-check {
  color: transparent;
}
input[type=checkbox] + label::before {
  content: "\f00c";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.75rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #25328a;
}
input[type=checkbox] + label::before {
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  opacity: 0;
}
input[type=checkbox]:checked + label::before {
  opacity: 1;
  transition: opacity ease-in-out 0.1s;
}
input[type=checkbox]:disabled:checked + label::before {
  color: rgba(146, 213, 246, 0.5);
}

.form__element.form-type--checkbox,
.form__element.form-type--radio {
  position: relative;
  padding-left: 1.25rem;
}
.form__element.form-type--checkbox .form__label,
.form__element.form-type--radio .form__label {
  cursor: pointer;
}
.form__element.form-type--checkbox input[type=checkbox],
.form__element.form-type--checkbox input[type=radio],
.form__element.form-type--radio input[type=checkbox],
.form__element.form-type--radio input[type=radio] {
  position: absolute;
  left: 0;
  top: 0.4375rem;
}
.form__element.form-type--checkbox input[type=checkbox] + label::before,
.form__element.form-type--radio input[type=checkbox] + label::before {
  position: absolute;
  left: -1.125rem;
}

.checkboxes--wrapper .form__element.form-type--checkbox {
  margin-bottom: 0.3125rem;
}

.main .form-actions button,
.main .form-actions input[type=submit],
.main .form-actions [id*=edit-cancel] {
  width: 100%;
  margin-top: 0.9375rem;
}
.main .form-actions button:first-child,
.main .form-actions input[type=submit]:first-child,
.main .form-actions [id*=edit-cancel]:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .main .form-actions button,
  .main .form-actions input[type=submit],
  .main .form-actions [id*=edit-cancel] {
    width: auto;
    margin-top: 0;
    margin-right: 0.9375rem;
  }
  .main .form-actions button:first-child,
  .main .form-actions input[type=submit]:first-child,
  .main .form-actions [id*=edit-cancel]:first-child {
    margin-top: 0;
  }
}
details {
  border: 1px solid #d1d1d1;
}
details summary {
  padding: 0.5rem 0.9375rem;
  color: #313131;
  background: #d1d1d1;
}
details summary:focus {
  outline: none;
}
details .details-wrapper {
  padding: 0.625rem 0.9375rem 0;
}

summary {
  cursor: pointer;
}

.details-description {
  margin-bottom: 1.625rem;
}

.details__error-message {
  margin-bottom: 1.625rem;
  color: #e74c3c;
}

legend {
  display: block;
  font-size: 1.5rem;
  line-height: 2.0625rem;
  font-weight: 700;
  white-space: normal;
  color: #313131;
}

fieldset,
.form-fieldset {
  margin: 0 0 1.625rem 0;
  padding: 0.625rem 1.25rem;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}
fieldset legend,
.form-fieldset legend {
  display: table;
  box-sizing: border-box;
  padding: 0 0.625rem;
  margin-left: -0.625rem;
  max-width: 100%;
  width: auto;
}
.bg--spot-1 fieldset legend,
.bg--spot-1 .form-fieldset legend {
  color: #fff;
}
.bg--spot-2 fieldset, .bg--spot-3 fieldset,
.bg--spot-2 .form-fieldset,
.bg--spot-3 .form-fieldset {
  border-color: #313131;
}

.fieldset__error-message {
  margin-bottom: 1.625rem;
  color: #e74c3c;
}

.form__element {
  margin-bottom: 1.625rem;
  width: 100%;
}
.form__element::after {
  clear: both;
  content: "";
  display: table;
}
.form__element .field-suffix,
.form__element .admin-link {
  display: block;
}
.form__element .admin-link {
  margin-top: 0.625rem;
}

.form__element--prefix,
.form__element--suffix {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form__element--prefix .form__element__description,
.form__element--suffix .form__element__description {
  width: 100%;
}

.form__element__prefix {
  margin-right: 0.625rem;
}

.form__element__suffix {
  margin-left: 0.625rem;
}

form small,
form .description,
.form__element__description,
.password-suggestions,
.webform-component--mandatory-fields p,
.form__element ~ p {
  display: block;
  margin-top: 0.9375rem;
  color: #707070;
  font-size: 0.75rem;
  line-height: 0.9375rem;
}
form small ul,
form .description ul,
.form__element__description ul,
.password-suggestions ul,
.webform-component--mandatory-fields p ul,
.form__element ~ p ul {
  display: block;
  padding-left: 0;
  margin-left: 0;
  overflow: hidden;
  padding-left: 0;
}
form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  position: relative;
  display: block;
  margin-bottom: 0.40625rem;
  list-style: none;
}
form small ul > li:last-child,
form .description ul > li:last-child,
.form__element__description ul > li:last-child,
.password-suggestions ul > li:last-child,
.webform-component--mandatory-fields p ul > li:last-child,
.form__element ~ p ul > li:last-child {
  margin-bottom: 0;
}
form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  padding-left: 1.1875rem;
}
form small ul > li::before,
form .description ul > li::before,
.form__element__description ul > li::before,
.password-suggestions ul > li::before,
.webform-component--mandatory-fields p ul > li::before,
.form__element ~ p ul > li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.8125rem;
  display: block;
  margin-top: -1px;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #25328a;
}
form small ul > li ul li::before,
form .description ul > li ul li::before,
.form__element__description ul > li ul li::before,
.password-suggestions ul > li ul li::before,
.webform-component--mandatory-fields p ul > li ul li::before,
.form__element ~ p ul > li ul li::before {
  border: 1px solid #25328a;
  border-radius: 50%;
  background: transparent;
}
form small ul > li ul li li::before,
form .description ul > li ul li li::before,
.form__element__description ul > li ul li li::before,
.password-suggestions ul > li ul li li::before,
.webform-component--mandatory-fields p ul > li ul li li::before,
.form__element ~ p ul > li ul li li::before {
  border: 0 none;
  border-radius: 0;
  background: #25328a;
}
form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  margin-top: 0.375rem;
  padding-left: 0.75rem;
}
form small ul > li::before,
form .description ul > li::before,
.form__element__description ul > li::before,
.password-suggestions ul > li::before,
.webform-component--mandatory-fields p ul > li::before,
.form__element ~ p ul > li::before {
  top: 0.3125rem;
  font-size: 4px;
}

.form__label {
  display: block;
  transition: all 0.3s ease-in-out;
}

.form__label__required {
  display: none;
}
.js-form-required .form__label__required {
  display: inline-block;
  text-decoration: none;
}

.form__label__not-required {
  float: right;
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.625rem;
  color: #d1d1d1;
}
.js-form-required .form__label__not-required {
  display: none;
}
.bg--spot-2 .form__label__not-required, .bg--spot-3 .form__label__not-required {
  color: #313131;
}

.form__element--error .form__label {
  color: #e74c3c;
}

input:not([type]), input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.5rem 0.625rem;
  width: 100%;
  border: 1px solid #d9dada;
  border-radius: 5px;
  color: #313131;
  background: #fff;
  outline: none;
  transition: all 0.3s ease-in-out;
}
input:not([type])::-moz-placeholder, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden])::-moz-placeholder, textarea::-moz-placeholder {
  color: #d1d1d1;
  opacity: 1;
}
input:not([type])::placeholder, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden])::placeholder,
textarea::placeholder {
  color: #d1d1d1;
  opacity: 1;
}
input:not([type]):focus, input:not([type]):focus:hover, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden]):focus, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden]):focus:hover,
textarea:focus,
textarea:focus:hover {
  border-color: #3041b2;
  outline: 0;
}
input:not([type])[disabled], input:not([type]):disabled, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden])[disabled], input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden]):disabled,
textarea[disabled],
textarea:disabled {
  opacity: 0.5;
  border-color: #e5e5e5;
  color: #e5e5e5;
  background: #fff;
}
input:not([type]).error, input:not([type=range]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=button]):not([type=reset]):not([type=submit]):not([type=hidden]).error,
textarea.error {
  border-color: #e74c3c;
  color: #e74c3c;
}

input.error {
  color: #e74c3c;
}

input.admin-menu-search {
  height: auto;
}

input[type=radio] {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s, box-shadow ease-in-out 0.1s;
}
input[type=radio]:checked {
  background: #25328a;
  box-shadow: inset 0 0 0 1px #fff;
}
input[type=radio]:disabled:checked {
  background: #e5e5e5;
  box-shadow: inset 0 0 0 3px #fff;
}

.radios--wrapper .form__element.form-type--radio {
  margin-bottom: 0.3125rem;
}

input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 0.3125rem;
  border: 1px solid #ddf3fc;
  border-radius: 0.3125rem;
  background-color: #ddf3fc;
}
input[type=range]::-webkit-slider-thumb {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #d9dada;
  border-radius: 0.1875rem;
  background-color: #fff;
}
input[type=range]:focus, input[type=range]:focus:hover {
  outline: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  height: 2.75rem;
  width: 100%;
  padding: 0 2.5rem 0 0.625rem;
  border: 1px solid #d9dada;
  border-radius: 5px;
  line-height: 2.625rem;
  color: #313131;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #313131 50%), linear-gradient(135deg, #313131 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 15px) 18px, calc(100% - 2.5em) 8px;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
select::-ms-expand {
  display: none;
}
select:focus, select:focus:hover {
  border-color: #3041b2;
  outline: 0;
}
select:disabled, select[disabled] {
  border-color: #e5e5e5;
  border-style: dashed;
  color: #e5e5e5;
  background: #fff;
  opacity: 0.5;
}

.form__dropdown {
  position: relative;
}
.form__dropdown select {
  background-image: none;
}
.form__dropdown::after {
  content: "\f078";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.875rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #92d5f6;
}
.form__dropdown::after {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* stylelint-disable */
form .select2-container--default .select2-selection--single {
  height: 2.75rem;
  width: 100%;
  padding: 0 2.5rem 0 0.625rem;
  border: 1px solid #d9dada;
  border-radius: 5px;
  line-height: 2.625rem;
}
form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.625rem;
}
form .select2-container--default .select2-selection__arrow {
  display: none;
}
form .select2-container--default .select2-selection--multiple {
  min-height: 0;
  padding: 1.4375rem 1.25rem 0.375rem 1.25rem;
  border: 1px solid #d9dada;
  border-radius: 0;
  line-height: 0;
}
form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin-left: -0.3125rem;
}
form .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin-bottom: 0;
}
form .select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
  line-height: 1.5;
}
form .select2-container--default .select2-selection--multiple input[type=search] {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 none !important;
}
form .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #3041b2;
}
form .select2-container--default.select2-container--disabled .select2-selection--multiple {
  border-color: #e5e5e5;
}

/* stylelint-enable */
textarea {
  resize: vertical;
  overflow: auto;
  min-height: 8.75rem;
}

.form-textarea-wrapper {
  display: block;
}
.form-textarea-wrapper .grippie {
  display: none;
}

.webform-document-file .button {
  margin-top: 0.625rem;
}

.form-managed-file button {
  margin-top: 0.625rem;
}

@media (min-width: 768px) {
  .webform-document-file {
    display: flex;
    flex-wrap: wrap;
  }
  .webform-document-file .description {
    flex: 1 1 auto;
  }
  .webform-document-file .button {
    margin-left: 0.625rem;
    margin-top: 0;
  }
  .file-upload-wrapper {
    flex-grow: 1;
    width: auto;
  }
  .form-managed-file {
    display: flex;
    flex-wrap: nowrap;
  }
  .form-managed-file button {
    margin-top: 0;
    margin-left: 0.625rem;
  }
}
table {
  table-layout: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.is-striped tbody tr:nth-child(odd) {
  background: #f4fbfe;
}

th {
  padding: 0.625rem;
  border-right: 2px solid #92d5f6;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

td {
  padding: 0.625rem;
  vertical-align: top;
}

thead th,
tfoot th {
  border-bottom: 2px solid #92d5f6;
  border-right: 0;
}

tbody td {
  padding: 0.625rem;
}

tr.odd {
  background: #f4fbfe;
}

caption {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  text-align: left;
  font-style: italic;
  color: #707070;
}

@media (max-width: 767px) {
  .table-responsive.is-reformatted {
    /* Force table to not be like tables anymore */
  }
  .table-responsive.is-reformatted caption {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #d1d1d1;
  }
  .table-responsive.is-reformatted table,
  .table-responsive.is-reformatted thead,
  .table-responsive.is-reformatted tbody,
  .table-responsive.is-reformatted th,
  .table-responsive.is-reformatted td,
  .table-responsive.is-reformatted tr {
    display: block;
  }
  .table-responsive.is-reformatted thead {
    border: 0 none;
    background: transparent;
  }
  .table-responsive.is-reformatted thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-responsive.is-reformatted tr {
    border: 0 none;
  }
  .table-responsive.is-reformatted tr.odd td {
    border-bottom: 1px solid #fff;
  }
  .table-responsive.is-reformatted td {
    /* Behave  like a "row" */
    position: relative;
    border: none;
    border-bottom: 1px solid #d1d1d1;
  }
  .table-responsive.is-reformatted td::before {
    content: attr(data-title) ": ";
    /* Now like a table header */
    /* Top/left values mimic padding */
    display: block;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
  .table-responsive.is-reformatted table.no-th td {
    position: static;
    width: auto;
  }
  .table-responsive.is-reformatted table.no-th td::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .table-responsive.has-scroll {
    position: relative;
    margin-bottom: 2.625rem;
    border: 1px solid #d1d1d1;
  }
  .table-responsive.has-scroll table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    empty-cells: show;
    margin-bottom: 0;
    border: 0 none;
  }
  .table-responsive.has-scroll.js-table--no-th {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: 0.01%;
  }
  .table-responsive.has-scroll.js-table--th-row {
    overflow: hidden;
  }
  .table-responsive.has-scroll.js-table--th-row table {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .table-responsive.has-scroll.js-table--th-row thead {
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-row thead tr {
    display: flex;
    flex-direction: column;
  }
  .table-responsive.has-scroll.js-table--th-row thead tr:last-child {
    border-bottom: 0 none;
  }
  .table-responsive.has-scroll.js-table--th-row thead th,
  .table-responsive.has-scroll.js-table--th-row thead td {
    display: block;
    overflow: hidden;
    min-height: 6.25rem;
    text-overflow: ellipsis;
    word-wrap: normal;
    border-left: 1px solid #25328a;
    border-right: 1px solid #25328a;
    border-bottom: 1px solid white;
  }
  .table-responsive.has-scroll.js-table--th-row tbody {
    display: flex;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100vw - 120px - 40px);
  }
  .table-responsive.has-scroll.js-table--th-row tbody tr {
    display: flex;
    flex-direction: column;
  }
  .table-responsive.has-scroll.js-table--th-row tbody th,
  .table-responsive.has-scroll.js-table--th-row tbody td {
    display: block;
    min-height: 6.25rem;
  }
  .table-responsive.has-scroll.js-table--th-top thead {
    left: 0;
  }
  .table-responsive.has-scroll.js-table--th-top tbody {
    margin-left: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-bottom thead {
    right: 0;
  }
  .table-responsive.has-scroll.js-table--th-bottom tbody {
    margin-right: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-col table {
    display: block;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    width: 100%;
  }
  .table-responsive.has-scroll.js-table--th-col tbody {
    position: static;
  }
  .table-responsive.has-scroll.js-table--th-col tr {
    position: static;
  }
  .table-responsive.has-scroll.js-table--th-col tr:last-child .th__content {
    border-bottom: 0 none;
  }
  .table-responsive.has-scroll.js-table--th-col th {
    padding: 0;
    width: 0;
    border: 0;
    background: transparent none;
  }
  .table-responsive.has-scroll.js-table--th-col .th__content {
    position: absolute;
    width: 7.5rem;
    padding: 0.625rem;
    border-bottom: 1px solid #fff;
    background: #25328a;
  }
  .table-responsive.has-scroll.js-table--th-left {
    padding-left: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-left .th__content {
    left: 0;
  }
  .table-responsive.has-scroll.js-table--th-right {
    padding-right: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-right .th__content {
    right: 0;
  }
}
@media (min-width: 768px) {
  .table-responsive.has-scroll {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: 0.01%;
  }
}

.text-long table,
.tab-item__content table {
  margin-bottom: 1.625rem;
}
.text-long table.no-margin,
.tab-item__content table.no-margin {
  margin-bottom: 0;
}

.tabs__link {
  display: block;
  padding: 0.625rem 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.125rem;
  background-color: #e5e5e5;
}
.tabs__link, .tabs__link:visited {
  color: #fff;
  background-color: #e5e5e5;
}
.tabs__link:focus, .tabs__link:hover {
  color: #fff;
  background-color: #6099b3;
}
.tabs__link.is-active {
  color: #fff;
  background-color: #6099b3;
}

@media (min-width: 768px) {
  .tabs li {
    display: inline-block;
  }
  .tabs__link {
    display: inline-block;
    border-top: 0 none;
  }
  .tabs__link.is-active {
    color: #6099b3;
    background-color: #fff;
  }
}
.ajax-progress-throbber {
  position: relative;
  display: inline-block;
  align-self: center;
  height: 1.25rem;
  width: 1.25rem;
}
.ajax-progress-throbber .throbber {
  display: block;
  height: 0.9375rem;
  width: 0.9375rem;
  border: 3px solid rgba(37, 50, 138, 0.2);
  border-top-color: #25328a;
  border-radius: 100%;
  background-image: none;
  animation: spin 1s infinite linear;
  pointer-events: none;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.block--type-section-title h2 {
  color: #313131;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  src: url("../fonts/FontAwesome/fa-solid-900.woff2") format("woff2"), url("../fonts/FontAwesome/fa-solid-900.woff") format("woff");
  font-display: swap;
}
/* latin */
@font-face {
  font-family: "Source Sans Pro";
  font-weight: 400;
  src: url("../fonts/SourceSansPro/source-sans-pro-italic.woff2") format("woff2"), url("../fonts/SourceSansPro/source-sans-pro-italic.woff") format("woff");
  font-display: swap;
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
/* latin */
@font-face {
  font-family: "Source Sans Pro";
  font-weight: 400;
  src: url("../fonts/SourceSansPro/source-sans-pro-regular.woff2") format("woff2"), url("../fonts/SourceSansPro/source-sans-pro-regular.woff") format("woff");
  font-display: swap;
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
@font-face {
  font-family: "Source Sans Pro";
  font-weight: 700;
  src: url("../fonts/SourceSansPro/source-sans-pro-bold.woff2") format("woff2"), url("../fonts/SourceSansPro/source-sans-pro-bold.woff") format("woff");
  font-display: swap;
  unicode-range: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD";
}
.language-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-family: "Source Sans Pro", "Arial", sans-serif;
  background-color: #f4fbfe;
}

.language-choice__inner {
  width: 100%;
  padding: 0 1.25rem;
}

.language-choice__main-title {
  max-width: 34.375rem;
  margin: 0 auto 3.75rem auto;
  text-align: center;
  font-family: "Source Sans Pro", "Arial", sans-serif;
}

.language-choice__item {
  position: relative;
  margin: 0 0 1.25rem 0;
  padding: 1.25rem 1.875rem;
  border: 2px solid #92d5f6;
  border-radius: 3px;
  text-align: center;
  background-color: #fff;
}

.language-choice__item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}

.language-choice__item__image {
  display: block;
  width: 4.375rem;
  height: auto;
  padding: 0.625rem;
}

.language-choice__item__title {
  font-size: 1.4375rem;
  line-height: 1.875rem;
  font-weight: 700;
}

.language-choice__item__button {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  color: #25328a;
}
.language-choice__item__button::after {
  content: "\f054";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.875rem;
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  color: #25328a;
}
.language-choice__item__button::after {
  margin: 0 0 0 0.4375rem;
  vertical-align: baseline;
}
.language-choice__item__button:visited {
  color: #25328a;
}

.language-choice__item__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

@media (min-width: 768px) {
  .language-choice__items {
    display: flex;
    justify-content: center;
  }
  .language-choice__item {
    width: 16.875rem;
    margin: 0 0.9375rem;
    padding: 1.5625rem 2.5rem;
  }
  .language-choice__item:focus, .language-choice__item:hover {
    background-color: #92d5f6;
  }
  .language-choice__item:focus .logo-hover, .language-choice__item:hover .logo-hover {
    fill: #fff;
  }
  .language-choice__item-inner {
    flex-direction: column;
    margin-bottom: 1.875rem;
  }
  .language-choice__item__image {
    width: 6.25rem;
    margin: 0 auto;
  }
}