.BaseButton {
  padding-top: .7em;
  padding-bottom: .7em;
  background-size: 100% 215%;
  background-position: 0 -1px;
  font-family: Archivo Narrow, Metropolis, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  cursor: pointer;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: linear;
  background-image: linear-gradient(180deg, var(--gradient-color-stops));
  --gradient-from-color: transparent 50%;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, hsla(0, 0%, 100%, 0))
}

.BaseButton>.label {
  display: flex;
  align-items: center;
  justify-content: center
}

@media (hover:hover) {
  .BaseButton:hover {
    background-position: bottom
  }
}

.BaseButton.-primary {
  padding-left: 3rem;
  padding-right: 3rem;
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #e31937;
  background-color: rgba(227, 25, 55, var(--bg-opacity));
  --gradient-to-color: #c1152e 50%
}

.BaseButton.-primary>.label {
  border-width: 2px;
  border-color: transparent
}

.BaseButton.-secondary {
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: transparent;
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity));
  border-width: 2px;
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity));
  --gradient-to-color: #c1152e 50%
}

@media (hover:hover) {
  .BaseButton.-secondary:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity));
    --border-opacity: 1;
    border-color: #c1152e;
    border-color: rgba(193, 21, 46, var(--border-opacity))
  }
}

.BaseButton.-dark {
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: transparent;
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
  --border-opacity: 0.40;
  --gradient-to-color: #fff 50%
}

@media (hover:hover) {
  .BaseButton.-dark:hover {
    --text-opacity: 1;
    color: #004562;
    color: rgba(0, 69, 98, var(--text-opacity));
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255, 255, 255, var(--bg-opacity))
  }
}

.BaseButton.-social {
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: transparent;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #949494;
  border-color: rgba(148, 148, 148, var(--border-opacity));
  --text-opacity: 1;
  color: #949494;
  color: rgba(148, 148, 148, var(--text-opacity));
  --gradient-to-color: #222 50%
}

@media (hover:hover) {
  .BaseButton.-social:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity));
    --bg-opacity: 1;
    background-color: #222;
    background-color: rgba(34, 34, 34, var(--bg-opacity))
  }
}

.BaseButton.-social.-facebook {
  --gradient-to-color: #3b5998 50%
}

@media (hover:hover) {
  .BaseButton.-social.-facebook:hover {
    --bg-opacity: 1;
    background-color: #3b5998;
    background-color: rgba(59, 89, 152, var(--bg-opacity));
    --border-opacity: 1;
    border-color: #3b5998;
    border-color: rgba(59, 89, 152, var(--border-opacity))
  }
}

.BaseButton.-social.-twitter {
  --gradient-to-color: #00acee 50%
}

@media (hover:hover) {
  .BaseButton.-social.-twitter:hover {
    --bg-opacity: 1;
    background-color: #00acee;
    background-color: rgba(0, 172, 238, var(--bg-opacity));
    --border-opacity: 1;
    border-color: #00acee;
    border-color: rgba(0, 172, 238, var(--border-opacity))
  }
}

.BaseButton.-social.-instagram {
  --gradient-to-color: #dd2a7b 50%
}

@media (hover:hover) {
  .BaseButton.-social.-instagram:hover {
    --bg-opacity: 1;
    background-color: #dd2a7b;
    background-color: rgba(221, 42, 123, var(--bg-opacity));
    --border-opacity: 1;
    border-color: #dd2a7b;
    border-color: rgba(221, 42, 123, var(--border-opacity))
  }
}

.BaseButton.-social.-youtube {
  --gradient-to-color: red 50%
}

@media (hover:hover) {
  .BaseButton.-social.-youtube:hover {
    --bg-opacity: 1;
    background-color: red;
    background-color: rgba(255, 0, 0, var(--bg-opacity));
    --border-opacity: 1;
    border-color: red;
    border-color: rgba(255, 0, 0, var(--border-opacity))
  }
}

.BaseButton.-compact {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

.BaseButton.-icon-only {
  padding: 0
}

.BaseButton.-icon-only>.label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%
}

.BaseButton:disabled {
  background-image: none!important;
  --bg-opacity: 1!important;
  background-color: #949494!important;
  background-color: rgba(148, 148, 148, var(--bg-opacity))!important;
  --border-opacity: 1!important;
  border-color: #949494!important;
  border-color: rgba(148, 148, 148, var(--border-opacity))!important;
  cursor: default!important
}

.BaseButton:disabled>.label {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.ThemeLight .BaseButton.-primary {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #e31937;
  background-color: rgba(227, 25, 55, var(--bg-opacity));
  --gradient-to-color: #c1152e 50%
}

.ThemeLight .BaseButton.-secondary {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity));
  background-color: transparent;
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity));
  --gradient-to-color: #c1152e 50%
}

@media (hover:hover) {
  .ThemeLight .BaseButton.-secondary:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity));
    --border-opacity: 1;
    border-color: #c1152e;
    border-color: rgba(193, 21, 46, var(--border-opacity));
    --bg-opacity: 1;
    background-color: #c1152e;
    background-color: rgba(193, 21, 46, var(--bg-opacity))
  }
}

.ThemeDark .BaseButton.-primary {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #e73b54;
  background-color: rgba(231, 59, 84, var(--bg-opacity));
  --gradient-to-color: #e31937 50%
}

.ThemeDark .BaseButton.-secondary {
  --text-opacity: 1;
  color: #e73b54;
  color: rgba(231, 59, 84, var(--text-opacity));
  background-color: transparent;
  --border-opacity: 1;
  border-color: #e73b54;
  border-color: rgba(231, 59, 84, var(--border-opacity));
  --gradient-to-color: #e31937 50%
}

@media (hover:hover) {
  .ThemeDark .BaseButton.-secondary:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity));
    --border-opacity: 1;
    border-color: #e31937;
    border-color: rgba(227, 25, 55, var(--border-opacity));
    --bg-opacity: 1;
    background-color: #e31937;
    background-color: rgba(227, 25, 55, var(--bg-opacity))
  }
}

.IconPrev {
  width: 2.75em;
  height: 2.75em
}

.loading-page[data-v-b2219b50] {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  opacity: .75;
  z-index: 99999
}

.loading-page .loading-wrapper[data-v-b2219b50] {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.loading-page .loading-wrapper .loading[data-v-b2219b50] {
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
  background-color: transparent;
  padding: 0;
  z-index: 50;
  border-radius: 9999px;
  height: 3.5rem;
  width: 3.5rem;
  opacity: .75;
  border: 4px solid;
  border-color: #888 #888 #fff
}


/*! 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: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

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

a {
  background-color: transparent
}

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: -.25em
}

sup {
  top: -.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
}

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

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

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .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
}

[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
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0
}

button {
  background-color: transparent;
  background-image: none
}

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

fieldset,
ol,
ul {
  margin: 0;
  padding: 0
}

ol,
ul {
  list-style: none
}

html {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5
}

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

hr {
  border-top-width: 1px
}

img {
  border-style: solid
}

textarea {
  resize: vertical
}

[role=button],
button {
  cursor: pointer
}

table {
  border-collapse: collapse
}

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

a {
  color: inherit;
  text-decoration: inherit
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle
}

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

[multiple],
[type=date],
[type=email],
[type=month],
[type=number],
[type=search],
[type=text],
[type=time],
[type=url],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: #a0aec0;
  border-radius: 0;
  padding: .5rem .75rem;
  font-size: 1
}

[multiple]:focus,
[type=date]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=search]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
select:focus,
textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty, /*!*/
  /*!*/
  );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3182ce;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 transparent);
  border-color: #3182ce
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a0aec0;
  opacity: 1
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a0aec0;
  opacity: 1
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
  opacity: 1
}

select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23a0aec0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right .5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact
}

[multiple] {
  background-image: none;
  background-position: 0 0;
  background-repeat: unset;
  background-size: auto auto;
  background-size: initial;
  padding-right: .75rem;
  -webkit-print-color-adjust: unset;
  color-adjust: unset
}

[type=checkbox],
[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #3182ce;
  background-color: #fff;
  border-color: #a0aec0
}

[type=checkbox] {
  border-radius: 0
}

[type=radio] {
  border-radius: 100%
}

[type=checkbox]:focus,
[type=radio]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty, /*!*/
  /*!*/
  );
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #3182ce;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 transparent)
}

[type=checkbox]:checked,
[type=radio]:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat
}

[type=checkbox]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E")
}

[type=radio]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")
}

[type=checkbox]:checked:focus,
[type=checkbox]:checked:hover,
[type=radio]:checked:focus,
[type=radio]:checked:hover {
  border-color: transparent;
  background-color: currentColor
}

[type=checkbox]:indeterminate {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat
}

[type=checkbox]:indeterminate:focus,
[type=checkbox]:indeterminate:hover {
  border-color: transparent;
  background-color: currentColor
}

[type=file] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit
}

[type=file]:focus {
  outline: 1px auto -webkit-focus-ring-color
}

.container {
  width: 100%
}

@media (min-width:640px) {
  .container {
    max-width: 640px
  }
}

@media (min-width:768px) {
  .container {
    max-width: 768px
  }
}

@media (min-width:1024px) {
  .container {
    max-width: 1024px
  }
}

@media (min-width:1280px) {
  .container {
    max-width: 1280px
  }
}

@media (min-width:1320px) {
  .container {
    max-width: 1320px
  }
}

.divide-x>:not(template)~:not(template) {
  --divide-x-reverse: 0;
  border-right-width: calc(1px*var(--divide-x-reverse));
  border-left-width: calc(1px*(1 - var(--divide-x-reverse)))
}

.divide-white>:not(template)~:not(template) {
  --divide-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--divide-opacity))
}

.divide-gray-mid>:not(template)~:not(template) {
  --divide-opacity: 1;
  border-color: #949494;
  border-color: rgba(148, 148, 148, var(--divide-opacity))
}

.divide-gray-mid-dark>:not(template)~:not(template) {
  --divide-opacity: 1;
  border-color: #6f6f6f;
  border-color: rgba(111, 111, 111, var(--divide-opacity))
}

.divide-opacity-40>:not(template)~:not(template) {
  --divide-opacity: 0.40
}

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

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal
}

.bg-nasa-red {
  --bg-opacity: 1;
  background-color: #e31937;
  background-color: rgba(227, 25, 55, var(--bg-opacity))
}

.bg-nasa-red-light {
  --bg-opacity: 1;
  background-color: #e73b54;
  background-color: rgba(231, 59, 84, var(--bg-opacity))
}

.bg-dark-blue {
  --bg-opacity: 1;
  background-color: #004562;
  background-color: rgba(0, 69, 98, var(--bg-opacity))
}

.bg-green {
  --bg-opacity: 1;
  background-color: #14c97a;
  background-color: rgba(20, 201, 122, var(--bg-opacity))
}

.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.bg-gray-light {
  --bg-opacity: 1;
  background-color: #f5f5f5;
  background-color: rgba(245, 245, 245, var(--bg-opacity))
}

.bg-gray-light-mid {
  --bg-opacity: 1;
  background-color: #d8d8d8;
  background-color: rgba(216, 216, 216, var(--bg-opacity))
}

.bg-gray-mid {
  --bg-opacity: 1;
  background-color: #949494;
  background-color: rgba(148, 148, 148, var(--bg-opacity))
}

.bg-gray-mid-dark {
  --bg-opacity: 1;
  background-color: #6f6f6f;
  background-color: rgba(111, 111, 111, var(--bg-opacity))
}

.bg-gray-dark {
  --bg-opacity: 1;
  background-color: #222;
  background-color: rgba(34, 34, 34, var(--bg-opacity))
}

.bg-black {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity))
}

.bg-facebook {
  --bg-opacity: 1;
  background-color: #3b5998;
  background-color: rgba(59, 89, 152, var(--bg-opacity))
}

.bg-twitter {
  --bg-opacity: 1;
  background-color: #00acee;
  background-color: rgba(0, 172, 238, var(--bg-opacity))
}

.bg-instagram {
  --bg-opacity: 1;
  background-color: #dd2a7b;
  background-color: rgba(221, 42, 123, var(--bg-opacity))
}

.bg-youtube {
  --bg-opacity: 1;
  background-color: red;
  background-color: rgba(255, 0, 0, var(--bg-opacity))
}

.bg-transparent {
  background-color: transparent
}

.bg-none {
  background-image: none
}

.bg-gradient-to-t {
  background-image: linear-gradient(0deg, var(--gradient-color-stops))
}

.bg-gradient-to-r {
  background-image: linear-gradient(90deg, var(--gradient-color-stops))
}

.bg-gradient-to-b {
  background-image: linear-gradient(180deg, var(--gradient-color-stops))
}

.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops))
}

.bg-gradient-to-l {
  background-image: linear-gradient(270deg, var(--gradient-color-stops))
}

.from-transparent {
  --gradient-from-color: transparent;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, transparent)
}

.from-transparent-w50 {
  --gradient-from-color: transparent 50%
}

.from-transparent-w25,
.from-transparent-w50 {
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, hsla(0, 0%, 100%, 0))
}

.from-transparent-w25 {
  --gradient-from-color: transparent 25%
}

.from-transparent-black-75 {
  --gradient-from-color: rgba(0, 0, 0, 0.75);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, transparent)
}

.to-black {
  --gradient-to-color: #000
}

.to-transparent {
  --gradient-to-color: transparent
}

.to-transparent-black-90 {
  --gradient-to-color: rgba(0, 0, 0, 0.9)
}

.to-transparent-black-75 {
  --gradient-to-color: rgba(0, 0, 0, 0.75)
}

.to-transparent-black-50 {
  --gradient-to-color: rgba(0, 0, 0, 0.5)
}

.bg-opacity-15 {
  --bg-opacity: 0.15
}

.bg-opacity-25 {
  --bg-opacity: 0.25
}

.bg-opacity-50 {
  --bg-opacity: 0.5
}

.bg-opacity-75 {
  --bg-opacity: 0.75
}

.bg-opacity-90 {
  --bg-opacity: 0.90
}

.bg-opacity-98 {
  --bg-opacity: 0.98
}

.bg-center {
  background-position: 50%
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.bg-cover {
  background-size: cover
}

.border-collapse {
  border-collapse: collapse
}

.border-nasa-red {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity))
}

.border-nasa-red-light {
  --border-opacity: 1;
  border-color: #e73b54;
  border-color: rgba(231, 59, 84, var(--border-opacity))
}

.border-nasa-red-dark {
  --border-opacity: 1;
  border-color: #c1152e;
  border-color: rgba(193, 21, 46, var(--border-opacity))
}

.border-white {
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity))
}

.border-gray-light-mid {
  --border-opacity: 1;
  border-color: #d8d8d8;
  border-color: rgba(216, 216, 216, var(--border-opacity))
}

.border-gray-mid {
  --border-opacity: 1;
  border-color: #949494;
  border-color: rgba(148, 148, 148, var(--border-opacity))
}

.border-gray-mid-dark {
  --border-opacity: 1;
  border-color: #6f6f6f;
  border-color: rgba(111, 111, 111, var(--border-opacity))
}

.border-gray-dark {
  --border-opacity: 1;
  border-color: #222;
  border-color: rgba(34, 34, 34, var(--border-opacity))
}

.border-black {
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity))
}

.border-transparent {
  border-color: transparent
}

.border-opacity-0 {
  --border-opacity: 0
}

.border-opacity-30 {
  --border-opacity: 0.30
}

.border-opacity-40 {
  --border-opacity: 0.40
}

.border-opacity-50 {
  --border-opacity: 0.5
}

.border-opacity-100 {
  --border-opacity: 1
}

.rounded-none {
  border-radius: 0
}

.rounded-lg {
  border-radius: .5rem
}

.rounded-xl {
  border-radius: .75rem
}

.rounded-full {
  border-radius: 9999px
}

.border-none {
  border-style: none
}

.border-0 {
  border-width: 0
}

.border-2 {
  border-width: 2px
}

.border-4 {
  border-width: 4px
}

.border {
  border-width: 1px
}

.border-l-0 {
  border-left-width: 0
}

.border-t-2 {
  border-top-width: 2px
}

.border-b-2 {
  border-bottom-width: 2px
}

.border-l-4 {
  border-left-width: 4px
}

.border-t {
  border-top-width: 1px
}

.border-r {
  border-right-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.border-l {
  border-left-width: 1px
}

.cursor-default {
  cursor: default
}

.cursor-pointer {
  cursor: pointer
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.table {
  display: table
}

.grid {
  display: grid
}

.inline-grid {
  display: inline-grid
}

.contents {
  display: contents
}

.hidden {
  display: none
}

.flex-row {
  flex-direction: row
}

.flex-col {
  flex-direction: column
}

.flex-col-reverse {
  flex-direction: column-reverse
}

.flex-wrap {
  flex-wrap: wrap
}

.flex-no-wrap {
  flex-wrap: nowrap
}

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

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

.items-center {
  align-items: center
}

.justify-items-center {
  justify-items: center
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.flex-1 {
  flex: 1 1 0%
}

.flex-none {
  flex: none
}

.flex-grow {
  flex-grow: 1
}

.flex-shrink-0 {
  flex-shrink: 0
}

.order-1 {
  order: 1
}

.order-2 {
  order: 2
}

.order-3 {
  order: 3
}

.font-primary {
  font-family: Metropolis, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
}

.font-secondary {
  font-family: Archivo Narrow, Metropolis, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extrabold {
  font-weight: 800
}

.h-0 {
  height: 0
}

.h-1 {
  height: .25rem
}

.h-3 {
  height: .75rem
}

.h-4 {
  height: 1rem
}

.h-5 {
  height: 1.25rem
}

.h-6 {
  height: 1.5rem
}

.h-8 {
  height: 2rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-18 {
  height: 4.5rem
}

.h-20 {
  height: 5rem
}

.h-22 {
  height: 5.5rem
}

.h-25 {
  height: 6.25rem
}

.h-28 {
  height: 7rem
}

.h-38 {
  height: 9.5rem
}

.h-40 {
  height: 10rem
}

.h-80 {
  height: 20rem
}

.h-auto {
  height: auto
}

.h-px {
  height: 1px
}

.h-2px {
  height: 2px
}

.h-full {
  height: 100%
}

.h-screen {
  height: 100vh
}

.text-8xl {
  font-size: 2.75rem
}

.text-7xl {
  font-size: 2.5rem
}

.text-6xl {
  font-size: 2rem
}

.text-5xl {
  font-size: 1.75rem
}

.text-4xl {
  font-size: 1.625rem
}

.text-3xl {
  font-size: 1.5rem
}

.text-2xl {
  font-size: 1.375rem
}

.text-xl {
  font-size: 1.25rem
}

.text-lg {
  font-size: 1.125rem
}

.text-base {
  font-size: 1rem
}

.text-sm {
  font-size: .875rem
}

.leading-none {
  line-height: 1
}

.leading-tighter {
  line-height: 1.125
}

.leading-tight {
  line-height: 1.25
}

.leading-normal {
  line-height: 1.5
}

.leading-relaxed {
  line-height: 1.75
}

.list-none {
  list-style-type: none
}

.m-0 {
  margin: 0
}

.m-auto {
  margin: auto
}

.m-px {
  margin: 1px
}

.mx-1 {
  margin-left: .25rem;
  margin-right: .25rem
}

.my-2 {
  margin-top: .5rem;
  margin-bottom: .5rem
}

.my-3 {
  margin-top: .75rem;
  margin-bottom: .75rem
}

.mx-3 {
  margin-left: .75rem;
  margin-right: .75rem
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem
}

.my-18 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem
}

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

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

.-mx-1 {
  margin-left: -.25rem;
  margin-right: -.25rem
}

.-my-2 {
  margin-top: -.5rem;
  margin-bottom: -.5rem
}

.mt-0 {
  margin-top: 0
}

.mr-0 {
  margin-right: 0
}

.mb-0 {
  margin-bottom: 0
}

.ml-0 {
  margin-left: 0
}

.mt-1 {
  margin-top: .25rem
}

.mr-1 {
  margin-right: .25rem
}

.mb-1 {
  margin-bottom: .25rem
}

.ml-1 {
  margin-left: .25rem
}

.mt-2 {
  margin-top: .5rem
}

.mr-2 {
  margin-right: .5rem
}

.mb-2 {
  margin-bottom: .5rem
}

.ml-2 {
  margin-left: .5rem
}

.mt-3 {
  margin-top: .75rem
}

.mr-3 {
  margin-right: .75rem
}

.mb-3 {
  margin-bottom: .75rem
}

.ml-3 {
  margin-left: .75rem
}

.mt-4 {
  margin-top: 1rem
}

.mr-4 {
  margin-right: 1rem
}

.mb-4 {
  margin-bottom: 1rem
}

.ml-4 {
  margin-left: 1rem
}

.mt-5 {
  margin-top: 1.25rem
}

.mr-5 {
  margin-right: 1.25rem
}

.mb-5 {
  margin-bottom: 1.25rem
}

.ml-5 {
  margin-left: 1.25rem
}

.mt-6 {
  margin-top: 1.5rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.ml-6 {
  margin-left: 1.5rem
}

.mt-8 {
  margin-top: 2rem
}

.mr-8 {
  margin-right: 2rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mt-10 {
  margin-top: 2.5rem
}

.mr-10 {
  margin-right: 2.5rem
}

.mb-10 {
  margin-bottom: 2.5rem
}

.mt-12 {
  margin-top: 3rem
}

.mb-12 {
  margin-bottom: 3rem
}

.mb-14 {
  margin-bottom: 3.5rem
}

.ml-14 {
  margin-left: 3.5rem
}

.mt-16 {
  margin-top: 4rem
}

.mr-16 {
  margin-right: 4rem
}

.mt-18 {
  margin-top: 4.5rem
}

.mt-20 {
  margin-top: 5rem
}

.mb-20 {
  margin-bottom: 5rem
}

.mb-22 {
  margin-bottom: 5.5rem
}

.mt-24 {
  margin-top: 6rem
}

.mt-26 {
  margin-top: 6.5rem
}

.mt-30 {
  margin-top: 7.5rem
}

.mb-30 {
  margin-bottom: 7.5rem
}

.mt-36 {
  margin-top: 9rem
}

.mr-auto {
  margin-right: auto
}

.ml-auto {
  margin-left: auto
}

.mt-px {
  margin-top: 1px
}

.mb-px {
  margin-bottom: 1px
}

.-mt-1 {
  margin-top: -.25rem
}

.-mb-1 {
  margin-bottom: -.25rem
}

.-ml-1 {
  margin-left: -.25rem
}

.-mt-2 {
  margin-top: -.5rem
}

.-mb-2 {
  margin-bottom: -.5rem
}

.-ml-2 {
  margin-left: -.5rem
}

.-mt-3 {
  margin-top: -.75rem
}

.-mb-3 {
  margin-bottom: -.75rem
}

.-ml-3 {
  margin-left: -.75rem
}

.-mr-4 {
  margin-right: -1rem
}

.-ml-4 {
  margin-left: -1rem
}

.-mt-5 {
  margin-top: -1.25rem
}

.-mb-5 {
  margin-bottom: -1.25rem
}

.-ml-5 {
  margin-left: -1.25rem
}

.-mt-6 {
  margin-top: -1.5rem
}

.-ml-8 {
  margin-left: -2rem
}

.-mt-10 {
  margin-top: -2.5rem
}

.-mt-12 {
  margin-top: -3rem
}

.-mt-14 {
  margin-top: -3.5rem
}

.-mr-16 {
  margin-right: -4rem
}

.-ml-16 {
  margin-left: -4rem
}

.-mt-18 {
  margin-top: -4.5rem
}

.-mt-20 {
  margin-top: -5rem
}

.-mr-20 {
  margin-right: -5rem
}

.-ml-20 {
  margin-left: -5rem
}

.-mt-24 {
  margin-top: -6rem
}

.-mr-26 {
  margin-right: -6.5rem
}

.-mt-px {
  margin-top: -1px
}

.-ml-px {
  margin-left: -1px
}

.max-h-full {
  max-height: 100%
}

.max-h-screen {
  max-height: 100vh
}

.max-w-none {
  max-width: none
}

.max-w-lg {
  max-width: 32rem
}

.max-w-xl {
  max-width: 36rem
}

.max-w-2xl {
  max-width: 42rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-6xl {
  max-width: 72rem
}

.max-w-full {
  max-width: 100%
}

.max-w-screen-md {
  max-width: 768px
}

.max-w-screen-xl {
  max-width: 1280px
}

.max-w-screen-2xl {
  max-width: 1440px
}

.max-w-screen-3xl {
  max-width: 1800px
}

.max-w-screen-4xl {
  max-width: 1900px
}

.min-h-18 {
  min-height: 4.5rem
}

.min-h-66 {
  min-height: 16rem
}

.min-h-100 {
  min-height: 25rem
}

.min-h-full {
  min-height: 100%
}

.min-h-1\/2 {
  min-height: 50%
}

.min-w-12 {
  min-width: 3rem
}

.min-w-full {
  min-width: 100%
}

.object-contain {
  object-fit: contain
}

.object-cover {
  object-fit: cover
}

.object-fill {
  object-fit: fill
}

.object-none {
  object-fit: none
}

.object-scale-down {
  object-fit: scale-down
}

.object-bottom {
  object-position: bottom
}

.object-center {
  object-position: center
}

.opacity-0 {
  opacity: 0
}

.opacity-25 {
  opacity: .25
}

.opacity-50 {
  opacity: .5
}

.opacity-75 {
  opacity: .75
}

.opacity-100 {
  opacity: 1
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.overflow-visible {
  overflow: visible
}

.overflow-x-auto {
  overflow-x: auto
}

.overflow-y-auto {
  overflow-y: auto
}

.overflow-x-hidden {
  overflow-x: hidden
}

.overflow-x-visible {
  overflow-x: visible
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch
}

.p-0 {
  padding: 0
}

.p-2 {
  padding: .5rem
}

.p-3 {
  padding: .75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-8 {
  padding: 2rem
}

.p-10 {
  padding: 2.5rem
}

.p-16 {
  padding: 4rem
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0
}

.px-0 {
  padding-left: 0;
  padding-right: 0
}

.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem
}

.px-1 {
  padding-left: .25rem;
  padding-right: .25rem
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem
}

.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem
}

.px-px {
  padding-left: 1px;
  padding-right: 1px
}

.py-2px {
  padding-top: 2px;
  padding-bottom: 2px
}

.pr-0 {
  padding-right: 0
}

.pb-0 {
  padding-bottom: 0
}

.pl-0 {
  padding-left: 0
}

.pt-1 {
  padding-top: .25rem
}

.pr-1 {
  padding-right: .25rem
}

.pb-1 {
  padding-bottom: .25rem
}

.pl-1 {
  padding-left: .25rem
}

.pt-2 {
  padding-top: .5rem
}

.pr-2 {
  padding-right: .5rem
}

.pb-2 {
  padding-bottom: .5rem
}

.pl-2 {
  padding-left: .5rem
}

.pt-3 {
  padding-top: .75rem
}

.pr-3 {
  padding-right: .75rem
}

.pb-3 {
  padding-bottom: .75rem
}

.pl-3 {
  padding-left: .75rem
}

.pt-4 {
  padding-top: 1rem
}

.pb-4 {
  padding-bottom: 1rem
}

.pl-4 {
  padding-left: 1rem
}

.pr-4 {
  padding-right: 1rem
}

.pt-5 {
  padding-top: 1.25rem
}

.pr-5 {
  padding-right: 1.25rem
}

.pb-5 {
  padding-bottom: 1.25rem
}

.pl-5 {
  padding-left: 1.25rem
}

.pt-6 {
  padding-top: 1.5rem
}

.pb-6 {
  padding-bottom: 1.5rem
}

.pl-6 {
  padding-left: 1.5rem
}

.pt-8 {
  padding-top: 2rem
}

.pr-8 {
  padding-right: 2rem
}

.pb-8 {
  padding-bottom: 2rem
}

.pl-8 {
  padding-left: 2rem
}

.pt-10 {
  padding-top: 2.5rem
}

.pb-10 {
  padding-bottom: 2.5rem
}

.pl-10 {
  padding-left: 2.5rem
}

.pt-12 {
  padding-top: 3rem
}

.pb-12 {
  padding-bottom: 3rem
}

.pl-12 {
  padding-left: 3rem
}

.pt-14 {
  padding-top: 3.5rem
}

.pr-14 {
  padding-right: 3.5rem
}

.pb-14 {
  padding-bottom: 3.5rem
}

.pl-14 {
  padding-left: 3.5rem
}

.pt-22 {
  padding-top: 5.5rem
}

.pb-24 {
  padding-bottom: 6rem
}

.pt-40 {
  padding-top: 10rem
}

.pb-80 {
  padding-bottom: 20rem
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.inset-0 {
  right: 0;
  left: 0
}

.inset-0,
.inset-y-0 {
  top: 0;
  bottom: 0
}

.inset-x-0 {
  right: 0;
  left: 0
}

.top-0 {
  top: 0
}

.right-0 {
  right: 0
}

.bottom-0 {
  bottom: 0
}

.left-0 {
  left: 0
}

.top-auto {
  top: auto
}

.right-auto {
  right: auto
}

.left-auto {
  left: auto
}

.top-1\/2 {
  top: 50%
}

.left-1\/2 {
  left: 50%
}

.resize {
  resize: both
}

.shadow-none {
  box-shadow: none
}

.shadow-nasa {
  box-shadow: -4px 5px 60px 0 rgba(0, 0, 0, .1)
}

.table-auto {
  table-layout: auto
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-nasa-red {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.text-nasa-red-light {
  --text-opacity: 1;
  color: #e73b54;
  color: rgba(231, 59, 84, var(--text-opacity))
}

.text-nasa-red-dark {
  --text-opacity: 1;
  color: #c1152e;
  color: rgba(193, 21, 46, var(--text-opacity))
}

.text-nasa-aqua {
  --text-opacity: 1;
  color: #489fdf;
  color: rgba(72, 159, 223, var(--text-opacity))
}

.text-blue {
  --text-opacity: 1;
  color: #8bcbfa;
  color: rgba(139, 203, 250, var(--text-opacity))
}

.text-dark-blue {
  --text-opacity: 1;
  color: #004562;
  color: rgba(0, 69, 98, var(--text-opacity))
}

.text-white {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.text-gray-light {
  --text-opacity: 1;
  color: #f5f5f5;
  color: rgba(245, 245, 245, var(--text-opacity))
}

.text-gray-light-mid {
  --text-opacity: 1;
  color: #d8d8d8;
  color: rgba(216, 216, 216, var(--text-opacity))
}

.text-gray-mid {
  --text-opacity: 1;
  color: #949494;
  color: rgba(148, 148, 148, var(--text-opacity))
}

.text-gray-mid-dark {
  --text-opacity: 1;
  color: #6f6f6f;
  color: rgba(111, 111, 111, var(--text-opacity))
}

.text-gray-dark {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.text-black {
  --text-opacity: 1;
  color: #000;
  color: rgba(0, 0, 0, var(--text-opacity))
}

.text-transparent {
  color: transparent
}

.hover\:text-nasa-red-light:hover {
  --text-opacity: 1;
  color: #e73b54;
  color: rgba(231, 59, 84, var(--text-opacity))
}

.hover\:text-nasa-red-dark:hover {
  --text-opacity: 1;
  color: #c1152e;
  color: rgba(193, 21, 46, var(--text-opacity))
}

.text-opacity-75 {
  --text-opacity: 0.75
}

.text-opacity-90 {
  --text-opacity: 0.90
}

.italic {
  font-style: italic
}

.not-italic {
  font-style: normal
}

.uppercase {
  text-transform: uppercase
}

.capitalize {
  text-transform: capitalize
}

.underline {
  text-decoration: underline
}

.no-underline {
  text-decoration: none
}

.tracking-tightest {
  letter-spacing: -2px
}

.tracking-tighter {
  letter-spacing: -1px
}

.tracking-normal {
  letter-spacing: 0
}

.tracking-wider {
  letter-spacing: 1px
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.align-top {
  vertical-align: top
}

.align-middle {
  vertical-align: middle
}

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.whitespace-no-wrap {
  white-space: nowrap
}

.break-normal {
  word-wrap: normal;
  word-break: normal
}

.break-words {
  word-wrap: break-word
}

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

.w-0 {
  width: 0
}

.w-2 {
  width: .5rem
}

.w-3 {
  width: .75rem
}

.w-5 {
  width: 1.25rem
}

.w-6 {
  width: 1.5rem
}

.w-8 {
  width: 2rem
}

.w-12 {
  width: 3rem
}

.w-14 {
  width: 3.5rem
}

.w-16 {
  width: 4rem
}

.w-18 {
  width: 4.5rem
}

.w-20 {
  width: 5rem
}

.w-22 {
  width: 5.5rem
}

.w-25 {
  width: 6.25rem
}

.w-26 {
  width: 6.5rem
}

.w-30 {
  width: 7.5rem
}

.w-38 {
  width: 9.5rem
}

.w-40 {
  width: 10rem
}

.w-56 {
  width: 14rem
}

.w-64 {
  width: 16rem
}

.w-72 {
  width: 17.5rem
}

.w-80 {
  width: 20rem
}

.w-auto {
  width: auto
}

.w-xl {
  width: 36rem
}

.w-1\/2 {
  width: 50%
}

.w-2\/3 {
  width: 66.666667%
}

.w-1\/4 {
  width: 25%
}

.w-3\/4 {
  width: 75%
}

.w-1\/5 {
  width: 20%
}

.w-2\/5 {
  width: 40%
}

.w-3\/5 {
  width: 60%
}

.w-4\/5 {
  width: 80%
}

.w-5\/6 {
  width: 83.333333%
}

.w-9\/12 {
  width: 75%
}

.w-full {
  width: 100%
}

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.z-60 {
  z-index: 60
}

.gap-2 {
  grid-gap: .5rem;
  gap: .5rem
}

.gap-3 {
  grid-gap: .75rem;
  gap: .75rem
}

.gap-4 {
  grid-gap: 1rem;
  gap: 1rem
}

.gap-5 {
  grid-gap: 1.25rem;
  gap: 1.25rem
}

.gap-6 {
  grid-gap: 1.5rem;
  gap: 1.5rem
}

.gap-8 {
  grid-gap: 2rem;
  gap: 2rem
}

.gap-10 {
  grid-gap: 2.5rem;
  gap: 2.5rem
}

.gap-y-8 {
  grid-row-gap: 2rem;
  row-gap: 2rem
}

.gap-y-10 {
  grid-row-gap: 2.5rem;
  row-gap: 2.5rem
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr))
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr))
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr))
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr))
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr))
}

.col-span-1 {
  grid-column: span 1/span 1
}

.col-span-2 {
  grid-column: span 2/span 2
}

.col-span-3 {
  grid-column: span 3/span 3
}

.col-span-4 {
  grid-column: span 4/span 4
}

.col-span-5 {
  grid-column: span 5/span 5
}

.col-span-6 {
  grid-column: span 6/span 6
}

.col-span-7 {
  grid-column: span 7/span 7
}

.col-span-8 {
  grid-column: span 8/span 8
}

.col-span-9 {
  grid-column: span 9/span 9
}

.col-span-10 {
  grid-column: span 10/span 10
}

.col-span-11 {
  grid-column: span 11/span 11
}

.col-span-12 {
  grid-column: span 12/span 12
}

.col-span-full {
  grid-column: 1/-1
}

.col-start-1 {
  grid-column-start: 1
}

.col-start-2 {
  grid-column-start: 2
}

.col-start-3 {
  grid-column-start: 3
}

.col-start-6 {
  grid-column-start: 6
}

.col-start-7 {
  grid-column-start: 7
}

.col-start-8 {
  grid-column-start: 8
}

.col-start-9 {
  grid-column-start: 9
}

.col-start-10 {
  grid-column-start: 10
}

.col-end-7 {
  grid-column-end: 7
}

.col-end-10 {
  grid-column-end: 10
}

.col-end-11 {
  grid-column-end: 11
}

.col-end-12 {
  grid-column-end: 12
}

.col-end-13 {
  grid-column-end: 13
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr))
}

.row-span-1 {
  grid-row: span 1/span 1
}

.row-span-2 {
  grid-row: span 2/span 2
}

.row-start-2 {
  grid-row-start: 2
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))
}

.scale-100 {
  --transform-scale-x: 1;
  --transform-scale-y: 1
}

.scale-103 {
  --transform-scale-x: 1.03;
  --transform-scale-y: 1.03
}

.scale-105 {
  --transform-scale-x: 1.05;
  --transform-scale-y: 1.05
}

.scale-125 {
  --transform-scale-x: 1.25;
  --transform-scale-y: 1.25
}

.-translate-x-1\/2 {
  --transform-translate-x: -50%
}

.-translate-x-3\/7 {
  --transform-translate-x: -42.8571429%
}

.translate-y-0 {
  --transform-translate-y: 0
}

.translate-y-12 {
  --transform-translate-y: 3rem
}

.translate-y-32 {
  --transform-translate-y: 8rem
}

.-translate-y-2 {
  --transform-translate-y: -0.5rem
}

.-translate-y-full {
  --transform-translate-y: -100%
}

.-translate-y-1\/2 {
  --transform-translate-y: -50%
}

.transition-none {
  transition-property: none
}

.transition-all {
  transition-property: all
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke
}

.transition-opacity {
  transition-property: opacity
}

.transition-shadow {
  transition-property: box-shadow
}

.transition-transform {
  transition-property: transform
}

.transition-border-opacity {
  transition-property: border-opacity
}

.ease-linear {
  transition-timing-function: linear
}

.ease-in {
  transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.ease-in-out {
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.duration-100 {
  transition-duration: .1s
}

.duration-150 {
  transition-duration: .15s
}

.duration-200 {
  transition-duration: .2s
}

.duration-300 {
  transition-duration: .3s
}

.duration-500 {
  transition-duration: .5s
}

.duration-1000 {
  transition-duration: 1s
}

.duration-2000 {
  transition-duration: 2s
}

.duration-3500 {
  transition-duration: 3.5s
}

.delay-200 {
  transition-delay: .2s
}

.delay-500 {
  transition-delay: .5s
}

@-webkit-keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

@-webkit-keyframes ping {
  75%,
  to {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes ping {
  75%,
  to {
    transform: scale(2);
    opacity: 0
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@-webkit-keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

@keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }
  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@-webkit-keyframes fadeOut {
  to {
    opacity: 1
  }
  0% {
    opacity: 0
  }
}

@keyframes fadeOut {
  to {
    opacity: 1
  }
  0% {
    opacity: 0
  }
}

@-webkit-keyframes scaleIn {
  0% {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(1turn)
  }
}

@keyframes rotate {
  to {
    transform: rotate(1turn)
  }
}

.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.animate-fadeIn {
  -webkit-animation: fadeIn .5s ease-in forwards;
  animation: fadeIn .5s ease-in forwards
}

.animate-fadeInSlow {
  -webkit-animation: fadeIn 1s ease-in forwards;
  animation: fadeIn 1s ease-in forwards
}

.animate-rotate {
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite
}

@media (prefers-reduced-motion:no-preference) {
  .motion-safe\:animate-ping {
    -webkit-animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite
  }
}

@media (min-width:640px) {
  .sm\:block {
    display: block
  }
  .sm\:flex {
    display: flex
  }
  .sm\:grid {
    display: grid
  }
  .sm\:hidden {
    display: none
  }
  .sm\:h-10 {
    height: 2.5rem
  }
  .sm\:h-26 {
    height: 6.5rem
  }
  .sm\:h-40 {
    height: 10rem
  }
  .sm\:text-6xl {
    font-size: 2rem
  }
  .sm\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem
  }
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto
  }
  .sm\:mb-0 {
    margin-bottom: 0
  }
  .sm\:mb-3 {
    margin-bottom: .75rem
  }
  .sm\:mt-16 {
    margin-top: 4rem
  }
  .sm\:-ml-10 {
    margin-left: -2.5rem
  }
  .sm\:object-cover {
    object-fit: cover
  }
  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }
  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
  .sm\:pt-24 {
    padding-top: 6rem
  }
  .sm\:absolute {
    position: absolute
  }
  .sm\:text-left {
    text-align: left
  }
  .sm\:whitespace-no-wrap {
    white-space: nowrap
  }
  .sm\:w-26 {
    width: 6.5rem
  }
  .sm\:w-80 {
    width: 20rem
  }
  .sm\:w-auto {
    width: auto
  }
  .sm\:w-xl {
    width: 36rem
  }
  .sm\:w-3\/4 {
    width: 75%
  }
  .sm\:col-span-3 {
    grid-column: span 3/span 3
  }
  .sm\:col-span-5 {
    grid-column: span 5/span 5
  }
  .sm\:col-span-6 {
    grid-column: span 6/span 6
  }
  .sm\:col-span-7 {
    grid-column: span 7/span 7
  }
  .sm\:col-end-11 {
    grid-column-end: 11
  }
}

@media (min-width:768px) {
  .md\:block {
    display: block
  }
  .md\:inline {
    display: inline
  }
  .md\:flex {
    display: flex
  }
  .md\:grid {
    display: grid
  }
  .md\:hidden {
    display: none
  }
  .md\:flex-row {
    flex-direction: row
  }
  .md\:text-10xl {
    font-size: 4.5rem
  }
  .md\:text-8xl {
    font-size: 2.75rem
  }
  .md\:text-3xl {
    font-size: 1.5rem
  }
  .md\:text-2xl {
    font-size: 1.375rem
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0
  }
  .md\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
  }
  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
  }
  .md\:mt-0 {
    margin-top: 0
  }
  .md\:mb-0 {
    margin-bottom: 0
  }
  .md\:mb-2 {
    margin-bottom: .5rem
  }
  .md\:mb-3 {
    margin-bottom: .75rem
  }
  .md\:mt-5 {
    margin-top: 1.25rem
  }
  .md\:mr-6 {
    margin-right: 1.5rem
  }
  .md\:mb-8 {
    margin-bottom: 2rem
  }
  .md\:mb-12 {
    margin-bottom: 3rem
  }
  .md\:mr-16 {
    margin-right: 4rem
  }
  .md\:max-w-none {
    max-width: none
  }
  .md\:object-right {
    object-position: right
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0
  }
  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem
  }
  .md\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }
  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }
  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
  .md\:visible {
    visibility: visible
  }
  .md\:w-2\/3 {
    width: 66.666667%
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
  .md\:col-span-3 {
    grid-column: span 3/span 3
  }
  .md\:col-span-6 {
    grid-column: span 6/span 6
  }
  .md\:col-start-2 {
    grid-column-start: 2
  }
  .md\:col-start-3 {
    grid-column-start: 3
  }
  .md\:col-start-6 {
    grid-column-start: 6
  }
  .md\:col-end-11 {
    grid-column-end: 11
  }
}

@media (min-width:1024px) {
  .lg\:container {
    width: 100%
  }
}

@media (min-width:1024px) and (min-width:640px) {
  .lg\:container {
    max-width: 640px
  }
}

@media (min-width:1024px) and (min-width:768px) {
  .lg\:container {
    max-width: 768px
  }
}

@media (min-width:1024px) and (min-width:1024px) {
  .lg\:container {
    max-width: 1024px
  }
}

@media (min-width:1024px) and (min-width:1280px) {
  .lg\:container {
    max-width: 1280px
  }
}

@media (min-width:1024px) and (min-width:1320px) {
  .lg\:container {
    max-width: 1320px
  }
}

@media (min-width:1024px) {
  .lg\:bg-gradient-to-r {
    background-image: linear-gradient(90deg, var(--gradient-color-stops))
  }
  .lg\:bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops))
  }
  .lg\:bg-gradient-to-l {
    background-image: linear-gradient(270deg, var(--gradient-color-stops))
  }
  .lg\:from-transparent {
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, transparent)
  }
  .lg\:from-transparent-w50 {
    --gradient-from-color: transparent 50%;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, hsla(0, 0%, 100%, 0))
  }
  .lg\:to-transparent-black-90 {
    --gradient-to-color: rgba(0, 0, 0, 0.9)
  }
  .lg\:to-transparent-black-75 {
    --gradient-to-color: rgba(0, 0, 0, 0.75)
  }
  .lg\:to-transparent-black-50 {
    --gradient-to-color: rgba(0, 0, 0, 0.5)
  }
  .lg\:bg-opacity-100 {
    --bg-opacity: 1
  }
  .lg\:border-0 {
    border-width: 0
  }
  .lg\:border-t {
    border-top-width: 1px
  }
  .lg\:block {
    display: block
  }
  .lg\:inline-block {
    display: inline-block
  }
  .lg\:flex {
    display: flex
  }
  .lg\:grid {
    display: grid
  }
  .lg\:hidden {
    display: none
  }
  .lg\:flex-row {
    flex-direction: row
  }
  .lg\:flex-col {
    flex-direction: column
  }
  .lg\:flex-wrap {
    flex-wrap: wrap
  }
  .lg\:items-end {
    align-items: flex-end
  }
  .lg\:items-center {
    align-items: center
  }
  .lg\:justify-start {
    justify-content: flex-start
  }
  .lg\:justify-end {
    justify-content: flex-end
  }
  .lg\:order-1 {
    order: 1
  }
  .lg\:order-2 {
    order: 2
  }
  .lg\:order-3 {
    order: 3
  }
  .lg\:h-full {
    height: 100%
  }
  .lg\:text-9xl {
    font-size: 3.5rem
  }
  .lg\:text-7xl {
    font-size: 2.5rem
  }
  .lg\:text-6xl {
    font-size: 2rem
  }
  .lg\:text-4xl {
    font-size: 1.625rem
  }
  .lg\:text-3xl {
    font-size: 1.5rem
  }
  .lg\:text-2xl {
    font-size: 1.375rem
  }
  .lg\:text-base {
    font-size: 1rem
  }
  .lg\:leading-tighter {
    line-height: 1.125
  }
  .lg\:leading-tight {
    line-height: 1.25
  }
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0
  }
  .lg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
  }
  .lg\:my-18 {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem
  }
  .lg\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem
  }
  .lg\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem
  }
  .lg\:mt-0 {
    margin-top: 0
  }
  .lg\:mb-0 {
    margin-bottom: 0
  }
  .lg\:ml-0 {
    margin-left: 0
  }
  .lg\:mt-2 {
    margin-top: .5rem
  }
  .lg\:mb-2 {
    margin-bottom: .5rem
  }
  .lg\:mt-3 {
    margin-top: .75rem
  }
  .lg\:mr-3 {
    margin-right: .75rem
  }
  .lg\:mb-3 {
    margin-bottom: .75rem
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem
  }
  .lg\:mt-6 {
    margin-top: 1.5rem
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem
  }
  .lg\:mr-8 {
    margin-right: 2rem
  }
  .lg\:mb-8 {
    margin-bottom: 2rem
  }
  .lg\:mt-10 {
    margin-top: 2.5rem
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem
  }
  .lg\:mt-12 {
    margin-top: 3rem
  }
  .lg\:mb-12 {
    margin-bottom: 3rem
  }
  .lg\:mb-14 {
    margin-bottom: 3.5rem
  }
  .lg\:mb-16 {
    margin-bottom: 4rem
  }
  .lg\:mt-18 {
    margin-top: 4.5rem
  }
  .lg\:mb-18 {
    margin-bottom: 4.5rem
  }
  .lg\:mt-20 {
    margin-top: 5rem
  }
  .lg\:mr-20 {
    margin-right: 5rem
  }
  .lg\:mb-20 {
    margin-bottom: 5rem
  }
  .lg\:mb-22 {
    margin-bottom: 5.5rem
  }
  .lg\:mt-24 {
    margin-top: 6rem
  }
  .lg\:mb-24 {
    margin-bottom: 6rem
  }
  .lg\:mt-26 {
    margin-top: 6.5rem
  }
  .lg\:mt-28 {
    margin-top: 7rem
  }
  .lg\:mb-36 {
    margin-bottom: 9rem
  }
  .lg\:-mb-3 {
    margin-bottom: -.75rem
  }
  .lg\:-ml-3 {
    margin-left: -.75rem
  }
  .lg\:-ml-4 {
    margin-left: -1rem
  }
  .lg\:-mr-8 {
    margin-right: -2rem
  }
  .lg\:-mb-8 {
    margin-bottom: -2rem
  }
  .lg\:-mt-20 {
    margin-top: -5rem
  }
  .lg\:-ml-24 {
    margin-left: -6rem
  }
  .lg\:-mt-26 {
    margin-top: -6.5rem
  }
  .lg\:-mt-28 {
    margin-top: -7rem
  }
  .lg\:-mt-px {
    margin-top: -1px
  }
  .group:hover .lg\:group-hover\:ml-0 {
    margin-left: 0
  }
  .group:hover .lg\:group-hover\:mb-3 {
    margin-bottom: .75rem
  }
  .lg\:max-w-none {
    max-width: none
  }
  .lg\:max-w-3xl {
    max-width: 48rem
  }
  .lg\:min-h-28 {
    min-height: 7rem
  }
  .lg\:min-h-100 {
    min-height: 25rem
  }
  .lg\:opacity-0 {
    opacity: 0
  }
  .group:hover .lg\:group-hover\:opacity-100 {
    opacity: 1
  }
  .lg\:overflow-visible {
    overflow: visible
  }
  .lg\:overflow-x-hidden {
    overflow-x: hidden
  }
  .lg\:p-0 {
    padding: 0
  }
  .lg\:p-1 {
    padding: .25rem
  }
  .lg\:p-5 {
    padding: 1.25rem
  }
  .lg\:p-20 {
    padding: 5rem
  }
  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0
  }
  .lg\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem
  }
  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem
  }
  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }
  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }
  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }
  .lg\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
  }
  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }
  .lg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem
  }
  .lg\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem
  }
  .lg\:pt-0 {
    padding-top: 0
  }
  .lg\:pb-0 {
    padding-bottom: 0
  }
  .lg\:pl-0 {
    padding-left: 0
  }
  .lg\:pr-1 {
    padding-right: .25rem
  }
  .lg\:pt-3 {
    padding-top: .75rem
  }
  .lg\:pr-3 {
    padding-right: .75rem
  }
  .lg\:pt-4 {
    padding-top: 1rem
  }
  .lg\:pr-4 {
    padding-right: 1rem
  }
  .lg\:pb-4 {
    padding-bottom: 1rem
  }
  .lg\:pr-5 {
    padding-right: 1.25rem
  }
  .lg\:pt-6 {
    padding-top: 1.5rem
  }
  .lg\:pt-8 {
    padding-top: 2rem
  }
  .lg\:pt-10 {
    padding-top: 2.5rem
  }
  .lg\:pb-10 {
    padding-bottom: 2.5rem
  }
  .lg\:pt-12 {
    padding-top: 3rem
  }
  .lg\:pr-12 {
    padding-right: 3rem
  }
  .lg\:pr-14 {
    padding-right: 3.5rem
  }
  .lg\:pb-14 {
    padding-bottom: 3.5rem
  }
  .lg\:pt-18 {
    padding-top: 4.5rem
  }
  .lg\:pb-18 {
    padding-bottom: 4.5rem
  }
  .lg\:pt-20 {
    padding-top: 5rem
  }
  .lg\:pt-22 {
    padding-top: 5.5rem
  }
  .lg\:pb-24 {
    padding-bottom: 6rem
  }
  .lg\:absolute {
    position: absolute
  }
  .lg\:relative {
    position: relative
  }
  .lg\:inset-0 {
    right: 0;
    left: 0
  }
  .lg\:inset-0,
  .lg\:inset-y-0 {
    top: 0;
    bottom: 0
  }
  .lg\:top-0 {
    top: 0
  }
  .lg\:left-0 {
    left: 0
  }
  .lg\:left-auto {
    left: auto
  }
  .lg\:top-1\/2 {
    top: 50%
  }
  .lg\:right-1\/2 {
    right: 50%
  }
  .lg\:text-left {
    text-align: left
  }
  .lg\:text-white {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity))
  }
  .lg\:tracking-tightest {
    letter-spacing: -2px
  }
  .lg\:tracking-tight {
    letter-spacing: -.5px
  }
  .lg\:whitespace-normal {
    white-space: normal
  }
  .lg\:w-64 {
    width: 16rem
  }
  .lg\:w-auto {
    width: auto
  }
  .lg\:w-3xl {
    width: 48rem
  }
  .lg\:w-1\/2 {
    width: 50%
  }
  .lg\:w-1\/3 {
    width: 33.333333%
  }
  .lg\:w-2\/3 {
    width: 66.666667%
  }
  .lg\:w-3\/4 {
    width: 75%
  }
  .lg\:w-full {
    width: 100%
  }
  .lg\:z-20 {
    z-index: 20
  }
  .lg\:gap-x-6 {
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
  }
  .lg\:gap-y-0 {
    grid-row-gap: 0;
    row-gap: 0
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr))
  }
  .lg\:col-span-2 {
    grid-column: span 2/span 2
  }
  .lg\:col-span-3 {
    grid-column: span 3/span 3
  }
  .lg\:col-span-4 {
    grid-column: span 4/span 4
  }
  .lg\:col-span-5 {
    grid-column: span 5/span 5
  }
  .lg\:col-span-6 {
    grid-column: span 6/span 6
  }
  .lg\:col-span-7 {
    grid-column: span 7/span 7
  }
  .lg\:col-span-9 {
    grid-column: span 9/span 9
  }
  .lg\:col-start-1 {
    grid-column-start: 1
  }
  .lg\:col-start-2 {
    grid-column-start: 2
  }
  .lg\:col-start-3 {
    grid-column-start: 3
  }
  .lg\:col-start-4 {
    grid-column-start: 4
  }
  .lg\:col-start-5 {
    grid-column-start: 5
  }
  .lg\:col-start-6 {
    grid-column-start: 6
  }
  .lg\:col-start-7 {
    grid-column-start: 7
  }
  .lg\:col-start-8 {
    grid-column-start: 8
  }
  .lg\:col-start-9 {
    grid-column-start: 9
  }
  .lg\:col-end-5 {
    grid-column-end: 5
  }
  .lg\:col-end-8 {
    grid-column-end: 8
  }
  .lg\:col-end-9 {
    grid-column-end: 9
  }
  .lg\:col-end-10 {
    grid-column-end: 10
  }
  .lg\:col-end-11 {
    grid-column-end: 11
  }
  .lg\:col-end-12 {
    grid-column-end: 12
  }
  .lg\:col-end-13 {
    grid-column-end: 13
  }
  .lg\:row-span-2 {
    grid-row: span 2/span 2
  }
  .group:hover .lg\:group-hover\:scale-105 {
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05
  }
  .lg\:translate-x-1\/2 {
    --transform-translate-x: 50%
  }
  .lg\:-translate-y-1\/2 {
    --transform-translate-y: -50%
  }
  .lg\:-translate-y-3\/7 {
    --transform-translate-y: -42.8571429%
  }
}

@media (min-width:1280px) {
  .xl\:from-transparent-w25 {
    --gradient-from-color: transparent 25%;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, hsla(0, 0%, 100%, 0))
  }
  .xl\:text-11xl {
    font-size: 6.25rem
  }
  .xl\:text-10xl {
    font-size: 4.5rem
  }
  .xl\:text-6xl {
    font-size: 2rem
  }
  .xl\:text-2xl {
    font-size: 1.375rem
  }
  .xl\:text-xl {
    font-size: 1.25rem
  }
  .xl\:text-base {
    font-size: 1rem
  }
  .xl\:leading-normal {
    line-height: 1.5
  }
  .xl\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
  }
  .xl\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem
  }
  .xl\:mb-3 {
    margin-bottom: .75rem
  }
  .xl\:mb-8 {
    margin-bottom: 2rem
  }
  .xl\:-ml-5 {
    margin-left: -1.25rem
  }
  .xl\:-ml-20 {
    margin-left: -5rem
  }
  .xl\:-mr-22 {
    margin-right: -5.5rem
  }
  .xl\:-ml-22 {
    margin-left: -5.5rem
  }
  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0
  }
  .xl\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }
  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }
  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
  .xl\:pr-4 {
    padding-right: 1rem
  }
  .xl\:pr-6 {
    padding-right: 1.5rem
  }
  .xl\:pl-14 {
    padding-left: 3.5rem
  }
  .xl\:pr-18 {
    padding-right: 4.5rem
  }
  .xl\:pr-26 {
    padding-right: 6.5rem
  }
  .xl\:w-1\/2 {
    width: 50%
  }
  .xl\:w-2\/3 {
    width: 66.666667%
  }
  .xl\:w-3\/5 {
    width: 60%
  }
  .xl\:w-5\/12 {
    width: 41.666667%
  }
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr))
  }
  .xl\:col-span-2 {
    grid-column: span 2/span 2
  }
  .xl\:col-span-3 {
    grid-column: span 3/span 3
  }
  .xl\:col-span-4 {
    grid-column: span 4/span 4
  }
  .xl\:col-span-7 {
    grid-column: span 7/span 7
  }
  .xl\:col-start-6 {
    grid-column-start: 6
  }
  .xl\:col-start-9 {
    grid-column-start: 9
  }
  .xl\:col-end-6 {
    grid-column-end: 6
  }
  .xl\:col-end-8 {
    grid-column-end: 8
  }
  .xl\:col-end-9 {
    grid-column-end: 9
  }
  .xl\:col-end-11 {
    grid-column-end: 11
  }
  .xl\:-translate-x-1\/2 {
    --transform-translate-x: -50%
  }
}

@media (min-width:1440px) {
  .\32xl\:-mr-3 {
    margin-right: -.75rem
  }
  .\32xl\:px-0 {
    padding-left: 0
  }
  .\32xl\:pr-0,
  .\32xl\:px-0 {
    padding-right: 0
  }
  .\32xl\:pl-0 {
    padding-left: 0
  }
  .\32xl\:w-2\/5 {
    width: 40%
  }
  .\32xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr))
  }
  .\32xl\:col-span-3 {
    grid-column: span 3/span 3
  }
  .\32xl\:col-end-6 {
    grid-column-end: 6
  }
}

@media (min-width:1800px) {
  .\33xl\:ml-0 {
    margin-left: 0
  }
  .\33xl\:mr-16 {
    margin-right: 4rem
  }
  .\33xl\:px-0 {
    padding-left: 0;
    padding-right: 0
  }
  .\33xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
  .\33xl\:col-end-12 {
    grid-column-end: 12
  }
  .\33xl\:col-end-13 {
    grid-column-end: 13
  }
}

@media (hover:hover) {
  .group:hover .can-hover\:group-hover\:bg-nasa-red-light {
    --bg-opacity: 1;
    background-color: #e73b54;
    background-color: rgba(231, 59, 84, var(--bg-opacity))
  }
  .group:hover .can-hover\:group-hover\:border-nasa-red {
    --border-opacity: 1;
    border-color: #e31937;
    border-color: rgba(227, 25, 55, var(--border-opacity))
  }
  .group:hover .can-hover\:group-hover\:border-nasa-red-light {
    --border-opacity: 1;
    border-color: #e73b54;
    border-color: rgba(231, 59, 84, var(--border-opacity))
  }
  .group:hover .can-hover\:group-hover\:border-b-2 {
    border-bottom-width: 2px
  }
  .can-hover\:block {
    display: block
  }
  .can-hover\:hover\:font-medium:hover {
    font-weight: 500
  }
  .can-hover\:-ml-3 {
    margin-left: -.75rem
  }
  .group:hover .can-hover\:group-hover\:ml-0 {
    margin-left: 0
  }
  .group:hover .can-hover\:group-hover\:ml-2 {
    margin-left: .5rem
  }
  .group:hover .can-hover\:group-hover\:ml-3 {
    margin-left: .75rem
  }
  .group:hover .can-hover\:group-hover\:ml-5 {
    margin-left: 1.25rem
  }
  .group:hover .can-hover\:group-hover\:-mt-3 {
    margin-top: -.75rem
  }
  .can-hover\:opacity-0 {
    opacity: 0
  }
  .group:hover .can-hover\:group-hover\:opacity-100 {
    opacity: 1
  }
  .can-hover\:hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
  }
  .can-hover\:hover\:text-white:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255, 255, 255, var(--text-opacity))
  }
  .group:hover .can-hover\:group-hover\:text-gray-dark {
    --text-opacity: 1;
    color: #222;
    color: rgba(34, 34, 34, var(--text-opacity))
  }
  .can-hover\:hover\:underline:hover {
    text-decoration: underline
  }
  .group:hover .can-hover\:group-hover\:underline {
    text-decoration: underline
  }
  .group:hover .can-hover\:group-hover\:scale-100 {
    --transform-scale-x: 1;
    --transform-scale-y: 1
  }
  .group:hover .can-hover\:group-hover\:scale-105 {
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05
  }
  .group:hover .can-hover\:group-hover\:-translate-y-3 {
    --transform-translate-y: -0.75rem
  }
  .group:hover .can-hover\:group-hover\:delay-200 {
    transition-delay: .2s
  }
}

.aspect-ratio-none>div:first-of-type:before {
  content: "";
  display: flex;
  width: auto;
  padding-bottom: unset
}

.aspect-ratio-none>div:first-of-type iframe,
.aspect-ratio-none>div:first-of-type img {
  position: relative;
  height: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto
}

.aspect-ratio-twentyone-nine>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 42.85714%
}

.aspect-ratio-twentyone-nine>div:first-of-type iframe,
.aspect-ratio-twentyone-nine>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-sixteen-nine>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

.aspect-ratio-sixteen-nine>div:first-of-type iframe,
.aspect-ratio-sixteen-nine>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-sixteen-seven>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 43.75%
}

.aspect-ratio-sixteen-seven>div:first-of-type iframe,
.aspect-ratio-sixteen-seven>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-twelve-nine>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75%
}

.aspect-ratio-twelve-nine>div:first-of-type iframe,
.aspect-ratio-twelve-nine>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-nine-sixteen>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 177.77778%
}

.aspect-ratio-nine-sixteen>div:first-of-type iframe,
.aspect-ratio-nine-sixteen>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-seven-eight>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 114.28571%
}

.aspect-ratio-seven-eight>div:first-of-type iframe,
.aspect-ratio-seven-eight>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-eight-seven>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 87.5%
}

.aspect-ratio-eight-seven>div:first-of-type iframe,
.aspect-ratio-eight-seven>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-four-three>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75%
}

.aspect-ratio-four-three>div:first-of-type iframe,
.aspect-ratio-four-three>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-four-five>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 125%
}

.aspect-ratio-four-five>div:first-of-type iframe,
.aspect-ratio-four-five>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-two-one>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 50%
}

.aspect-ratio-two-one>div:first-of-type iframe,
.aspect-ratio-two-one>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-three-two>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.66667%
}

.aspect-ratio-three-two>div:first-of-type iframe,
.aspect-ratio-three-two>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-two-three>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 150%
}

.aspect-ratio-two-three>div:first-of-type iframe,
.aspect-ratio-two-three>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.aspect-ratio-one-one>div:first-of-type:before,
.aspect-ratio-square>div:first-of-type:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%
}

.aspect-ratio-one-one>div:first-of-type iframe,
.aspect-ratio-one-one>div:first-of-type img,
.aspect-ratio-square>div:first-of-type iframe,
.aspect-ratio-square>div:first-of-type img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.BaseGrid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem
}

@media (min-width:640px) {
  .MixedBleedGrid {
    grid-template-columns: [bleed-start] auto [container-start] 53.33px [indent-col-2] 53.33px [indent-col-3] 533.33px [container-end] auto [bleed-end];
    display: grid;
    grid-gap: 0;
    gap: 0
  }
}

@media (min-width:768px) {
  .MixedBleedGrid {
    grid-template-columns: [bleed-start] auto [container-start] 64px [indent-col-2] 64px [indent-col-3] 640px [container-end] auto [bleed-end];
    display: grid
  }
}

@media (min-width:1024px) {
  .MixedBleedGrid {
    grid-template-columns: [bleed-start] auto [container-start] 85.33px [indent-col-2] 85.33px [indent-col-3] 853.33px [container-end] auto [bleed-end];
    display: grid
  }
}

@media (min-width:1280px) {
  .MixedBleedGrid {
    grid-template-columns: [bleed-start] auto [container-start] 108px [indent-col-2] 108px [indent-col-3] 1088px [container-end] auto [bleed-end];
    display: grid
  }
}

@media (min-width:1440px) {
  .MixedBleedGrid {
    grid-template-columns: [bleed-start] auto [container-start] 110px [indent-col-2] 110px [indent-col-3] 1100px [container-end] auto [bleed-end];
    display: grid
  }
}

.MixedBleedGrid .col-start-bleed {
  grid-column-start: bleed-start
}

.MixedBleedGrid .col-end-container-start {
  grid-column-end: container-start
}

.MixedBleedGrid .col-start-container {
  grid-column-start: container-start
}

.MixedBleedGrid .col-start-indent-col-2 {
  grid-column-start: indent-col-2
}

.MixedBleedGrid .col-start-indent-col-3 {
  grid-column-start: indent-col-3
}

.MixedBleedGrid .col-end-container {
  grid-column-end: container-end
}

.MixedBleedGrid .col-start-container-end {
  grid-column-start: container-end
}

.MixedBleedGrid .col-end-bleed {
  grid-column-end: bleed-end
}

.nav-offset-small {
  padding-top: 2.5rem
}

.nav-offset {
  padding-top: 4.5rem
}

@media (min-width:1024px) {
  .nav-offset-small {
    padding-top: 0
  }
}

@media (min-width:1024px) {
  .nav-offset {
    padding-top: 0
  }
}

@media (min-width:1024px) {
  .-nav-offset-small {
    margin-top: -4.25rem
  }
}

@media (min-width:1024px) {
  .-nav-offset {
    margin-top: -7.25rem
  }
}

html {
  font-family: Metropolis, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility
}

.text-h1-alt {
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: -1px;
  line-height: 3.25rem
}

@media (min-width:768px) {
  .text-h1-alt {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 4rem
  }
}

@media (min-width:1024px) {
  .text-h1-alt {
    font-size: 4.5rem;
    letter-spacing: -2px;
    line-height: 5rem
  }
}

@media (min-width:1280px) {
  .text-h1-alt {
    font-size: 6.25rem;
    letter-spacing: -2px;
    line-height: 7rem
  }
}

.text-h1,
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 3rem
}

@media (min-width:768px) {
  .text-h1,
  h1 {
    font-size: 2.75rem;
    line-height: 3.25rem;
    letter-spacing: -1.5px
  }
}

@media (min-width:1024px) {
  .text-h1,
  h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    letter-spacing: -1.5px
  }
}

@media (min-width:1280px) {
  .text-h1,
  h1 {
    font-size: 4.5rem;
    line-height: 5rem;
    letter-spacing: -1.5px
  }
}

.text-h2,
h2 {
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: -.5px;
  line-height: 2rem
}

@media (min-width:768px) {
  .text-h2,
  h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 3rem
  }
}

@media (min-width:1024px) {
  .text-h2,
  h2 {
    font-size: 2.75rem;
    letter-spacing: -1px;
    line-height: 3.25rem
  }
}

@media (min-width:1280px) {
  .text-h2,
  h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    line-height: 4rem
  }
}

.text-h3,
h3 {
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: -.5px;
  line-height: 1.875rem
}

@media (min-width:768px) {
  .text-h3,
  h3 {
    font-size: 1.75rem;
    letter-spacing: -1px;
    line-height: 2rem
  }
}

@media (min-width:1024px) {
  .text-h3,
  h3 {
    font-size: 2rem;
    letter-spacing: -1px;
    line-height: 2.5rem
  }
}

@media (min-width:1280px) {
  .text-h3,
  h3 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 3rem
  }
}

.text-h4,
h4 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem
}

@media (min-width:768px) {
  .text-h4,
  h4 {
    font-size: 1.625rem;
    line-height: 1.25
  }
}

@media (min-width:1024px) {
  .text-h4,
  h4 {
    font-size: 1.75rem;
    line-height: 1.25
  }
}

@media (min-width:1280px) {
  .text-h4,
  h4 {
    font-size: 2rem;
    line-height: 1.25
  }
}

.text-h5,
h5 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.625rem
}

@media (min-width:768px) {
  .text-h5,
  h5 {
    font-size: 1.375rem;
    line-height: 2rem
  }
}

@media (min-width:1024px) {
  .text-h5,
  h5 {
    font-size: 1.5rem;
    line-height: 2rem
  }
}

@media (min-width:1280px) {
  .text-h5,
  h5 {
    font-size: 1.5rem;
    line-height: 2rem
  }
}

.text-subtitle {
  font-size: 1rem
}

.text-subtitle,
.text-subtitle-sm {
  font-family: Archivo Narrow, Metropolis, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 1px
}

.text-subtitle-sm {
  font-size: .875rem
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.875rem
}

@media (min-width:640px) {
  .text-body-lg {
    font-size: 1.375rem;
    line-height: 2.125rem
  }
}

.text-body-md {
  font-size: 1rem;
  line-height: 1.75
}

@media (min-width:640px) {
  .text-body-md {
    font-size: 1.125rem;
    line-height: 1.875rem
  }
}

.text-body-sm {
  font-size: .875rem;
  line-height: 1.25rem
}

@media (min-width:640px) {
  .text-body-sm {
    font-size: 1rem;
    line-height: 1.5
  }
}

.text-body-xs {
  font-size: .875rem;
  line-height: 1.25rem
}

.text-stats-xl {
  font-weight: 800;
  font-size: 2.125rem
}

@media (min-width:1024px) {
  .text-stats-xl {
    font-size: 2.4rem
  }
}

@media (min-width:1280px) {
  .text-stats-xl {
    font-size: 2.75rem
  }
}

.text-stats-lg {
  font-weight: 800;
  font-size: 2.125rem
}

@media (min-width:1024px) {
  .text-stats-lg {
    font-size: 2.125rem
  }
}

@media (min-width:1280px) {
  .text-stats-lg {
    font-size: 2.25rem
  }
}

.text-theme-red,
.ThemeLight .text-theme-red {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.ThemeDark .text-theme-red {
  --text-opacity: 1;
  color: #e73b54;
  color: rgba(231, 59, 84, var(--text-opacity))
}

.text-theme-red-hover,
.ThemeLight .text-theme-red-hover {
  --text-opacity: 1;
  color: #c1152e;
  color: rgba(193, 21, 46, var(--text-opacity))
}

.ThemeDark .text-theme-red-hover {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.hover\:text-theme-red:hover {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.hover\:ThemeLight:hover .hover\:text-theme-red:hover {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.hover\:ThemeDark:hover .hover\:text-theme-red:hover {
  --text-opacity: 1;
  color: #e73b54;
  color: rgba(231, 59, 84, var(--text-opacity))
}

.hover\:text-theme-red-hover:hover {
  --text-opacity: 1;
  color: #c1152e;
  color: rgba(193, 21, 46, var(--text-opacity))
}

.hover\:ThemeLight:hover .hover\:text-theme-red-hover:hover {
  --text-opacity: 1;
  color: #c1152e;
  color: rgba(193, 21, 46, var(--text-opacity))
}

.hover\:ThemeDark:hover .hover\:text-theme-red-hover:hover {
  --text-opacity: 1;
  color: #e31937;
  color: rgba(227, 25, 55, var(--text-opacity))
}

.text-contrast {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
}

.text-contrast-none {
  text-shadow: none
}

.object-contain {
  font-family: "object-fit: contain"
}

.object-cover {
  font-family: "object-fit: cover"
}

.object-fill {
  font-family: "object-fit: fill"
}

.object-scale-down {
  font-family: "object-fit: scale-down"
}

@-webkit-keyframes arrow-carousel-next-anim {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(3rem)
  }
}

@keyframes arrow-carousel-next-anim {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(3rem)
  }
}

@-webkit-keyframes arrow-carousel-next-fixed-anim {
  0% {
    transform: translateX(-3rem)
  }
  to {
    transform: translateX(0)
  }
}

@keyframes arrow-carousel-next-fixed-anim {
  0% {
    transform: translateX(-3rem)
  }
  to {
    transform: translateX(0)
  }
}

@-webkit-keyframes arrow-carousel-prev-anim {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(-3rem)
  }
}

@keyframes arrow-carousel-prev-anim {
  0% {
    transform: translateX(0)
  }
  to {
    transform: translateX(-3rem)
  }
}

@-webkit-keyframes arrow-carousel-prev-fixed-anim {
  0% {
    transform: translateX(3rem)
  }
  to {
    transform: translateX(0)
  }
}

@keyframes arrow-carousel-prev-fixed-anim {
  0% {
    transform: translateX(3rem)
  }
  to {
    transform: translateX(0)
  }
}

@media (min-width:640px) {
  .sm\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .sm\:aspect-ratio-none>div:first-of-type iframe,
  .sm\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .sm\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .sm\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .sm\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .sm\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .sm\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .sm\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .sm\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .sm\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .sm\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .sm\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .sm\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .sm\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .sm\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .sm\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .sm\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .sm\:aspect-ratio-four-three>div:first-of-type iframe,
  .sm\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .sm\:aspect-ratio-four-five>div:first-of-type iframe,
  .sm\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .sm\:aspect-ratio-two-one>div:first-of-type iframe,
  .sm\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .sm\:aspect-ratio-three-two>div:first-of-type iframe,
  .sm\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .sm\:aspect-ratio-two-three>div:first-of-type iframe,
  .sm\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:aspect-ratio-one-one>div:first-of-type:before,
  .sm\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .sm\:aspect-ratio-one-one>div:first-of-type iframe,
  .sm\:aspect-ratio-one-one>div:first-of-type img,
  .sm\:aspect-ratio-square>div:first-of-type iframe,
  .sm\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .sm\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .sm\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .sm\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .sm\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .sm\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .sm\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .sm\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .sm\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .sm\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .sm\:text-theme-red,
  .ThemeLight .sm\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .sm\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .sm\:text-theme-red-hover,
  .ThemeLight .sm\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .sm\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .sm\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .sm\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .sm\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .sm\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .sm\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .sm\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .sm\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .sm\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:768px) {
  .md\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .md\:aspect-ratio-none>div:first-of-type iframe,
  .md\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .md\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .md\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .md\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .md\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .md\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .md\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .md\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .md\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .md\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .md\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .md\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .md\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .md\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .md\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .md\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .md\:aspect-ratio-four-three>div:first-of-type iframe,
  .md\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .md\:aspect-ratio-four-five>div:first-of-type iframe,
  .md\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .md\:aspect-ratio-two-one>div:first-of-type iframe,
  .md\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .md\:aspect-ratio-three-two>div:first-of-type iframe,
  .md\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .md\:aspect-ratio-two-three>div:first-of-type iframe,
  .md\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:aspect-ratio-one-one>div:first-of-type:before,
  .md\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .md\:aspect-ratio-one-one>div:first-of-type iframe,
  .md\:aspect-ratio-one-one>div:first-of-type img,
  .md\:aspect-ratio-square>div:first-of-type iframe,
  .md\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .md\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .md\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .md\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .md\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .md\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .md\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .md\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .md\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .md\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .md\:text-theme-red,
  .ThemeLight .md\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .md\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .md\:text-theme-red-hover,
  .ThemeLight .md\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .md\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .md\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .md\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .md\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .md\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .md\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .md\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .md\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .md\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:1024px) {
  .lg\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .lg\:aspect-ratio-none>div:first-of-type iframe,
  .lg\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .lg\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .lg\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .lg\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .lg\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .lg\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .lg\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .lg\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .lg\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .lg\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .lg\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .lg\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .lg\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .lg\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .lg\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .lg\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .lg\:aspect-ratio-four-three>div:first-of-type iframe,
  .lg\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .lg\:aspect-ratio-four-five>div:first-of-type iframe,
  .lg\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .lg\:aspect-ratio-two-one>div:first-of-type iframe,
  .lg\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .lg\:aspect-ratio-three-two>div:first-of-type iframe,
  .lg\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .lg\:aspect-ratio-two-three>div:first-of-type iframe,
  .lg\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:aspect-ratio-one-one>div:first-of-type:before,
  .lg\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .lg\:aspect-ratio-one-one>div:first-of-type iframe,
  .lg\:aspect-ratio-one-one>div:first-of-type img,
  .lg\:aspect-ratio-square>div:first-of-type iframe,
  .lg\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .lg\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .lg\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .lg\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .lg\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .lg\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .lg\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .lg\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .lg\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .lg\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .lg\:text-theme-red,
  .ThemeLight .lg\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .lg\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .lg\:text-theme-red-hover,
  .ThemeLight .lg\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .lg\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .lg\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .lg\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .lg\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .lg\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .lg\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .lg\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .lg\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .lg\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:1280px) {
  .xl\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .xl\:aspect-ratio-none>div:first-of-type iframe,
  .xl\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .xl\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .xl\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .xl\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .xl\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .xl\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .xl\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .xl\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .xl\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .xl\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .xl\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .xl\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .xl\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .xl\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .xl\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .xl\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .xl\:aspect-ratio-four-three>div:first-of-type iframe,
  .xl\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .xl\:aspect-ratio-four-five>div:first-of-type iframe,
  .xl\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .xl\:aspect-ratio-two-one>div:first-of-type iframe,
  .xl\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .xl\:aspect-ratio-three-two>div:first-of-type iframe,
  .xl\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .xl\:aspect-ratio-two-three>div:first-of-type iframe,
  .xl\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:aspect-ratio-one-one>div:first-of-type:before,
  .xl\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .xl\:aspect-ratio-one-one>div:first-of-type iframe,
  .xl\:aspect-ratio-one-one>div:first-of-type img,
  .xl\:aspect-ratio-square>div:first-of-type iframe,
  .xl\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .xl\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .xl\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .xl\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .xl\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .xl\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .xl\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .xl\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .xl\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .xl\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .ThemeLight .xl\:text-theme-red,
  .xl\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .xl\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .ThemeLight .xl\:text-theme-red-hover,
  .xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .xl\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .xl\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:1440px) {
  .\32xl\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .\32xl\:aspect-ratio-none>div:first-of-type iframe,
  .\32xl\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .\32xl\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .\32xl\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .\32xl\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .\32xl\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .\32xl\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .\32xl\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .\32xl\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\32xl\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .\32xl\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .\32xl\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .\32xl\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .\32xl\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .\32xl\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .\32xl\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .\32xl\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\32xl\:aspect-ratio-four-three>div:first-of-type iframe,
  .\32xl\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .\32xl\:aspect-ratio-four-five>div:first-of-type iframe,
  .\32xl\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .\32xl\:aspect-ratio-two-one>div:first-of-type iframe,
  .\32xl\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .\32xl\:aspect-ratio-three-two>div:first-of-type iframe,
  .\32xl\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .\32xl\:aspect-ratio-two-three>div:first-of-type iframe,
  .\32xl\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:aspect-ratio-one-one>div:first-of-type:before,
  .\32xl\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .\32xl\:aspect-ratio-one-one>div:first-of-type iframe,
  .\32xl\:aspect-ratio-one-one>div:first-of-type img,
  .\32xl\:aspect-ratio-square>div:first-of-type iframe,
  .\32xl\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\32xl\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .\32xl\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .\32xl\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .\32xl\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .\32xl\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .\32xl\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .\32xl\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .\32xl\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .\32xl\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .\32xl\:text-theme-red,
  .ThemeLight .\32xl\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .\32xl\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\32xl\:text-theme-red-hover,
  .ThemeLight .\32xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .\32xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\32xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\32xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\32xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\32xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\32xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\32xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\32xl\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .\32xl\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:1800px) {
  .\33xl\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .\33xl\:aspect-ratio-none>div:first-of-type iframe,
  .\33xl\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .\33xl\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .\33xl\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .\33xl\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .\33xl\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .\33xl\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .\33xl\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .\33xl\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\33xl\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .\33xl\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .\33xl\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .\33xl\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .\33xl\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .\33xl\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .\33xl\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .\33xl\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\33xl\:aspect-ratio-four-three>div:first-of-type iframe,
  .\33xl\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .\33xl\:aspect-ratio-four-five>div:first-of-type iframe,
  .\33xl\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .\33xl\:aspect-ratio-two-one>div:first-of-type iframe,
  .\33xl\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .\33xl\:aspect-ratio-three-two>div:first-of-type iframe,
  .\33xl\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .\33xl\:aspect-ratio-two-three>div:first-of-type iframe,
  .\33xl\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:aspect-ratio-one-one>div:first-of-type:before,
  .\33xl\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .\33xl\:aspect-ratio-one-one>div:first-of-type iframe,
  .\33xl\:aspect-ratio-one-one>div:first-of-type img,
  .\33xl\:aspect-ratio-square>div:first-of-type iframe,
  .\33xl\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\33xl\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .\33xl\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .\33xl\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .\33xl\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .\33xl\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .\33xl\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .\33xl\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .\33xl\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .\33xl\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .\33xl\:text-theme-red,
  .ThemeLight .\33xl\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .\33xl\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\33xl\:text-theme-red-hover,
  .ThemeLight .\33xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .\33xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\33xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\33xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\33xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\33xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\33xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\33xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\33xl\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .\33xl\:text-contrast-none {
    text-shadow: none
  }
}

@media (min-width:1900px) {
  .\34xl\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .\34xl\:aspect-ratio-none>div:first-of-type iframe,
  .\34xl\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .\34xl\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .\34xl\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .\34xl\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .\34xl\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .\34xl\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .\34xl\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .\34xl\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\34xl\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .\34xl\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .\34xl\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .\34xl\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .\34xl\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .\34xl\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .\34xl\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .\34xl\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .\34xl\:aspect-ratio-four-three>div:first-of-type iframe,
  .\34xl\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .\34xl\:aspect-ratio-four-five>div:first-of-type iframe,
  .\34xl\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .\34xl\:aspect-ratio-two-one>div:first-of-type iframe,
  .\34xl\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .\34xl\:aspect-ratio-three-two>div:first-of-type iframe,
  .\34xl\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .\34xl\:aspect-ratio-two-three>div:first-of-type iframe,
  .\34xl\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:aspect-ratio-one-one>div:first-of-type:before,
  .\34xl\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .\34xl\:aspect-ratio-one-one>div:first-of-type iframe,
  .\34xl\:aspect-ratio-one-one>div:first-of-type img,
  .\34xl\:aspect-ratio-square>div:first-of-type iframe,
  .\34xl\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .\34xl\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .\34xl\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .\34xl\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .\34xl\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .\34xl\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .\34xl\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .\34xl\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .\34xl\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .\34xl\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .\34xl\:text-theme-red,
  .ThemeLight .\34xl\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .\34xl\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\34xl\:text-theme-red-hover,
  .ThemeLight .\34xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .\34xl\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\34xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\34xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\34xl\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .\34xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .\34xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .\34xl\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .\34xl\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .\34xl\:text-contrast-none {
    text-shadow: none
  }
}

@media (hover:hover) {
  .can-hover\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .can-hover\:aspect-ratio-none>div:first-of-type iframe,
  .can-hover\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .can-hover\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .can-hover\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .can-hover\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .can-hover\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .can-hover\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .can-hover\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .can-hover\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .can-hover\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .can-hover\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .can-hover\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .can-hover\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .can-hover\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .can-hover\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .can-hover\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .can-hover\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .can-hover\:aspect-ratio-four-three>div:first-of-type iframe,
  .can-hover\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .can-hover\:aspect-ratio-four-five>div:first-of-type iframe,
  .can-hover\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .can-hover\:aspect-ratio-two-one>div:first-of-type iframe,
  .can-hover\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .can-hover\:aspect-ratio-three-two>div:first-of-type iframe,
  .can-hover\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .can-hover\:aspect-ratio-two-three>div:first-of-type iframe,
  .can-hover\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:aspect-ratio-one-one>div:first-of-type:before,
  .can-hover\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .can-hover\:aspect-ratio-one-one>div:first-of-type iframe,
  .can-hover\:aspect-ratio-one-one>div:first-of-type img,
  .can-hover\:aspect-ratio-square>div:first-of-type iframe,
  .can-hover\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .can-hover\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .can-hover\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .can-hover\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .can-hover\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .can-hover\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .can-hover\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .can-hover\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .can-hover\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .can-hover\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .can-hover\:text-theme-red,
  .ThemeLight .can-hover\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .can-hover\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .can-hover\:text-theme-red-hover,
  .ThemeLight .can-hover\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .can-hover\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .can-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .can-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .can-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .can-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .can-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .can-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .can-hover\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .can-hover\:text-contrast-none {
    text-shadow: none
  }
}

@media (hover:none) {
  .no-hover\:aspect-ratio-none>div:first-of-type:before {
    content: "";
    display: flex;
    width: auto;
    padding-bottom: unset
  }
  .no-hover\:aspect-ratio-none>div:first-of-type iframe,
  .no-hover\:aspect-ratio-none>div:first-of-type img {
    position: relative;
    height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
  }
  .no-hover\:aspect-ratio-twentyone-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 42.85714%
  }
  .no-hover\:aspect-ratio-twentyone-nine>div:first-of-type iframe,
  .no-hover\:aspect-ratio-twentyone-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-sixteen-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%
  }
  .no-hover\:aspect-ratio-sixteen-nine>div:first-of-type iframe,
  .no-hover\:aspect-ratio-sixteen-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-sixteen-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 43.75%
  }
  .no-hover\:aspect-ratio-sixteen-seven>div:first-of-type iframe,
  .no-hover\:aspect-ratio-sixteen-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-twelve-nine>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .no-hover\:aspect-ratio-twelve-nine>div:first-of-type iframe,
  .no-hover\:aspect-ratio-twelve-nine>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-nine-sixteen>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 177.77778%
  }
  .no-hover\:aspect-ratio-nine-sixteen>div:first-of-type iframe,
  .no-hover\:aspect-ratio-nine-sixteen>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-seven-eight>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 114.28571%
  }
  .no-hover\:aspect-ratio-seven-eight>div:first-of-type iframe,
  .no-hover\:aspect-ratio-seven-eight>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-eight-seven>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 87.5%
  }
  .no-hover\:aspect-ratio-eight-seven>div:first-of-type iframe,
  .no-hover\:aspect-ratio-eight-seven>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-four-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 75%
  }
  .no-hover\:aspect-ratio-four-three>div:first-of-type iframe,
  .no-hover\:aspect-ratio-four-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-four-five>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%
  }
  .no-hover\:aspect-ratio-four-five>div:first-of-type iframe,
  .no-hover\:aspect-ratio-four-five>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-two-one>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%
  }
  .no-hover\:aspect-ratio-two-one>div:first-of-type iframe,
  .no-hover\:aspect-ratio-two-one>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-three-two>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66667%
  }
  .no-hover\:aspect-ratio-three-two>div:first-of-type iframe,
  .no-hover\:aspect-ratio-three-two>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-two-three>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 150%
  }
  .no-hover\:aspect-ratio-two-three>div:first-of-type iframe,
  .no-hover\:aspect-ratio-two-three>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:aspect-ratio-one-one>div:first-of-type:before,
  .no-hover\:aspect-ratio-square>div:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
  .no-hover\:aspect-ratio-one-one>div:first-of-type iframe,
  .no-hover\:aspect-ratio-one-one>div:first-of-type img,
  .no-hover\:aspect-ratio-square>div:first-of-type iframe,
  .no-hover\:aspect-ratio-square>div:first-of-type img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  .no-hover\:BaseGrid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem
  }
  .MixedBleedGrid .no-hover\:col-start-bleed {
    grid-column-start: bleed-start
  }
  .MixedBleedGrid .no-hover\:col-end-container-start {
    grid-column-end: container-start
  }
  .MixedBleedGrid .no-hover\:col-start-container {
    grid-column-start: container-start
  }
  .MixedBleedGrid .no-hover\:col-start-indent-col-2 {
    grid-column-start: indent-col-2
  }
  .MixedBleedGrid .no-hover\:col-start-indent-col-3 {
    grid-column-start: indent-col-3
  }
  .MixedBleedGrid .no-hover\:col-end-container {
    grid-column-end: container-end
  }
  .MixedBleedGrid .no-hover\:col-start-container-end {
    grid-column-start: container-end
  }
  .MixedBleedGrid .no-hover\:col-end-bleed {
    grid-column-end: bleed-end
  }
  .no-hover\:text-theme-red,
  .ThemeLight .no-hover\:text-theme-red {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .ThemeDark .no-hover\:text-theme-red {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .no-hover\:text-theme-red-hover,
  .ThemeLight .no-hover\:text-theme-red-hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .ThemeDark .no-hover\:text-theme-red-hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .no-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .no-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .no-hover\:hover\:text-theme-red:hover {
    --text-opacity: 1;
    color: #e73b54;
    color: rgba(231, 59, 84, var(--text-opacity))
  }
  .no-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeLight:hover .no-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #c1152e;
    color: rgba(193, 21, 46, var(--text-opacity))
  }
  .hover\:ThemeDark:hover .no-hover\:hover\:text-theme-red-hover:hover {
    --text-opacity: 1;
    color: #e31937;
    color: rgba(227, 25, 55, var(--text-opacity))
  }
  .no-hover\:text-contrast {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
  }
  .no-hover\:text-contrast-none {
    text-shadow: none
  }
}

.IconCaret {
  width: 1em;
  height: 1em
}

.AnimationCaret {
  display: flex;
  align-items: center
}

.AnimationCaret>.arrow-wrapper {
  display: block;
  position: relative;
  width: 1.5rem;
  height: 1.5rem
}

.AnimationCaret>.arrow-wrapper>.arrow,
.AnimationCaret>.arrow-wrapper>.arrow-fixed {
  position: absolute;
  top: 50%;
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  --transform-translate-y: -50%;
  left: 0;
  display: block;
  font-size: .875rem
}

@media (hover:hover) {
  .AnimationCaret:hover>.arrow-wrapper>.arrow {
    -webkit-animation: arrow-anim .25s ease-in normal;
    animation: arrow-anim .25s ease-in normal
  }
  .AnimationCaret:hover>.arrow-wrapper>.arrow-fixed {
    -webkit-animation: arrow-fixed-anim .25s ease-in normal;
    animation: arrow-fixed-anim .25s ease-in normal
  }
}

.AnimationCaret.caret-inline {
  display: inline-block
}

.AnimationCaret.caret-inline>.arrow-wrapper {
  display: inline-block;
  width: 1px
}

.AnimationCaret.caret-inline>.arrow-wrapper>.arrow,
.AnimationCaret.caret-inline>.arrow-wrapper>.arrow-fixed {
  margin-top: .45em
}

@-webkit-keyframes arrow-anim {
  0% {
    opacity: 1;
    transform: translateY(-50%)
  }
  50% {
    transform: translate(1rem, -50%);
    opacity: 0
  }
  to {
    transform: translate(1rem, -50%);
    opacity: 0
  }
}

@keyframes arrow-anim {
  0% {
    opacity: 1;
    transform: translateY(-50%)
  }
  50% {
    transform: translate(1rem, -50%);
    opacity: 0
  }
  to {
    transform: translate(1rem, -50%);
    opacity: 0
  }
}

@-webkit-keyframes arrow-fixed-anim {
  0% {
    opacity: 0;
    transform: translate(-.5rem, -50%)
  }
  to {
    opacity: 1;
    transform: translateY(-50%)
  }
}

@keyframes arrow-fixed-anim {
  0% {
    opacity: 0;
    transform: translate(-.5rem, -50%)
  }
  to {
    opacity: 1;
    transform: translateY(-50%)
  }
}

.ie11 .AnimationCaret>.arrow-wrapper>.arrow,
.ie11 .AnimationCaret>.arrow-wrapper>.arrow-fixed {
  top: 0;
  margin-top: .25rem
}

.ie11 .AnimationCaret.caret-inline .arrow-wrapper {
  display: none
}

.NavDesktopDropdown>div:before {
  content: "";
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block
}

.NavDesktopDropdown>button>span {
  border-color: transparent
}

.NavDesktopDropdown>button.-open>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity))
}

.-transparent .NavDesktopDropdown>button.-open>span {
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity))
}

.-transparent.-scrolled .NavDesktopDropdown>button.-open>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity))
}

@media (hover:hover) {
  .NavDesktopDropdown>button:hover>span {
    --border-opacity: 1;
    border-color: #e31937;
    border-color: rgba(227, 25, 55, var(--border-opacity))
  }
  .-transparent .NavDesktopDropdown>button:hover>span {
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255, 255, 255, var(--border-opacity))
  }
  .-transparent.-scrolled .NavDesktopDropdown>button:hover>span {
    --border-opacity: 1;
    border-color: #e31937;
    border-color: rgba(227, 25, 55, var(--border-opacity))
  }
}

.NavDesktopDropdown.-active>button>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity));
  font-weight: 700
}

.-transparent .NavDesktopDropdown.-active>button>span {
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity))
}

.-transparent.-scrolled .NavDesktopDropdown.-active>button>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity))
}

.NavDesktopDropdown.-active>button>span.hasSecondary {
  border-color: transparent!important
}

.NavDesktopDropdown .navfade-enter-active,
.NavDesktopDropdown .navfade-enter-to {
  transition-property: all;
  transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-duration: .5s
}

.NavDesktopDropdown .navfade-enter-active,
.NavDesktopDropdown .navfade-enter-to,
.NavDesktopDropdown .navfade-leave-active,
.NavDesktopDropdown .navfade-leave-to {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))
}

.NavDesktopDropdown .navfade-leave-active,
.NavDesktopDropdown .navfade-leave-to {
  transition-property: all;
  transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-duration: .1s
}

.NavDesktopDropdown .navfade-enter-active {
  opacity: 0;
  --transform-translate-y: 0.5rem
}

.NavDesktopDropdown .navfade-enter-to {
  opacity: 1;
  --transform-translate-y: 0
}

.NavDesktopDropdown .navfade-leave-to {
  opacity: 1
}

.NavDesktopDropdown .navfade-leave-active {
  opacity: 0
}

@media (min-width:1024px) {
  .auto-col[data-v-34158131] {
    -moz-column-count: 2;
    column-count: 2
  }
}

img.BaseImage {
  max-width: 100%
}

img.BaseImage.lazyload:not([src]),
img.BaseImage:not([src]) {
  opacity: 0;
  border-style: none
}

img.BaseImage.lazyloaded {
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes fadein {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.BaseImagePlaceholder[data-v-63c14de3] {
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: auto;
  position: relative;
  display: block;
  margin: 0;
  background-repeat: no-repeat;
  --bg-opacity: 1;
  background-color: #d8d8d8;
  background-color: rgba(216, 216, 216, var(--bg-opacity));
  height: inherit;
  background-position: 50%;
  background-size: 50px;
  background-image: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAd8AAACOCAYAAABwpQK+AAAMlUlEQVR4nO3de/Bncx3H8eeuzW3X5pJELpNWUy7DVjsug1xyKWkIUxTK1JRSihHrVrmXcYtqIpMUkm5E6SKmbWIkl1AbMYvKZbFyZ2/NqY8Gu37f27l8znk/HzO/2f1nfz7n9fn6vr7nfM/5fMbNnDkTNeLtwNnAE8C8Fk3B2sDJwNcH/HdHAPsBsyoaV1XmA0sDk4EFLRt77san1/4jwAPA3UDxhnQjcGfLjuU7wD7A4xmMpZfitTwdOCnvYXbbhOgBNGgVYGpLxz5liH+zXirutSsYj7rnPuC3wOXAL4CnMj/CienPyQ2Po19LtWOY3TU+egANmhv2yKXe1gD2BS4BHgUuAjbPODevimgglq+k3C0JfACYAdwB7OmMqe0sX0ltsg5wYbosvaszp7ayfCW10erAj4Hrh7wHQWqU5SupzaalO6OPchbVJpavpC44BrghPUUgZc/yldQVb0vfBW/vjCp3lq+kLnkV8EvgAGdVObN8JXXRmcAJzqxyZflK6qrpQyyDKtXC8pXUZfsDpzjDyo3lK6nrDgIOr/gYXV5SA7F8JUVwPLBXhce5nK8iDcLylRTFBWkrzypM9FWkQVi+kiK5GFi2guOd76tIg7B8JUVS7Cd9jjOuplm+kqLZK+0VLDXG8pUU0RmuA60mWb6SIno1cLIzr6ZYvpKi2hvYztlXEyxfSZEd6+yrCZavpMg2Bj7oK0B1s3wlRXdo9ABUP8tXUnQbeParulm+kgQHmoHqZPlKEkwDtjUH1cXylaT/2c8cVBfLV8OYbGrqoPentZ+lylm+GsbSpqYOWgLYzYlVHSzf5rR5CzK3T1NX7erMqg6Wb3MmRT1wKWObAus7Qaqa5dscy1fK007Oi6pm+TbHS7dSnnZwXlS1CSYsDWUB8Dgwr8IPscV/YylgmfT3XCxMNyd19f1jE2BV4P4MxqKOsnylwVwLfBm4EXg4FVFV5VtcHZmYvqLI6UpJ8UFgHLAysCGwR7pUOy6DsZVhmfTd74/bfyjKleUr9e944Mia83oOeDTTOfoXcAtwfirirwIfyGBcZdjc8lWV/M5X6s+vGyjeNpkN7AnsnNkl8mFt1s5hqy0sX6k/XzOnvlyeLkU/3YKxjuUtwIr5Dk9tZ/lKvRU3Vs0wp77dBuzYkrG+kmIJ1fXyHJq6wPKVepud8feuuZrRgW36pmYwBnWU5Sv19owZDaW4Aet3LRz3C96UxzDURZav1NsSZjS0E1s67sIGGYxBHWX5SqrSlcA1LU141QzGUBV3JmuY5Supaue1NOG1gNdnMI4quCd3wyxfSVW7sqWPHi0JrJLBOKrg2vINs3wlVe1B4A8tTbmr5auGWb6S6nBtS1NePYMxqIMsX0l1uKWlKXvmq0pYvpLqcE9LU56UwRjUQZavpDo81NKbfF6TwRjUQZavpDrMAf7dwqQnZjAGdZDlK6kOz6aftlnOV4eqYPlKqsO49NM2E3x1qAqWr6Q6LAss08KkF2QwBnWQ5SupDisDy7cw6RUyGIM6yPKVVIeVW5qyO1qpEpavpDps1NKUH8tgDOogy1dSHaa1NOV5GYxBHWT5Sqpa8T6zdUtTbuMd2moBy1dS1d6d9sZtoyd8dagKlq+kqn24xQk/mcEY1EGWr6QqbQns1uKEZ2cwBnWQ5SupSqe3PF0vO6sSlq+kqpwNTG15ug9kMAZ1kOUrqQqnAB/rQLL3ZjAGdZCLhksqU7GG8w+Bd3Uk1YcyGIM6yDNfSWWYBExPNyh1pXifAv6ZwTjUQZ75Sv3ZNK12NN6FF5gPvCqt1zwF2ArYHlgyg7GV6V7vdlZVLF+pt1nAXsABZhXKndEDUHW87Cz1VlxSPQK4z6xCuS16AKqO5Sv1thLwOHC0WYXyp+gBqDqWr9TbC9/xnucbcih/iR6AqmP5SoPx7DeGmelHqoTlKw3m58BPzazzro0egKpl+UqDO8rMOu+a6AGoWpavNLjiLthTza2z5lq+qprlKw3neOBhs+ukGa7prKpZvtJwHgW+ZHaddFn0AFQ9y1ca3lnAzebXKfO8oU51sHyl0Rxpfp3yE+Ce6CGoepavNJorPFPqlHOiB6B6WL7S6Fx4oxtuAn4dPQTVw/KVRnerjx51wmnRA1B9LF+pHMcBj5hlaxUfoL4bPQTVx/KVyjHHR49a7cToAahelq9UnjOBW8yzdYrVrC6KHoLqZflK5fLRo/Y5JHoAqp/lK5XrcuBSM22N4nLzDdFDUP0sX6l8PnrUDsXqZIdHD0HNsHyl8v0ZOMNcs1YsI/mh6CGoOZavVI1j3fUoa3sDt5c4wPkdzEgVsnylahTP/B5jtln6AvD9kge2XEeyUU0sX6k6Z6bFG5SPsyr6UDTROdYgLN/meJkqhqOiB5CRbwCfrmg4/v+sgVi+zVkq6oEHc6mbs2ehWLf5k9FDUD4s3+asEfXAA/Lst1mfAw6KHIDyY/k2Z5uoBx5Q8ejR6dFDaMCzwNZmrxxZvs1YF3hnxAMP7Hjgsegh1OgqYLW0brMWNc9MmmX5NuOwiAcd3MPuelSL54B90ofbOQGOd1iT2zns7rB867dfesBf8ZzurkeVKu5mXsl9efuyfgvG2GmWb72K0j030gFrEa77XL4LgLXS3cxPde3gKrIxsEUnj6wlLN96LJ/2Cz0/wsFqTMVjR1cY0cgeAo4DXpvWaL635cfThIs9A27OhJL/y6sCbwSeaVMIJVuQPtSsDLwB2A54L7BEp45Soyj2/N3JBAdWfG/+s3Sme1XLxp6jVdMKbMVNaTel8ZXxPjUuvQ/OSYuPtPUkrxj33HQcywCzge+lYxtZ2eV7IbBVyb9T6ppiK7uvAp9xZsf0YNpr97pUtsWfCzMeb1tt5ft23x4ra9GcMsv3fU6g1LeTgGnpK4knG4htYTrLeXU6U6m71JZIz+E+kY6/OKu4H7gHuAu4A/i7yzYqM9NzLN8jS/xdypuX0EdXFM1mbT8IKZhNgD2AS0Y97LKuxX8EmFrS71L+nnaOJAVVyjoNZZXv4SX9HrXDE86TpKDemk44R1JG+RaLlk/xVRjKA9EDkBTawaMe/KjluxxwSPRZCOiO6AFICm29UbeoHLV8P5eeFVMss5xv6SVcsCieg0a5aXmUF8zryjj1Vuv8C7jdaZNe4nnjCKdYUOpTwx70KOV7iDtjhPRHtyOTFtHEs9pq3ueBScOMYtjynZIuOSueq51zaRE+ARDTasN+9zts+U5Pq+Iont8EPOZS1nJVpz3o9IZ1KLDCoAc/TPlulPakVTy/D/p972RvqFEPPn4X14rAgYMe/TBvKC4jGdePgh75khVsQqJuuc35DO3gtL1l3wYt33cAu0VPOag5aTstSYu600xCm5RuvurboOU7PXrCgX077acqaVG3ps0yFFfx2NHq/R79IOVbbP69gy+ssM6JHoA0hmLT9esNKLSlBzlBHaR8/a43rq8BM6OHIPVwlQGF94l+9zrot3z3TPsYKp7i+cUTnHepp18aUXjj06NHPfVbvkdETzSwL6YlJSWNrdhw5FdmFN5HgQ17hdBP+e6fdnBQPNcBpzrvUt/ONSqlTRfG1Kt8ly5r13610khbZkkB/QD4qxMf3j7AtLFC6FW+nwXWjJ5iUMXa3TdFD0EawumGpl7P/Y5Vviu5ZWBYF/gGIg3tbOBPxhfe7sAWrxTCWOVbFO9roqcXUPGmsXf0EKQRHWKAGuu531cq3zU96w3pH8COwMLoQUgjutqrRwLeBWy7uCBeqXwPS4vJK45i6citXEJSKk1x38SNxhne4YsLYHHlu256vEhxzAY2Bu5yzqVS7QI8aqShbQO85+UBLK58XUYylqJw1wfujh6EVIH70mXHuYYb2iJnvy8v303SUpKK4bfAm4GHnG+pMjcDmwHPGnFYmwJ7vPjgX16+i702rU46IX0in+f0SpW7IV1h+odRh/WSO+BfXL7FG/HO9Y9HNSu+393S9bql2hVf8awNXG70IRUrXn3ohQN/cfkeHT2ZAE4DVgFmRA9CasjcdJJTvAk/5ySE8/8dj14o393T2ZC66dL07PZBPsMrZaFYRW5F4AynI5Tiq4eP86Ly9bve7ik+VX8rbey8S7rrUlI+nk7r5xcrCR6XvhJS9/13Aavx6S9TnfBOeBy4DNgXWAH4mM/uStl7BDgKeC2wHfBN4E6nrbPWAb4yId1oVUz+rAE211ezxqdPzcW83Qv8La3J/Efg+UznZlb6cNC2DwMrpjdCL9erDr9JP4XV04nRlPT34n6NZYH5AWeieM8rnsx4DFgAjMtgTMMoxr4asPA/PUamUywJL+kAAAAASUVORK5CYII=")
}

@media (min-width:640px) {
  .BaseImagePlaceholder[data-v-63c14de3] {
    background-size: 100px
  }
}

.BaseImagePlaceholder .BaseLightboxOpenButton[data-v-63c14de3] {
  opacity: 1;
  transition-property: opacity;
  transition-duration: .3s
}

@media (hover:hover) and (min-width:640px) {
  .BaseImagePlaceholder .BaseLightboxOpenButton[data-v-63c14de3] {
    opacity: 0;
    transition-property: opacity;
    transition-duration: .5s
  }
  .BaseImagePlaceholder:hover .BaseLightboxOpenButton[data-v-63c14de3] {
    opacity: 1;
    transition-property: opacity;
    transition-duration: .3s
  }
}

.BaseImagePlaceholder.light-theme[data-v-63c14de3] {
  --bg-opacity: 1;
  background-color: #f5f5f5;
  background-color: rgba(245, 245, 245, var(--bg-opacity))
}

.BaseImagePlaceholder.dark-theme[data-v-63c14de3] {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity));
  background-image: url("data:img/png;base64,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")
}

.BaseImagePlaceholder.transparent-theme[data-v-63c14de3] {
  background-color: transparent;
  background-image: none
}

.BaseImagePlaceholder.no-logo[data-v-63c14de3] {
  background-image: none
}

.ie11 .NavDesktopDropdownContent .BaseGrid,
.ie11 .NavDesktopDropdownContent .BaseGrid .grid {
  display: flex;
  justify-content: space-between
}

.ie11 .NavDesktopDropdownContent .BaseGrid .grid.order-1 {
  width: 20%
}

.ie11 .NavDesktopDropdownContent .BaseGrid .grid.order-3 .col-span-2 {
  padding-right: 1.25rem
}

.IconSocialFacebook,
.IconSocialInstagram,
.IconSocialTwitter,
.IconSocialYoutube {
  width: 1em;
  height: 1em
}

.BaseButton[data-v-24c22f1f] {
  position: relative
}

@media (hover:hover) {
  .BaseButton[data-v-24c22f1f]:hover {
    z-index: 10
  }
}

.BaseButton.-dark[data-v-24c22f1f] {
  border-left-width: 0!important
}

.BaseButton.-dark[data-v-24c22f1f]:first-child {
  border-left-width: 1px!important
}

.ie11 .NavDesktopDropdownMore .BaseGrid,
.ie11 .NavDesktopDropdownMore .BaseGrid .grid {
  display: flex;
  justify-content: space-between
}

.ie11 .NavDesktopDropdownMore .order-1 {
  width: 75%;
  display: flex;
  flex-wrap: wrap
}

.ie11 .NavDesktopDropdownMore .order-1 .row-span-1:first-child,
.ie11 .NavDesktopDropdownMore .order-1 .row-span-2 {
  flex: 1 1 0%;
  border-width: 1px;
  border-color: transparent
}

.ie11 .NavDesktopDropdownMore .order-1 .row-span-1.row-start-2 {
  flex: 0 0 100%!important
}

.ie11 .NavDesktopDropdownMore .order-2 {
  width: 20%
}

.IconSearch {
  width: 1em;
  height: 1em
}

.custom-focus input[data-v-abf53b8c] {
  outline: none;
  box-shadow: none
}

.NavSearchForm ::-moz-placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.NavSearchForm :-ms-input-placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.NavSearchForm ::placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.-transparent .NavSearchForm ::-moz-placeholder {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.-transparent .NavSearchForm :-ms-input-placeholder {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.-transparent .NavSearchForm ::placeholder {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.-transparent.-scrolled .NavSearchForm ::-moz-placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.-transparent.-scrolled .NavSearchForm :-ms-input-placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.-transparent.-scrolled .NavSearchForm ::placeholder {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

@media (min-width:1024px) {
  .NavSearchForm input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0
  }
  .NavSearchForm input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
  }
  .NavSearchForm input[type=search]::-webkit-search-cancel-button,
  .NavSearchForm input[type=search]::-webkit-search-decoration,
  .NavSearchForm input[type=search]::-webkit-search-results-button,
  .NavSearchForm input[type=search]::-webkit-search-results-decoration {
    display: none
  }
}

.IconClose {
  width: 1em;
  height: 1em
}

.NavDesktop {
  border-bottom-width: 1px;
  border-color: transparent
}

.NavDesktop>.header-bg {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.NavDesktop>.header-bg .main-navigation>* {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.NavDesktop.-transparent {
  background-color: transparent
}

.NavDesktop.-transparent>.header-bg {
  background-image: linear-gradient(180deg, var(--gradient-color-stops));
  --gradient-from-color: rgba(0, 0, 0, 0.75);
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, transparent);
  --gradient-to-color: transparent;
  background-color: transparent
}

.NavDesktop.-transparent .main-navigation>* {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.NavDesktop.-transparent .main-navigation>* .NavDesktopDropdown>button {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
}

.NavDesktop.-scrolled {
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #949494;
  border-color: rgba(148, 148, 148, var(--border-opacity));
  --border-opacity: 0.5;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.NavDesktop.-scrolled.-transparent>.header-bg {
  opacity: 0;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.NavDesktop.-scrolled.-transparent .main-navigation>* {
  --text-opacity: 1;
  color: #222;
  color: rgba(34, 34, 34, var(--text-opacity))
}

.NavDesktop.-scrolled.-transparent .main-navigation>* .NavDesktopDropdown>button {
  text-shadow: none
}

.NavDesktop.-scrolled.-hasSecondary {
  border-width: 0;
  border-color: transparent
}

.ie11 .NavDesktop {
  position: relative
}

.IconMenu {
  width: 1em;
  height: 1em
}

.NavMobileLink .nuxt-link-active span {
  font-weight: 500
}

.NavMobileLink .nuxt-link-active .IconCaret {
  display: none
}

.NavDropdownMobile>div:before {
  content: "";
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block
}

.NavDropdownMobile>button>span {
  border-color: transparent
}

.NavDropdownMobile>button.-open>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity));
  font-weight: 700
}

.NavDropdownMobile.-active>button>span {
  --border-opacity: 1;
  border-color: #e31937;
  border-color: rgba(227, 25, 55, var(--border-opacity));
  font-weight: 700
}

.NavMobile {
  position: absolute;
  top: 0;
  z-index: 50;
  right: 0;
  left: 0
}

.NavMobile.-scrolled {
  position: fixed
}

.headerMobileReveal-enter-active,
.headerMobileReveal-enter-to {
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .2s
}

.headerMobileReveal-enter-active,
.headerMobileReveal-enter-to,
.headerMobileReveal-leave-active,
.headerMobileReveal-leave-to {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))
}

.headerMobileReveal-leave-active,
.headerMobileReveal-leave-to {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-duration: .2s
}

.headerMobileReveal-enter-active {
  --transform-translate-y: -100%
}

.headerMobileReveal-enter-to,
.headerMobileReveal-leave-to {
  --transform-translate-y: 0
}

.headerMobileReveal-leave-active {
  --transform-translate-y: -100%
}

.IconSocialEmail {
  width: 1em;
  height: 1em
}

.LogoCaltech {
  width: 8.375em;
  height: auto
}

.TheFooter {
  --bg-opacity: 1;
  background-color: #004562;
  background-color: rgba(0, 69, 98, var(--bg-opacity));
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  position: relative;
  z-index: 20
}

@media (min-width:640px) {
  .TheFooter .auto-col-2,
  .TheFooter .auto-col-4 {
    -moz-column-count: 2;
    column-count: 2
  }
}

@media (min-width:1024px) {
  .TheFooter .auto-col-4 {
    -moz-column-count: 3;
    column-count: 3
  }
}

@media (min-width:1440px) {
  .TheFooter .auto-col-4 {
    -moz-column-count: 4;
    column-count: 4
  }
}

@media (min-width:1024px) {
  .ie11 .TheFooter .footer-main {
    display: flex
  }
  .ie11 .TheFooter .footer-main .footer-navigation {
    width: 80%
  }
  .ie11 .TheFooter .footer-main .footer-navigation .grid-cols-9 {
    display: flex;
    flex-wrap: wrap
  }
  .ie11 .TheFooter .footer-main .footer-navigation .grid-cols-9 .col-span-4 {
    width: 25%
  }
  .ie11 .TheFooter .footer-main .footer-extras {
    width: 20%
  }
}

.ie11 .TheFooter .bg-black {
  background: rgba(0, 0, 0, .4)
}

.page-enter-active {
  transition: opacity .5s
}

.page-enter,
.page-leave-active {
  opacity: 0
}

#navbar-parent {
  display: none;
}

.row1 {
  background-color: rgb(238, 238, 238);
}

.row2 {
  background-color: white;
}
