.btn {
  appearance: none;
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  padding: 0 calc(var(--size) * 2 / 3);
  height: var(--size);
  cursor: pointer;
  text-align: center;
  color: #fff !important;
  background: #59bfe6 !important;
  letter-spacing: 0.5px;
  font-weight: 400;
  border: none;
  border-radius: calc(var(--size) / 2);
  transition: 0.25s ease;
}

.accordion__trigger:hover,
.accordion__trigger:focus {
  background: inherit !important;
}

.btn {
  --size: 2.5rem;
}

@media screen and (min-width: 20rem) {
  .btn {
    --size: calc(2.5rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .btn {
    --size: 3.5rem;
  }
}

.btn {
  gap: 1rem;
}

@media screen and (min-width: 20rem) {
  .btn {
    gap: calc(1rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .btn {
    gap: 1.25rem;
  }
}

.btn {
  font-size: 1rem;
}

.btn:hover,
button:hover,
.btn.active,
button:active,
.btn:focus,
button:focus {
  background: #163d6b !important;
  border-bottom-color: inherit !important;
  outline: inherit !important;
  box-shadow: inherit !important;
}

@media screen and (min-width: 20rem) {
  .btn {
    font-size: calc(1rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .btn {
    font-size: 1.25rem;
  }
}

.btn::after {
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '';
}

@media speech {
  .btn::after {
    display: none;
    visibility: hidden;
  }
}

.disabled.btn,
[disabled].btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn:hover {
  background: #163d6b;
  color: #fff;
  text-decoration: none;
}

.btn--link {
  background: rgba(0, 0, 0, 0) !important;
  color: #59bfe6 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.btn--link:hover,
.btn--link:focus {
  background: rgba(0, 0, 0, 0) !important;
  text-decoration: none !important;
  color: #1d1c3f !important;
}

.btn--down::after {
  transform: rotate(90deg);
}

.glyph-loading {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  z-index: 0;
  align-items: center;
  justify-content: center;
}

.glyph-loading:after {
  content: '';
  grid-area: 1/1/2/2;
  align-self: center;
  justify-self: center;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid rgba(0, 0, 0, 0);
  border-top-color: currentColor;
  z-index: 2;
  animation: glyph-loading 1s ease infinite;
}

.glyph-loading:before {
  content: '';
  align-self: center;
  justify-self: center;
  grid-area: 1/1/2/2;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 0.25em solid currentColor;
  opacity: 0.5;
  z-index: 1;
}

:root {
  --xs: 0;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --sm_dn: 575px;
  --md_dn: 767px;
  --lg_dn: 991px;
  --xl_dn: 1199px;
  --fill-darkGray: #444;
  --fill-lightGray: #f3f3f3;
  --fill-lightBlue: #e9f7fc;
  --fill-darkBlue: #1d1c3f;
  --fill-deepBlue: #197fa6;
  --fill-blue: #59bfe6;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a,
a * {
  color: inherit !important;
  text-decoration: inherit !important;
  text-decoration-color: inherit !important;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --xs: 0;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --sm_dn: 575px;
  --md_dn: 767px;
  --lg_dn: 991px;
  --xl_dn: 1199px;
  --fill-darkGray: #444;
  --fill-lightGray: #f3f3f3;
  --fill-lightBlue: #e9f7fc;
  --fill-darkBlue: #1d1c3f;
  --fill-deepBlue: #197fa6;
  --fill-blue: #59bfe6;
}

html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-family: 'montserrat', sans-serif;
  font-weight: 400;
  color: #444;
  max-width: 100%;
  overflow-x: hidden;
}

body:where(.using-mouse) *:focus {
  outline: none;
}

body:where(:not(.using-mouse)) *:focus {
  outline: none;
  outline: 3px solid #59bfe6;
}

.hideVisually,
.hide-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

*:where(img) {
  max-width: 100%;
}

*:where(img):where([height]) {
  height: auto;
}

*:where(img):where([width]) {
  width: auto;
}

*:where(img):where([style*='--height'][style*='--width']) {
  aspect-ratio: var(--width) / var(--height);
  object-fit: cover;
  object-position: 50% 50%;
}

@font-face {
  font-family: 'icons';
  src: url('fonts/icons/icons.woff') format('woff'), url('fonts/icons/icons.ttf') format('truetype'),
    url('fonts/icons/icons.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
hr,
ul,
ol,
dl,
blockquote,
p,
address,
figure,
pre {
  margin: 0 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1,
.h1 {
  font-size: 2.25rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

hr {
  margin-top: 1.5rem;
  border: none;
  border-top: 1px solid;
}

a {
  transition: all 0.25s ease-in-out;
  color: #59bfe6;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #197fa6;
  text-decoration: underline;
}

[class^='glyph-']::before,
[class*=' glyph-']::before {
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media speech {
  [class^='glyph-']::before,
  [class*=' glyph-']::before {
    display: none;
    visibility: hidden;
  }
}

@keyframes glyph-loading {
  to {
    transform: rotate(360deg);
  }
}

@supports (display: grid) {
  .page {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100vh;
  }
}

section {
  width: 100%;
}

section .section__inner {
  position: relative;
}

section.section--sm > .section__inner {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 64rem;
}

@media (min-width: 68rem) {
  section.section--sm > .section__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

section:not(.section--sm) > .section__inner {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
}

@media (min-width: 86rem) {
  section:not(.section--sm) > .section__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  section.section--split > .section__inner {
    display: flex;
  }

  section.section--split > .section__inner > .section__main,
  section.section--split > .section__inner > .section__rail {
    overflow: hidden;
    margin: 0 1.5rem;
  }

  section.section--split > .section__inner > .section__main:nth-child(1),
  section.section--split > .section__inner > .section__rail:nth-child(1) {
    margin-left: 0;
  }

  section.section--split > .section__inner > .section__main:nth-child(2),
  section.section--split > .section__inner > .section__rail:nth-child(2) {
    margin-right: 0;
  }

  section.section--split > .section__inner > .section__main:only-child,
  section.section--split > .section__inner > .section__rail:only-child {
    margin: 0;
  }

  section.section--split > .section__inner > .section__main {
    flex: 1 1 calc(100% - 1.5rem);
  }

  section.section--split > .section__inner > .section__rail {
    flex: 0 0 calc(22rem - 1.5rem);
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max-content, 1fr));
  gap: 0;
  grid-auto-flow: dense;
  justify-items: stretch;
  align-items: stretch;
}

.grid__item {
  grid-column: span 1 / span 1;
  grid-row: span 1 / span 1;
}

.grid__item > *,
.grid__item > blue-component > * {
  max-width: 100%;
}

.grid--match-height .grid__item {
  display: flex;
}

.grid--match-height .grid__item > *,
.grid--match-height .grid__item > blue-component > * {
  height: auto;
  align-self: stretch;
  flex: 1 1 100%;
}

.grid--gap-0 {
  gap: 0;
}

.grid--gap-05 {
  gap: 0.5rem;
}

.grid--gap-1 {
  gap: 1rem;
}

.grid--gap-2 {
  gap: 2rem;
}

.grid--gap-3 {
  gap: 3rem;
}

.grid--gap-4 {
  gap: 4rem;
}

.grid--gap-x-0 {
  row-gap: 0;
}

.grid--gap-x-05 {
  row-gap: 0.5rem;
}

.grid--gap-x-1 {
  row-gap: 1rem;
}

.grid--gap-x-2 {
  row-gap: 2rem;
}

.grid--gap-x-3 {
  row-gap: 3rem;
}

.grid--gap-x-4 {
  row-gap: 4rem;
}

.grid--gap-y-0 {
  column-gap: 0;
}

.grid--gap-y-05 {
  column-gap: 0.5rem;
}

.grid--gap-y-1 {
  column-gap: 1rem;
}

.grid--gap-y-2 {
  column-gap: 2rem;
}

.grid--gap-y-3 {
  column-gap: 3rem;
}

.grid--gap-y-4 {
  column-gap: 4rem;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid__item--col-span-1 {
  grid-column: span 1 / span 1;
}

.grid__item--row-span-1 {
  grid-row: span 1 / span 1;
}

.grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid__item--col-span-2 {
  grid-column: span 2 / span 2;
}

.grid__item--row-span-2 {
  grid-row: span 2 / span 2;
}

.grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid__item--col-span-3 {
  grid-column: span 3 / span 3;
}

.grid__item--row-span-3 {
  grid-row: span 3 / span 3;
}

.grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid__item--col-span-4 {
  grid-column: span 4 / span 4;
}

.grid__item--row-span-4 {
  grid-row: span 4 / span 4;
}

.grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid__item--col-span-5 {
  grid-column: span 5 / span 5;
}

.grid__item--row-span-5 {
  grid-row: span 5 / span 5;
}

.grid--cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid__item--col-span-6 {
  grid-column: span 6 / span 6;
}

.grid__item--row-span-6 {
  grid-row: span 6 / span 6;
}

.grid--cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid__item--col-span-7 {
  grid-column: span 7 / span 7;
}

.grid__item--row-span-7 {
  grid-row: span 7 / span 7;
}

.grid--cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid__item--col-span-8 {
  grid-column: span 8 / span 8;
}

.grid__item--row-span-8 {
  grid-row: span 8 / span 8;
}

.grid--cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid__item--col-span-9 {
  grid-column: span 9 / span 9;
}

.grid__item--row-span-9 {
  grid-row: span 9 / span 9;
}

.grid--cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid__item--col-span-10 {
  grid-column: span 10 / span 10;
}

.grid__item--row-span-10 {
  grid-row: span 10 / span 10;
}

.grid--cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid__item--col-span-11 {
  grid-column: span 11 / span 11;
}

.grid__item--row-span-11 {
  grid-row: span 11 / span 11;
}

.grid--cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid__item--col-span-12 {
  grid-column: span 12 / span 12;
}

.grid__item--row-span-12 {
  grid-row: span 12 / span 12;
}

.grid__item--col-start-1 {
  grid-column-start: 1;
}

.grid__item--col-end-1 {
  grid-column-end: 1;
}

.grid__item--col-start-2 {
  grid-column-start: 2;
}

.grid__item--col-end-2 {
  grid-column-end: 2;
}

.grid__item--col-start-3 {
  grid-column-start: 3;
}

.grid__item--col-end-3 {
  grid-column-end: 3;
}

.grid__item--col-start-4 {
  grid-column-start: 4;
}

.grid__item--col-end-4 {
  grid-column-end: 4;
}

.grid__item--col-start-5 {
  grid-column-start: 5;
}

.grid__item--col-end-5 {
  grid-column-end: 5;
}

.grid__item--col-start-6 {
  grid-column-start: 6;
}

.grid__item--col-end-6 {
  grid-column-end: 6;
}

.grid__item--col-start-7 {
  grid-column-start: 7;
}

.grid__item--col-end-7 {
  grid-column-end: 7;
}

.grid__item--col-start-8 {
  grid-column-start: 8;
}

.grid__item--col-end-8 {
  grid-column-end: 8;
}

.grid__item--col-start-9 {
  grid-column-start: 9;
}

.grid__item--col-end-9 {
  grid-column-end: 9;
}

.grid__item--col-start-10 {
  grid-column-start: 10;
}

.grid__item--col-end-10 {
  grid-column-end: 10;
}

.grid__item--col-start-11 {
  grid-column-start: 11;
}

.grid__item--col-end-11 {
  grid-column-end: 11;
}

.grid__item--col-start-12 {
  grid-column-start: 12;
}

.grid__item--col-end-12 {
  grid-column-end: 12;
}

@media (min-width: 0) {
  .grid--gap-xs0 {
    gap: 0;
  }

  .grid--gap-xs05 {
    gap: 0.5rem;
  }

  .grid--gap-xs1 {
    gap: 1rem;
  }

  .grid--gap-xs2 {
    gap: 2rem;
  }

  .grid--gap-xs3 {
    gap: 3rem;
  }

  .grid--gap-xs4 {
    gap: 4rem;
  }

  .grid--gap-x-xs0 {
    row-gap: 0;
  }

  .grid--gap-x-xs05 {
    row-gap: 0.5rem;
  }

  .grid--gap-x-xs1 {
    row-gap: 1rem;
  }

  .grid--gap-x-xs2 {
    row-gap: 2rem;
  }

  .grid--gap-x-xs3 {
    row-gap: 3rem;
  }

  .grid--gap-x-xs4 {
    row-gap: 4rem;
  }

  .grid--gap-y-xs0 {
    column-gap: 0;
  }

  .grid--gap-y-xs05 {
    column-gap: 0.5rem;
  }

  .grid--gap-y-xs1 {
    column-gap: 1rem;
  }

  .grid--gap-y-xs2 {
    column-gap: 2rem;
  }

  .grid--gap-y-xs3 {
    column-gap: 3rem;
  }

  .grid--gap-y-xs4 {
    column-gap: 4rem;
  }

  .grid--cols-xs1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid__item--col-span-xs1 {
    grid-column: span 1 / span 1;
  }

  .grid__item--row-span-xs1 {
    grid-row: span 1 / span 1;
  }

  .grid--cols-xs2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid__item--col-span-xs2 {
    grid-column: span 2 / span 2;
  }

  .grid__item--row-span-xs2 {
    grid-row: span 2 / span 2;
  }

  .grid--cols-xs3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid__item--col-span-xs3 {
    grid-column: span 3 / span 3;
  }

  .grid__item--row-span-xs3 {
    grid-row: span 3 / span 3;
  }

  .grid--cols-xs4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid__item--col-span-xs4 {
    grid-column: span 4 / span 4;
  }

  .grid__item--row-span-xs4 {
    grid-row: span 4 / span 4;
  }

  .grid--cols-xs5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid__item--col-span-xs5 {
    grid-column: span 5 / span 5;
  }

  .grid__item--row-span-xs5 {
    grid-row: span 5 / span 5;
  }

  .grid--cols-xs6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid__item--col-span-xs6 {
    grid-column: span 6 / span 6;
  }

  .grid__item--row-span-xs6 {
    grid-row: span 6 / span 6;
  }

  .grid--cols-xs7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .grid__item--col-span-xs7 {
    grid-column: span 7 / span 7;
  }

  .grid__item--row-span-xs7 {
    grid-row: span 7 / span 7;
  }

  .grid--cols-xs8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .grid__item--col-span-xs8 {
    grid-column: span 8 / span 8;
  }

  .grid__item--row-span-xs8 {
    grid-row: span 8 / span 8;
  }

  .grid--cols-xs9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .grid__item--col-span-xs9 {
    grid-column: span 9 / span 9;
  }

  .grid__item--row-span-xs9 {
    grid-row: span 9 / span 9;
  }

  .grid--cols-xs10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .grid__item--col-span-xs10 {
    grid-column: span 10 / span 10;
  }

  .grid__item--row-span-xs10 {
    grid-row: span 10 / span 10;
  }

  .grid--cols-xs11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .grid__item--col-span-xs11 {
    grid-column: span 11 / span 11;
  }

  .grid__item--row-span-xs11 {
    grid-row: span 11 / span 11;
  }

  .grid--cols-xs12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid__item--col-span-xs12 {
    grid-column: span 12 / span 12;
  }

  .grid__item--row-span-xs12 {
    grid-row: span 12 / span 12;
  }

  .grid__item--col-start-xs1 {
    grid-column-start: 1;
  }

  .grid__item--col-end-xs1 {
    grid-column-end: 1;
  }

  .grid__item--col-start-xs2 {
    grid-column-start: 2;
  }

  .grid__item--col-end-xs2 {
    grid-column-end: 2;
  }

  .grid__item--col-start-xs3 {
    grid-column-start: 3;
  }

  .grid__item--col-end-xs3 {
    grid-column-end: 3;
  }

  .grid__item--col-start-xs4 {
    grid-column-start: 4;
  }

  .grid__item--col-end-xs4 {
    grid-column-end: 4;
  }

  .grid__item--col-start-xs5 {
    grid-column-start: 5;
  }

  .grid__item--col-end-xs5 {
    grid-column-end: 5;
  }

  .grid__item--col-start-xs6 {
    grid-column-start: 6;
  }

  .grid__item--col-end-xs6 {
    grid-column-end: 6;
  }

  .grid__item--col-start-xs7 {
    grid-column-start: 7;
  }

  .grid__item--col-end-xs7 {
    grid-column-end: 7;
  }

  .grid__item--col-start-xs8 {
    grid-column-start: 8;
  }

  .grid__item--col-end-xs8 {
    grid-column-end: 8;
  }

  .grid__item--col-start-xs9 {
    grid-column-start: 9;
  }

  .grid__item--col-end-xs9 {
    grid-column-end: 9;
  }

  .grid__item--col-start-xs10 {
    grid-column-start: 10;
  }

  .grid__item--col-end-xs10 {
    grid-column-end: 10;
  }

  .grid__item--col-start-xs11 {
    grid-column-start: 11;
  }

  .grid__item--col-end-xs11 {
    grid-column-end: 11;
  }

  .grid__item--col-start-xs12 {
    grid-column-start: 12;
  }

  .grid__item--col-end-xs12 {
    grid-column-end: 12;
  }
}

@media (min-width: 576px) {
  .grid--gap-sm0 {
    gap: 0;
  }

  .grid--gap-sm05 {
    gap: 0.5rem;
  }

  .grid--gap-sm1 {
    gap: 1rem;
  }

  .grid--gap-sm2 {
    gap: 2rem;
  }

  .grid--gap-sm3 {
    gap: 3rem;
  }

  .grid--gap-sm4 {
    gap: 4rem;
  }

  .grid--gap-x-sm0 {
    row-gap: 0;
  }

  .grid--gap-x-sm05 {
    row-gap: 0.5rem;
  }

  .grid--gap-x-sm1 {
    row-gap: 1rem;
  }

  .grid--gap-x-sm2 {
    row-gap: 2rem;
  }

  .grid--gap-x-sm3 {
    row-gap: 3rem;
  }

  .grid--gap-x-sm4 {
    row-gap: 4rem;
  }

  .grid--gap-y-sm0 {
    column-gap: 0;
  }

  .grid--gap-y-sm05 {
    column-gap: 0.5rem;
  }

  .grid--gap-y-sm1 {
    column-gap: 1rem;
  }

  .grid--gap-y-sm2 {
    column-gap: 2rem;
  }

  .grid--gap-y-sm3 {
    column-gap: 3rem;
  }

  .grid--gap-y-sm4 {
    column-gap: 4rem;
  }

  .grid--cols-sm1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid__item--col-span-sm1 {
    grid-column: span 1 / span 1;
  }

  .grid__item--row-span-sm1 {
    grid-row: span 1 / span 1;
  }

  .grid--cols-sm2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid__item--col-span-sm2 {
    grid-column: span 2 / span 2;
  }

  .grid__item--row-span-sm2 {
    grid-row: span 2 / span 2;
  }

  .grid--cols-sm3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid__item--col-span-sm3 {
    grid-column: span 3 / span 3;
  }

  .grid__item--row-span-sm3 {
    grid-row: span 3 / span 3;
  }

  .grid--cols-sm4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid__item--col-span-sm4 {
    grid-column: span 4 / span 4;
  }

  .grid__item--row-span-sm4 {
    grid-row: span 4 / span 4;
  }

  .grid--cols-sm5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid__item--col-span-sm5 {
    grid-column: span 5 / span 5;
  }

  .grid__item--row-span-sm5 {
    grid-row: span 5 / span 5;
  }

  .grid--cols-sm6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid__item--col-span-sm6 {
    grid-column: span 6 / span 6;
  }

  .grid__item--row-span-sm6 {
    grid-row: span 6 / span 6;
  }

  .grid--cols-sm7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .grid__item--col-span-sm7 {
    grid-column: span 7 / span 7;
  }

  .grid__item--row-span-sm7 {
    grid-row: span 7 / span 7;
  }

  .grid--cols-sm8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .grid__item--col-span-sm8 {
    grid-column: span 8 / span 8;
  }

  .grid__item--row-span-sm8 {
    grid-row: span 8 / span 8;
  }

  .grid--cols-sm9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .grid__item--col-span-sm9 {
    grid-column: span 9 / span 9;
  }

  .grid__item--row-span-sm9 {
    grid-row: span 9 / span 9;
  }

  .grid--cols-sm10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .grid__item--col-span-sm10 {
    grid-column: span 10 / span 10;
  }

  .grid__item--row-span-sm10 {
    grid-row: span 10 / span 10;
  }

  .grid--cols-sm11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .grid__item--col-span-sm11 {
    grid-column: span 11 / span 11;
  }

  .grid__item--row-span-sm11 {
    grid-row: span 11 / span 11;
  }

  .grid--cols-sm12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid__item--col-span-sm12 {
    grid-column: span 12 / span 12;
  }

  .grid__item--row-span-sm12 {
    grid-row: span 12 / span 12;
  }

  .grid__item--col-start-sm1 {
    grid-column-start: 1;
  }

  .grid__item--col-end-sm1 {
    grid-column-end: 1;
  }

  .grid__item--col-start-sm2 {
    grid-column-start: 2;
  }

  .grid__item--col-end-sm2 {
    grid-column-end: 2;
  }

  .grid__item--col-start-sm3 {
    grid-column-start: 3;
  }

  .grid__item--col-end-sm3 {
    grid-column-end: 3;
  }

  .grid__item--col-start-sm4 {
    grid-column-start: 4;
  }

  .grid__item--col-end-sm4 {
    grid-column-end: 4;
  }

  .grid__item--col-start-sm5 {
    grid-column-start: 5;
  }

  .grid__item--col-end-sm5 {
    grid-column-end: 5;
  }

  .grid__item--col-start-sm6 {
    grid-column-start: 6;
  }

  .grid__item--col-end-sm6 {
    grid-column-end: 6;
  }

  .grid__item--col-start-sm7 {
    grid-column-start: 7;
  }

  .grid__item--col-end-sm7 {
    grid-column-end: 7;
  }

  .grid__item--col-start-sm8 {
    grid-column-start: 8;
  }

  .grid__item--col-end-sm8 {
    grid-column-end: 8;
  }

  .grid__item--col-start-sm9 {
    grid-column-start: 9;
  }

  .grid__item--col-end-sm9 {
    grid-column-end: 9;
  }

  .grid__item--col-start-sm10 {
    grid-column-start: 10;
  }

  .grid__item--col-end-sm10 {
    grid-column-end: 10;
  }

  .grid__item--col-start-sm11 {
    grid-column-start: 11;
  }

  .grid__item--col-end-sm11 {
    grid-column-end: 11;
  }

  .grid__item--col-start-sm12 {
    grid-column-start: 12;
  }

  .grid__item--col-end-sm12 {
    grid-column-end: 12;
  }
}

@media (min-width: 768px) {
  .grid--gap-md0 {
    gap: 0;
  }

  .grid--gap-md05 {
    gap: 0.5rem;
  }

  .grid--gap-md1 {
    gap: 1rem;
  }

  .grid--gap-md2 {
    gap: 2rem;
  }

  .grid--gap-md3 {
    gap: 3rem;
  }

  .grid--gap-md4 {
    gap: 4rem;
  }

  .grid--gap-x-md0 {
    row-gap: 0;
  }

  .grid--gap-x-md05 {
    row-gap: 0.5rem;
  }

  .grid--gap-x-md1 {
    row-gap: 1rem;
  }

  .grid--gap-x-md2 {
    row-gap: 2rem;
  }

  .grid--gap-x-md3 {
    row-gap: 3rem;
  }

  .grid--gap-x-md4 {
    row-gap: 4rem;
  }

  .grid--gap-y-md0 {
    column-gap: 0;
  }

  .grid--gap-y-md05 {
    column-gap: 0.5rem;
  }

  .grid--gap-y-md1 {
    column-gap: 1rem;
  }

  .grid--gap-y-md2 {
    column-gap: 2rem;
  }

  .grid--gap-y-md3 {
    column-gap: 3rem;
  }

  .grid--gap-y-md4 {
    column-gap: 4rem;
  }

  .grid--cols-md1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid__item--col-span-md1 {
    grid-column: span 1 / span 1;
  }

  .grid__item--row-span-md1 {
    grid-row: span 1 / span 1;
  }

  .grid--cols-md2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid__item--col-span-md2 {
    grid-column: span 2 / span 2;
  }

  .grid__item--row-span-md2 {
    grid-row: span 2 / span 2;
  }

  .grid--cols-md3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid__item--col-span-md3 {
    grid-column: span 3 / span 3;
  }

  .grid__item--row-span-md3 {
    grid-row: span 3 / span 3;
  }

  .grid--cols-md4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid__item--col-span-md4 {
    grid-column: span 4 / span 4;
  }

  .grid__item--row-span-md4 {
    grid-row: span 4 / span 4;
  }

  .grid--cols-md5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid__item--col-span-md5 {
    grid-column: span 5 / span 5;
  }

  .grid__item--row-span-md5 {
    grid-row: span 5 / span 5;
  }

  .grid--cols-md6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid__item--col-span-md6 {
    grid-column: span 6 / span 6;
  }

  .grid__item--row-span-md6 {
    grid-row: span 6 / span 6;
  }

  .grid--cols-md7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .grid__item--col-span-md7 {
    grid-column: span 7 / span 7;
  }

  .grid__item--row-span-md7 {
    grid-row: span 7 / span 7;
  }

  .grid--cols-md8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .grid__item--col-span-md8 {
    grid-column: span 8 / span 8;
  }

  .grid__item--row-span-md8 {
    grid-row: span 8 / span 8;
  }

  .grid--cols-md9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .grid__item--col-span-md9 {
    grid-column: span 9 / span 9;
  }

  .grid__item--row-span-md9 {
    grid-row: span 9 / span 9;
  }

  .grid--cols-md10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .grid__item--col-span-md10 {
    grid-column: span 10 / span 10;
  }

  .grid__item--row-span-md10 {
    grid-row: span 10 / span 10;
  }

  .grid--cols-md11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .grid__item--col-span-md11 {
    grid-column: span 11 / span 11;
  }

  .grid__item--row-span-md11 {
    grid-row: span 11 / span 11;
  }

  .grid--cols-md12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid__item--col-span-md12 {
    grid-column: span 12 / span 12;
  }

  .grid__item--row-span-md12 {
    grid-row: span 12 / span 12;
  }

  .grid__item--col-start-md1 {
    grid-column-start: 1;
  }

  .grid__item--col-end-md1 {
    grid-column-end: 1;
  }

  .grid__item--col-start-md2 {
    grid-column-start: 2;
  }

  .grid__item--col-end-md2 {
    grid-column-end: 2;
  }

  .grid__item--col-start-md3 {
    grid-column-start: 3;
  }

  .grid__item--col-end-md3 {
    grid-column-end: 3;
  }

  .grid__item--col-start-md4 {
    grid-column-start: 4;
  }

  .grid__item--col-end-md4 {
    grid-column-end: 4;
  }

  .grid__item--col-start-md5 {
    grid-column-start: 5;
  }

  .grid__item--col-end-md5 {
    grid-column-end: 5;
  }

  .grid__item--col-start-md6 {
    grid-column-start: 6;
  }

  .grid__item--col-end-md6 {
    grid-column-end: 6;
  }

  .grid__item--col-start-md7 {
    grid-column-start: 7;
  }

  .grid__item--col-end-md7 {
    grid-column-end: 7;
  }

  .grid__item--col-start-md8 {
    grid-column-start: 8;
  }

  .grid__item--col-end-md8 {
    grid-column-end: 8;
  }

  .grid__item--col-start-md9 {
    grid-column-start: 9;
  }

  .grid__item--col-end-md9 {
    grid-column-end: 9;
  }

  .grid__item--col-start-md10 {
    grid-column-start: 10;
  }

  .grid__item--col-end-md10 {
    grid-column-end: 10;
  }

  .grid__item--col-start-md11 {
    grid-column-start: 11;
  }

  .grid__item--col-end-md11 {
    grid-column-end: 11;
  }

  .grid__item--col-start-md12 {
    grid-column-start: 12;
  }

  .grid__item--col-end-md12 {
    grid-column-end: 12;
  }
}

@media (min-width: 992px) {
  .grid--gap-lg0 {
    gap: 0;
  }

  .grid--gap-lg05 {
    gap: 0.5rem;
  }

  .grid--gap-lg1 {
    gap: 1rem;
  }

  .grid--gap-lg2 {
    gap: 2rem;
  }

  .grid--gap-lg3 {
    gap: 3rem;
  }

  .grid--gap-lg4 {
    gap: 4rem;
  }

  .grid--gap-x-lg0 {
    row-gap: 0;
  }

  .grid--gap-x-lg05 {
    row-gap: 0.5rem;
  }

  .grid--gap-x-lg1 {
    row-gap: 1rem;
  }

  .grid--gap-x-lg2 {
    row-gap: 2rem;
  }

  .grid--gap-x-lg3 {
    row-gap: 3rem;
  }

  .grid--gap-x-lg4 {
    row-gap: 4rem;
  }

  .grid--gap-y-lg0 {
    column-gap: 0;
  }

  .grid--gap-y-lg05 {
    column-gap: 0.5rem;
  }

  .grid--gap-y-lg1 {
    column-gap: 1rem;
  }

  .grid--gap-y-lg2 {
    column-gap: 2rem;
  }

  .grid--gap-y-lg3 {
    column-gap: 3rem;
  }

  .grid--gap-y-lg4 {
    column-gap: 4rem;
  }

  .grid--cols-lg1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid__item--col-span-lg1 {
    grid-column: span 1 / span 1;
  }

  .grid__item--row-span-lg1 {
    grid-row: span 1 / span 1;
  }

  .grid--cols-lg2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid__item--col-span-lg2 {
    grid-column: span 2 / span 2;
  }

  .grid__item--row-span-lg2 {
    grid-row: span 2 / span 2;
  }

  .grid--cols-lg3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid__item--col-span-lg3 {
    grid-column: span 3 / span 3;
  }

  .grid__item--row-span-lg3 {
    grid-row: span 3 / span 3;
  }

  .grid--cols-lg4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid__item--col-span-lg4 {
    grid-column: span 4 / span 4;
  }

  .grid__item--row-span-lg4 {
    grid-row: span 4 / span 4;
  }

  .grid--cols-lg5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid__item--col-span-lg5 {
    grid-column: span 5 / span 5;
  }

  .grid__item--row-span-lg5 {
    grid-row: span 5 / span 5;
  }

  .grid--cols-lg6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid__item--col-span-lg6 {
    grid-column: span 6 / span 6;
  }

  .grid__item--row-span-lg6 {
    grid-row: span 6 / span 6;
  }

  .grid--cols-lg7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .grid__item--col-span-lg7 {
    grid-column: span 7 / span 7;
  }

  .grid__item--row-span-lg7 {
    grid-row: span 7 / span 7;
  }

  .grid--cols-lg8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .grid__item--col-span-lg8 {
    grid-column: span 8 / span 8;
  }

  .grid__item--row-span-lg8 {
    grid-row: span 8 / span 8;
  }

  .grid--cols-lg9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .grid__item--col-span-lg9 {
    grid-column: span 9 / span 9;
  }

  .grid__item--row-span-lg9 {
    grid-row: span 9 / span 9;
  }

  .grid--cols-lg10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .grid__item--col-span-lg10 {
    grid-column: span 10 / span 10;
  }

  .grid__item--row-span-lg10 {
    grid-row: span 10 / span 10;
  }

  .grid--cols-lg11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .grid__item--col-span-lg11 {
    grid-column: span 11 / span 11;
  }

  .grid__item--row-span-lg11 {
    grid-row: span 11 / span 11;
  }

  .grid--cols-lg12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid__item--col-span-lg12 {
    grid-column: span 12 / span 12;
  }

  .grid__item--row-span-lg12 {
    grid-row: span 12 / span 12;
  }

  .grid__item--col-start-lg1 {
    grid-column-start: 1;
  }

  .grid__item--col-end-lg1 {
    grid-column-end: 1;
  }

  .grid__item--col-start-lg2 {
    grid-column-start: 2;
  }

  .grid__item--col-end-lg2 {
    grid-column-end: 2;
  }

  .grid__item--col-start-lg3 {
    grid-column-start: 3;
  }

  .grid__item--col-end-lg3 {
    grid-column-end: 3;
  }

  .grid__item--col-start-lg4 {
    grid-column-start: 4;
  }

  .grid__item--col-end-lg4 {
    grid-column-end: 4;
  }

  .grid__item--col-start-lg5 {
    grid-column-start: 5;
  }

  .grid__item--col-end-lg5 {
    grid-column-end: 5;
  }

  .grid__item--col-start-lg6 {
    grid-column-start: 6;
  }

  .grid__item--col-end-lg6 {
    grid-column-end: 6;
  }

  .grid__item--col-start-lg7 {
    grid-column-start: 7;
  }

  .grid__item--col-end-lg7 {
    grid-column-end: 7;
  }

  .grid__item--col-start-lg8 {
    grid-column-start: 8;
  }

  .grid__item--col-end-lg8 {
    grid-column-end: 8;
  }

  .grid__item--col-start-lg9 {
    grid-column-start: 9;
  }

  .grid__item--col-end-lg9 {
    grid-column-end: 9;
  }

  .grid__item--col-start-lg10 {
    grid-column-start: 10;
  }

  .grid__item--col-end-lg10 {
    grid-column-end: 10;
  }

  .grid__item--col-start-lg11 {
    grid-column-start: 11;
  }

  .grid__item--col-end-lg11 {
    grid-column-end: 11;
  }

  .grid__item--col-start-lg12 {
    grid-column-start: 12;
  }

  .grid__item--col-end-lg12 {
    grid-column-end: 12;
  }
}

@media (min-width: 1200px) {
  .grid--gap-xl0 {
    gap: 0;
  }

  .grid--gap-xl05 {
    gap: 0.5rem;
  }

  .grid--gap-xl1 {
    gap: 1rem;
  }

  .grid--gap-xl2 {
    gap: 2rem;
  }

  .grid--gap-xl3 {
    gap: 3rem;
  }

  .grid--gap-xl4 {
    gap: 4rem;
  }

  .grid--gap-x-xl0 {
    row-gap: 0;
  }

  .grid--gap-x-xl05 {
    row-gap: 0.5rem;
  }

  .grid--gap-x-xl1 {
    row-gap: 1rem;
  }

  .grid--gap-x-xl2 {
    row-gap: 2rem;
  }

  .grid--gap-x-xl3 {
    row-gap: 3rem;
  }

  .grid--gap-x-xl4 {
    row-gap: 4rem;
  }

  .grid--gap-y-xl0 {
    column-gap: 0;
  }

  .grid--gap-y-xl05 {
    column-gap: 0.5rem;
  }

  .grid--gap-y-xl1 {
    column-gap: 1rem;
  }

  .grid--gap-y-xl2 {
    column-gap: 2rem;
  }

  .grid--gap-y-xl3 {
    column-gap: 3rem;
  }

  .grid--gap-y-xl4 {
    column-gap: 4rem;
  }

  .grid--cols-xl1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid__item--col-span-xl1 {
    grid-column: span 1 / span 1;
  }

  .grid__item--row-span-xl1 {
    grid-row: span 1 / span 1;
  }

  .grid--cols-xl2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid__item--col-span-xl2 {
    grid-column: span 2 / span 2;
  }

  .grid__item--row-span-xl2 {
    grid-row: span 2 / span 2;
  }

  .grid--cols-xl3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid__item--col-span-xl3 {
    grid-column: span 3 / span 3;
  }

  .grid__item--row-span-xl3 {
    grid-row: span 3 / span 3;
  }

  .grid--cols-xl4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid__item--col-span-xl4 {
    grid-column: span 4 / span 4;
  }

  .grid__item--row-span-xl4 {
    grid-row: span 4 / span 4;
  }

  .grid--cols-xl5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid__item--col-span-xl5 {
    grid-column: span 5 / span 5;
  }

  .grid__item--row-span-xl5 {
    grid-row: span 5 / span 5;
  }

  .grid--cols-xl6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid__item--col-span-xl6 {
    grid-column: span 6 / span 6;
  }

  .grid__item--row-span-xl6 {
    grid-row: span 6 / span 6;
  }

  .grid--cols-xl7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .grid__item--col-span-xl7 {
    grid-column: span 7 / span 7;
  }

  .grid__item--row-span-xl7 {
    grid-row: span 7 / span 7;
  }

  .grid--cols-xl8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .grid__item--col-span-xl8 {
    grid-column: span 8 / span 8;
  }

  .grid__item--row-span-xl8 {
    grid-row: span 8 / span 8;
  }

  .grid--cols-xl9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .grid__item--col-span-xl9 {
    grid-column: span 9 / span 9;
  }

  .grid__item--row-span-xl9 {
    grid-row: span 9 / span 9;
  }

  .grid--cols-xl10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .grid__item--col-span-xl10 {
    grid-column: span 10 / span 10;
  }

  .grid__item--row-span-xl10 {
    grid-row: span 10 / span 10;
  }

  .grid--cols-xl11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .grid__item--col-span-xl11 {
    grid-column: span 11 / span 11;
  }

  .grid__item--row-span-xl11 {
    grid-row: span 11 / span 11;
  }

  .grid--cols-xl12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid__item--col-span-xl12 {
    grid-column: span 12 / span 12;
  }

  .grid__item--row-span-xl12 {
    grid-row: span 12 / span 12;
  }

  .grid__item--col-start-xl1 {
    grid-column-start: 1;
  }

  .grid__item--col-end-xl1 {
    grid-column-end: 1;
  }

  .grid__item--col-start-xl2 {
    grid-column-start: 2;
  }

  .grid__item--col-end-xl2 {
    grid-column-end: 2;
  }

  .grid__item--col-start-xl3 {
    grid-column-start: 3;
  }

  .grid__item--col-end-xl3 {
    grid-column-end: 3;
  }

  .grid__item--col-start-xl4 {
    grid-column-start: 4;
  }

  .grid__item--col-end-xl4 {
    grid-column-end: 4;
  }

  .grid__item--col-start-xl5 {
    grid-column-start: 5;
  }

  .grid__item--col-end-xl5 {
    grid-column-end: 5;
  }

  .grid__item--col-start-xl6 {
    grid-column-start: 6;
  }

  .grid__item--col-end-xl6 {
    grid-column-end: 6;
  }

  .grid__item--col-start-xl7 {
    grid-column-start: 7;
  }

  .grid__item--col-end-xl7 {
    grid-column-end: 7;
  }

  .grid__item--col-start-xl8 {
    grid-column-start: 8;
  }

  .grid__item--col-end-xl8 {
    grid-column-end: 8;
  }

  .grid__item--col-start-xl9 {
    grid-column-start: 9;
  }

  .grid__item--col-end-xl9 {
    grid-column-end: 9;
  }

  .grid__item--col-start-xl10 {
    grid-column-start: 10;
  }

  .grid__item--col-end-xl10 {
    grid-column-end: 10;
  }

  .grid__item--col-start-xl11 {
    grid-column-start: 11;
  }

  .grid__item--col-end-xl11 {
    grid-column-end: 11;
  }

  .grid__item--col-start-xl12 {
    grid-column-start: 12;
  }

  .grid__item--col-end-xl12 {
    grid-column-end: 12;
  }
}

.cms-message {
  width: 100%;
  border: solid 2px;
  display: flex;
  background: #fff;
}

.cms-message__icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid;
  min-height: 3.25rem;
  min-width: 3.25rem;
}

.cms-message__icon-area::before {
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  text-shadow: 0 0 6px rgba(64, 64, 64, 0.25), 0 0 12px rgba(64, 64, 64, 0.05);
}

@media speech {
  .cms-message__icon-area::before {
    display: none;
    visibility: hidden;
  }
}

.cms-message__content {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #404040;
}

.cms-message__content p {
  margin: 0;
}

.cms-message--my1 {
  margin: 1rem 0;
  margin-bottom: 1rem !important;
}

.cms-message--my2 {
  margin: 2rem 0;
  margin-bottom: 2rem !important;
}

.cms-message--my3 {
  margin: 3rem 0;
  margin-bottom: 3rem !important;
}

.cms-message--my4 {
  margin: 4rem 0;
  margin-bottom: 4rem !important;
}

.cms-message--success {
  border-color: #5ac18e;
}

.cms-message--success .cms-message__icon-area {
  background: #5ac18e;
  border-color: #5ac18e;
}

.cms-message--success .cms-message__icon-area::before {
  content: '';
}

.cms-message--warning {
  border-color: gold;
}

.cms-message--warning .cms-message__icon-area {
  background: gold;
  border-color: gold;
}

.cms-message--warning .cms-message__icon-area::before {
  content: '';
}

.cms-message--error {
  border-color: #f66;
}

.cms-message--error .cms-message__icon-area {
  background: #f66;
  border-color: #f66;
}

.cms-message--error .cms-message__icon-area::before {
  content: '';
}

.composition:where(.composition--padded-sm) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.composition:where(.composition--padded) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .composition:where(.composition--padded) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.composition:where(.composition--padded-lg) {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .composition:where(.composition--padded-lg) {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.composition:where(.composition--padded-flush-top) {
  padding-top: 0;
}

.composition:where(.composition--padded-flush-bottom) {
  padding-bottom: 0;
}

.composition:where(.composition--spaced-sm) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.composition:where(.composition--spaced) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .composition:where(.composition--spaced) {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.composition:where(.composition--spaced-lg) {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .composition:where(.composition--spaced-lg) {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}

.composition:where(.composition--spaced-flush-top) {
  margin-top: 0;
}

.composition:where(.composition--spaced-flush-bottom) {
  margin-bottom: 0;
}

.composition:where(.composition--fill-darkGray) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkGray)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #444;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkGray-gradStart) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkGray-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #444;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkGray-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #444444, rgba(68, 68, 68, 0));
}

.composition:where(.composition--fill-darkGray-gradEnd) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkGray-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #444;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkGray-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #444444, rgba(68, 68, 68, 0));
}

.composition:where(.composition--fill-lightGray) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightGray)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #f3f3f3;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightGray-gradStart) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightGray-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #f3f3f3;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightGray-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #f3f3f3, rgba(243, 243, 243, 0));
}

.composition:where(.composition--fill-lightGray-gradEnd) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightGray-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #f3f3f3;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightGray-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #f3f3f3, rgba(243, 243, 243, 0));
}

.composition:where(.composition--fill-navyBlue) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-navyBlue)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #171733;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightBlue) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightBlue)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #e9f7fc;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightBlue-gradStart) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightBlue-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #e9f7fc;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightBlue-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #e9f7fc, rgba(233, 247, 252, 0));
}

.composition:where(.composition--fill-lightBlue-gradEnd) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-lightBlue-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #e9f7fc;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-lightBlue-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #e9f7fc, rgba(233, 247, 252, 0));
}

.composition:where(.composition--fill-darkBlue) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkBlue)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #1d1c3f;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkBlue-gradStart) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkBlue-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #1d1c3f;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkBlue-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #1d1c3f, rgba(29, 28, 63, 0));
}

.composition:where(.composition--fill-darkBlue-gradEnd) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-darkBlue-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #1d1c3f;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-darkBlue-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #1d1c3f, rgba(29, 28, 63, 0));
}

.composition:where(.composition--fill-deepBlue) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-deepBlue)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #197fa6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-deepBlue-gradStart) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-deepBlue-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #197fa6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-deepBlue-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #197fa6, rgba(25, 127, 166, 0));
}

.composition:where(.composition--fill-deepBlue-gradEnd) {
  color: #fff;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-deepBlue-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #197fa6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-deepBlue-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #197fa6, rgba(25, 127, 166, 0));
}

.composition:where(.composition--fill-blue) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-blue)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #59bfe6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-blue-gradStart) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-blue-gradStart)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #59bfe6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-blue-gradStart)::before {
  bottom: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #59bfe6, rgba(89, 191, 230, 0));
}

.composition:where(.composition--fill-blue-gradEnd) {
  color: #444;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-blue-gradEnd)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #59bfe6;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-blue-gradEnd)::before {
  top: 85%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #59bfe6, rgba(89, 191, 230, 0));
}

.composition:where(.composition--fill-blue-radial) {
  color: #fff !important;
  position: relative;
  z-index: 0;
}

.composition:where(.composition--fill-blue-radial)::before {
  isolation: isolate;
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #000;
  mix-blend-mode: screen;
}

.composition:where(.composition--fill-blue-radial)::before {
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(circle at 60% 30%, #163d6b, #1d1c3f, #05040a);
}

.composition:where([style*='background-image']) {
  position: relative;
  background-size: 0 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 0;
}

.composition:where([style*='background-image'])::after {
  content: '';
  z-index: -2;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #fff;
  background-image: inherit;
  background-size: cover;
  background-position: 50% 50%;
}

.composition figure img {
  width: 100%;
  height: auto;
}

#iSpotTV {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

@media (max-width: 480px) {
  #iSpotTV {
    width: 100%;
  }
}

*:where([component]:not(:defined)) {
  visibility: hidden;
  display: contents;
  box-sizing: border-box;
}

*:where([component]:not(:defined)) *,
*:where([component]:not(:defined)) *::before,
*:where([component]:not(:defined)) *::after {
  box-sizing: inherit;
}

.glyph-list:before {
  content: '';
}

.glyph-grid:before {
  content: '';
}

.glyph-mail:before {
  content: '';
}

.glyph-check:before {
  content: '';
}

.glyph-alert:before {
  content: '';
}

.glyph-arrow-down:before {
  content: '';
}

.glyph-arrow-left:before {
  content: '';
}

.glyph-arrow-right:before {
  content: '';
}

.glyph-arrow-up:before {
  content: '';
}

.glyph-chevron-down:before {
  content: '';
}

.glyph-chevron-left:before {
  content: '';
}

.glyph-chevron-right:before {
  content: '';
}

.glyph-chevron-up:before {
  content: '';
}

.glyph-facebook:before {
  content: '';
}

.glyph-filter:before {
  content: '';
}

.glyph-help:before {
  content: '';
}

.glyph-house:before {
  content: '';
}

.glyph-instagram:before {
  content: '';
}

.glyph-linkedin:before {
  content: '';
}

.glyph-menu-dots:before {
  content: '';
}

.glyph-menu-lines:before {
  content: '';
}

.glyph-pause:before {
  content: '';
}

.glyph-play:before {
  content: '';
}

.glyph-reddit:before {
  content: '';
}

.glyph-remove:before {
  content: '';
}

.glyph-search:before {
  content: '';
}

.glyph-snapchat:before {
  content: '';
}

.glyph-twitter:before {
  content: '';
}

.glyph-youtube:before {
  content: '';
}

.glyph-user:before {
  content: '';
}

.glyph-upload:before {
  content: '';
}

.nav-skip {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(64, 64, 64, 0.2), 0.125rem 0.125rem 0.75rem rgba(64, 64, 64, 0.075);
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.25s ease;
  z-index: 10000;
}

.nav-skip:focus {
  opacity: 1;
  transform: translateY(0);
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.listing__items {
  margin-bottom: 2rem;
}

.listing__items:is([data-view='list'] *) {
  display: flex;
  flex-direction: column;
}

.listing__items:is([data-view='grid'] *) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  border: 1px solid #f3f3f3;
  border-collapse: collapse;
}

.table--striped tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}

.table--bordered td,
.table--bordered th {
  border: 1px solid #f3f3f3;
}

.table th,
.table td {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid #f3f3f3;
  text-align: inherit;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #f3f3f3;
}

.table tbody + tbody {
  border-top: 2px solid #f3f3f3;
}

.header {
  display: flex;
  flex-direction: column;
  z-index: 10;
  background: #fff;
  box-shadow: 0 0.5rem 1rem -0.5rem rgba(64, 64, 64, 0.1);
}

@media (max-width: 575px) {
  .header.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.header__inner {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 82rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  column-gap: 2rem;
}

@media (min-width: 85rem) {
  .header__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

.header__inner {
  padding-block: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .header__inner {
    padding-block: calc(1.75rem + 0.75 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__inner {
    padding-block: 2.5rem;
  }
}

.header__inner {
  row-gap: 1rem;
}

@media screen and (min-width: 20rem) {
  .header__inner {
    row-gap: calc(1rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__inner {
    row-gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .header__inner {
    grid-template-columns: max-content 1fr 2fr;
    grid-template-rows: auto;
  }
}

.header__logo {
  display: flex;
  justify-self: center;
  align-self: center;
  grid-area: 1/1/2/2;
  max-width: 370px;
  color: #59bfe6 !important;
}

@media (min-width: 992px) {
  .header__logo {
    grid-area: 1/1/2/2;
  }
}

.header__logo-link {
  --color: #59bfe6;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-template-rows: auto auto;
  gap: 0 0.5rem;
  transition: none !important;
}

.header__logo-link:hover {
  --color: #1d1c3f !important;
  text-decoration: none !important;
}

.header__logo-link:hover strong,
.header__logo-link:hover span {
  color: #1d1c3f !important;
}

.header__logo-link * {
  line-height: 1;
  transition: none !important;
}

.header__logo-link strong {
  grid-area: 1/1/-1/2;
  font-weight: 800;
  align-self: center;
}

.header__logo-link strong {
  font-size: 2rem;
}

@media screen and (min-width: 20rem) {
  .header__logo-link strong {
    font-size: calc(2rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__logo-link strong {
    font-size: 3rem;
  }
}

.header__logo-link span {
  grid-row: span 1;
  grid-column: span 1;
  font-weight: 800;
  align-self: start;
}

.header__logo-link span {
  font-size: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .header__logo-link span {
    font-size: calc(0.75rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__logo-link span {
    font-size: 1.125rem;
  }
}

.header__logo-link span:first-of-type {
  align-self: end;
}

.header__logo-link em {
  align-self: center;
  grid-area: 1/3/3/4;
  font-style: normal;
  font-weight: 800;
  color: #fff !important;
  text-transform: uppercase;
}

.header__logo-link em {
  font-size: 2rem;
}

@media screen and (min-width: 20rem) {
  .header__logo-link em {
    font-size: calc(2rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__logo-link em {
    font-size: 3rem;
  }
}

.header__nav {
  grid-area: 2/1/3/2;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .header__nav {
    grid-area: 1/3/2/4;
  }
}

.header__nav-list {
  display: flex;
  flex: 1 1 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-evenly;
}

.header__nav-list {
  gap: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .header__nav-list {
    gap: calc(0.75rem + 2.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__nav-list {
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .header__nav-list {
    flex: 1 1 100%;
    justify-content: space-between;
  }
}

.header__nav-item {
  display: flex;
  color: #5abfe6;
}

.header__nav-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  appearance: none;
  border: none;
  background: rgba(0, 0, 0, 0);
  font-weight: 800;
  transition: 0.2s ease;
  text-transform: uppercase;
}

.header__nav-label {
  font-size: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .header__nav-label {
    font-size: calc(0.75rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .header__nav-label {
    font-size: 1.25rem;
  }
}

.header__nav-label:hover {
  color: #1d1c3f !important;
  text-decoration: none;
}

@media (min-width: 992px) {
  .header__nav-label {
    padding: 0;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  background: #1d1c3f;
  color: #fff;
  padding-block: 5rem;
}

.footer {
  padding-block: 3rem;
}

@media screen and (min-width: 20rem) {
  .footer {
    padding-block: calc(3rem + 2 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer {
    padding-block: 5rem;
  }
}

.footer__inner {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 82rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 85rem) {
  .footer__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

.footer__inner {
  gap: 1.25rem;
}

@media screen and (min-width: 20rem) {
  .footer__inner {
    gap: calc(1.25rem + 0.75 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__inner {
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.footer__logo {
  gap: 1.25rem;
}

@media screen and (min-width: 20rem) {
  .footer__logo {
    gap: calc(1.25rem + 1.75 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__logo {
    gap: 3rem;
  }
}

.footer__logo::before {
  content: '';
  align-self: stretch;
  width: 1px;
  background: currentColor;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.footer__logo-link {
  font-size: 0.875rem;
}

@media screen and (min-width: 20rem) {
  .footer__logo-link {
    font-size: calc(0.875rem + 1.875 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__logo-link {
    font-size: 2.75rem;
  }
}

.footer__logo-link {
  gap: 0.875rem;
}

@media screen and (min-width: 20rem) {
  .footer__logo-link {
    gap: calc(0.875rem + 1.125 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__logo-link {
    gap: 2rem;
  }
}

.footer__logo-link:hover {
  text-decoration: none;
  color: #e9f7fc;
}

.footer__logo-link:first-child {
  order: -1;
}

.footer__logo-link span {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__logo-link span {
  font-size: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .footer__logo-link span {
    font-size: calc(0.75rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__logo-link span {
    font-size: 1rem;
  }
}

.footer__logo-link img {
  max-width: 50px;
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer__meta {
  font-size: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .footer__meta {
    font-size: calc(0.75rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .footer__meta {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .footer__meta {
    text-align: right;
    align-items: flex-end;
  }
}

@media (min-width: 992px) {
  .footer__copy {
    margin-right: auto;
  }
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer__legal a:hover {
  color: #59bfe6;
}

.hero-banner {
  display: flex;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  margin: 0;
}

.hero-banner__inner {
  margin-right: 2rem;
  margin-left: 2rem;
  width: calc(100% - 4rem);
  max-width: 82rem;
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  z-index: 0;
}

@media (min-width: 86rem) {
  .hero-banner__inner {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .hero-banner__inner {
    grid-template-columns: 4fr 5fr;
  }
}

.hero-banner__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-banner__background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-banner__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  grid-area: 1/2/2/3;
  background: #fff;
  box-shadow: 0 0 1rem rgba(64, 64, 64, 0.1);
}

.hero-banner__content {
  margin-block: 2.5rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__content {
    margin-block: calc(2.5rem + 1.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__content {
    margin-block: 4rem;
  }
}

.hero-banner__content {
  padding: 2.5rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__content {
    padding: calc(2.5rem + 1.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__content {
    padding: 4rem;
  }
}

.hero-banner__content {
  border-radius: 1rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__content {
    border-radius: calc(1rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__content {
    border-radius: 1.5rem;
  }
}

.hero-banner__eyebrow {
  text-transform: uppercase;
  color: #59bfe6;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero-banner__eyebrow {
  font-size: 0.875rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__eyebrow {
    font-size: calc(0.875rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__eyebrow {
    font-size: 1.125rem;
  }
}

.hero-banner__heading {
  font-weight: 700;
  line-height: 1;
}

.hero-banner__heading {
  font-size: 2.5rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__heading {
    font-size: calc(2.5rem + 2.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__heading {
    font-size: 5rem;
  }
}

.hero-banner__heading {
  margin-block: 2rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__heading {
    margin-block: calc(2rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__heading {
    margin-block: 2.5rem;
  }
}

.hero-banner__copy {
  line-height: 1.5;
}

.hero-banner__copy {
  font-size: 1.125rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__copy {
    font-size: calc(1.125rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__copy {
    font-size: 1.5rem;
  }
}

.hero-banner__copy {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .hero-banner__copy {
    margin-bottom: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .hero-banner__copy {
    margin-bottom: 2rem;
  }
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .feature {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 6rem;
  }
}

.feature--social {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature--social .feature__media {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
  align-items: initial;
  order: 2;
}

@media (min-width: 768px) {
  .feature--social .feature__media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    padding-top: var(--slide);
  }

  .feature--social .feature__media {
    --slide: 2rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 20rem) {
  .feature--social .feature__media {
    --slide: calc(2rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 768px) and (min-width: 82rem) {
  .feature--social .feature__media {
    --slide: 3rem;
  }
}

.feature--social .feature__content {
  padding: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .feature--social .feature__content {
    padding: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature--social .feature__content {
    padding: 2rem;
  }
}

.feature--social .feature__eyebrow {
  color: inherit;
  opacity: 0.4;
}

.feature--social .feature__title {
  font-size: 2.5rem;
}

@media screen and (min-width: 20rem) {
  .feature--social .feature__title {
    font-size: calc(2.5rem + 2.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature--social .feature__title {
    font-size: 5rem;
  }
}

.feature--social .feature__title {
  margin-block: 2rem;
}

@media screen and (min-width: 20rem) {
  .feature--social .feature__title {
    margin-block: calc(2rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature--social .feature__title {
    margin-block: 2.5rem;
  }
}

h2.feature__copy {
  color: #fff !important;
}

.feature--social .feature__copy {
  font-size: 1.125rem;
}

@media screen and (min-width: 20rem) {
  .feature--social .feature__copy {
    font-size: calc(1.125rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature--social .feature__copy {
    font-size: 1.5rem;
  }
}

.feature--social .feature__copy {
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .feature--social .feature__copy {
    margin-bottom: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature--social .feature__copy {
    margin-bottom: 2.75rem;
  }
}

.feature--shadow-media .feature__media-image {
  filter: drop-shadow(-1rem 1rem 1rem #0d0c1c);
}

@media (min-width: 992px) {
  .feature--connect-title {
    align-items: stretch;
  }
}

.feature--connect-title .feature__content {
  position: relative;
}

.feature--connect-title .feature__title::before {
  content: '';
  position: absolute;
  right: calc(100% + 2rem);
  top: 2rem;
  height: 1.5rem;
  width: 1.5rem;
  border: 3px solid #e9f7fc;
  border-radius: 50%;
}

.feature--connect-title .feature__title::after {
  content: '';
  position: absolute;
  right: calc(100% + 3.5rem);
  top: 2.75rem;
  height: 3px;
  width: 10rem;
  background: #e9f7fc;
  transform: translateY(-50%);
}

.feature__media,
.feature__content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

@media (min-width: 992px) {
  .feature__media,
  .feature__content {
    grid-column-end: span 1;
    grid-row: 1 / span 1;
  }
}

.feature__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  position: relative;
  order: -1;
}

@media (min-width: 992px) {
  .feature__media {
    order: unset;
  }
}

.feature__media-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.feature__media-overlay {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 375px;
  max-width: 100%;
}

.feature__card {
  border-radius: 1rem;
  background: #e9f7fc;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 2rem;
  color: #404040;
  font-size: 1.125rem;
  transform-origin: 50% 50%;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.feature__card {
  padding: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .feature__card {
    padding: calc(1.5rem + 0.75 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__card {
    padding: 2.25rem;
  }
}

.feature__card:nth-child(n + 3) {
  transform: translateY(calc(var(--slide) * -1));
}

.feature__card:nth-child(n + 3):hover {
  transform: translateY(calc(var(--slide) * -1)) scale(1.05);
}

@media (min-width: 768px) {
  .feature__card {
    overflow: hidden;
  }
}

.feature__card:hover {
  cursor: pointer;
  color: #404040;
  text-decoration: none;
  transform: scale(1.05);
}

.feature__card--video {
  color: #fff !important;
  grid-template-rows: auto auto 1fr;
}

.feature__card--video:hover {
  color: #fff;
}

.feature__card-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.feature__card-image {
  grid-area: 1/1/3/2;
  border-radius: 50%;
  align-self: center;
  min-width: 100px;
  width: 100%;
  aspect-ratio: 1/1;
}

.feature__card-name {
  grid-area: 1/2/2/3;
  align-self: end;
  font-size: 1em;
  font-weight: 700;
}

.feature__card-company {
  grid-area: 2/2/3/3;
  align-self: start;
  font-style: normal;
  font-size: 0.75em;
}

.feature__card-copy {
  grid-area: 3/1/4/3;
  margin-top: 2rem;
  font-size: 1em;
}

.feature__card-branding {
  grid-area: 3/1/4/3;
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: end;
  width: 100%;
}

.feature__card-icon {
  height: 1.5rem;
  width: 1.5rem;
  min-height: 1.5rem;
  max-height: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  border-top: 3px solid #fff;
  position: relative;
  transform: rotate(-90deg);
  border-radius: 2px;
  overflow: hidden;
}

.feature__card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0% 0%;
  height: 100%;
  transform: rotate(-33deg);
  border-left: 3px solid #fff;
}

.feature__card-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: 100% 0%;
  height: 100%;
  transform: rotate(33deg);
  border-left: 3px solid #fff;
}

.feature__card-plays {
  font-weight: 700;
}

.feature__card-logo {
  margin-left: auto;
  max-width: 50px;
}

.feature__content {
  align-items: flex-start;
  justify-content: center;
}

.feature__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: #59bfe6;
}

.feature__eyebrow {
  font-size: 0.875rem;
}

@media screen and (min-width: 20rem) {
  .feature__eyebrow {
    font-size: calc(0.875rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__eyebrow {
    font-size: 1.125rem;
  }
}

.feature__title {
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.feature__title {
  font-size: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .feature__title {
    font-size: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__title {
    font-size: 2rem;
  }
}

.feature__title:not(:first-child) {
  margin-top: 1.25rem;
}

@media screen and (min-width: 20rem) {
  .feature__title:not(:first-child) {
    margin-top: calc(1.25rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__title:not(:first-child) {
    margin-top: 1.75rem;
  }
}

.feature__title:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 20rem) {
  .feature__title:not(:last-child) {
    margin-bottom: calc(1.25rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__title:not(:last-child) {
    margin-bottom: 1.75rem;
  }
}

.feature__copy {
  line-height: 1.75;
  margin: 0;
}

.feature__copy {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .feature__copy {
    font-size: calc(1rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__copy {
    font-size: 1.25rem;
  }
}

.feature__copy:not(:last-child) {
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .feature__copy:not(:last-child) {
    margin-bottom: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__copy:not(:last-child) {
    margin-bottom: 2.75rem;
  }
}

.feature__image {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 0 0.5rem rgba(64, 64, 64, 0.2));
}

.feature__image:not(:last-child) {
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .feature__image:not(:last-child) {
    margin-bottom: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature__image:not(:last-child) {
    margin-bottom: 2.75rem;
  }
}

.section-header {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  justify-items: center;
  text-align: center;
  max-width: 1100px;
  margin-inline: auto;
}

.section-header {
  margin-bottom: 4.75rem;
}

@media screen and (min-width: 20rem) {
  .section-header {
    margin-bottom: calc(4.75rem + 1.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .section-header {
    margin-bottom: 6.25rem;
  }
}

.section-header--left {
  justify-items: start;
  text-align: left;
  max-width: 100%;
  margin-inline: 0;
}

.section-header--right {
  justify-items: end;
  text-align: right;
  max-width: 100%;
  margin-inline: 0;
}

.section-header__eyebrow {
  grid-area: span 1 / span 1;
  text-transform: uppercase;
  color: #59bfe6;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.section-header__eyebrow {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .section-header__eyebrow {
    font-size: calc(1rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .section-header__eyebrow {
    font-size: 1.25rem;
  }
}

.section-header__eyebrow:not(:last-child) {
  margin: 0 0 0.5rem;
}

.section-header__title {
  display: contents;
  line-height: 1.125;
  font-weight: 700;
  margin: 0;
  grid-area: span 1 / span 1;
}

.section-header__title {
  font-size: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .section-header__title {
    font-size: calc(1.75rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .section-header__title {
    font-size: 2.75rem;
  }
}

.section-header__copy {
  grid-area: span 1 / span 1;
  line-height: 1.5;
  margin: 2rem 0 0;
}

.section-header__copy {
  font-size: 0.875rem;
}

@media screen and (min-width: 20rem) {
  .section-header__copy {
    font-size: calc(0.875rem + 0.125 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .section-header__copy {
    font-size: 1rem;
  }
}

.card-slider {
  display: flex;
  flex-direction: column;
}

.card-slider__container {
  display: flex;
}

.card-slider__wrapper {
  display: flex;
}

.card-slider__card {
  color: inherit !important;
  text-decoration: none !important;
  display: flex !important;
  width: clamp(300px, 60vw, 600px) !important;
  max-width: clamp(300px, 60vw, 600px) !important;
  height: auto !important;
  max-height: 423px !important;
}

.card-slider__card:hover {
  color: inherit !important;
  text-decoration: none !important;
}

.card-slider__card:hover .card-slider__card-inner {
  transform: scale(1.05) !important;
  box-shadow: 0 0 1rem rgba(64, 64, 64, 0.1) !important;
}

.card-slider__card-inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  transition: 0.2s ease;
}

.card-slider__card-inner {
  padding: 2rem !important;
}

@media screen and (min-width: 20rem) {
  .card-slider__card-inner {
    padding: calc(2rem + 1 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .card-slider__card-inner {
    padding: 3rem;
  }
}

.card-slider__card-user {
  font-weight: 700;
  margin: 0;
}

.card-slider__card-user {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .card-slider__card-user {
    font-size: calc(1rem + 0.125 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .card-slider__card-user {
    font-size: 1.125rem;
  }
}

.card-slider__card-platform {
  margin: 0;
}

.card-slider__card-platform {
  font-size: 0.75rem;
}

@media screen and (min-width: 20rem) {
  .card-slider__card-platform {
    font-size: calc(0.75rem + 0.125 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .card-slider__card-platform {
    font-size: 0.875rem;
  }
}

.card-slider__card-copy {
  margin: 1.5rem 0 0;
}

.card-slider__card-copy {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .card-slider__card-copy {
    font-size: calc(1rem + 0.125 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .card-slider__card-copy {
    font-size: 1.125rem;
  }
}

.card-slider__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.card-slider__pagination .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  border: 1px solid #59bfe6;
  transition: 0.2s ease;
  cursor: pointer;
  border-radius: 50%;
  margin: 3rem 0;
}

.card-slider__pagination .swiper-pagination-bullet:hover {
  background: #85d0ed;
}

.card-slider__pagination .swiper-pagination-bullet[class*='active'] {
  background: #59bfe6;
}

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA')
    format('woff');
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0);
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: var(--padding);
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 1rem rgba(64, 64, 64, 0.1);
  margin-top: 5rem;
}

.feature-card {
  --padding: 2rem;
}

@media screen and (min-width: 20rem) {
  .feature-card {
    --padding: calc(2rem + 2 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card {
    --padding: 4rem;
  }
}

.feature-card__image {
  transform: translateY(calc((var(--padding) + 5rem) * -1));
  margin-bottom: calc((var(--padding) + 2rem) * -1);
  width: 100%;
  max-width: 175px;
  height: auto;
}

.feature-card__title {
  font-weight: 700;
  line-height: 1;
}

.feature-card__title {
  font-size: 1.75rem;
}

@media screen and (min-width: 20rem) {
  .feature-card__title {
    font-size: calc(1.75rem + 0.75 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card__title {
    font-size: 2.5rem;
  }
}

.feature-card__title {
  margin-block: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .feature-card__title {
    margin-block: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card__title {
    margin-block: 2rem;
  }
}

.feature-card__copy {
  line-height: 1.5;
}

.feature-card__copy {
  font-size: 1.125rem;
}

@media screen and (min-width: 20rem) {
  .feature-card__copy {
    font-size: calc(1.125rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card__copy {
    font-size: 1.5rem;
  }
}

.feature-card__copy {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 20rem) {
  .feature-card__copy {
    margin-bottom: calc(1.5rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card__copy {
    margin-bottom: 2rem;
  }
}

.feature-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5em;
}

.feature-card__list {
  font-size: 1.125rem;
}

@media screen and (min-width: 20rem) {
  .feature-card__list {
    font-size: calc(1.125rem + 0.375 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .feature-card__list {
    font-size: 1.5rem;
  }
}

.feature-card__item {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-card__item .glyph-check {
  color: #59bfe6;
}

.feature-card__item .glyph-remove {
  color: #f05624;
}

.accordion {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: start;
  border: 0;
}

@media (min-width: 992px) {
  .accordion {
    flex-direction: row;
    gap: 2rem;
  }
}

.accordion__image {
  order: -1;
  align-self: end;
  margin-left: 3.75rem;
  margin-bottom: -3.75rem;
  max-width: calc(100% - 3.75rem);
}

@media (min-width: 992px) {
  .accordion__image {
    flex: 0 0 35%;
    order: 1;
    align-self: start;
    max-width: 35%;
    margin-top: -2rem;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.accordion__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-right: 3.75rem;
  box-shadow: 0 0 1rem rgba(64, 64, 64, 0.1);
}

@media (min-width: 992px) {
  .accordion__inner {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    margin-right: 0;
    box-shadow: none;
  }
}

.accordion__item {
  display: flex;
  flex-direction: column;
  padding-left: 1.387rem;
}

.accordion__item:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e9f7fc;
}

.accordion__trigger {
  all: unset;
  appearance: none;
  z-index: 0;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.5rem 0;

  color: #404040 !important;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  transition: 0.2s ease;
}

.accordion__trigger {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .accordion__trigger {
    font-size: calc(1rem + 0.5 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .accordion__trigger {
    font-size: 2rem;
  }
}

.accordion__trigger:hover {
  color: #59bfe6;
}

.accordion__trigger::after {
  --p-neg: calc(50% - 1.5px);
  --p-pos: calc(50% + 1.5px);
  content: '';
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  background: #000;
  transition: 0.2s ease;
  transform: translateX(-1.3875rem);
  transform-origin: 50% 50%;
  order: -1;
  clip-path: polygon(
    0% var(--p-neg),
    var(--p-neg) var(--p-neg),
    var(--p-neg) 0%,
    var(--p-pos) 0%,
    var(--p-pos) var(--p-neg),
    100% var(--p-neg),
    100% var(--p-pos),
    var(--p-pos) var(--p-pos),
    var(--p-pos) 100%,
    var(--p-neg) 100%,
    var(--p-neg) var(--p-pos),
    0% var(--p-pos)
  );
}

.accordion__trigger[data-active]::after {
  clip-path: polygon(
    0% var(--p-neg),
    var(--p-neg) var(--p-neg),
    var(--p-neg) var(--p-neg),
    var(--p-pos) var(--p-neg),
    var(--p-pos) var(--p-neg),
    100% var(--p-neg),
    100% var(--p-pos),
    var(--p-pos) var(--p-pos),
    var(--p-pos) var(--p-pos),
    var(--p-neg) var(--p-pos),
    var(--p-neg) var(--p-pos),
    0% var(--p-pos)
  );
}

.accordion__content {
  display: flex;
  flex-direction: column;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.accordion__content-inner {
  padding-top: 1rem;
  margin-left: 1.25rem;
}

@media (min-width: 992px) {
  .accordion__content-inner {
    margin-right: 2rem;
  }
}

.accordion__content-inner * {
  line-height: 1.5;
}

.accordion__content-inner * {
  font-size: 1rem;
}

@media screen and (min-width: 20rem) {
  .accordion__content-inner * {
    font-size: calc(0.875rem + 0.25 * ((100vw - 20rem) / 62));
  }
}

@media screen and (min-width: 82rem) {
  .accordion__content-inner * {
    font-size: 1.25rem;
  }
}

.accordion__content-inner > *:last-child {
  margin-bottom: 0;
}

.content {
  overflow-x: hidden;
}

.feature__card-image {
  max-width: 130px;
  max-height: 130px;
  width: 130px;
  height: 130px;
}

@media screen and (max-width: 82rem) {
  .feature--social .feature__media {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    gap: 4rem 2rem;
  }

  .feature__card--video {
    overflow: hidden;
  }

  .feature.feature--social .feature__card {
    flex: 0 0 45%;
    flex: 0 0 45%;
    width: 45%;
  }
}

@media screen and (max-width: 776px) {
  .feature.feature--social .feature__card {
    flex: 0 0 100%;
    width: 100%;
    gap: unset;
  }

  .feature__card-image {
    margin-right: 1rem;
  }
}
