@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

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

* {
  font: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
  max-height: 100vh;
}

body {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg, white);
  max-height: 100vh;
  font-family: 'Cardo', serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

button,
input,
textarea,
select {
  margin: 0;
}

.btn,
.form-control,
.link,
.reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  max-width: 100%;
}

[data-theme] {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg, #fff);
  color: hsl(240, 4%, 20%);
  color: var(--color-contrast-high, #313135);
}

:root {
  --space-unit: 1em;
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
  --component-padding: var(--space-md);
}

:root {
  --max-width-xxs: 32rem;
  --max-width-xs: 38rem;
  --max-width-sm: 48rem;
  --max-width-md: 64rem;
  --max-width-lg: 80rem;
  --max-width-xl: 90rem;
  --max-width-xxl: 120rem;
}

.container {
  width: calc(100% - 1.25em);
  width: calc(100% - 2 * var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxs {
  max-width: 32rem;
  max-width: var(--max-width-xxs);
}

.max-width-xs {
  max-width: 38rem;
  max-width: var(--max-width-xs);
}

.max-width-sm {
  max-width: 48rem;
  max-width: var(--max-width-sm);
}

.max-width-md {
  max-width: 64rem;
  max-width: var(--max-width-md);
}

.max-width-lg {
  max-width: 80rem;
  max-width: var(--max-width-lg);
}

.max-width-xl {
  max-width: 90rem;
  max-width: var(--max-width-xl);
}

.max-width-xxl {
  max-width: 120rem;
  max-width: var(--max-width-xxl);
}

.max-width-adaptive-sm {
  max-width: 38rem;
  max-width: var(--max-width-xs);
}

@media (min-width: 64rem) {
  .max-width-adaptive-sm {
    max-width: 48rem;
    max-width: var(--max-width-sm);
  }
}

.max-width-adaptive-md {
  max-width: 38rem;
  max-width: var(--max-width-xs);
}

@media (min-width: 64rem) {
  .max-width-adaptive-md {
    max-width: 64rem;
    max-width: var(--max-width-md);
  }
}

.max-width-adaptive,
.max-width-adaptive-lg {
  max-width: 38rem;
  max-width: var(--max-width-xs);
}

@media (min-width: 64rem) {

  .max-width-adaptive,
  .max-width-adaptive-lg {
    max-width: 64rem;
    max-width: var(--max-width-md);
  }
}

@media (min-width: 90rem) {

  .max-width-adaptive,
  .max-width-adaptive-lg {
    max-width: 80rem;
    max-width: var(--max-width-lg);
  }
}

.max-width-adaptive-xl {
  max-width: 38rem;
  max-width: var(--max-width-xs);
}

@media (min-width: 64rem) {
  .max-width-adaptive-xl {
    max-width: 64rem;
    max-width: var(--max-width-md);
  }
}

@media (min-width: 90rem) {
  .max-width-adaptive-xl {
    max-width: 90rem;
    max-width: var(--max-width-xl);
  }
}

.grid {
  --grid-gap: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid>* {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

[class*="grid-gap"] {
  margin-bottom: 1em * -1;
  margin-bottom: calc(var(--grid-gap, 1em) * -1);
  margin-right: 1em * -1;
  margin-right: calc(var(--grid-gap, 1em) * -1);
}

[class*="grid-gap"]>* {
  margin-bottom: 1em;
  margin-bottom: var(--grid-gap, 1em);
  margin-right: 1em;
  margin-right: var(--grid-gap, 1em);
}

.grid-gap-xxxxs {
  --grid-gap: var(--space-xxxxs);
}

.grid-gap-xxxs {
  --grid-gap: var(--space-xxxs);
}

.grid-gap-xxs {
  --grid-gap: var(--space-xxs);
}

.grid-gap-xs {
  --grid-gap: var(--space-xs);
}

.grid-gap-sm {
  --grid-gap: var(--space-sm);
}

.grid-gap-md {
  --grid-gap: var(--space-md);
}

.grid-gap-lg {
  --grid-gap: var(--space-lg);
}

.grid-gap-xl {
  --grid-gap: var(--space-xl);
}

.grid-gap-xxl {
  --grid-gap: var(--space-xxl);
}

.grid-gap-xxxl {
  --grid-gap: var(--space-xxxl);
}

.grid-gap-xxxxl {
  --grid-gap: var(--space-xxxxl);
}

.col {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(8.33% - 0.01px - 1em);
  flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(8.33% - 0.01px - 1em);
  max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
}

.col-2 {
  -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(16.66% - 0.01px - 1em);
  flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(16.66% - 0.01px - 1em);
  max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
}

.col-3 {
  -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(25% - 0.01px - 1em);
  flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(25% - 0.01px - 1em);
  max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
}

.col-4 {
  -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(33.33% - 0.01px - 1em);
  flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(33.33% - 0.01px - 1em);
  max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
}

.col-5 {
  -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(41.66% - 0.01px - 1em);
  flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(41.66% - 0.01px - 1em);
  max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
}

.col-6 {
  -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(50% - 0.01px - 1em);
  flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(50% - 0.01px - 1em);
  max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
}

.col-7 {
  -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(58.33% - 0.01px - 1em);
  flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(58.33% - 0.01px - 1em);
  max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
}

.col-8 {
  -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(66.66% - 0.01px - 1em);
  flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(66.66% - 0.01px - 1em);
  max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
}

.col-9 {
  -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(75% - 0.01px - 1em);
  flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(75% - 0.01px - 1em);
  max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
}

.col-10 {
  -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(83.33% - 0.01px - 1em);
  flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(83.33% - 0.01px - 1em);
  max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
}

.col-11 {
  -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(91.66% - 0.01px - 1em);
  flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(91.66% - 0.01px - 1em);
  max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
}

.col-12 {
  -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
  -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
  flex-basis: calc(100% - 0.01px - 1em);
  flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
  max-width: calc(100% - 0.01px - 1em);
  max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
}

@media (min-width: 32rem) {
  .col\@xs {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-1\@xs {
    -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(8.33% - 0.01px - 1em);
    flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(8.33% - 0.01px - 1em);
    max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-2\@xs {
    -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(16.66% - 0.01px - 1em);
    flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(16.66% - 0.01px - 1em);
    max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-3\@xs {
    -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(25% - 0.01px - 1em);
    flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(25% - 0.01px - 1em);
    max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
  }

  .col-4\@xs {
    -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(33.33% - 0.01px - 1em);
    flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(33.33% - 0.01px - 1em);
    max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-5\@xs {
    -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(41.66% - 0.01px - 1em);
    flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(41.66% - 0.01px - 1em);
    max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-6\@xs {
    -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(50% - 0.01px - 1em);
    flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(50% - 0.01px - 1em);
    max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
  }

  .col-7\@xs {
    -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(58.33% - 0.01px - 1em);
    flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(58.33% - 0.01px - 1em);
    max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-8\@xs {
    -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(66.66% - 0.01px - 1em);
    flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(66.66% - 0.01px - 1em);
    max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-9\@xs {
    -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(75% - 0.01px - 1em);
    flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(75% - 0.01px - 1em);
    max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
  }

  .col-10\@xs {
    -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(83.33% - 0.01px - 1em);
    flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(83.33% - 0.01px - 1em);
    max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-11\@xs {
    -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(91.66% - 0.01px - 1em);
    flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(91.66% - 0.01px - 1em);
    max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-12\@xs {
    -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(100% - 0.01px - 1em);
    flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(100% - 0.01px - 1em);
    max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
  }
}

@media (min-width: 48rem) {
  .col\@sm {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-1\@sm {
    -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(8.33% - 0.01px - 1em);
    flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(8.33% - 0.01px - 1em);
    max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-2\@sm {
    -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(16.66% - 0.01px - 1em);
    flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(16.66% - 0.01px - 1em);
    max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-3\@sm {
    -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(25% - 0.01px - 1em);
    flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(25% - 0.01px - 1em);
    max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
  }

  .col-4\@sm {
    -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(33.33% - 0.01px - 1em);
    flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(33.33% - 0.01px - 1em);
    max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-5\@sm {
    -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(41.66% - 0.01px - 1em);
    flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(41.66% - 0.01px - 1em);
    max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-6\@sm {
    -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(50% - 0.01px - 1em);
    flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(50% - 0.01px - 1em);
    max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
  }

  .col-7\@sm {
    -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(58.33% - 0.01px - 1em);
    flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(58.33% - 0.01px - 1em);
    max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-8\@sm {
    -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(66.66% - 0.01px - 1em);
    flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(66.66% - 0.01px - 1em);
    max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-9\@sm {
    -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(75% - 0.01px - 1em);
    flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(75% - 0.01px - 1em);
    max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
  }

  .col-10\@sm {
    -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(83.33% - 0.01px - 1em);
    flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(83.33% - 0.01px - 1em);
    max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-11\@sm {
    -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(91.66% - 0.01px - 1em);
    flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(91.66% - 0.01px - 1em);
    max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-12\@sm {
    -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(100% - 0.01px - 1em);
    flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(100% - 0.01px - 1em);
    max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
  }
}

@media (min-width: 64rem) {
  .col\@md {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-1\@md {
    -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(8.33% - 0.01px - 1em);
    flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(8.33% - 0.01px - 1em);
    max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-2\@md {
    -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(16.66% - 0.01px - 1em);
    flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(16.66% - 0.01px - 1em);
    max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-3\@md {
    -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(25% - 0.01px - 1em);
    flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(25% - 0.01px - 1em);
    max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
  }

  .col-4\@md {
    -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(33.33% - 0.01px - 1em);
    flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(33.33% - 0.01px - 1em);
    max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-5\@md {
    -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(41.66% - 0.01px - 1em);
    flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(41.66% - 0.01px - 1em);
    max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-6\@md {
    -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(50% - 0.01px - 1em);
    flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(50% - 0.01px - 1em);
    max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
  }

  .col-7\@md {
    -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(58.33% - 0.01px - 1em);
    flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(58.33% - 0.01px - 1em);
    max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-8\@md {
    -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(66.66% - 0.01px - 1em);
    flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(66.66% - 0.01px - 1em);
    max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-9\@md {
    -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(75% - 0.01px - 1em);
    flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(75% - 0.01px - 1em);
    max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
  }

  .col-10\@md {
    -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(83.33% - 0.01px - 1em);
    flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(83.33% - 0.01px - 1em);
    max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-11\@md {
    -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(91.66% - 0.01px - 1em);
    flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(91.66% - 0.01px - 1em);
    max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-12\@md {
    -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(100% - 0.01px - 1em);
    flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(100% - 0.01px - 1em);
    max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
  }
}

@media (min-width: 80rem) {
  .col\@lg {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-1\@lg {
    -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(8.33% - 0.01px - 1em);
    flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(8.33% - 0.01px - 1em);
    max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-2\@lg {
    -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(16.66% - 0.01px - 1em);
    flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(16.66% - 0.01px - 1em);
    max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-3\@lg {
    -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(25% - 0.01px - 1em);
    flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(25% - 0.01px - 1em);
    max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
  }

  .col-4\@lg {
    -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(33.33% - 0.01px - 1em);
    flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(33.33% - 0.01px - 1em);
    max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-5\@lg {
    -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(41.66% - 0.01px - 1em);
    flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(41.66% - 0.01px - 1em);
    max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-6\@lg {
    -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(50% - 0.01px - 1em);
    flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(50% - 0.01px - 1em);
    max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
  }

  .col-7\@lg {
    -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(58.33% - 0.01px - 1em);
    flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(58.33% - 0.01px - 1em);
    max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-8\@lg {
    -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(66.66% - 0.01px - 1em);
    flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(66.66% - 0.01px - 1em);
    max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-9\@lg {
    -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(75% - 0.01px - 1em);
    flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(75% - 0.01px - 1em);
    max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
  }

  .col-10\@lg {
    -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(83.33% - 0.01px - 1em);
    flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(83.33% - 0.01px - 1em);
    max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-11\@lg {
    -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(91.66% - 0.01px - 1em);
    flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(91.66% - 0.01px - 1em);
    max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-12\@lg {
    -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(100% - 0.01px - 1em);
    flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(100% - 0.01px - 1em);
    max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
  }
}

@media (min-width: 90rem) {
  .col\@xl {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-1\@xl {
    -ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(8.33% - 0.01px - 1em);
    flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(8.33% - 0.01px - 1em);
    max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-2\@xl {
    -ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(16.66% - 0.01px - 1em);
    flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(16.66% - 0.01px - 1em);
    max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-3\@xl {
    -ms-flex-preferred-size: calc(25% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(25% - 0.01px - 1em);
    flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(25% - 0.01px - 1em);
    max-width: calc(25% - 0.01px - var(--grid-gap, 1em));
  }

  .col-4\@xl {
    -ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(33.33% - 0.01px - 1em);
    flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(33.33% - 0.01px - 1em);
    max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-5\@xl {
    -ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(41.66% - 0.01px - 1em);
    flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(41.66% - 0.01px - 1em);
    max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-6\@xl {
    -ms-flex-preferred-size: calc(50% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(50% - 0.01px - 1em);
    flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(50% - 0.01px - 1em);
    max-width: calc(50% - 0.01px - var(--grid-gap, 1em));
  }

  .col-7\@xl {
    -ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(58.33% - 0.01px - 1em);
    flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(58.33% - 0.01px - 1em);
    max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-8\@xl {
    -ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(66.66% - 0.01px - 1em);
    flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(66.66% - 0.01px - 1em);
    max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-9\@xl {
    -ms-flex-preferred-size: calc(75% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(75% - 0.01px - 1em);
    flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(75% - 0.01px - 1em);
    max-width: calc(75% - 0.01px - var(--grid-gap, 1em));
  }

  .col-10\@xl {
    -ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(83.33% - 0.01px - 1em);
    flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(83.33% - 0.01px - 1em);
    max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em));
  }

  .col-11\@xl {
    -ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(91.66% - 0.01px - 1em);
    flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(91.66% - 0.01px - 1em);
    max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em));
  }

  .col-12\@xl {
    -ms-flex-preferred-size: calc(100% - 0.01px - 1em);
    -ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
    flex-basis: calc(100% - 0.01px - 1em);
    flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
    max-width: calc(100% - 0.01px - 1em);
    max-width: calc(100% - 0.01px - var(--grid-gap, 1em));
  }
}

:root {
  --radius-sm: calc(var(--radius, 0.25em) / 2);
  --radius-md: var(--radius, 0.25em);
  --radius-lg: calc(var(--radius, 0.25em) * 2);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.085), 0 1px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 1px 8px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1px 8px rgba(0, 0, 0, 0.1), 0 16px 48px rgba(0, 0, 0, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.1);
  --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

:root {
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
}

body {
  font-size: 1em;
  font-size: var(--text-base-size, 1em);
  font-family: 'Cardo', serif;
  font-family: var(--font-primary);
  color: hsl(240, 4%, 20%);
  color: var(--color-contrast-high, #313135);
  max-height: fit-content;
  height: 100%;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  color: hsl(240, 8%, 12%);
  color: var(--color-contrast-higher, #1c1c21);
  line-height: 1.2;
  line-height: var(--heading-line-height, 1.2);
}

.text-xxxl {
  font-size: 2.48832em;
  font-size: var(--text-xxxl, 2.488em);
}

h1,
.text-xxl {
  font-size: 2.0736em;
  font-size: var(--text-xxl, 2.074em);
}

h2,
.text-xl {
  font-size: 1.728em;
  font-size: var(--text-xl, 1.728em);
}

h3,
.text-lg {
  font-size: 1.44em;
  font-size: var(--text-lg, 1.44em);
}

h4,
.text-md {
  font-size: 1.2em;
  font-size: var(--text-md, 1.2em);
}

small,
.text-sm {
  font-size: 0.83333em;
  font-size: var(--text-sm, 0.833em);
}

.text-xs {
  font-size: 0.69444em;
  font-size: var(--text-xs, 0.694em);
}

a {
  color: hsl(0deg 0% 100%);
  text-decoration: underline;
}

.cd-h-timeline__event-description a {
  color: white !important;
}

strong,
.text-bold {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

u,
.text-underline {
  text-decoration: underline;
}

.text-component {
  --component-body-line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
  --component-heading-line-height: calc(var(--heading-line-height) * var(--line-height-multiplier, 1));

}

.text-component h2,
.text-component h4 {
  margin-top: 50px;
}

.text-component p,
.text-component blockquote,
.text-component ul li,
.text-component ol li {
  line-height: 1.4;
  line-height: var(--component-body-line-height);
}

.text-component ul,
.text-component ol,
.text-component p,
.text-component blockquote,
.text-component p {
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 0.75em;
  margin-bottom: calc(var(--space-sm) * var(--text-vspace-multiplier, 1));
  text-align: left;
}

.text-component ul,
.text-component ol {
  padding-left: 1em;
}

.text-component ul {
  list-style-type: disc;
}

.text-component ol {
  list-style-type: decimal;
}

.text-component img {
  display: block;
  margin: 0 auto;
}

.text-component figcaption {
  text-align: center;
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

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

.text-component hr {
  margin-top: 2em;
  margin-top: calc(var(--space-lg) * var(--text-vspace-multiplier, 1));
  margin-bottom: 2em;
  margin-bottom: calc(var(--space-lg) * var(--text-vspace-multiplier, 1));
  margin-left: auto;
  margin-right: auto;
}

.text-component>*:first-child {
  margin-top: 0;
}

.text-component>*:last-child {
  margin-bottom: 0;
}

.text-component__block--full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (min-width: 48rem) {

  .text-component__block--left,
  .text-component__block--right {
    width: 45%;
  }

  .text-component__block--left img,
  .text-component__block--right img {
    width: 100%;
  }

  .text-component__block--left {
    float: left;
    margin-right: 0.75em;
    margin-right: calc(var(--space-sm) * var(--text-vspace-multiplier, 1));
  }

  .text-component__block--right {
    float: right;
    margin-left: 0.75em;
    margin-left: calc(var(--space-sm) * var(--text-vspace-multiplier, 1));
  }
}

@media (min-width: 90rem) {
  .text-component__block--outset {
    width: calc(100% + 10.5em);
    width: calc(100% + 2 * var(--space-xxl));
  }

  .text-component__block--outset img {
    width: 100%;
  }

  .text-component__block--outset:not(.text-component__block--right) {
    margin-left: -5.25em;
    margin-left: calc(-1 * var(--space-xxl));
  }

  .text-component__block--left,
  .text-component__block--right {
    width: 50%;
  }

  .text-component__block--right.text-component__block--outset {
    margin-right: -5.25em;
    margin-right: calc(-1 * var(--space-xxl));
  }
}

:root {
  --icon-xxs: 12px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --icon-xxl: 128px;
}

.icon {
  display: inline-block;
  color: inherit;
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.icon--xxs {
  font-size: 12px;
  font-size: var(--icon-xxs);
}

.icon--xs {
  font-size: 16px;
  font-size: var(--icon-xs);
}

.icon--sm {
  font-size: 24px;
  font-size: var(--icon-sm);
}

.icon--md {
  font-size: 32px;
  font-size: var(--icon-md);
}

.icon--lg {
  font-size: 48px;
  font-size: var(--icon-lg);
}

.icon--xl {
  font-size: 64px;
  font-size: var(--icon-xl);
}

.icon--xxl {
  font-size: 128px;
  font-size: var(--icon-xxl);
}

.icon--is-spinning {
  -webkit-animation: icon-spin 1s infinite linear;
  animation: icon-spin 1s infinite linear;
}

@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.icon use {
  color: inherit;
  fill: currentColor;
}

.btn {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  font-size: 1em;
  font-size: var(--btn-font-size, 1em);
  padding-top: 0.5em;
  padding-top: var(--btn-padding-y, 0.5em);
  padding-bottom: 0.5em;
  padding-bottom: var(--btn-padding-y, 0.5em);
  padding-left: 0.75em;
  padding-left: var(--btn-padding-x, 0.75em);
  padding-right: 0.75em;
  padding-right: var(--btn-padding-x, 0.75em);
  border-radius: 0.25em;
  border-radius: var(--btn-radius, 0.25em);
}

.btn--primary {
  background-color: hsl(220, 90%, 56%);
  background-color: var(--color-primary, #2a6df4);
  color: hsl(0, 0%, 100%);
  color: var(--color-white, #fff);
}

.btn--subtle {
  background-color: hsl(240, 1%, 83%);
  background-color: var(--color-contrast-low, #d3d3d4);
  color: hsl(240, 8%, 12%);
  color: var(--color-contrast-higher, #1c1c21);
}

.btn--accent {
  background-color: hsl(355, 90%, 61%);
  background-color: var(--color-accent, #f54251);
  color: hsl(0, 0%, 100%);
  color: var(--color-white, #fff);
}

.btn--disabled {
  cursor: not-allowed;
}

.btn--sm {
  font-size: 0.8em;
  font-size: var(--btn-font-size-sm, 0.8em);
}

.btn--md {
  font-size: 1.2em;
  font-size: var(--btn-font-size-md, 1.2em);
}

.btn--lg {
  font-size: 1.4em;
  font-size: var(--btn-font-size-lg, 1.4em);
}

.btn--icon {
  padding: 0.5em;
  padding: var(--btn-padding-y, 0.5em);
}

.form-control {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg, #f2f2f2);
  padding-top: 0.5em;
  padding-top: var(--form-control-padding-y, 0.5em);
  padding-bottom: 0.5em;
  padding-bottom: var(--form-control-padding-y, 0.5em);
  padding-left: 0.75em;
  padding-left: var(--form-control-padding-x, 0.75em);
  padding-right: 0.75em;
  padding-right: var(--form-control-padding-x, 0.75em);
  border-radius: 0.25em;
  border-radius: var(--form-control-radius, 0.25em);
}

.form-control::-webkit-input-placeholder {
  color: hsl(240, 1%, 48%);
  color: var(--color-contrast-medium, #79797c);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: hsl(240, 1%, 48%);
  color: var(--color-contrast-medium, #79797c);
}

.form-control:-ms-input-placeholder {
  color: hsl(240, 1%, 48%);
  color: var(--color-contrast-medium, #79797c);
}

.form-control:-moz-placeholder {
  color: hsl(240, 1%, 48%);
  color: var(--color-contrast-medium, #79797c);
}

.form-control[disabled],
.form-control[readonly] {
  cursor: not-allowed;
}

.form-legend {
  color: hsl(240, 8%, 12%);
  color: var(--color-contrast-higher, #1c1c21);
  line-height: 1.2;
  font-size: 1.2em;
  font-size: var(--text-md, 1.2em);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.form-label {
  display: inline-block;
}

.form__msg-error {
  background-color: hsl(355, 90%, 61%);
  background-color: var(--color-error, #f54251);
  color: hsl(0, 0%, 100%);
  color: var(--color-white, #fff);
  font-size: 0.83333em;
  font-size: var(--text-sm, 0.833em);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0.5em;
  padding: var(--space-xs);
  margin-top: 0.75em;
  margin-top: var(--space-sm);
  border-radius: 0.25em;
  border-radius: var(--radius-md, 0.25em);
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

.form__msg-error::before {
  content: "";
  position: absolute;
  left: 0.75em;
  left: var(--space-sm);
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: hsl(355, 90%, 61%);
  border-bottom-color: var(--color-error);
}

.form__msg-error--is-visible {
  position: relative;
  clip: auto;
}

.radio-list>*,
.checkbox-list>* {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.radio-list>*:last-of-type,
.checkbox-list>*:last-of-type {
  margin-bottom: 0;
}

.radio-list label,
.checkbox-list label {
  line-height: 1.4;
  line-height: var(--body-line-height);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-list input,
.checkbox-list input {
  vertical-align: top;
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

:root {
  --zindex-header: 2;
  --zindex-popover: 5;
  --zindex-fixed-element: 10;
  --zindex-overlay: 15;
}

@media not all and (min-width: 32rem) {
  .display\@xs {
    display: none !important;
  }
}

@media (min-width: 32rem) {
  .hide\@xs {
    display: none !important;
  }
}

@media not all and (min-width: 48rem) {
  .display\@sm {
    display: none !important;
  }
}

@media (min-width: 48rem) {
  .hide\@sm {
    display: none !important;
  }
}

@media not all and (min-width: 64rem) {
  .display\@md {
    display: none !important;
  }
}

@media (min-width: 64rem) {
  .hide\@md {
    display: none !important;
  }
}

@media not all and (min-width: 80rem) {
  .display\@lg {
    display: none !important;
  }
}

@media (min-width: 80rem) {
  .hide\@lg {
    display: none !important;
  }
}

@media not all and (min-width: 90rem) {
  .display\@xl {
    display: none !important;
  }
}

@media (min-width: 90rem) {
  .hide\@xl {
    display: none !important;
  }
}

:root {
  --display: block;
}

.is-visible {
  display: block !important;
  display: var(--display) !important;
}

.is-hidden {
  display: none !important;
}

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

.flex {
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-center {
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.justify-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.items-center {
  -ms-flex-align: center;
  align-items: center;
}

.items-start {
  -ms-flex-align: start;
  align-items: flex-start;
}

.items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (min-width: 32rem) {
  .flex-wrap\@xs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column\@xs {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row\@xs {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flex-center\@xs {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .justify-start\@xs {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .justify-end\@xs {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .justify-center\@xs {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .justify-between\@xs {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .items-center\@xs {
    -ms-flex-align: center;
    align-items: center;
  }

  .items-start\@xs {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .items-end\@xs {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media (min-width: 48rem) {
  .flex-wrap\@sm {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column\@sm {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row\@sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flex-center\@sm {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .justify-start\@sm {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .justify-end\@sm {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .justify-center\@sm {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .justify-between\@sm {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .items-center\@sm {
    -ms-flex-align: center;
    align-items: center;
  }

  .items-start\@sm {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .items-end\@sm {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media (min-width: 64rem) {
  .flex-wrap\@md {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column\@md {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row\@md {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flex-center\@md {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .justify-start\@md {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .justify-end\@md {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .justify-center\@md {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .justify-between\@md {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .items-center\@md {
    -ms-flex-align: center;
    align-items: center;
  }

  .items-start\@md {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .items-end\@md {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media (min-width: 80rem) {
  .flex-wrap\@lg {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column\@lg {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row\@lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flex-center\@lg {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .justify-start\@lg {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .justify-end\@lg {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .justify-center\@lg {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .justify-between\@lg {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .items-center\@lg {
    -ms-flex-align: center;
    align-items: center;
  }

  .items-start\@lg {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .items-end\@lg {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media (min-width: 90rem) {
  .flex-wrap\@xl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-column\@xl {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row\@xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .flex-center\@xl {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .justify-start\@xl {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .justify-end\@xl {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .justify-center\@xl {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .justify-between\@xl {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .items-center\@xl {
    -ms-flex-align: center;
    align-items: center;
  }

  .items-start\@xl {
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .items-end\@xl {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.flex-grow {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.flex-gap-xxxs {
  margin-bottom: -0.25em;
  margin-bottom: calc(-1 * var(--space-xxxs));
  margin-right: -0.25em;
  margin-right: calc(-1 * var(--space-xxxs));
}

.flex-gap-xxxs>* {
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
}

.flex-gap-xxs {
  margin-bottom: -0.375em;
  margin-bottom: calc(-1 * var(--space-xxs));
  margin-right: -0.375em;
  margin-right: calc(-1 * var(--space-xxs));
}

.flex-gap-xxs>* {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
}

.flex-gap-xs {
  margin-bottom: -0.5em;
  margin-bottom: calc(-1 * var(--space-xs));
  margin-right: -0.5em;
  margin-right: calc(-1 * var(--space-xs));
}

.flex-gap-xs>* {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.flex-gap-sm {
  margin-bottom: -0.75em;
  margin-bottom: calc(-1 * var(--space-sm));
  margin-right: -0.75em;
  margin-right: calc(-1 * var(--space-sm));
}

.flex-gap-sm>* {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
  margin-right: 0.75em;
  margin-right: var(--space-sm);
}

.flex-gap-md {
  margin-bottom: -1.25em;
  margin-bottom: calc(-1 * var(--space-md));
  margin-right: -1.25em;
  margin-right: calc(-1 * var(--space-md));
}

.flex-gap-md>* {
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
  margin-right: 1.25em;
  margin-right: var(--space-md);
}

.flex-gap-lg {
  margin-bottom: -2em;
  margin-bottom: calc(-1 * var(--space-lg));
  margin-right: -2em;
  margin-right: calc(-1 * var(--space-lg));
}

.flex-gap-lg>* {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
  margin-right: 2em;
  margin-right: var(--space-lg);
}

.flex-gap-xl {
  margin-bottom: -3.25em;
  margin-bottom: calc(-1 * var(--space-xl));
  margin-right: -3.25em;
  margin-right: calc(-1 * var(--space-xl));
}

.flex-gap-xl>* {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
  margin-right: 3.25em;
  margin-right: var(--space-xl);
}

.flex-gap-xxl {
  margin-bottom: -5.25em;
  margin-bottom: calc(-1 * var(--space-xxl));
  margin-right: -5.25em;
  margin-right: calc(-1 * var(--space-xxl));
}

.flex-gap-xxl>* {
  margin-bottom: 5.25em;
  margin-bottom: var(--space-xxl);
  margin-right: 5.25em;
  margin-right: var(--space-xxl);
}

.margin-xxxxs {
  margin: 0.125em;
  margin: var(--space-xxxxs);
}

.margin-xxxs {
  margin: 0.25em;
  margin: var(--space-xxxs);
}

.margin-xxs {
  margin: 0.375em;
  margin: var(--space-xxs);
}

.margin-xs {
  margin: 0.5em;
  margin: var(--space-xs);
}

.margin-sm {
  margin: 0.75em;
  margin: var(--space-sm);
}

.margin-md {
  margin: 1.25em;
  margin: var(--space-md);
}

.margin-lg {
  margin: 2em;
  margin: var(--space-lg);
}

.margin-xl {
  margin: 3.25em;
  margin: var(--space-xl);
}

.margin-xxl {
  margin: 5.25em;
  margin: var(--space-xxl);
}

.margin-xxxl {
  margin: 8.5em;
  margin: var(--space-xxxl);
}

.margin-xxxxl {
  margin: 13.75em;
  margin: var(--space-xxxxl);
}

.margin-auto {
  margin: auto;
}

.margin-top-xxxxs {
  margin-top: 0.125em;
  margin-top: var(--space-xxxxs);
}

.margin-top-xxxs {
  margin-top: 0.25em;
  margin-top: var(--space-xxxs);
}

.margin-top-xxs {
  margin-top: 0.375em;
  margin-top: var(--space-xxs);
}

.margin-top-xs {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

.margin-top-sm {
  margin-top: 0.75em;
  margin-top: var(--space-sm);
}

.margin-top-md {
  margin-top: 1.25em;
  margin-top: var(--space-md);
}

.margin-top-lg {
  margin-top: 2em;
  margin-top: var(--space-lg);
}

.margin-top-xl {
  margin-top: 3.25em;
  margin-top: var(--space-xl);
}

.margin-top-xxl {
  margin-top: 5.25em;
  margin-top: var(--space-xxl);
}

.margin-top-xxxl {
  margin-top: 8.5em;
  margin-top: var(--space-xxxl);
}

.margin-top-xxxxl {
  margin-top: 13.75em;
  margin-top: var(--space-xxxxl);
}

.margin-top-auto {
  margin-top: auto;
}

.margin-bottom-xxxxs {
  margin-bottom: 0.125em;
  margin-bottom: var(--space-xxxxs);
}

.margin-bottom-xxxs {
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.margin-bottom-xxs {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.margin-bottom-xs {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.margin-bottom-sm {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.margin-bottom-lg {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.margin-bottom-xl {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.margin-bottom-xxl {
  margin-bottom: 5.25em;
  margin-bottom: var(--space-xxl);
}

.margin-bottom-xxxl {
  margin-bottom: 8.5em;
  margin-bottom: var(--space-xxxl);
}

.margin-bottom-xxxxl {
  margin-bottom: 13.75em;
  margin-bottom: var(--space-xxxxl);
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-right-xxxxs {
  margin-right: 0.125em;
  margin-right: var(--space-xxxxs);
}

.margin-right-xxxs {
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
}

.margin-right-xxs {
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
}

.margin-right-xs {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.margin-right-sm {
  margin-right: 0.75em;
  margin-right: var(--space-sm);
}

.margin-right-md {
  margin-right: 1.25em;
  margin-right: var(--space-md);
}

.margin-right-lg {
  margin-right: 2em;
  margin-right: var(--space-lg);
}

.margin-right-xl {
  margin-right: 3.25em;
  margin-right: var(--space-xl);
}

.margin-right-xxl {
  margin-right: 5.25em;
  margin-right: var(--space-xxl);
}

.margin-right-xxxl {
  margin-right: 8.5em;
  margin-right: var(--space-xxxl);
}

.margin-right-xxxxl {
  margin-right: 13.75em;
  margin-right: var(--space-xxxxl);
}

.margin-right-auto {
  margin-right: auto;
}

.margin-left-xxxxs {
  margin-left: 0.125em;
  margin-left: var(--space-xxxxs);
}

.margin-left-xxxs {
  margin-left: 0.25em;
  margin-left: var(--space-xxxs);
}

.margin-left-xxs {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
}

.margin-left-xs {
  margin-left: 0.5em;
  margin-left: var(--space-xs);
}

.margin-left-sm {
  margin-left: 0.75em;
  margin-left: var(--space-sm);
}

.margin-left-md {
  margin-left: 1.25em;
  margin-left: var(--space-md);
}

.margin-left-lg {
  margin-left: 2em;
  margin-left: var(--space-lg);
}

.margin-left-xl {
  margin-left: 3.25em;
  margin-left: var(--space-xl);
}

.margin-left-xxl {
  margin-left: 5.25em;
  margin-left: var(--space-xxl);
}

.margin-left-xxxl {
  margin-left: 8.5em;
  margin-left: var(--space-xxxl);
}

.margin-left-xxxxl {
  margin-left: 13.75em;
  margin-left: var(--space-xxxxl);
}

.margin-left-auto {
  margin-left: auto;
}

.margin-x-xxxxs {
  margin-left: 0.125em;
  margin-left: var(--space-xxxxs);
  margin-right: 0.125em;
  margin-right: var(--space-xxxxs);
}

.margin-x-xxxs {
  margin-left: 0.25em;
  margin-left: var(--space-xxxs);
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
}

.margin-x-xxs {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
}

.margin-x-xs {
  margin-left: 0.5em;
  margin-left: var(--space-xs);
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.margin-x-sm {
  margin-left: 0.75em;
  margin-left: var(--space-sm);
  margin-right: 0.75em;
  margin-right: var(--space-sm);
}

.margin-x-md {
  margin-left: 1.25em;
  margin-left: var(--space-md);
  margin-right: 1.25em;
  margin-right: var(--space-md);
}

.margin-x-lg {
  margin-left: 2em;
  margin-left: var(--space-lg);
  margin-right: 2em;
  margin-right: var(--space-lg);
}

.margin-x-xl {
  margin-left: 3.25em;
  margin-left: var(--space-xl);
  margin-right: 3.25em;
  margin-right: var(--space-xl);
}

.margin-x-xxl {
  margin-left: 5.25em;
  margin-left: var(--space-xxl);
  margin-right: 5.25em;
  margin-right: var(--space-xxl);
}

.margin-x-xxxl {
  margin-left: 8.5em;
  margin-left: var(--space-xxxl);
  margin-right: 8.5em;
  margin-right: var(--space-xxxl);
}

.margin-x-xxxxl {
  margin-left: 13.75em;
  margin-left: var(--space-xxxxl);
  margin-right: 13.75em;
  margin-right: var(--space-xxxxl);
}

.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-y-xxxxs {
  margin-top: 0.125em;
  margin-top: var(--space-xxxxs);
  margin-bottom: 0.125em;
  margin-bottom: var(--space-xxxxs);
}

.margin-y-xxxs {
  margin-top: 0.25em;
  margin-top: var(--space-xxxs);
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.margin-y-xxs {
  margin-top: 0.375em;
  margin-top: var(--space-xxs);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.margin-y-xs {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.margin-y-sm {
  margin-top: 0.75em;
  margin-top: var(--space-sm);
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.margin-y-md {
  margin-top: 1.25em;
  margin-top: var(--space-md);
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.margin-y-lg {
  margin-top: 2em;
  margin-top: var(--space-lg);
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.margin-y-xl {
  margin-top: 3.25em;
  margin-top: var(--space-xl);
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.margin-y-xxl {
  margin-top: 5.25em;
  margin-top: var(--space-xxl);
  margin-bottom: 5.25em;
  margin-bottom: var(--space-xxl);
}

.margin-y-xxxl {
  margin-top: 8.5em;
  margin-top: var(--space-xxxl);
  margin-bottom: 8.5em;
  margin-bottom: var(--space-xxxl);
}

.margin-y-xxxxl {
  margin-top: 13.75em;
  margin-top: var(--space-xxxxl);
  margin-bottom: 13.75em;
  margin-bottom: var(--space-xxxxl);
}

.margin-y-auto {
  margin-top: auto;
  margin-bottom: auto;
}

@media not all and (min-width: 32rem) {
  .has-margin\@xs {
    margin: 0 !important;
  }
}

@media not all and (min-width: 48rem) {
  .has-margin\@sm {
    margin: 0 !important;
  }
}

@media not all and (min-width: 64rem) {
  .has-margin\@md {
    margin: 0 !important;
  }
}

@media not all and (min-width: 80rem) {
  .has-margin\@lg {
    margin: 0 !important;
  }
}

@media not all and (min-width: 90rem) {
  .has-margin\@xl {
    margin: 0 !important;
  }
}

.padding-md {
  padding: 1.25em;
  padding: var(--space-md);
}

.padding-xxxxs {
  padding: 0.125em;
  padding: var(--space-xxxxs);
}

.padding-xxxs {
  padding: 0.25em;
  padding: var(--space-xxxs);
}

.padding-xxs {
  padding: 0.375em;
  padding: var(--space-xxs);
}

.padding-xs {
  padding: 0.5em;
  padding: var(--space-xs);
}

.padding-sm {
  padding: 0.75em;
  padding: var(--space-sm);
}

.padding-lg {
  padding: 2em;
  padding: var(--space-lg);
}

.padding-xl {
  padding: 3.25em;
  padding: var(--space-xl);
}

.padding-xxl {
  padding: 5.25em;
  padding: var(--space-xxl);
}

.padding-xxxl {
  padding: 8.5em;
  padding: var(--space-xxxl);
}

.padding-xxxxl {
  padding: 13.75em;
  padding: var(--space-xxxxl);
}

.padding-component {
  padding: 1.25em;
  padding: var(--component-padding);
}

.padding-top-md {
  padding-top: 1.25em;
  padding-top: var(--space-md);
}

.padding-top-xxxxs {
  padding-top: 0.125em;
  padding-top: var(--space-xxxxs);
}

.padding-top-xxxs {
  padding-top: 0.25em;
  padding-top: var(--space-xxxs);
}

.padding-top-xxs {
  padding-top: 0.375em;
  padding-top: var(--space-xxs);
}

.padding-top-xs {
  padding-top: 0.5em;
  padding-top: var(--space-xs);
}

.padding-top-sm {
  padding-top: 0.75em;
  padding-top: var(--space-sm);
}

.padding-top-lg {
  padding-top: 2em;
  padding-top: var(--space-lg);
}

.padding-top-xl {
  padding-top: 3.25em;
  padding-top: var(--space-xl);
}

.padding-top-xxl {
  padding-top: 5.25em;
  padding-top: var(--space-xxl);
}

.padding-top-xxxl {
  padding-top: 8.5em;
  padding-top: var(--space-xxxl);
}

.padding-top-xxxxl {
  padding-top: 13.75em;
  padding-top: var(--space-xxxxl);
}

.padding-top-component {
  padding-top: 1.25em;
  padding-top: var(--component-padding);
}

.padding-bottom-md {
  padding-bottom: 1.25em;
  padding-bottom: var(--space-md);
}

.padding-bottom-xxxxs {
  padding-bottom: 0.125em;
  padding-bottom: var(--space-xxxxs);
}

.padding-bottom-xxxs {
  padding-bottom: 0.25em;
  padding-bottom: var(--space-xxxs);
}

.padding-bottom-xxs {
  padding-bottom: 0.375em;
  padding-bottom: var(--space-xxs);
}

.padding-bottom-xs {
  padding-bottom: 0.5em;
  padding-bottom: var(--space-xs);
}

.padding-bottom-sm {
  padding-bottom: 0.75em;
  padding-bottom: var(--space-sm);
}

.padding-bottom-lg {
  padding-bottom: 2em;
  padding-bottom: var(--space-lg);
}

.padding-bottom-xl {
  padding-bottom: 3.25em;
  padding-bottom: var(--space-xl);
}

.padding-bottom-xxl {
  padding-bottom: 5.25em;
  padding-bottom: var(--space-xxl);
}

.padding-bottom-xxxl {
  padding-bottom: 8.5em;
  padding-bottom: var(--space-xxxl);
}

.padding-bottom-xxxxl {
  padding-bottom: 13.75em;
  padding-bottom: var(--space-xxxxl);
}

.padding-bottom-component {
  padding-bottom: 1.25em;
  padding-bottom: var(--component-padding);
}

.padding-right-md {
  padding-right: 1.25em;
  padding-right: var(--space-md);
}

.padding-right-xxxxs {
  padding-right: 0.125em;
  padding-right: var(--space-xxxxs);
}

.padding-right-xxxs {
  padding-right: 0.25em;
  padding-right: var(--space-xxxs);
}

.padding-right-xxs {
  padding-right: 0.375em;
  padding-right: var(--space-xxs);
}

.padding-right-xs {
  padding-right: 0.5em;
  padding-right: var(--space-xs);
}

.padding-right-sm {
  padding-right: 0.75em;
  padding-right: var(--space-sm);
}

.padding-right-lg {
  padding-right: 2em;
  padding-right: var(--space-lg);
}

.padding-right-xl {
  padding-right: 3.25em;
  padding-right: var(--space-xl);
}

.padding-right-xxl {
  padding-right: 5.25em;
  padding-right: var(--space-xxl);
}

.padding-right-xxxl {
  padding-right: 8.5em;
  padding-right: var(--space-xxxl);
}

.padding-right-xxxxl {
  padding-right: 13.75em;
  padding-right: var(--space-xxxxl);
}

.padding-right-component {
  padding-right: 1.25em;
  padding-right: var(--component-padding);
}

.padding-left-md {
  padding-left: 1.25em;
  padding-left: var(--space-md);
}

.padding-left-xxxxs {
  padding-left: 0.125em;
  padding-left: var(--space-xxxxs);
}

.padding-left-xxxs {
  padding-left: 0.25em;
  padding-left: var(--space-xxxs);
}

.padding-left-xxs {
  padding-left: 0.375em;
  padding-left: var(--space-xxs);
}

.padding-left-xs {
  padding-left: 0.5em;
  padding-left: var(--space-xs);
}

.padding-left-sm {
  padding-left: 0.75em;
  padding-left: var(--space-sm);
}

.padding-left-lg {
  padding-left: 2em;
  padding-left: var(--space-lg);
}

.padding-left-xl {
  padding-left: 3.25em;
  padding-left: var(--space-xl);
}

.padding-left-xxl {
  padding-left: 5.25em;
  padding-left: var(--space-xxl);
}

.padding-left-xxxl {
  padding-left: 8.5em;
  padding-left: var(--space-xxxl);
}

.padding-left-xxxxl {
  padding-left: 13.75em;
  padding-left: var(--space-xxxxl);
}

.padding-left-component {
  padding-left: 1.25em;
  padding-left: var(--component-padding);
}

.padding-x-md {
  padding-left: 1.25em;
  padding-left: var(--space-md);
  padding-right: 1.25em;
  padding-right: var(--space-md);
}

.padding-x-xxxxs {
  padding-left: 0.125em;
  padding-left: var(--space-xxxxs);
  padding-right: 0.125em;
  padding-right: var(--space-xxxxs);
}

.padding-x-xxxs {
  padding-left: 0.25em;
  padding-left: var(--space-xxxs);
  padding-right: 0.25em;
  padding-right: var(--space-xxxs);
}

.padding-x-xxs {
  padding-left: 0.375em;
  padding-left: var(--space-xxs);
  padding-right: 0.375em;
  padding-right: var(--space-xxs);
}

.padding-x-xs {
  padding-left: 0.5em;
  padding-left: var(--space-xs);
  padding-right: 0.5em;
  padding-right: var(--space-xs);
}

.padding-x-sm {
  padding-left: 0.75em;
  padding-left: var(--space-sm);
  padding-right: 0.75em;
  padding-right: var(--space-sm);
}

.padding-x-lg {
  padding-left: 2em;
  padding-left: var(--space-lg);
  padding-right: 2em;
  padding-right: var(--space-lg);
}

.padding-x-xl {
  padding-left: 3.25em;
  padding-left: var(--space-xl);
  padding-right: 3.25em;
  padding-right: var(--space-xl);
}

.padding-x-xxl {
  padding-left: 5.25em;
  padding-left: var(--space-xxl);
  padding-right: 5.25em;
  padding-right: var(--space-xxl);
}

.padding-x-xxxl {
  padding-left: 8.5em;
  padding-left: var(--space-xxxl);
  padding-right: 8.5em;
  padding-right: var(--space-xxxl);
}

.padding-x-xxxxl {
  padding-left: 13.75em;
  padding-left: var(--space-xxxxl);
  padding-right: 13.75em;
  padding-right: var(--space-xxxxl);
}

.padding-x-component {
  padding-left: 1.25em;
  padding-left: var(--component-padding);
  padding-right: 1.25em;
  padding-right: var(--component-padding);
}

.padding-y-md {
  padding-top: 1.25em;
  padding-top: var(--space-md);
  padding-bottom: 1.25em;
  padding-bottom: var(--space-md);
}

.padding-y-xxxxs {
  padding-top: 0.125em;
  padding-top: var(--space-xxxxs);
  padding-bottom: 0.125em;
  padding-bottom: var(--space-xxxxs);
}

.padding-y-xxxs {
  padding-top: 0.25em;
  padding-top: var(--space-xxxs);
  padding-bottom: 0.25em;
  padding-bottom: var(--space-xxxs);
}

.padding-y-xxs {
  padding-top: 0.375em;
  padding-top: var(--space-xxs);
  padding-bottom: 0.375em;
  padding-bottom: var(--space-xxs);
}

.padding-y-xs {
  padding-top: 0.5em;
  padding-top: var(--space-xs);
  padding-bottom: 0.5em;
  padding-bottom: var(--space-xs);
}

.padding-y-sm {
  padding-top: 0.75em;
  padding-top: var(--space-sm);
  padding-bottom: 0.75em;
  padding-bottom: var(--space-sm);
}

.padding-y-lg {
  padding-top: 2em;
  padding-top: var(--space-lg);
  padding-bottom: 2em;
  padding-bottom: var(--space-lg);
}

.padding-y-xl {
  padding-top: 3.25em;
  padding-top: var(--space-xl);
  padding-bottom: 3.25em;
  padding-bottom: var(--space-xl);
}

.padding-y-xxl {
  padding-top: 5.25em;
  padding-top: var(--space-xxl);
  padding-bottom: 5.25em;
  padding-bottom: var(--space-xxl);
}

.padding-y-xxxl {
  padding-top: 8.5em;
  padding-top: var(--space-xxxl);
  padding-bottom: 8.5em;
  padding-bottom: var(--space-xxxl);
}

.padding-y-xxxxl {
  padding-top: 13.75em;
  padding-top: var(--space-xxxxl);
  padding-bottom: 13.75em;
  padding-bottom: var(--space-xxxxl);
}

.padding-y-component {
  padding-top: 1.25em;
  padding-top: var(--component-padding);
  padding-bottom: 1.25em;
  padding-bottom: var(--component-padding);
}


@media not all and (min-width: 32rem) {
  .has-padding\@xs {
    padding: 0 !important;
  }
}

@media not all and (min-width: 48rem) {
  .has-padding\@sm {
    padding: 0 !important;
  }
}

@media not all and (min-width: 64rem) {
  .has-padding\@md {
    padding: 0 !important;
  }
}

@media not all and (min-width: 80rem) {
  .has-padding\@lg {
    padding: 0 !important;
  }
}

@media not all and (min-width: 90rem) {
  .has-padding\@xl {
    padding: 0 !important;
  }
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-replace {
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
}

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

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

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

@media (min-width: 32rem) {
  .text-center\@xs {
    text-align: center;
  }

  .text-left\@xs {
    text-align: left;
  }

  .text-right\@xs {
    text-align: right;
  }
}

@media (min-width: 48rem) {
  .text-center\@sm {
    text-align: center;
  }

  .text-left\@sm {
    text-align: left;
  }

  .text-right\@sm {
    text-align: right;
  }

}






@media (min-width: 64rem) {
  .text-center\@md {
    text-align: center;
  }

  .text-left\@md {
    text-align: left;
  }

  .text-right\@md {
    text-align: right;
  }
}

@media (min-width: 80rem) {
  .text-center\@lg {
    text-align: center;
  }

  .text-left\@lg {
    text-align: left;
  }

  .text-right\@lg {
    text-align: right;
  }
}

@media (min-width: 90rem) {
  .text-center\@xl {
    text-align: center;
  }

  .text-left\@xl {
    text-align: left;
  }

  .text-right\@xl {
    text-align: right;
  }
}

.color-inherit {
  color: inherit;
}

.color-contrast-medium {
  color: hsl(0, 0%, 87%);
  color: hsl(0deg 0% 88%);
}

.color-contrast-high {
  color: hsl(240, 4%, 20%);
  color: var(--color-contrast-high, #313135);
}

.color-contrast-higher {
  color: hsl(240, 8%, 12%);
  color: var(--color-contrast-higher, #1c1c21);
}

.color-primary {
  color: hsl(220, 90%, 56%);
  color: var(--color-primary, #2a6df4);
}

.color-accent {
  color: hsl(355, 90%, 61%);
  color: var(--color-accent, #f54251);
}

.color-success {
  color: hsl(94, 48%, 56%);
  color: var(--color-success, #88c559);
}

.color-warning {
  color: hsl(46, 100%, 61%);
  color: var(--color-warning, #ffd138);
}

.color-error {
  color: hsl(355, 90%, 61%);
  color: var(--color-error, #f54251);
}

.width-100\% {
  width: 100%;
}

.height-100\% {
  height: 100%;
}

.media-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.media-wrapper iframe,
.media-wrapper video,
.media-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.media-wrapper video,
.media-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
}

.media-wrapper--4\:3 {
  padding-bottom: 75%;
}

:root,
[data-theme="default"] {
  --color-primary-darker: hsl(220, 90%, 36%);
  --color-primary-darker-h: 220;
  --color-primary-darker-s: 90%;
  --color-primary-darker-l: 36%;
  --color-primary-dark: hsl(220, 90%, 46%);
  --color-primary-dark-h: 220;
  --color-primary-dark-s: 90%;
  --color-primary-dark-l: 46%;
  --color-primary: hsl(220, 90%, 56%);
  --color-primary-h: 220;
  --color-primary-s: 90%;
  --color-primary-l: 56%;
  --color-primary-light: hsl(220, 90%, 66%);
  --color-primary-light-h: 220;
  --color-primary-light-s: 90%;
  --color-primary-light-l: 66%;
  --color-primary-lighter: hsl(220, 90%, 76%);
  --color-primary-lighter-h: 220;
  --color-primary-lighter-s: 90%;
  --color-primary-lighter-l: 76%;
  --color-accent-darker: hsl(355, 90%, 41%);
  --color-accent-darker-h: 355;
  --color-accent-darker-s: 90%;
  --color-accent-darker-l: 41%;
  --color-accent-dark: hsl(355, 90%, 51%);
  --color-accent-dark-h: 355;
  --color-accent-dark-s: 90%;
  --color-accent-dark-l: 51%;
  --color-accent: hsl(355, 90%, 61%);
  --color-accent-h: 355;
  --color-accent-s: 90%;
  --color-accent-l: 61%;
  --color-accent-light: hsl(355, 90%, 71%);
  --color-accent-light-h: 355;
  --color-accent-light-s: 90%;
  --color-accent-light-l: 71%;
  --color-accent-lighter: hsl(355, 90%, 81%);
  --color-accent-lighter-h: 355;
  --color-accent-lighter-s: 90%;
  --color-accent-lighter-l: 81%;
  --color-black: hsl(240, 8%, 12%);
  --color-black-h: 240;
  --color-black-s: 8%;
  --color-black-l: 12%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-success-darker: hsl(94, 48%, 36%);
  --color-success-darker-h: 94;
  --color-success-darker-s: 48%;
  --color-success-darker-l: 36%;
  --color-success-dark: hsl(94, 48%, 46%);
  --color-success-dark-h: 94;
  --color-success-dark-s: 48%;
  --color-success-dark-l: 46%;
  --color-success: hsl(94, 48%, 56%);
  --color-success-h: 94;
  --color-success-s: 48%;
  --color-success-l: 56%;
  --color-success-light: hsl(94, 48%, 66%);
  --color-success-light-h: 94;
  --color-success-light-s: 48%;
  --color-success-light-l: 66%;
  --color-success-lighter: hsl(94, 48%, 76%);
  --color-success-lighter-h: 94;
  --color-success-lighter-s: 48%;
  --color-success-lighter-l: 76%;
  --color-error-darker: hsl(355, 90%, 41%);
  --color-error-darker-h: 355;
  --color-error-darker-s: 90%;
  --color-error-darker-l: 41%;
  --color-error-dark: hsl(355, 90%, 51%);
  --color-error-dark-h: 355;
  --color-error-dark-s: 90%;
  --color-error-dark-l: 51%;
  --color-error: hsl(355, 90%, 61%);
  --color-error-h: 355;
  --color-error-s: 90%;
  --color-error-l: 61%;
  --color-error-light: hsl(355, 90%, 71%);
  --color-error-light-h: 355;
  --color-error-light-s: 90%;
  --color-error-light-l: 71%;
  --color-error-lighter: hsl(355, 90%, 81%);
  --color-error-lighter-h: 355;
  --color-error-lighter-s: 90%;
  --color-error-lighter-l: 81%;
  --color-warning-darker: hsl(46, 100%, 41%);
  --color-warning-darker-h: 46;
  --color-warning-darker-s: 100%;
  --color-warning-darker-l: 41%;
  --color-warning-dark: hsl(46, 100%, 51%);
  --color-warning-dark-h: 46;
  --color-warning-dark-s: 100%;
  --color-warning-dark-l: 51%;
  --color-warning: hsl(46, 100%, 61%);
  --color-warning-h: 46;
  --color-warning-s: 100%;
  --color-warning-l: 61%;
  --color-warning-light: hsl(46, 100%, 71%);
  --color-warning-light-h: 46;
  --color-warning-light-s: 100%;
  --color-warning-light-l: 71%;
  --color-warning-lighter: hsl(46, 100%, 81%);
  --color-warning-lighter-h: 46;
  --color-warning-lighter-s: 100%;
  --color-warning-lighter-l: 81%;
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-h: 0;
  --color-bg-s: 0%;
  --color-bg-l: 100%;
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-lower-h: 0;
  --color-contrast-lower-s: 0%;
  --color-contrast-lower-l: 95%;
  --color-contrast-low: hsl(240, 1%, 83%);
  --color-contrast-low-h: 240;
  --color-contrast-low-s: 1%;
  --color-contrast-low-l: 83%;
  --color-contrast-medium: hsl(240, 1%, 48%);
  --color-contrast-medium-h: 240;
  --color-contrast-medium-s: 1%;
  --color-contrast-medium-l: 48%;
  --color-contrast-high: hsl(240, 4%, 20%);
  --color-contrast-high-h: 240;
  --color-contrast-high-s: 4%;
  --color-contrast-high-l: 20%;
  --color-contrast-higher: hsl(240, 8%, 12%);
  --color-contrast-higher-h: 240;
  --color-contrast-higher-s: 8%;
  --color-contrast-higher-l: 12%;
}

@supports (--css: variables) {
  @media (min-width: 64rem) {
    :root {
      --space-unit: 1.25em;
    }
  }
}

:root {
  --radius: 0.25em;
}

:root {
  --font-primary: sans-serif;
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --text-xs: calc(1em / var(--text-scale-ratio) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  --body-line-height: 1.2;
  --heading-line-height: 1;
  --font-primary-capital-letter: 1;
}

@supports (--css: variables) {
  @media (min-width: 64rem) {
    :root {
      --text-base-size: 1.25em;
      --text-scale-ratio: 1.25;
    }
  }
}

mark {
  padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  background-color: hsla(355, 90%, 61%, 0.2);
  background-color: hsla(var(--color-accent-h),
      var(--color-accent-s),
      var(--color-accent-l),
      0.2);
  color: inherit;
}

.text-component {
  --line-height-multiplier: 1;
  --text-vspace-multiplier: 1;
}

.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(240, 1%, 83%);
  border-left: 4px solid var(--color-contrast-low);
}

.text-component hr {
  background: hsl(240, 1%, 83%);
  background: var(--color-contrast-low);
  height: 1px;
}

.text-component figcaption {
  font-size: 0.83333em;
  font-size: var(--text-sm);
  color: hsl(240, 1%, 48%);
  color: var(--color-contrast-medium);
}

.article.text-component {
  --line-height-multiplier: 1.13;
  --text-vspace-multiplier: 1.2;
}

:root {
  --btn-font-size: 1em;
  --btn-font-size-sm: calc(var(--btn-font-size) - 0.2em);
  --btn-font-size-md: calc(var(--btn-font-size) + 0.2em);
  --btn-font-size-lg: calc(var(--btn-font-size) + 0.4em);
  --btn-radius: 0.25em;
  --btn-padding-x: var(--space-sm);
  --btn-padding-y: var(--space-xs);
}

.btn {
  --color-shadow: hsla(240, 8%, 12%, 0.15);
  --color-shadow: hsla(var(--color-black-h),
      var(--color-black-s),
      var(--color-black-l),
      0.15);
  box-shadow: 0 4px 16px hsla(240, 8%, 12%, 0.15);
  box-shadow: 0 4px 16px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15);
  cursor: pointer;
}

.btn--primary {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--accent {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--disabled {
  opacity: 0.6;
}

:root {
  --form-control-padding-x: var(--space-sm);
  --form-control-padding-y: var(--space-xs);
  --form-control-radius: 0.25em;
}

.form-control {
  border: 2px solid hsl(240, 1%, 83%);
  border: 2px solid var(--color-contrast-low);
}

.form-control:focus {
  outline: none;
  border-color: hsl(220, 90%, 56%);
  border-color: var(--color-primary);
  --color-shadow: hsla(220, 90%, 56%, 0.2);
  --color-shadow: hsla(var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.2);
  box-shadow: undefined;
  box-shadow: 0 0 0 3px var(--color-shadow);
}

.form-control:focus:focus {
  box-shadow: 0 0 0 3px hsla(220, 90%, 56%, 0.2);
  box-shadow: 0 0 0 3px var(--color-shadow);
}

.form-control[aria-invalid="true"] {
  border-color: hsl(355, 90%, 61%);
  border-color: var(--color-error);
}

.form-control[aria-invalid="true"]:focus {
  --color-shadow: hsla(355, 90%, 61%, 0.2);
  --color-shadow: hsla(var(--color-error-h),
      var(--color-error-s),
      var(--color-error-l),
      0.2);
  box-shadow: undefined;
  box-shadow: 0 0 0 3px var(--color-shadow);
}

.form-control[aria-invalid="true"]:focus:focus {
  box-shadow: 0 0 0 3px hsla(355, 90%, 61%, 0.2);
  box-shadow: 0 0 0 3px var(--color-shadow);
}

.form-label {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

:root {
  --cd-color-1: hsl(0deg 0% 100%);
  --cd-color-1-h: 0;
  --cd-color-1-s: 0%;
  --cd-color-1-l: 22%;
  --cd-color-2: hsl(74, 93%, 32%);
  --cd-color-2-h: 74;
  --cd-color-2-s: 93%;
  --cd-color-2-l: 32%;
  --cd-color-3: hsl(0, 0%, 97%);
  --cd-color-3-h: 0;
  --cd-color-3-s: 0%;
  --cd-color-3-l: 97%;
  --font-primary: "Cardo", serif;
  --font-secondary: "Cardo", serif;
  height: 100%;
}

body {
  color: hsl(0, 0%, 22%);
  color: var(--cd-color-1);
  background-color: hsl(0, 0%, 97%);
  background-color: var(--cd-color-3);
  height: 100%;
}

.js .cd-h-timeline {
  opacity: 0;
  transition: opacity 0.2s;
}

.js .cd-h-timeline--loaded {
  opacity: 1;
  height: 100%;
}

.js .cd-h-timeline__container {
  height: 80px;
  position: absolute;
  bottom: 0px;
  left: 5%;
  z-index: 9999;
  width: 90%;
}

.js .cd-h-timeline__dates {
  position: relative;
  height: 90%;
  margin: 0 40px;
  overflow: hidden;
  bottom: 0px;
}

.js .cd-h-timeline__line {
  position: absolute;
  z-index: 1;
  left: -140px;
  top: 49px;
  height: 2px;
  background-color: hsl(0, 0%, 87.3%);
  background-color: hsl(var(--cd-color-3-h),
      var(--cd-color-3-s),
      calc(var(--cd-color-3-l) * 0.9));
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.js .cd-h-timeline__filling-line {
  position: absolute;
  z-index: -9;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}


.js .cd-h-timeline__date {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.8em;
  padding-bottom: 0.75em;
  padding-bottom: var(--space-sm);
  color: hsl(0, 0%, 22%);
  color: var(--cd-color-1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
}

.js .cd-h-timeline__date {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 25px;
}

.js .cd-h-timeline__date::after {
  content: '|||||||';
  color: hsl(0deg 0% 100%);
  position: absolute;
  bottom: 0px;
  left: 55%;
  letter-spacing: 10px;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

a.cd-h-timeline__date.cd-h-timeline__date--selected::after {
  position: absolute;
  /* content: ''; */
  /* border-top: 2px solid #7a9d06; */
  bottom: 0px;

}

.js .cd-h-timeline__date:hover::after {
  border-color: hsl(74deg 100% 43%);
  border-color: hsl(74deg 100% 43%);
}

@media (min-width: 64rem) {
  .js .cd-h-timeline__date {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 25px;
  }

  a.cd-h-timeline__date.cd-h-timeline__date--selected::after {
    position: absolute;
    /* content: ''; */
    /* border-top: 2px solid #7a9d06; */
    bottom: 0px;

  }

  .cd-h-timeline__event-title {
    font-size: 40px;
  }
}


@media (max-width: 64rem) {
  .js .cd-h-timeline__date {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
  }
}

.cd-h-timeline__line ol li a {
  border-right: 2px solid #fff;
  position: absolute;
  width: 150px;
}

.js .cd-h-timeline__date::before {
  border-left: 2px solid #fff;
  position: absolute;
  left: 0px;
}


.js .cd-h-timeline__date--selected {
  pointer-events: none;
  font-size: 18px;
  font-weight: 700;
  color: #a8db00;
}

.js .cd-h-timeline__date--selected::after {
  border-color: #fff;
  border-color: #fff;
}

.js .cd-h-timeline__date--older-event::after {
  border-color: #fff;
  border-color: #fff;
}

.js .cd-h-timeline__navigation {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: hsl(0, 0%, 87.3%);
  border-color: hsl(var(--cd-color-3-h),
      var(--cd-color-3-s),
      calc(var(--cd-color-3-l) * 0.9));
  transition: border-color 0.3s;
}

.js .cd-h-timeline__navigation::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../img/cd-arrow.svg) no-repeat 0 0;
}

.js .cd-h-timeline__navigation:hover {
  border-color: hsl(74deg 100% 43%);
  border-color: hsl(74deg 100% 43%);
}

.js .cd-h-timeline__navigation--prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.js .cd-h-timeline__navigation--next {
  right: 0;
}

.js .cd-h-timeline__navigation--inactive {
  cursor: not-allowed;
}

.js .cd-h-timeline__navigation--inactive::after {
  background-position: 0 -16px;
}

.js .cd-h-timeline__navigation--inactive:hover {
  border-color: hsl(0, 0%, 87.3%);
  border-color: hsl(var(--cd-color-3-h),
      var(--cd-color-3-s),
      calc(var(--cd-color-3-l) * 0.9));
}

.js .cd-h-timeline__events {
  position: relative;
  width: 100%;
  max-height: 100vh !important;
  overflow: hidden;
  transition: height 0.4s;
  height: 100%;
}


.js .cd-h-timeline__event {
  position: absolute;
  max-height: 100vh !important;
  z-index: 1;
  max-width: 100%;
  left: 0;
  top: 0;
  padding: 1px 5%;
  animation-name: fadeInOut;
  animation-duration: 0.5s, 1.7s, 1.7s;
  opacity: 0;
  width: 100%;
  height: 100%;
}


.js .cd-h-timeline__event--selected {
  position: relative;
  max-height: 100vh !important;
  height: 100%;
  z-index: 2;
  opacity: 1;
  background-color: #1c1c21;
}

.js .cd-h-timeline__event--enter-right,
.js .cd-h-timeline__event--leave-right {
  -webkit-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}

.js .cd-h-timeline__event--enter-left,
.js .cd-h-timeline__event--leave-left {
  -webkit-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}

.js .cd-h-timeline__event--leave-right,
.js .cd-h-timeline__event--leave-left {
  animation-direction: reverse;
}

.js .cd-h-timeline__event-content {
  max-width: 50%;

}

.js .cd-h-timeline__event-date {
  display: block;
  font-style: inherit;
  margin: 0.5em auto;
  margin: var(--space-xs) auto;
  font-weight: 600;
  font-size: 45px;
  line-height: 25px;
}

.js .cd-h-timeline__event-date::before {
  content: "";
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

html:not(.js) .cd-h-timeline__dates,
html:not(.js) .cd-h-timeline__navigation {
  display: none;
}

.img-53 {
  background-image: url(../img/53.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-1 {
  background-image: url(../img/1871.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-2 {
  background-image: url(../img/1894.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-3 {
  background-image: url(../img/1906.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-4 {
  background-image: url(../img/1910.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-5 {
  background-image: url(../img/1921.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-6 {
  background-image: url(../img/1925.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-7 {
  background-image: url(../img/1935.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-8 {
  background-image: url(../img/1946.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-9 {
  background-image: url(../img/1957.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-10 {
  background-image: url(../img/1960.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-11 {
  background-image: url(../img/1962.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-12 {
  background-image: url(../img/1972.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-13 {
  background-image: url(../img/1981.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-14 {
  background-image: url(../img/1989.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-15 {
  background-image: url(../img/1997.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-16 {
  background-image: url(../img/2000.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-17 {
  background-image: url(../img/2003.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-18 {
  background-image: url(../img/2004.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-19 {
  background-image: url(../img/2006.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-20 {
  background-image: url(../img/2007.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-21 {
  background-image: url(../img/2009.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-22 {
  background-image: url(../img/2011.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-23 {
  background-image: url(../img/2016.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-24 {
  background-image: url(../img/2017.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-25 {
  background-image: url(../img/2019.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-26 {
  background-image: url(../img/2022.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-27 {
  background-image: url(../img/2023.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.img-28 {
  background-image: url(../img/NT.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-h-timeline__events .max-he {
  height: 100%;


}

.cd-h-timeline__event-title.title-new {
  font-size: 21px;
  font-weight: 600;
  color: #f2f2f2;
  line-height: 30px;
  max-width: 800px;
}


.cd-h-timeline__event-title {
  font-size: 40px;
  font-weight: 800;
  color: #f2f2f2;
}

.first_slide {
  width: 100%;
}

.cd-h-timeline__event-title.big {
  font-size: 60px;
}

.big.oneline p {
  font-weight: 800;
  line-height: 45px;
  text-align: center;
  font-size: 30px;
}

.big.oneline p a {
  color: #fff;
}

@media (max-width: 64rem) {
  /* .cd-h-timeline__event-title {
    font-size: 28px !important;
    line-height: 28px;
  } */

  .img-1,
  .img-2,
  .img-3,
  .img-4,
  .img-5,
  .img-6,
  .img-7,
  .img-8,
  .img-9,
  .img-10,
  .img-11,
  .img-12,
  .img-13,
  .img-14,
  .img-15,
  .img-16,
  .img-17,
  .img-18,
  .img-19,
  .img-20,
  .img-21,
  .img-22,
  .img-23,
  .img-24,
  .img-25,
  .img-26,
  .img-27,
  .img-28,
  .img-29,
  .img-30,
  .img-31,
  .img-32,
  .img-33,
  .img-34,
  .img-35,
  .img-36,
  .img-37,
  .img-38,
  .img-39,
  .img-40,
  .img-41,
  .img-42,
  .img-43,
  .img-44,
  .img-45,
  .img-46,
  .img-47,
  .img-48,
  .img-49,
  .img-50,
  .img-51,
  .img-52,
  .img-53,
  .img-54,
  .img-55,
  .img-56,
  .img-57,
  .img-58,
  .img-59,
  .img-60,
  .img-61,
  .img-62,
  .img-63,
  .img-64,
  .img-65,
  .img-66,
  .img-67,
  .img-68,
  .img-69,
  .img-70,
  .img-71,
  .img-72,
  .img-73,
  .img-74,
  .img-75,
  .img-76,
  .img-77,
  .img-78,
  .img-79,
  .img-80,
  .img-81,
  .img-82,
  .img-83,
  .img-84,
  .img-85,
  .img-86,
  .img-87,
  .img-88,
  .img-89,
  .img-90,
  .img-91,
  .img-92,
  .img-93,
  .img-94,
  .img-95,
  .img-96,
  .img-97,
  .img-98,
  .img-99,
  .img-100,
  .img-101,
  .img-102 {
    background-position: bottom, right;
    background-repeat: no-repeat;
    max-width: auto !important;
  }

  .js .cd-h-timeline__event-content {
    max-width: 100%;
  }

  .img-1,
  .img-3,
  .img-4,
  .img-6,
  .img-7,
  .img-10,
  .img-12,
  .img-13,
  .img-15,
  .img-17,
  .img-19,
  .img-22,
  .img-26,
  .img-27,
  .img-32,
  .img-40,
  .img-42 {
    background-position: right;
    background-repeat: no-repeat;
    max-width: auto !important;
    position: relative;
  }

  img.childtwo {
    width: 200px !important;
    margin-left: 0;
  }
}

.slider-wrapper li::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
}

.cd-h-timeline__container_mobile {
  height: 100px;
  position: absolute;
  bottom: 0px;
  left: 5%;
  z-index: 9999;
  width: 90%;
}

.cd-h-timeline__dates_mobile {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}

.text-component p {
  font-weight: 600;
  line-height: 27px;
  padding-left: 0px;
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  text-shadow: 1px 1px 1px #000 !important;
}

.text-vcenter .p-align-center,
.align-center {
  position: absolute;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  max-width: 1270px;
  padding: 0 15px;
  margin: auto;
}

.text-vcenter .logo.childone {
  position: relative;
  z-index: 1;
}

.js .cd-h-timeline__event-content.timeline-full-content {
  max-width: 100%;
}

.ac-content h4 {
  color: #fff;
  font-weight: 600;
  margin: 15px 0;
}

.ac-content .cd-h-timeline__event-title.big {
  margin-top: 0;
}

.ac-content h4 a {
  color: #fff;
}

.timeline-twoblocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.timeline-twoblocks .video-frame,
.timeline-twoblocks .audio-frame,
.timeline-twoblocks .img,
.timeline-twoblocks .timeline-left {
  width: 49%;
}

.video-frame iframe {
  width: 100%;
  height: 400px;
}

.text-component .timeline-twoblocks h2 {
  margin-top: 0;
}

.backto {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 99;
}

.backto a {
  font-style: inherit;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}

.backto a svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: #fff;
}

.arrow-left-right {
  position: absolute;
  z-index: 999;
  left: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.arrow-left-right svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

#slider_next_new {
  left: auto;
  right: 10px;
}

.box {
  /* background-color: rgba(0, 0, 0, 0.1); */
  width: 680px;
  height: auto;
  position: absolute;
  bottom: 100px;
  left: 5%;
  ;
  padding: 25px;
}

.text-component .box h2 {
  margin-top: 0;
}

.box p {
  margin-bottom: 0;
}

.share-wrapper {
  position: absolute;
  right: 13px;
  z-index: 9999;
  top: 35px;
}

.share-wrapper ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 0;
  overflow: hidden;
  width: 100%;
  transform: translate(0px);
}

.share-wrapper .share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #d60000;
  background-color: #fff;
  text-align: center;
  font-size: 21px;
  cursor: pointer;
  margin-bottom: 0px;
  transition: 0.4s;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-wrapper .share.active {
  background-color: #000;
  z-index: 999999;
  position: sticky;
}


.share-wrapper .share .social li {
  transform: scale(1);
}

.share-wrapper .share :hover {
  transform: scale(1.1);
}

.social {
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
  transition: 0.4s;
  position: absolute;
  top: 55px;
  display: flex;
  flex-direction: column;
}

.share-wrapper .share.active::before {
  content: '\F623';
  color: #fff;
}

.social.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0px);
  padding-left: 0px;
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.social li {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0.5px 0.87px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all .3s;
  transform: inherit;
  list-style: none;
  padding: 5px;
}

.facebook {
  color: #000;
  transition: all .3s;
}

.facebook:hover {
  color: #2f70ff;
}


.logo.childone {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 9;
}

.ac-content em.cd-h-timeline__event-date a {
  color: #fff
}

@media(max-width:1400px) {
  .js .year2003 .cd-h-timeline__event-content {
    max-width: 75%;
  }

  .img-23 .first_slide {
    margin-top: 20%;
    margin-bottom: 50%;
    width: 100%;
  }

}


@media(max-width:1199px) {
  .js .year2003 .cd-h-timeline__event-content {
    max-width: 90%;
  }

  .text-component p {
    line-height: 24px;
    font-size: 17px;
  }

}

@media(max-width:991px) {
  .arrow-left-right svg {
    width: 30px;
    height: 30px;
  }

  .cd-h-timeline__event-title.title-new {
    font-size: 20px;
    font-weight: 600;
    color: #f2f2f2;
    line-height: 32px;
    max-width: 600px;
    font-size: 20px !important;
  }
}

@media(max-width:767px) {
  .js .year2003 .cd-h-timeline__event-content {
    max-width: 100%;
  }

  .box {
    width: 90%;
    margin: auto;
    left: 0px;
    right: 0px;
  }

  .last_slides h2,
  .first_slide {
    width: 90%;
  }

  .cd-h-timeline__event-title.big {
    font-size: 53px;
  }

  .big.oneline p {
    line-height: 36px;
    font-size: 24px;
  }

  .cd-h-timeline__event-title.title-new {
    padding: 0px;
  }

  .cd-h-timeline__event-title.title-new {
    padding: 0px;
    font-size: 18px !important;
    line-height: 26px;
  }

  .img-28 {
    background-image: url(../img/NT.jpg);
    background-position-x: left !important;
  }

}

@media(max-width:575px) {

  .timeline-twoblocks .video-frame,
  .timeline-twoblocks .audio-frame,
  .timeline-twoblocks .img,
  .timeline-twoblocks .timeline-left {
    width: 100%;
  }

  .timeline-twoblocks {
    margin-top: 20px;
  }

  .text-component p {
    text-align: left;
    line-height: 17px;
    font-size: 14px;
  }

  .js .cd-h-timeline__container {
    height: 57px;
  }

  .video-frame iframe {
    height: 180px;
  }

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

  .backto {
    right: 5px;
    top: 5px;
  }

  .backto a {
    font-size: 14px;
  }

  .backto a svg {
    margin-top: 1px;
  }

  .last_slides h2,
  .first_slide {
    font-size: 24px !important;
    width: 94% !important;
  }

  .big.oneline p {
    line-height: 36px;
    font-size: 24px;
    font-weight: 600;
  }

  #targetDiv {
    display: block;
  }

}



@media(max-width:479px) {



  img.childtwo {
    width: 170px !important;
    margin-left: 0;
    padding-left: 0px;
  }

  .box {
    padding: 20px 15px;
  }



  .big.oneline p {
    line-height: 26px;
    font-size: 19px;
  }

  .box {
    padding: 15px;
  }
}


@media(max-width:370px) {
  .social li {
    width: 25px;
    height: 25px;
    line-height: 12px !important;
    font-size: 16px;
  }

  .share-wrapper ul {
    gap: 6px;
    transform: translate(0px);
  }

  .social {
    top: 38px;
  }

  .social.active {
    transform: translate(0px);
    height: 157px;

  }

  .share-wrapper .share {
    width: 35px;
    height: 35px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .big.oneline p {
    line-height: 29px;
    font-size: 18px;
    padding: 0px 15px;
  }

  .share-wrapper {
    top: 40px;
  }

  img.childtwo {
    width: 150px !important;
    margin-left: 0;
    padding-left: 0px;
  }

  .box {
    padding: 15px 15px;
  }

  h3.cd-h-timeline__event-title.title-new.childone.small {
    font-size: 16px !important;
    line-height: 22px;
    margin-left: 0;
    margin-top: 0;
  }

  .js .cd-h-timeline__event-content.timeline-full-content .box {
    padding-left: 15px;
  }

  .big.oneline p {
    line-height: 28px;
    font-size: 18px;
  }

  .ac-content h4 {
    margin: 15px 0;
    font-size: 21px;
  }

  .img-19 {
    background-image: url(../img/2006.jpg);
    background-position: -633px center !important;
  }

  .img-25 {
    background-image: url(../img/2019.jpg);
    background-position: -564px center !important;
  }

  .img-1 {
    background-image: url(../img/1871.jpg);
    background-position: -742px center !important;
  }

  .img-3 {
    background-image: url(../img/1906.jpg);
    background-position: -731px center !important;
  }

  .img-9 {
    background-image: url(../img/1957.jpg);
    background-position: -600px center !important;
  }

  .img-12 {
    background-image: url(../img/1972.jpg);
    background-position: -650px center !important;
  }

  .img-14 {
    background-image: url(../img/1989.jpg);
    background-position: -700px center !important;
  }

  .img-17 {
    background-image: url(../img/2003.jpg);
    background-position: -600px center !important;
  }

  .img-21 {
    background-image: url(../img/2009.jpg);
    background-position: -600px center !important;
  }

  .img-23 {
    background-image: url(../img/2016.jpg);
    background-position: -600px center !important;
  }

  .img-6 {
    background-image: url(../img/1925.jpg);
    background-position: -350px center !important;
  }

  .img-7 {
    background-image: url(../img/1935.jpg);
    background-position: -700px center !important;
  }

  .img-8 {
    background-image: url(../img/1946.jpg);
    background-position: -600px center !important;
  }

  .img-10 {
    background-image: url(../img/1960.jpg);
    background-position: -800px center !important;
  }

  .img-11 {
    background-image: url(../img/1962.jpg);
    background-position: -600px center !important;
  }

  .img-22 {
    background-image: url(../img/2011.jpg);
    background-position: -600px center !important;
  }

  .img-13 {
    background-image: url(../img/1981.jpg);
    background-position: -800px center !important;
  }
}

/* new css */

.js .cd-h-timeline__event-content.timeline-full-content {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.js .cd-h-timeline__event-content.timeline-full-content .box {
  position: relative;
  width: 100%;
  left: auto;
  bottom: auto;
}

.timelines-logo .logo:last-child {
  display: none;
}

#targetDiv {
  display: none;
}

.swipe-to {
  position: absolute;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.swipe-content {
  max-width: 300px;
  text-align: center;
}

.swipe-to h5 {
  font-size: 22px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.swipe-to img {
  width: 60px;
}

.swipe-to .swipe-button {
  background: #fff;
  border: none;
  border-radius: 5px;
  color: #000;
  font-size: 19px;
  font-weight: 600;
  padding: 7px;
  margin-top: 5px;
  cursor: pointer;
}

.backto {
  top: 5px;
}

@media(max-width:1400px) {
  .js .cd-h-timeline__container {
    height: 58px;
  }

  .js .cd-h-timeline__event-content.timeline-full-content {
    max-width: 60%;
  }

  .js .cd-h-timeline__event-content.timeline-full-content {
    grid-template-columns: 1fr;
  }
}

@media(max-width:991px) {
  .text-component p {
    line-height: 28px;
    font-size: 18px;
  }

  .cd-h-timeline__event-title {
    font-size: 36px;
    color: #fff;
    line-height: 43px;
  }
}

@media(max-width:767px) {
  .js .cd-h-timeline__event-content.timeline-full-content {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .js .cd-h-timeline__event-content.timeline-full-content .video-frame {
    width: 100%;
  }

  .video-frame iframe {
    width: 100%;
    height: 220px;
  }

  .audio-frame {
    width: 100%;
  }

  .js .cd-h-timeline__event-content.timeline-full-content .box {
    margin: 0;
    padding-left: 0px;
  }

  .big.oneline p {
    font-weight: 600;
    line-height: 35px;
    font-size: 23px;
  }

  .js .cd-h-timeline__event-content.timeline-full-content {
    max-width: 100%;
  }

}

@media(max-width:575px) {
  .text-component p {
    line-height: 23px;
    font-size: 18px;
  }

  .video-frame iframe {
    width: 100%;
    height: 200px;
  }

  .js .cd-h-timeline__event-content.timeline-full-content {
    padding-bottom: 70px;
  }

  .js .cd-h-timeline__event-content.timeline-full-content .box {
    padding-left: 20px;
  }

  .timelines-logo .logo:first-child {
    display: none;
  }

  .timelines-logo .logo:last-child {
    display: block;
    width: 80px;
  }

  .backto {
    display: none;
  }

  .share-wrapper {
    top: 9px;
  }

  .logo.childone {
    top: 9px;
  }

  .cd-h-timeline__event-title.big {
    font-size: 40px;
  }

  .arrow-left-right {
    display: none;
  }

  .js .cd-h-timeline__event-content.timeline-full-content .box {
    padding: 0px;
  }
  .js .cd-h-timeline__event-content.timeline-full-content {
    height: 100%;
    display: flex;
    justify-content: center;
  }
  #targetDiv {
    display: block;
  }

}

@media (max-width: 480px) {
  .timelines-logo .logo:last-child {
    display: block;
    top: 10px;
    width: 67px !important;
  }

  .last_slides h2,
  .first_slide {
    width: 100%;
  }

  .cd-h-timeline__event-title.big {
    font-size: 30px;
  }

  .ac-content h4 {
    font-size: 21px;
  }

  .last_slides h2,
  .first_slide {
    width: 100% !important;
  }

  .last_slides h2,
  .first_slide {
    width: 100% !important;
  }
  .hight-scroll {
    max-height: 220px;
    overflow: scroll;
  }

  .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff !important;
  }

  .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(255, 255, 255, .5) !important;
  }
  .cd-h-timeline__event-title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 390px){
  
  .timelines-logo .logo:last-child {
    display: block;
    top: 10px;
    width: 41px !important;
  }

  .share-wrapper {
    top: 10px;
  }

  .social li {
    width: 22px;
    height: 22px;
    line-height: 11px !important;
    font-size: 14px;
  }

  .share-wrapper ul {
    gap: 6px;
    transform: translate(0px);
  }

  .social {
    top: 38px;
  }

  .social.active {
    transform: translate(0px);
    height: 133px;
  }

  .share-wrapper .share {
    width: 27px;
    height: 27px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .big.oneline p {
    font-weight: 600;
    line-height: 29px;
    font-size: 20px;
  }
}
@media screen and (max-width:390px), 
       screen and (max-height: 670px) {
        .img-1 {
          background-position: -700px center !important;
        }
      
        .img-3 {
          background-position: -650px -49px !important;
        }
      
        .img-6 {
          background-position: -380px -58px !important;
        }
      
        .img-7 {
          background-position: -650px center !important;
        }
      
        .img-9 {
          background-position: -600px center !important;
        }
        .img-12 {
          background-position: -600px center !important;
        }
        .img-13 {
          background-position: -700px center !important;
        }
        .img-14 {
          background-position: -600px center !important;
        }
        .img-17 {
          background-position: -600px center !important;
        }
        .img-19 {
          background-position: -600px center !important;
        }
        .img-21 {
          background-position: -530px center !important;
        }
        .img-25 {
          background-position: -530px center !important;
        }
        .img-27 {
          background-position: -700px center !important;
        }
}
@media (max-width: 370px) {

  .js .cd-h-timeline__event-content.timeline-full-content .img {
    width: 100%;
    align-self: baseline;
  }

  .big.oneline p {
    line-height: 22px;
    font-size: 15px;
    padding: 0;
  }
  .js .cd-h-timeline__event-date {
    font-size: 32px;
  }

  .js .cd-h-timeline__event-content.timeline-full-content {
    padding-bottom: 0px;
  }

  .cd-h-timeline__event-title {
    font-size: 26px !important;
    line-height: 27px;
  }

  .logo.childone {
    top: 4px;
  }
  .cd-h-timeline__event-title {
    font-size: 25px !important;
    line-height: 35px;
  }
}

@media (max-width: 340px) {
  .img-17 .text-component p {
    line-height: 18px;
    font-size: 12px;
  }

  .img-17 .cd-h-timeline__event-title {
    font-size: 22px !important;
    line-height: 27px;
  }

  .cd-h-timeline__event-title {
    font-size: 23px !important;
    line-height: 27px;
  }

  .box {
    max-height: 359px;
    overflow: scroll;
  }
}