:root {
  --perspective: 1000px;
}

.animation-delay-100 { animation-delay: 100ms !important; }
.animation-delay-200 { animation-delay: 200ms !important; }
.animation-delay-300 { animation-delay: 300ms !important; }
.animation-delay-400 { animation-delay: 400ms !important; }
.animation-delay-500 { animation-delay: 500ms !important; }
.animation-delay-600 { animation-delay: 600ms !important; }
.animation-delay-700 { animation-delay: 700ms !important; }
.animation-delay-800 { animation-delay: 800ms !important; }
.animation-delay-900 { animation-delay: 900ms !important; }
.animation-delay-1000 { animation-delay: 1000ms !important; }

a {
  cursor: pointer;
}

.star{
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: 50% 50%;
  left: 5px;
}

.white-curve-up{
  position:relative;
  left:-5%;
  height: 155px;
  width: 110%;
  background-color: white;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
}

.white-curve-up-small{
  position:relative;
  left:-5%;
  height: 108px;
  width: 110%;
  background-color: white;
  border-top-left-radius: 100% 200%;
  border-top-right-radius: 100% 200%;
}

.white-curve-down-small{
  position:relative;
  left:-5%;
  height: 93px;
  width: 110%;
  background-color: white;
  border-bottom-left-radius: 100% 200%;
  border-bottom-right-radius: 100% 200%;
}

.white-curve-down{
  position:relative;
  left:-5%;
  height: 170px;
  width: 110%;
  background-color: white;
  border-bottom-left-radius: 100% 80%;
  border-bottom-right-radius: 100% 80%;
}

.explore-battle-learn{
  width: 190px;
  height: 190px;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 100%;
}

.flag-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /* grid-gap: 10px; */
  text-align: center;
  /* background-color:red; */
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-gap: 10px; */
  text-align: center;
  /* background-color:red; */
}

.flag-item {
  padding-bottom: 10px;
}

.flag-image {
  width: 64x;  /* Set width to 256px */
  height: 64px; /* Set height to 256px */
  object-fit: cover; /* Ensure the image covers the entire area, preserving aspect ratio */
}

.school-item {
  padding-bottom: 40px;
}

.school-image {
  width: 128x;  /* Set width to 256px */
  height: 128px; /* Set height to 256px */
  object-fit: cover; /* Ensure the image covers the entire area, preserving aspect ratio */
}

.language-name {
  margin-top: 2px;
  font-size: 12px;
  font-weight: bold;
}

.school-name{
  font-size:20px;
  margin-top: 2px;
}




.flip-wrapper {
  display: flex;
  justify-content: space-around;
}

.flip-container {
  width: 256px;
  height: 300px; /* Adjust height to accommodate text */
  perspective: 1000px;
  margin: 0 auto;
}

.flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: center center;
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-front {
  z-index: 2;
  transform: rotateY(0deg);
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-flag-image {
  width: 196px;
  height: 196px;
  object-fit: cover;
}

.flip-language-name {
  margin-top: 5px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

@keyframes flip-down-short {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); } /* Pause after the fifth flip */
}

/* @keyframes flip-right-short {
  0% { transform: rotateY(0deg); }
  99.99999% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
} */

@keyframes flip-right {
  0% { transform: rotateY(0deg); }
  10% { transform: rotateY(180deg); }
  20% { transform: rotateY(180deg); } /* Pause after the first flip */
  30% { transform: rotateY(360deg); }
  40% { transform: rotateY(360deg); } /* Pause after the second flip */
  50% { transform: rotateY(540deg); }
  60% { transform: rotateY(540deg); } /* Pause after the third flip */
  70% { transform: rotateY(720deg); }
  80% { transform: rotateY(720deg); } /* Pause after the fourth flip */
  90% { transform: rotateY(900deg); }
  100% { transform: rotateY(900deg); } /* Pause after the fifth flip */
}

@keyframes flip-left {
  0% { transform: rotateY(0deg); }
  10% { transform: rotateY(-180deg); }
  20% { transform: rotateY(-180deg); } /* Pause after the first flip */
  30% { transform: rotateY(-360deg); }
  40% { transform: rotateY(-360deg); } /* Pause after the second flip */
  50% { transform: rotateY(-540deg); }
  60% { transform: rotateY(-540deg); } /* Pause after the third flip */
  70% { transform: rotateY(-720deg); }
  80% { transform: rotateY(-720deg); } /* Pause after the fourth flip */
  90% { transform: rotateY(-900deg); }
  100% { transform: rotateY(-900deg); } /* Pause after the fifth flip */
}



.arrow-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  top: 99px;
}

.rotating-arrow {
  width: 140px;
  height: 60px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  transform-style: preserve-3d;
  /* animation: flipArrow 8s infinite linear 1s; */
}

@keyframes flipArrow {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  25% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}


.bannerImage {
  height: auto;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}

.townImage {
  position: absolute;
  top: 0px !important;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.townImage img {
  width: 100%;
  height: auto;
  transform-origin: center center;
  transition: transform 0.1s ease-out;

}

.flyOffImage {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.fade-in-from-top-start {
  opacity: 0; /* Start invisible */
  transform: translateY(-100px); /* Start 100px above its original position */
  animation: fadeInMoveDown 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; /* Apply the animation with a more dynamic easing */
  animation-delay: 0.5s; /* Optional: Delay the animation start by 0.5s */
}

.fade-in-from-bottom-start {
  opacity: 0; /* Start invisible */
  transform: translateY(100px); /* Start 100px below its original position */
  animation: fadeInMoveUp 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; /* Apply the animation with a more dynamic easing */
  animation-delay: 1.4s; /* Optional: Delay the animation start by 0.5s */
}

.fade-in-from-top, .fade-in-from-top-higher {
  opacity: 0; /* Start invisible */
  transform: translateY(-100px); /* Start 100px above its original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-top-higher {
  transform: translateY(-120px); /* Start 100px above its original position */
}

/* Fade In From Bottom */
.fade-in-from-bottom, .fade-in-from-bottom-lower {
  opacity: 0; /* Start invisible */
  transform: translateY(100px); /* Start 100px below its original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-bottom-lower {
  transform: translateY(120px); /* Start 120px below its original position */
}

/* Final State */
.in-view {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}

/* Skew and Rotate from Left */
.skew-in-from-left,
.rotate-in-from-left,
.skew-in-from-right,
.rotate-in-from-right {
  position: relative;
  opacity: 0;
  transform: translateX(100vw); /* Start off-screen to the right for right-sided elements */
  transition: transform 0.1s linear, opacity 0.1s linear; /* Smooth the movement slightly */
}

.skew-in-from-left {
  transform: translateX(-100vw) skewX(-20deg); /* Start off-screen to the left with skew */
}

.rotate-in-from-left {
  transform: translateX(-100vw) rotateY(-150deg); /* Start off-screen to the left with a bigger rotation */
}

.skew-in-from-right {
  transform: translateX(100vw) skewX(20deg); /* Start off-screen to the right with skew */
}

.rotate-in-from-right {
  transform: translateX(100vw) rotateY(150deg); /* Start off-screen to the right with a bigger rotation */
}

.rotate-container {
  perspective: var(--perspective); /* Apply the perspective for 3D transformations */
  transform-style: preserve-3d; /* Needed to make child elements transform in 3D space */
}

/* Fade In From Left Variants */
.fade-in-from-left1 {
  opacity: 0;
  transform: translateX(-40px); /* Start 40px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left2 {
  opacity: 0;
  transform: translateX(-60px); /* Start 60px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left3 {
  opacity: 0;
  transform: translateX(-80px); /* Start 80px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left4 {
  opacity: 0;
  transform: translateX(-100px); /* Start 100px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left5 {
  opacity: 0;
  transform: translateX(-120px); /* Start 120px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left6 {
  opacity: 0;
  transform: translateX(-140px); /* Start 100px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-left7 {
  opacity: 0;
  transform: translateX(-160px); /* Start 120px left of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fade In From Right Variants */
.fade-in-from-right1 {
  opacity: 0;
  transform: translateX(40px); /* Start 40px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-right2 {
  opacity: 0;
  transform: translateX(60px); /* Start 60px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-right3 {
  opacity: 0;
  transform: translateX(80px); /* Start 80px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-right4 {
  opacity: 0;
  transform: translateX(100px); /* Start 100px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-right5 {
  opacity: 0;
  transform: translateX(120px); /* Start 120px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-from-right6 {
  opacity: 0;
  transform: translateX(140px); /* Start 120px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in-from-right7 {
  opacity: 0;
  transform: translateX(160px); /* Start 120px right of original position */
  transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.in-view {
  opacity: 1;
  transform: translateX(0) skewX(0) rotateY(0); /* Move to original position */
}

.move-right-on-scroll {
  position: relative; /* Required for positioning */
  transition: left 0.3s ease-out; /* Smooth transitions for movement */
  left: 0%; /* Starting at the leftmost position */
}


/* Keyframes for Fade In from Bottom Start */
@keyframes fadeInMoveUp {
  to {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move to its original position */
  }
}



@keyframes fadeInMoveDown {
  to {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move to original position */
  }
}

.macoSpaceship {
  position: relative;
  transform: translateX(100vw);
  transition: transform 0.1s linear;
}


.macoSpaceship.visible {
  opacity: 1; /* Fade in */
  transform: translateX(0); /* Move to its original position */
}


.intro-download-btns {
  /* display: grid; */
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position:relative;
  top:20px;
  width:450px;
}

.intro-download-btns > .app-btn {
  margin-right: 0; /* Reset the margin since grid-gap will handle spacing */
}

.app-btn img {
  /* width: 220px !important; */
  height: 60px !important;
}






.color-underlay {
  /* max-width: 1476px; */
}



.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 15px; /* Rounded edges */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px; /* Ensure the video itself has rounded edges */
}








<style > body.device-mobile-optimized {
  overflow-x: hidden;
  overflow-y: scroll;
}
body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER {
  margin-left: auto;
  margin-right: auto;
  overflow-x: visible;
  position: relative;
  width: 320px;
}
body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling)
  #SITE_CONTAINER {
  margin-top: 0;
}
body.device-mobile-optimized > * {
  max-width: 100% !important;
}
body.device-mobile-optimized #site-root {
  overflow-x: hidden;
  overflow-y: hidden;
}
@supports (overflow: clip) {
  body.device-mobile-optimized #site-root {
    overflow-x: clip;
    overflow-y: clip;
  }
}
body.device-mobile-non-optimized #SITE_CONTAINER #site-root {
  overflow-x: hidden;
  overflow-y: auto;
}
body.device-mobile-non-optimized.fullScreenMode {
  background-color: #5f6360;
}
body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,
body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,
body.device-mobile-non-optimized.fullScreenMode #site-root,
body.fullScreenMode {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}
body.fullScreenMode.device-mobile-optimized #TINY_MENU {
  opacity: 0;
  pointer-events: none;
}
body.fullScreenMode-scrollable.device-mobile-optimized {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,
body.fullScreenMode-scrollable.device-mobile-optimized #site-root {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}
body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND,
body.fullScreenMode-scrollable.device-mobile-optimized #masterPage {
  height: auto !important;
}
body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout {
  height: 0 !important;
}
body.blockSiteScrolling {
  position: fixed;
  width: 100%;
}
body.blockSiteScrolling #SITE_CONTAINER {
  margin-top: calc(var(--blocked-site-scroll-margin-top) * -1);
}

body.blockSiteScrollingWithOverflow {
  overflow-y: hidden;
}
@keyframes slide-horizontal-new {
  0% {
    transform: translateX(100%);
  }
}
@keyframes slide-horizontal-old {
  80% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes slide-vertical-new {
  0% {
    transform: translateY(-100%);
  }
}
@keyframes slide-vertical-old {
  80% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes out-in-new {
  0% {
    opacity: 0;
  }
}
@keyframes out-in-old {
  to {
    opacity: 0;
  }
}
html[data-page-transition="SlideHorizontal"]::view-transition-old(page-group) {
  animation: slide-horizontal-old 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  mix-blend-mode: normal;
}
html[data-page-transition="SlideHorizontal"]::view-transition-new(page-group) {
  animation: slide-horizontal-new 0.6s cubic-bezier(0.83, 0, 0.17, 1) backwards;
  mix-blend-mode: normal;
}
html[data-page-transition="SlideVertical"]::view-transition-old(page-group) {
  animation: slide-vertical-old 0.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  mix-blend-mode: normal;
}
html[data-page-transition="SlideVertical"]::view-transition-new(page-group) {
  animation: slide-vertical-new 0.6s cubic-bezier(0.83, 0, 0.17, 1) backwards;
  mix-blend-mode: normal;
}
html[data-page-transition="OutIn"]::view-transition-old(page-group) {
  animation: out-in-old 0.35s cubic-bezier(0.64, 0, 0.78, 0) forwards;
}
html[data-page-transition="OutIn"]::view-transition-new(page-group) {
  animation: out-in-new 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.35s backwards;
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-new(*),
  ::view-transition-old(*) {
    animation: none !important;
  }
}
body,
html {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
body {
  --scrollbar-width: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}
body,
html {
  height: 100%;
}
body {
  overflow-x: auto;
  overflow-y: scroll;
}
body:not(.responsive) #site-root {
  min-width: var(--site-width);
  width: 100%;
}
body:not([data-js-loaded]) [data-hide-prejs] {
  visibility: hidden;
}
#SITE_CONTAINER {
  position: relative;
}
:root {
  --one-unit: 1vw;
  --section-max-width: 9999px;
}
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
  :root {
    --safari-sticky-fix: opacity;
  }
}
@supports (container-type: inline-size) {
  :root {
    --one-unit: 1cqw;
  }
}
</style > <style > a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
button,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
nav,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
title,
tr,
tt,
u,
ul,
var {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
input,
select,
textarea {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  cursor: pointer;
  text-decoration: none;
}
.testStyles {
  overflow-y: hidden;
}
.reset-button {
  -webkit-appearance: none;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  outline: 0;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
:focus {
  outline: none;
}
#site-root {
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  top: var(--html-ads-height);
}
#site-root img:not([src]) {
  visibility: hidden;
}
#site-root svg img:not([src]) {
  visibility: visible;
}
.auto-generated-link {
  color: inherit;
}
#SCROLL_TO_BOTTOM,
#SCROLL_TO_TOP {
  height: 0;
}
.has-click-trigger {
  cursor: pointer;
}
.fullScreenOverlay {
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  overflow-y: hidden;
  position: fixed;
  right: 0;
  top: -60px;
  z-index: 1005;
}
.fullScreenOverlay > .fullScreenOverlayContent {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 60px;
  transform: translateZ(0);
}
[data-mesh-id$="centeredContent"],
[data-mesh-id$="form"],
[data-mesh-id$="inlineContent"] {
  pointer-events: none;
  position: relative;
}
[data-mesh-id$="-gridWrapper"],
[data-mesh-id$="-rotated-wrapper"] {
  pointer-events: none;
}
[data-mesh-id$="-gridContainer"] > *,
[data-mesh-id$="-rotated-wrapper"] > *,
[data-mesh-id$="inlineContent"] > :not([data-mesh-id$="-gridContainer"]) {
  pointer-events: auto;
}
.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID {
  grid-area: 2/1/3/2;
  -ms-grid-row: 2;
  position: relative;
}
#masterPage.mesh-layout {
  -ms-grid-rows: max-content max-content min-content max-content;
  -ms-grid-columns: 100%;
  align-items: start;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content min-content max-content;
  justify-content: stretch;
}
#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #SITE_FOOTER-placeholder,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,
#masterPage.mesh-layout #SITE_HEADER-placeholder,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER,
#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~="mobileView"],
#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  -ms-grid-row-align: start;
  -ms-grid-column-align: start;
  -ms-grid-column: 1;
}
#masterPage.mesh-layout #SITE_HEADER-placeholder,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER {
  grid-area: 1/1/2/2;
  -ms-grid-row: 1;
}
#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  grid-area: 3/1/4/2;
  -ms-grid-row: 3;
}
#masterPage.mesh-layout #soapAfterPagesContainer,
#masterPage.mesh-layout #soapBeforePagesContainer {
  width: 100%;
}
#masterPage.mesh-layout #PAGES_CONTAINER {
  align-self: stretch;
}
#masterPage.mesh-layout main#PAGES_CONTAINER {
  display: block;
}
#masterPage.mesh-layout #SITE_FOOTER-placeholder,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER {
  grid-area: 4/1/5/2;
  -ms-grid-row: 4;
}
#masterPage.mesh-layout #SITE_PAGES,
#masterPage.mesh-layout [data-mesh-id="PAGES_CONTAINERcenteredContent"],
#masterPage.mesh-layout [data-mesh-id="PAGES_CONTAINERinlineContent"] {
  height: 100%;
}
#masterPage.mesh-layout.desktop > * {
  width: 100%;
}
#masterPage.mesh-layout #PAGES_CONTAINER,
#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,
#masterPage.mesh-layout #SITE_HEADER_WRAPPER,
#masterPage.mesh-layout #SITE_PAGES,
#masterPage.mesh-layout #masterPageinlineContent,
#masterPage.mesh-layout:not(.one-doc) #SITE_FOOTER,
#masterPage.mesh-layout:not(.one-doc) #SITE_HEADER {
  position: relative;
}
#masterPage.mesh-layout.remove-wrappers #SITE_HEADER {
  grid-area: 1/1/2/2;
}
#masterPage.mesh-layout.remove-wrappers #SITE_FOOTER {
  grid-area: 4/1/5/2;
}
[data-z-counter] {
  z-index: 0;
}
[data-z-counter="0"] {
  z-index: auto;
}

:root {
  --wst-button-color-fill-primary: rgb(var(--color_48));
  --wst-button-color-border-primary: rgb(var(--color_49));
  --wst-button-color-text-primary: rgb(var(--color_50));
  --wst-button-color-fill-primary-hover: rgb(var(--color_51));
  --wst-button-color-border-primary-hover: rgb(var(--color_52));
  --wst-button-color-text-primary-hover: rgb(var(--color_53));
  --wst-button-color-fill-primary-disabled: rgb(var(--color_54));
  --wst-button-color-border-primary-disabled: rgb(var(--color_55));
  --wst-button-color-text-primary-disabled: rgb(var(--color_56));
  --wst-button-color-fill-secondary: rgb(var(--color_57));
  --wst-button-color-border-secondary: rgb(var(--color_58));
  --wst-button-color-text-secondary: rgb(var(--color_59));
  --wst-button-color-fill-secondary-hover: rgb(var(--color_60));
  --wst-button-color-border-secondary-hover: rgb(var(--color_61));
  --wst-button-color-text-secondary-hover: rgb(var(--color_62));
  --wst-button-color-fill-secondary-disabled: rgb(var(--color_63));
  --wst-button-color-border-secondary-disabled: rgb(var(--color_64));
  --wst-button-color-text-secondary-disabled: rgb(var(--color_65));
  --wst-color-fill-base-1: rgb(var(--color_36));
  --wst-color-fill-base-2: rgb(var(--color_37));
  --wst-color-fill-base-shade-1: rgb(var(--color_38));
  --wst-color-fill-base-shade-2: rgb(var(--color_39));
  --wst-color-fill-base-shade-3: rgb(var(--color_40));
  --wst-color-fill-accent-1: rgb(var(--color_41));
  --wst-color-fill-accent-2: rgb(var(--color_42));
  --wst-color-fill-accent-3: rgb(var(--color_43));
  --wst-color-fill-accent-4: rgb(var(--color_44));
  --wst-color-fill-background-primary: rgb(var(--color_11));
  --wst-color-fill-background-secondary: rgb(var(--color_12));
  --wst-color-text-primary: rgb(var(--color_15));
  --wst-color-text-secondary: rgb(var(--color_14));
  --wst-color-action: rgb(var(--color_18));
  --wst-color-disabled: rgb(var(--color_39));
  --wst-color-title: rgb(var(--color_45));
  --wst-color-subtitle: rgb(var(--color_46));
  --wst-color-line: rgb(var(--color_47));
  --wst-font-style-h2: var(--font_2);
  --wst-font-style-h3: var(--font_3);
  --wst-font-style-h4: var(--font_4);
  --wst-font-style-h5: var(--font_5);
  --wst-font-style-h6: var(--font_6);
  --wst-font-style-body-large: var(--font_7);
  --wst-font-style-body-medium: var(--font_8);
  --wst-font-style-body-small: var(--font_9);
  --wst-font-style-body-x-small: var(--font_10);
}
</style > <pages-css id="pages-css" > <style id="css_masterPage" > @font-face {
  font-family: "Suez One";
  font-style: normal;
  font-weight: 400;
  src: local("Suez One"), local("SuezOne-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/suezone/v4/taiJGmd_EZ6rqscQgOFMmouC-50xUK4.woff2")
      format("woff2");
  unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
  font-display: swap;
}
@font-face {
  font-family: "Suez One";
  font-style: normal;
  font-weight: 400;
  src: local("Suez One"), local("SuezOne-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/suezone/v4/taiJGmd_EZ6rqscQgOFAmouC-50xUK4.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Suez One";
  font-style: normal;
  font-weight: 400;
  src: local("Suez One"), local("SuezOne-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/suezone/v4/taiJGmd_EZ6rqscQgOFOmouC-50x.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Next-W01-Light";
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3e0b2cd7-9657-438b-b4af-e04122e8f1f7.eot?#iefix");
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3e0b2cd7-9657-438b-b4af-e04122e8f1f7.eot?#iefix")
      format("eot"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/bc176270-17fa-4c78-a343-9fe52824e501.woff")
      format("woff"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3516f91d-ac48-42cd-acfe-1be691152cc4.ttf")
      format("truetype"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/d1b1e866-a411-42ba-8f75-72bf28e23694.svg#d1b1e866-a411-42ba-8f75-72bf28e23694")
      format("svg");
  font-display: swap;
}
@font-face {
  font-family: "DIN-Next-W02-Light";
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix");
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix")
      format("eot"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/07d62b21-8d7a-4c36-be86-d32ab1089972.woff")
      format("woff"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/c0050890-bbed-44b9-94df-2611d72dbb06.ttf")
      format("truetype"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/9f774d17-c03a-418e-a375-34f3beecbc7a.svg#9f774d17-c03a-418e-a375-34f3beecbc7a")
      format("svg");
  font-display: swap;
}
@font-face {
  font-family: "DIN-Next-W10-Light";
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3d009cd7-c8fe-40c0-93da-74f4ea8c530b.eot?#iefix");
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/3d009cd7-c8fe-40c0-93da-74f4ea8c530b.eot?#iefix")
      format("eot"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/a9e95a29-98a7-404a-90ee-1929ad09c696.woff")
      format("woff"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/0a7663fd-eae8-4e50-a67a-225271f8cceb.ttf")
      format("truetype"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/58ae9be9-5d95-44b6-8b6c-e6da6a46822c.svg#58ae9be9-5d95-44b6-8b6c-e6da6a46822c")
      format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/9VWMTeb5jtXkNoTv949Npfk_vArhqVIZ0nv9q090hN8.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/9VWMTeb5jtXkNoTv949NpRsxEYwM7FgeyaSgU71cLG0.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/aDjpMND83pDErGXlVEr-Sfk_vArhqVIZ0nv9q090hN8.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/aDjpMND83pDErGXlVEr-SRsxEYwM7FgeyaSgU71cLG0.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/RbebACOccNN-5ixkDIVLjRUOjZSKWg4xBWp_C_qQx0o.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/RbebACOccNN-5ixkDIVLjRa1RVmPjeKy21_GQJaLlJI.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-weight: 700;
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/c4FPK8_hIFKoX59qcGwdChUOjZSKWg4xBWp_C_qQx0o.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/c4FPK8_hIFKoX59qcGwdCha1RVmPjeKy21_GQJaLlJI.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local("Poppins Italic"), local("Poppins-Italic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiGyp8kv8JHgFVrJJLucXtAOvWDSHFF.woff2")
      format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
    U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local("Poppins Italic"), local("Poppins-Italic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiGyp8kv8JHgFVrJJLufntAOvWDSHFF.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local("Poppins Italic"), local("Poppins-Italic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiGyp8kv8JHgFVrJJLucHtAOvWDSA.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: local("Poppins Bold Italic"), local("Poppins-BoldItalic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmy15VFteOYktMqlap.woff2")
      format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
    U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: local("Poppins Bold Italic"), local("Poppins-BoldItalic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmy15VGdeOYktMqlap.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: local("Poppins Bold Italic"), local("Poppins-BoldItalic"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmy15VF9eOYktMqg.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins Regular"), local("Poppins-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiEyp8kv8JHgFVrJJbecnFHGPezSQ.woff2")
      format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
    U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins Regular"), local("Poppins-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins Regular"), local("Poppins-Regular"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z11lFd2JQEl8qw.woff2")
      format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8,
    U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2")
      format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2")
      format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraLight";
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/h3r77AwDsldr1E_2g4qqGPk_vArhqVIZ0nv9q090hN8.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/h3r77AwDsldr1E_2g4qqGBsxEYwM7FgeyaSgU71cLG0.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraLight";
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/rijG6I_IOXJjsH07UEo2mw.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/p0A1C4_gK5NzKtuGSwNurQ.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraLight";
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/-GlaWpWcSgdVagNuOGuFKRUOjZSKWg4xBWp_C_qQx0o.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/-GlaWpWcSgdVagNuOGuFKRa1RVmPjeKy21_GQJaLlJI.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraLight";
  font-weight: 700;
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/poppins/v5/Fm41upUVp7KTKUZhL0PfQVtXRa8TVwTICgirnJhmVJw.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/poppins/v5/Fm41upUVp7KTKUZhL0PfQT8E0i7KZn-EPnyo3HZu7kw.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway-SemiBold";
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v12/STBOO2waD2LpX45SXYjQBfk_vArhqVIZ0nv9q090hN8.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/raleway/v12/STBOO2waD2LpX45SXYjQBRsxEYwM7FgeyaSgU71cLG0.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway-SemiBold";
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v12/WmVKXVcOuffP_qmCpFuyzfk_vArhqVIZ0nv9q090hN8.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/raleway/v12/WmVKXVcOuffP_qmCpFuyzRsxEYwM7FgeyaSgU71cLG0.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway-SemiBold";
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v12/OY22yoG8EJ3IN_muVWm29BUOjZSKWg4xBWp_C_qQx0o.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/raleway/v12/OY22yoG8EJ3IN_muVWm29Ba1RVmPjeKy21_GQJaLlJI.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway-SemiBold";
  font-weight: 700;
  font-style: italic;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v12/lFxvRPuGFG5ktd7P0WRwKhUOjZSKWg4xBWp_C_qQx0o.woff2")
      format("woff2"),
    url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff/s/raleway/v12/lFxvRPuGFG5ktd7P0WRwKha1RVmPjeKy21_GQJaLlJI.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4QIFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4SYFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4QoFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4Q4FqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4TYFqL_KWxQ.woff2")
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4QIFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4SYFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4QoFqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4Q4FqL_KWxWMT.woff2")
    format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptsg8zYS_SKggPNyCg4TYFqL_KWxQ.woff2")
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2")
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2")
    format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/raleway/v26/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2")
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica-W01-Roman";
  src: url("//static.parastorage.com/services/santa-resources/dist/viewer/user-site-fonts/fonts/Helvetica/v3/HelveticaLTW04-Roman.woff2")
      format("woff2"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/4021a3b9-f782-438b-aeb4-c008109a8b64.woff")
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Helvetica-W02-Roman";
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/e4bd4516-4480-43df-aa6e-4e9b9029f53e.eot?#iefix");
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/e4bd4516-4480-43df-aa6e-4e9b9029f53e.eot?#iefix")
      format("eot"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/b56b944e-bbe0-4450-a241-de2125d3e682.woff")
      format("woff"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/7da02f05-ae8b-43a1-aeb9-83b3c0527c06.ttf")
      format("truetype"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/66cac56e-d017-4544-9d0c-f7d978f0c5c2.svg#66cac56e-d017-4544-9d0c-f7d978f0c5c2")
      format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Helvetica-LT-W10-Roman";
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/686a6a06-e711-4bd2-b393-8504a497bb3c.eot?#iefix");
  src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/686a6a06-e711-4bd2-b393-8504a497bb3c.eot?#iefix")
      format("eot"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/6f8d1983-4d34-4fa4-9110-988f6c495757.woff")
      format("woff"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/7903ee3f-e9ab-4bdc-b7d2-d232de2da580.ttf")
      format("truetype"),
    url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/9c58e9ea-fdea-4b9c-b0f9-0a2157389ed0.svg#9c58e9ea-fdea-4b9c-b0f9-0a2157389ed0")
      format("svg");
  font-display: swap;
}
#masterPage:not(.landingPage) #PAGES_CONTAINER {
  margin-top: 0px;
  margin-bottom: 0px;
}
#masterPage.landingPage #SITE_HEADER {
  display: none;
}
#masterPage.landingPage #SITE_FOOTER {
  display: none;
}
#masterPage.landingPage #SITE_HEADER-placeholder {
  display: none;
}
#masterPage.landingPage #SITE_FOOTER-placeholder {
  display: none;
}
#SITE_CONTAINER.focus-ring-active
  :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus,
#SITE_CONTAINER.focus-ring-active
  :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus
  ~ .SdkShowFocusOnSibling {
  --focus-ring-box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #116dff;
  box-shadow: var(--focus-ring-box-shadow) !important;
  z-index: 1;
}
.has-inner-focus-ring {
  --focus-ring-box-shadow: inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;
}
#masterPage {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
#SITE_HEADER {
  --pinned-layer-in-container: 50;
  --above-all-in-container: 49;
}
#PAGES_CONTAINER {
  --pinned-layer-in-container: 51;
  --above-all-in-container: 49;
}
#SITE_FOOTER {
  --pinned-layer-in-container: 52;
  --above-all-in-container: 49;
}
:root,
:host,
.spxThemeOverride,
.max-width-container {
  --color_0: 255, 255, 255;
  --color_1: 255, 255, 255;
  --color_2: 0, 0, 0;
  --color_3: 237, 28, 36;
  --color_4: 0, 136, 203;
  --color_5: 255, 203, 5;
  --color_6: 114, 114, 114;
  --color_7: 176, 176, 176;
  --color_8: 255, 255, 255;
  --color_9: 114, 114, 114;
  --color_10: 176, 176, 176;
  --color_11: 255, 255, 255;
  --color_12: 227, 225, 225;
  --color_13: 199, 199, 199;
  --color_14: 117, 117, 117;
  --color_15: 0, 0, 0;
  --color_16: 255, 200, 184;
  --color_17: 255, 95, 46;
  --color_18: 0, 0, 0;
  --color_19: 122, 36, 9;
  --color_20: 85, 30, 14;
  --color_21: 185, 205, 255;
  --color_22: 112, 153, 255;
  --color_23: 46, 105, 255;
  --color_24: 31, 70, 170;
  --color_25: 15, 35, 85;
  --color_26: 255, 235, 185;
  --color_27: 255, 217, 120;
  --color_28: 255, 196, 46;
  --color_29: 170, 131, 31;
  --color_30: 85, 65, 15;
  --color_31: 232, 166, 247;
  --color_32: 161, 97, 176;
  --color_33: 127, 90, 136;
  --color_34: 86, 48, 96;
  --color_35: 45, 0, 56;
  --color_36: 255, 255, 255;
  --color_37: 0, 0, 0;
  --color_38: 227, 225, 225;
  --color_39: 199, 199, 199;
  --color_40: 117, 117, 117;
  --color_41: 46, 105, 255;
  --color_42: 255, 95, 46;
  --color_43: 31, 70, 170;
  --color_44: 185, 205, 255;
  --color_45: 0, 0, 0;
  --color_46: 0, 0, 0;
  --color_47: 117, 117, 117;
  --color_48: 0, 0, 0;
  --color_49: 0, 0, 0;
  --color_50: 255, 255, 255;
  --color_51: 255, 255, 255;
  --color_52: 0, 0, 0;
  --color_53: 0, 0, 0;
  --color_54: 199, 199, 199;
  --color_55: 199, 199, 199;
  --color_56: 255, 255, 255;
  --color_57: 255, 255, 255;
  --color_58: 0, 0, 0;
  --color_59: 0, 0, 0;
  --color_60: 0, 0, 0;
  --color_61: 0, 0, 0;
  --color_62: 255, 255, 255;
  --color_63: 255, 255, 255;
  --color_64: 199, 199, 199;
  --color_65: 199, 199, 199;
  --font_0: normal normal normal 120px/1.4em "suez one", serif;
  --font_1: normal normal normal 16px/1.4em din-next-w01-light,
    din-next-w02-light, din-next-w10-light, sans-serif;
  --font_2: normal normal bold 60px/1.4em poppins-semibold, poppins, sans-serif;
  --font_3: normal normal bold 50px/1.4em poppins-semibold, poppins, sans-serif;
  --font_4: normal normal bold 35px/1.4em poppins-extralight, poppins,
    sans-serif;
  --font_5: normal normal bold 25px/1.4em poppins-semibold, poppins, sans-serif;
  --font_6: normal normal bold 17px/1.4em raleway-semibold, raleway, sans-serif;
  --font_7: normal normal normal 18px/1.4em raleway, sans-serif;
  --font_8: normal normal normal 17px/1.4em raleway, sans-serif;
  --font_9: normal normal normal 15px/1.4em raleway, sans-serif;
  --font_10: normal normal normal 12px/1.4em din-next-w01-light,
    din-next-w02-light, din-next-w10-light, sans-serif;
  --html-ads-height: 50px;
  --sticky-offset: 50px;
  --html-ads-top-height: 50px;
  --vh-unit: calc((100vh - 50px) / 100);
  --site-width: 980px;
  --above-all-z-index: 100000;
  --portals-z-index: 100001;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --minViewportSize: 320;
  --maxViewportSize: 1920;
  --theme-spx-ratio: 1px;
  --scaling-factor: min((100 * var(--one-unit)), var(--section-max-width));
  --customScaleViewportLimit: clamp(
    var(--minViewportSize) * 1px,
    100 * var(--one-unit),
    min(var(--section-max-width), var(--maxViewportSize) * 1px)
  );
}
.font_0 {
  font: var(--font_0);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_1 {
  font: var(--font_1);
  color: rgb(var(--color_14));
  letter-spacing: 0em;
}
.font_2 {
  font: var(--font_2);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_3 {
  font: var(--font_3);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_4 {
  font: var(--font_4);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_5 {
  font: var(--font_5);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_6 {
  font: var(--font_6);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_7 {
  font: var(--font_7);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_8 {
  font: var(--font_8);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_9 {
  font: var(--font_9);
  color: rgb(var(--color_15));
  letter-spacing: 0em;
}
.font_10 {
  font: var(--font_10);
  color: rgb(var(--color_14));
  letter-spacing: 0em;
}
.color_0 {
  color: rgb(var(--color_0));
}
.color_1 {
  color: rgb(var(--color_1));
}
.color_2 {
  color: rgb(var(--color_2));
}
.color_3 {
  color: rgb(var(--color_3));
}
.color_4 {
  color: rgb(var(--color_4));
}
.color_5 {
  color: rgb(var(--color_5));
}
.color_6 {
  color: rgb(var(--color_6));
}
.color_7 {
  color: rgb(var(--color_7));
}
.color_8 {
  color: rgb(var(--color_8));
}
.color_9 {
  color: rgb(var(--color_9));
}
.color_10 {
  color: rgb(var(--color_10));
}
.color_11 {
  color: rgb(var(--color_11));
}
.color_12 {
  color: rgb(var(--color_12));
}
.color_13 {
  color: rgb(var(--color_13));
}
.color_14 {
  color: rgb(var(--color_14));
}
.color_15 {
  color: rgb(var(--color_15));
}
.color_16 {
  color: rgb(var(--color_16));
}
.color_17 {
  color: rgb(var(--color_17));
}
.color_18 {
  color: rgb(var(--color_18));
}
.color_19 {
  color: rgb(var(--color_19));
}
.color_20 {
  color: rgb(var(--color_20));
}
.color_21 {
  color: rgb(var(--color_21));
}
.color_22 {
  color: rgb(var(--color_22));
}
.color_23 {
  color: rgb(var(--color_23));
}
.color_24 {
  color: rgb(var(--color_24));
}
.color_25 {
  color: rgb(var(--color_25));
}
.color_26 {
  color: rgb(var(--color_26));
}
.color_27 {
  color: rgb(var(--color_27));
}
.color_28 {
  color: rgb(var(--color_28));
}
.color_29 {
  color: rgb(var(--color_29));
}
.color_30 {
  color: rgb(var(--color_30));
}
.color_31 {
  color: rgb(var(--color_31));
}
.color_32 {
  color: rgb(var(--color_32));
}
.color_33 {
  color: rgb(var(--color_33));
}
.color_34 {
  color: rgb(var(--color_34));
}
.color_35 {
  color: rgb(var(--color_35));
}
.color_36 {
  color: rgb(var(--color_36));
}
.color_37 {
  color: rgb(var(--color_37));
}
.color_38 {
  color: rgb(var(--color_38));
}
.color_39 {
  color: rgb(var(--color_39));
}
.color_40 {
  color: rgb(var(--color_40));
}
.color_41 {
  color: rgb(var(--color_41));
}
.color_42 {
  color: rgb(var(--color_42));
}
.color_43 {
  color: rgb(var(--color_43));
}
.color_44 {
  color: rgb(var(--color_44));
}
.color_45 {
  color: rgb(var(--color_45));
}
.color_46 {
  color: rgb(var(--color_46));
}
.color_47 {
  color: rgb(var(--color_47));
}
.color_48 {
  color: rgb(var(--color_48));
}
.color_49 {
  color: rgb(var(--color_49));
}
.color_50 {
  color: rgb(var(--color_50));
}
.color_51 {
  color: rgb(var(--color_51));
}
.color_52 {
  color: rgb(var(--color_52));
}
.color_53 {
  color: rgb(var(--color_53));
}
.color_54 {
  color: rgb(var(--color_54));
}
.color_55 {
  color: rgb(var(--color_55));
}
.color_56 {
  color: rgb(var(--color_56));
}
.color_57 {
  color: rgb(var(--color_57));
}
.color_58 {
  color: rgb(var(--color_58));
}
.color_59 {
  color: rgb(var(--color_59));
}
.color_60 {
  color: rgb(var(--color_60));
}
.color_61 {
  color: rgb(var(--color_61));
}
.color_62 {
  color: rgb(var(--color_62));
}
.color_63 {
  color: rgb(var(--color_63));
}
.color_64 {
  color: rgb(var(--color_64));
}
.color_65 {
  color: rgb(var(--color_65));
}
.backcolor_0 {
  background-color: rgb(var(--color_0));
}
.backcolor_1 {
  background-color: rgb(var(--color_1));
}
.backcolor_2 {
  background-color: rgb(var(--color_2));
}
.backcolor_3 {
  background-color: rgb(var(--color_3));
}
.backcolor_4 {
  background-color: rgb(var(--color_4));
}
.backcolor_5 {
  background-color: rgb(var(--color_5));
}
.backcolor_6 {
  background-color: rgb(var(--color_6));
}
.backcolor_7 {
  background-color: rgb(var(--color_7));
}
.backcolor_8 {
  background-color: rgb(var(--color_8));
}
.backcolor_9 {
  background-color: rgb(var(--color_9));
}
.backcolor_10 {
  background-color: rgb(var(--color_10));
}
.backcolor_11 {
  background-color: rgb(var(--color_11));
}
.backcolor_12 {
  background-color: rgb(var(--color_12));
}
.backcolor_13 {
  background-color: rgb(var(--color_13));
}
.backcolor_14 {
  background-color: rgb(var(--color_14));
}
.backcolor_15 {
  background-color: rgb(var(--color_15));
}
.backcolor_16 {
  background-color: rgb(var(--color_16));
}
.backcolor_17 {
  background-color: rgb(var(--color_17));
}
.backcolor_18 {
  background-color: rgb(var(--color_18));
}
.backcolor_19 {
  background-color: rgb(var(--color_19));
}
.backcolor_20 {
  background-color: rgb(var(--color_20));
}
.backcolor_21 {
  background-color: rgb(var(--color_21));
}
.backcolor_22 {
  background-color: rgb(var(--color_22));
}
.backcolor_23 {
  background-color: rgb(var(--color_23));
}
.backcolor_24 {
  background-color: rgb(var(--color_24));
}
.backcolor_25 {
  background-color: rgb(var(--color_25));
}
.backcolor_26 {
  background-color: rgb(var(--color_26));
}
.backcolor_27 {
  background-color: rgb(var(--color_27));
}
.backcolor_28 {
  background-color: rgb(var(--color_28));
}
.backcolor_29 {
  background-color: rgb(var(--color_29));
}
.backcolor_30 {
  background-color: rgb(var(--color_30));
}
.backcolor_31 {
  background-color: rgb(var(--color_31));
}
.backcolor_32 {
  background-color: rgb(var(--color_32));
}
.backcolor_33 {
  background-color: rgb(var(--color_33));
}
.backcolor_34 {
  background-color: rgb(var(--color_34));
}
.backcolor_35 {
  background-color: rgb(var(--color_35));
}
.backcolor_36 {
  background-color: rgb(var(--color_36));
}
.backcolor_37 {
  background-color: rgb(var(--color_37));
}
.backcolor_38 {
  background-color: rgb(var(--color_38));
}
.backcolor_39 {
  background-color: rgb(var(--color_39));
}
.backcolor_40 {
  background-color: rgb(var(--color_40));
}
.backcolor_41 {
  background-color: rgb(var(--color_41));
}
.backcolor_42 {
  background-color: rgb(var(--color_42));
}
.backcolor_43 {
  background-color: rgb(var(--color_43));
}
.backcolor_44 {
  background-color: rgb(var(--color_44));
}
.backcolor_45 {
  background-color: rgb(var(--color_45));
}
.backcolor_46 {
  background-color: rgb(var(--color_46));
}
.backcolor_47 {
  background-color: rgb(var(--color_47));
}
.backcolor_48 {
  background-color: rgb(var(--color_48));
}
.backcolor_49 {
  background-color: rgb(var(--color_49));
}
.backcolor_50 {
  background-color: rgb(var(--color_50));
}
.backcolor_51 {
  background-color: rgb(var(--color_51));
}
.backcolor_52 {
  background-color: rgb(var(--color_52));
}
.backcolor_53 {
  background-color: rgb(var(--color_53));
}
.backcolor_54 {
  background-color: rgb(var(--color_54));
}
.backcolor_55 {
  background-color: rgb(var(--color_55));
}
.backcolor_56 {
  background-color: rgb(var(--color_56));
}
.backcolor_57 {
  background-color: rgb(var(--color_57));
}
.backcolor_58 {
  background-color: rgb(var(--color_58));
}
.backcolor_59 {
  background-color: rgb(var(--color_59));
}
.backcolor_60 {
  background-color: rgb(var(--color_60));
}
.backcolor_61 {
  background-color: rgb(var(--color_61));
}
.backcolor_62 {
  background-color: rgb(var(--color_62));
}
.backcolor_63 {
  background-color: rgb(var(--color_63));
}
.backcolor_64 {
  background-color: rgb(var(--color_64));
}
.backcolor_65 {
  background-color: rgb(var(--color_65));
}
#masterPage:not(.landingPage) {
  --top-offset: 0px;
  --header-height: 83px;
}
#masterPage.landingPage {
  --top-offset: 0px;
}
#SITE_HEADER {
  --bg: var(--color_23);
  --shd: none;
  --brwt: 0px;
  --brd: var(--color_11);
  --brwb: 0px;
  --bgctr: var(--color_23);
  --rd: 0px;
  --alpha-bg: 1;
  --boxShadowToggleOn-shd: none;
  --alpha-brd: 1;
  --alpha-bgctr: 1;
  --backdrop-filter: none;
}
#SITE_HEADER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="SITE_HEADERinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="SITE_HEADERinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="SITE_HEADERinlineContent-gridContainer"] > [id="comp-kqyydlrv"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#SITE_HEADER {
  --bg-overlay-color: rgb(var(--color_23));
  --bg-gradient: none;
  --shc-mutated-brightness: 23, 53, 128;
}
#comp-kqyydlrv {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}
[data-mesh-id="comp-kqyydlu6inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kqyydlu6inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kqyydlu6inlineContent-gridContainer"]
  > [id="comp-kqyyhm47"] {
  position: relative;
  margin: 45px 0px 0px calc((100% - 327px) * 0);
  left: 146px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqyydo4tinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kqyydo4tinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kqyydo4tinlineContent-gridContainer"]
  > [id="comp-ksre6wui"] {
  position: relative;
  margin: 23px 0px 20px calc((100% - 653px) * 1);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqyydo4tinlineContent-gridContainer"]
  > [id="comp-kqyyiqvn"] {
  position: relative;
  margin: 20px 0px 23px calc((100% - 653px) * 1);
  left: 384px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqyydlrv {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kqyydlu6 {
  width: 327px;
}
#comp-kqyydlu6 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 327px;
  --column-flex: 327;
}
#comp-kqyyhm47 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kqyyhm47 {
  width: 181px;
  height: auto;
}
#comp-kqyyhm47 {
  --min-height: 38px;
}
#comp-kqyydo4t {
  width: 653px;
}
#comp-kqyydo4t {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 653px;
  --column-flex: 653;
}
#comp-ksre6wui {
  --menuTotalBordersX: 0px;
  --menuTotalBordersY: 0px;
  --bgDrop: var(--color_23);
  --rd: 0px;
  --shd: none;
  --fnt: var(--font_5);
  --pad: 5px;
  --txt: var(--color_11);
  --trans: color 0.4s ease 0s;
  --txth: var(--color_15);
  --txts: var(--color_15);
  --alpha-txth: 1;
  --alpha-txts: 1;
  --alpha-bgDrop: 1;
  --boxShadowToggleOn-shd: none;
  --alpha-txt: 1;
}
#comp-ksre6wui {
  width: 380px;
  height: 40px;
}
#comp-ksre6wui {
  --menuTotalBordersY: 0px;
  --menuTotalBordersX: 0px;
}
#comp-kqyyiqvn {
  width: 190px;
  height: 40px;
}
#comp-kqyyiqvn {
  --item-size: 40px;
  --item-margin: 0px 10px 0px 0px;
  --item-display: inline-block;
  width: 190px;
  height: 40px;
}
#PAGES_CONTAINER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
#SITE_PAGES {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
#SITE_PAGES {
  --transition-duration: 700ms;
}
#SITE_FOOTER {
  --brd: var(--color_15);
  --brwt: 0px;
  --brwb: 0px;
  --shd: none;
  --rd: 0px;
  --alpha-brd: 1;
  --boxShadowToggleOn-shd: none;
  --backdrop-filter: none;
}
#SITE_FOOTER {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="SITE_FOOTERinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-kr0bh77f"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="SITE_FOOTERinlineContent-gridContainer"] > [id="comp-kr0c8sne"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#SITE_FOOTER {
  --bg-overlay-color: rgb(var(--color_41));
  --bg-gradient: none;
}
#comp-kr0bh77f {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kr0bh78i1inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr0bh78i1inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 570px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr0bh78i1inlineContent-gridContainer"]
  > [id="comp-kr3eqbcg"] {
  position: relative;
  margin: 33px 0px 16px calc((100% - 254px) * 1);
  left: 9px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr0bh78i1inlineContent-gridContainer"]
  > [id="comp-kr4qhdbg"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 254px) * 1);
  left: 45px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr24plysinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr24plysinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 570px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr24plysinlineContent-gridContainer"]
  > [id="comp-kr4qhdl3"] {
  position: relative;
  margin: 20px 0px 16px calc((100% - 313px) * 1);
  left: 20px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr24plysinlineContent-gridContainer"]
  > [id="comp-kr4qhdl4"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 313px) * 1);
  left: 20px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju63inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr4rju63inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr4rju63inlineContent-gridContainer"]
  > [id="comp-kr4rju9b"] {
  position: relative;
  margin: 13px 0px 70px calc((100% - 413px) * 0.5);
  left: 2px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr0bh77f {
  --bg-overlay-color: rgb(var(--color_23));
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr0bh78i1 {
  width: 254px;
}
#comp-kr0bh78i1 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 254px;
  --column-flex: 254;
}
#comp-kr3eqbcg {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kr3eqbcg {
  width: 232px;
  height: 81px;
}
#comp-kr3eqbcg {
  --height: 81px;
  --width: 232px;
}
#comp-kr4qhdbg {
  width: 159px;
  height: 30px;
}
#comp-kr4qhdbg {
  --item-size: 30px;
  --item-margin: 0px 13px 0px 0px;
  --item-display: inline-block;
  width: 159px;
  height: 30px;
}
#comp-kr24plys {
  width: 313px;
}
#comp-kr24plys {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 313px;
  --column-flex: 313;
}
#comp-kr4qhdl3 {
  width: 250px;
  height: auto;
}
#comp-kr4qhdl4 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kr4qhdl4 {
  width: 250px;
  height: auto;
}
#comp-kr4qhdl4 {
  --min-height: 15px;
}
#comp-kr4rju63 {
  width: 413px;
}
#comp-kr4rju63 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 413px;
  --column-flex: 413;
}
#comp-kr4rju9b {
  width: 411px;
}
[data-mesh-id="comp-kr4rju9binlineContent"] {
  height: auto;
  width: 411px;
}
[data-mesh-id="comp-kr4rju9binlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr4rju9binlineContent-gridContainer"]
  > [id="comp-kr4rju9e1"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr4rju9e1 {
  --rd: 0px;
  --shd: 0 0 0 rgba(0, 0, 0, 0);
  --bg: var(--color_41);
  --brd: var(--color_36);
  --brw: 0px;
  --alpha-bg: 0;
  --alpha-brd: 1;
}
#comp-kr4rju9e1 {
  width: 411px;
}
[data-mesh-id="comp-kr4rju9e1inlineContent"] {
  height: auto;
  width: 411px;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(5, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rju9m"] {
  position: relative;
  margin: 7px 0px 45px 0;
  left: 10px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rju9n3"] {
  position: relative;
  margin: 0px 0px 36px 0;
  left: 10px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rju9u"] {
  position: relative;
  margin: 0px 0px 39px 0;
  left: 196px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rju9v3"] {
  position: relative;
  margin: 0px 0px 36px 0;
  left: 10px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rju9x2"] {
  position: relative;
  margin: 0px 0px 38px 0;
  left: 196px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rjua02"] {
  position: relative;
  margin: 0px 0px 33px 0;
  left: 16px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-kr4rjua5"] {
  position: relative;
  margin: 0px 0px 21px 0;
  left: 16px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr4rju9e1inlineContent-gridContainer"]
  > [id="comp-ksn82le9"] {
  position: relative;
  margin: 0px 0px 19px 0;
  left: 16px;
  grid-area: 6 / 1 / 7 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr4rju9m {
  width: 336px;
  height: auto;
}
#comp-kr4rju9m {
  --min-height: 24px;
}
#comp-kr4rju9n3 {
  --errorTextColor: 255, 64, 64;
  --alpha-errorTextColor: 1;
  --errorTextFont: var(--font_8);
  --shd: none;
  --rd: 0px;
  --fnt: var(--font_8);
  --brw: 0px 0px 1px 0px;
  --bg: var(--color_41);
  --txt: var(--color_36);
  --alpha-txt: 1;
  --brd: var(--color_36);
  --txt2: var(--color_36);
  --alpha-txt2: 1;
  --brwh: 0px 0px 2px 0px;
  --bgh: var(--color_41);
  --brdh: var(--color_37);
  --brwf: 0px 0px 2px 0px;
  --bgf: var(--color_41);
  --brdf: var(--color_37);
  --brwe: 0px 0px 3px 0px;
  --bge: var(--color_41);
  --brde: 97, 0, 0;
  --trns: opacity 0.5s ease 0s, border 0.5s ease 0s, color 0.5s ease 0s;
  --bgd: 255, 255, 255;
  --txtd: 219, 219, 219;
  --alpha-txtd: 1;
  --brwd: 1px;
  --brdd: 219, 219, 219;
  --alpha-brdd: 1;
  --fntlbl: var(--font_8);
  --txtlbl: var(--color_36);
  --alpha-txtlbl: 1;
  --txtlblrq: var(--color_36);
  --alpha-txtlblrq: 1;
  --fntprefix: normal normal normal 16px/1.4em helvetica-w01-roman,
    helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  --alpha-bg: 1;
  --alpha-bgd: 1;
  --alpha-bge: 1;
  --alpha-bgf: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brde: 1;
  --alpha-brdf: 1;
  --alpha-brdh: 1;
  --alpha-btn_brd: 0.55;
  --boxShadowToggleOn-shd: none;
  --btn_brd: var(--color_37);
  --btn_brw: 1;
  --btn_fnt: var(--font_8);
  --fnt2: var(--font_8);
  --txt-placeholder: var(--color_40);
  --alpha-txt-placeholder: 1;
}
#comp-kr4rju9n3 {
  width: 150px;
  height: 46px;
}
#comp-kr4rju9n3 {
  --fnt: normal normal normal 17px/1.4em raleway, sans-serif;
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --direction: inherit;
  --align: start;
  --labelDirection: inherit;
  --inputDirection: inherit;
  --errorDirection: inherit;
  --requiredIndicationDisplay: inline;
  --labelMarginBottom: 0px;
  --textPadding: 3px;
  --textPadding_start: 7px;
  --textPadding_end: 3px;
  --labelPadding_start: 0px;
  --labelPadding_end: 20px;
  height: auto;
  --inputHeight: 29px;
}
#comp-kr4rju9u {
  --errorTextColor: 255, 64, 64;
  --alpha-errorTextColor: 1;
  --errorTextFont: var(--font_8);
  --shd: none;
  --rd: 0px;
  --fnt: var(--font_8);
  --brw: 0px 0px 1px 0px;
  --bg: var(--color_41);
  --txt: var(--color_36);
  --alpha-txt: 1;
  --brd: var(--color_36);
  --txt2: var(--color_36);
  --alpha-txt2: 1;
  --brwh: 0px 0px 2px 0px;
  --bgh: var(--color_41);
  --brdh: var(--color_37);
  --brwf: 0px 0px 2px 0px;
  --bgf: var(--color_41);
  --brdf: var(--color_37);
  --brwe: 0px 0px 3px 0px;
  --bge: var(--color_41);
  --brde: 97, 0, 0;
  --trns: opacity 0.5s ease 0s, border 0.5s ease 0s, color 0.5s ease 0s;
  --bgd: 255, 255, 255;
  --txtd: 219, 219, 219;
  --alpha-txtd: 1;
  --brwd: 1px;
  --brdd: 219, 219, 219;
  --alpha-brdd: 1;
  --fntlbl: var(--font_8);
  --txtlbl: var(--color_36);
  --alpha-txtlbl: 1;
  --txtlblrq: var(--color_36);
  --alpha-txtlblrq: 1;
  --fntprefix: normal normal normal 16px/1.4em helvetica-w01-roman,
    helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  --alpha-bg: 1;
  --alpha-bgd: 1;
  --alpha-bge: 1;
  --alpha-bgf: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brde: 1;
  --alpha-brdf: 1;
  --alpha-brdh: 1;
  --alpha-btn_brd: 0.55;
  --boxShadowToggleOn-shd: none;
  --btn_brd: var(--color_37);
  --btn_brw: 1;
  --btn_fnt: var(--font_8);
  --fnt2: var(--font_8);
  --txt-placeholder: var(--color_40);
  --alpha-txt-placeholder: 1;
}
#comp-kr4rju9u {
  width: 150px;
  height: 43px;
}
#comp-kr4rju9u {
  --fnt: normal normal normal 17px/1.4em raleway, sans-serif;
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --direction: inherit;
  --align: start;
  --labelDirection: inherit;
  --inputDirection: inherit;
  --errorDirection: inherit;
  --requiredIndicationDisplay: inline;
  --labelMarginBottom: 0px;
  --textPadding: 3px;
  --textPadding_start: 7px;
  --textPadding_end: 3px;
  --labelPadding_start: 0px;
  --labelPadding_end: 20px;
  height: auto;
  --inputHeight: 26px;
}
#comp-kr4rju9v3 {
  --errorTextColor: 255, 64, 64;
  --alpha-errorTextColor: 1;
  --errorTextFont: var(--font_8);
  --shd: none;
  --rd: 0px;
  --fnt: var(--font_8);
  --brw: 0px 0px 1px 0px;
  --bg: var(--color_41);
  --txt: var(--color_36);
  --alpha-txt: 1;
  --brd: var(--color_36);
  --txt2: var(--color_36);
  --alpha-txt2: 1;
  --brwh: 0px 0px 2px 0px;
  --bgh: var(--color_41);
  --brdh: var(--color_37);
  --brwf: 0px 0px 2px 0px;
  --bgf: var(--color_41);
  --brdf: var(--color_37);
  --brwe: 0px 0px 3px 0px;
  --bge: var(--color_41);
  --brde: 97, 0, 0;
  --trns: opacity 0.5s ease 0s, border 0.5s ease 0s, color 0.5s ease 0s;
  --bgd: 255, 255, 255;
  --txtd: 219, 219, 219;
  --alpha-txtd: 1;
  --brwd: 1px;
  --brdd: 219, 219, 219;
  --alpha-brdd: 1;
  --fntlbl: var(--font_8);
  --txtlbl: var(--color_36);
  --alpha-txtlbl: 1;
  --txtlblrq: var(--color_36);
  --alpha-txtlblrq: 1;
  --fntprefix: normal normal normal 16px/1.4em helvetica-w01-roman,
    helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  --alpha-bg: 1;
  --alpha-bgd: 1;
  --alpha-bge: 1;
  --alpha-bgf: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brde: 1;
  --alpha-brdf: 1;
  --alpha-brdh: 1;
  --alpha-btn_brd: 0.55;
  --boxShadowToggleOn-shd: none;
  --btn_brd: var(--color_37);
  --btn_brw: 1;
  --btn_fnt: var(--font_8);
  --fnt2: var(--font_8);
  --txt-placeholder: var(--color_40);
  --alpha-txt-placeholder: 1;
}
#comp-kr4rju9v3 {
  width: 150px;
  height: 45px;
}
#comp-kr4rju9v3 {
  --fnt: normal normal normal 17px/1.4em raleway, sans-serif;
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --direction: inherit;
  --align: start;
  --labelDirection: inherit;
  --inputDirection: inherit;
  --errorDirection: inherit;
  --requiredIndicationDisplay: inline;
  --labelMarginBottom: 0px;
  --textPadding: 3px;
  --textPadding_start: 7px;
  --textPadding_end: 3px;
  --labelPadding_start: 0px;
  --labelPadding_end: 20px;
  height: auto;
  --inputHeight: 28px;
}
#comp-kr4rju9x2 {
  --errorTextColor: 255, 64, 64;
  --alpha-errorTextColor: 1;
  --errorTextFont: var(--font_8);
  --shd: none;
  --rd: 0px;
  --fnt: var(--font_8);
  --brw: 0px 0px 1px 0px;
  --bg: var(--color_41);
  --txt: var(--color_36);
  --alpha-txt: 1;
  --brd: var(--color_36);
  --txt2: var(--color_36);
  --alpha-txt2: 1;
  --brwh: 0px 0px 2px 0px;
  --bgh: var(--color_41);
  --brdh: var(--color_37);
  --brwf: 0px 0px 2px 0px;
  --bgf: var(--color_41);
  --brdf: var(--color_37);
  --brwe: 0px 0px 3px 0px;
  --bge: var(--color_41);
  --brde: 97, 0, 0;
  --trns: opacity 0.5s ease 0s, border 0.5s ease 0s, color 0.5s ease 0s;
  --bgd: 255, 255, 255;
  --txtd: 219, 219, 219;
  --alpha-txtd: 1;
  --brwd: 1px;
  --brdd: 219, 219, 219;
  --alpha-brdd: 1;
  --fntlbl: var(--font_8);
  --txtlbl: var(--color_36);
  --alpha-txtlbl: 1;
  --txtlblrq: var(--color_36);
  --alpha-txtlblrq: 1;
  --fntprefix: normal normal normal 16px/1.4em helvetica-w01-roman,
    helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  --alpha-bg: 1;
  --alpha-bgd: 1;
  --alpha-bge: 1;
  --alpha-bgf: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brde: 1;
  --alpha-brdf: 1;
  --alpha-brdh: 1;
  --alpha-btn_brd: 0.55;
  --boxShadowToggleOn-shd: none;
  --btn_brd: var(--color_37);
  --btn_brw: 1;
  --btn_fnt: var(--font_8);
  --fnt2: var(--font_8);
  --txt-placeholder: var(--color_40);
  --alpha-txt-placeholder: 1;
}
#comp-kr4rju9x2 {
  width: 150px;
  height: 43px;
}
#comp-kr4rju9x2 {
  --fnt: normal normal normal 17px/1.4em raleway, sans-serif;
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --direction: inherit;
  --align: start;
  --labelDirection: inherit;
  --inputDirection: inherit;
  --errorDirection: inherit;
  --requiredIndicationDisplay: inline;
  --labelMarginBottom: 0px;
  --textPadding: 3px;
  --textPadding_start: 7px;
  --textPadding_end: 3px;
  --labelPadding_start: 0px;
  --labelPadding_end: 20px;
  height: auto;
  --inputHeight: 26px;
}
#comp-kr4rjua02 {
  --errorTextColor: 255, 64, 64;
  --alpha-errorTextColor: 1;
  --errorTextFont: var(--font_8);
  --shd: none;
  --rd: 0px;
  --fnt: var(--font_8);
  --brw: 0px 0px 1px 0px;
  --bg: var(--color_41);
  --txt: var(--color_36);
  --alpha-txt: 1;
  --brd: var(--color_36);
  --txt2: var(--color_36);
  --alpha-txt2: 1;
  --brwh: 0px 0px 2px 0px;
  --bgh: var(--color_41);
  --brdh: var(--color_37);
  --bgd: 255, 255, 255;
  --txtd: 219, 219, 219;
  --alpha-txtd: 1;
  --brwd: 1px;
  --brdd: 219, 219, 219;
  --alpha-brdd: 1;
  --brwf: 0px 0px 2px 0px;
  --bgf: var(--color_41);
  --brdf: var(--color_37);
  --brwe: 0px 0px 3px 0px;
  --bge: var(--color_41);
  --brde: 97, 0, 0;
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --txtlbl: var(--color_36);
  --alpha-txtlbl: 1;
  --txtlblrq: var(--color_36);
  --alpha-txtlblrq: 1;
  --alpha-bg: 1;
  --alpha-bgd: 1;
  --alpha-bge: 1;
  --alpha-bgf: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brde: 1;
  --alpha-brdf: 1;
  --alpha-brdh: 1;
  --alpha-btn_brd: 0.55;
  --bg2: 170, 170, 170;
  --alpha-bg2: 1;
  --boxShadowToggleOn-shd: none;
  --btn_brd: var(--color_37);
  --btn_brw: 1;
  --btn_fnt: var(--font_8);
  --fnt2: var(--font_8);
  --txt-placeholder: var(--color_40);
  --alpha-txt-placeholder: 1;
}
#comp-kr4rjua02 {
  width: 330px;
  height: 95px;
}
#comp-kr4rjua02 {
  --fntlbl: normal normal normal 17px/1.4em raleway, sans-serif;
  --direction: inherit;
  --labelDirection: inherit;
  --inputDirection: inherit;
  --errorDirection: inherit;
  --align: start;
  --textPaddingTop: 3px;
  --textPaddingStart: 7px;
  --textPaddingEnd: 10px;
  --labelMarginBottom: 2px;
  --requiredIndicationDisplay: inline;
  --labelPadding_start: 0px;
  --labelPadding_end: 20px;
  height: auto;
  --inputHeight: 76px;
}
#comp-kr4rjua5 {
  --rd: 100px 100px 100px 100px;
  --trans1: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
  --shd: none;
  --fnt: var(--font_6);
  --trans2: color 0.4s ease 0s;
  --txt: var(--color_36);
  --brw: 0px;
  --bg: var(--color_37);
  --brd: var(--color_36);
  --bgh: var(--color_36);
  --brdh: var(--color_36);
  --txth: var(--color_41);
  --bgd: 204, 204, 204;
  --alpha-bgd: 1;
  --brdd: 204, 204, 204;
  --alpha-brdd: 1;
  --txtd: 255, 255, 255;
  --alpha-txtd: 1;
  --alpha-bg: 1;
  --alpha-bgh: 1;
  --alpha-brd: 1;
  --alpha-brdh: 1;
  --alpha-txt: 1;
  --alpha-txth: 1;
  --boxShadowToggleOn-shd: none;
}
#comp-kr4rjua5 {
  width: 120px;
  height: 46px;
}
#comp-kr4rjua5 {
  --shc-mutated-brightness: 0, 0, 0;
  --margin-start: 0px;
  --margin-end: 0px;
  --fnt: normal normal bold 17px/1.4em raleway-semibold, raleway, sans-serif;
  --label-align: center;
  --label-text-align: center;
}
#comp-ksn82le9 {
  width: 336px;
  height: auto;
}
#comp-kr0c8sne {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}
[data-mesh-id="comp-kr0c8sqzinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr0c8sqzinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr0c8sqzinlineContent-gridContainer"]
  > [id="comp-kr0c9lp9"] {
  position: relative;
  margin: 24px 0px 25px calc((100% - 980px) * 0.5);
  left: 65px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr0c8sne {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr0c8sqz {
  width: 980px;
}
#comp-kr0c8sqz {
  --bg-overlay-color: rgb(var(--color_42));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kr0c9lp9 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kr0c9lp9 {
  width: 850px;
  height: auto;
}
#comp-kr0c9lp9 {
  --min-height: 19px;
}
</style > <style id="css_c1dmp" > #comp-kritibmx {
  fill-opacity: 0.75;
  stroke-width: 0;
  stroke: #000000;
  stroke-opacity: 1;
  fill: #ff5f2e;
}
#comp-kritibn6 {
  undefined: #2d2d2d;
  fill-opacity: 1;
  stroke-width: 0;
  stroke: #000000;
  stroke-opacity: 1;
  fill: #ffffff;
}
#comp-kritibl3 {
  --fill-layer-video-opacity: 1;
  --bg-overlay-color: rgb(33, 33, 33);
  --bg-gradient: none;
  --border-radius: 24px 24px 24px 24px;
  --box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  --fill-container-overflow: hidden;
  --fill-container-transform: translateZ(0);
  --fill-transform: rotate(0.01deg);
  --border-compensate-margin: 0px;
  --fill-layer-background-overlay-transform: translateZ(0);
  height: 432px;
}
#c1dmp {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
#masterPage {
  --pinned-layers-in-page: 0;
}
[data-mesh-id="Containerc1dmpinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 40px;
  grid-template-rows: repeat(6, min-content) 1fr;
  grid-template-columns: 100%;
  padding-bottom: 0px;
  box-sizing: border-box;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg64"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg65"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg651"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg66"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg661"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg67"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 6 / 1 / 7 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="Containerc1dmpinlineContent-gridContainer"]
  > [id="comp-lt8rwg671"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 7 / 1 / 8 / 2;
  justify-self: start;
  align-self: start;
}
#comp-lt8rwg64 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg64inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg64inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg64inlineContent-gridContainer"]
  > [id="comp-kqz0q5cn"] {
  position: relative;
  margin: 0px 0px -57px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lt8rwg64inlineContent-gridContainer"]
  > [id="comp-kr1rvfff"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqz0q5cn {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kqz0q5dpinlineContent"] {
  height: auto;
  width: 100%;
  display: flex;
}
[data-mesh-id="comp-kqz0q5dpinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 815px;
  margin-top: -1px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kqz0q5dpinlineContent-gridContainer"]
  > [id="comp-krj3idhf"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 118px) * 0);
  left: -1px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1rlpakinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr1rlpakinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr1rlpakinlineContent-gridContainer"]
  > [id="comp-kr4vv9ur"] {
  position: relative;
  margin: 9px 0px 10px calc((100% - 742px) * 0.5);
  left: 29px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1rlpakinlineContent-gridContainer"]
  > [id="comp-lworj8qt"] {
  position: relative;
  margin: 0px 0px 68px calc((100% - 742px) * 0.5);
  left: 222px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1rlpakinlineContent-wedge-3"] {
  visibility: hidden;
  height: 703px;
  width: 0;
  grid-area: 1 / 1 / 3 / 2;
}
[data-mesh-id="comp-kr1rltgyinlineContent"] {
  height: auto;
  width: 100%;
  display: flex;
}
[data-mesh-id="comp-kr1rltgyinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 815px;
  margin-top: -1px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr1rltgyinlineContent-gridContainer"]
  > [id="comp-krj3kobl"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 120px) * 1);
  left: 71px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqz0q5dp {
  width: 118px;
}
#comp-krj3idhf {
  width: 50px;
  height: 50px;
}
#comp-kr1rlpak {
  width: 742px;
}
#comp-kr4vv9ur {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr4vv9ur:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr4vv9ur {
  width: 687px;
  height: 158px;
}
#comp-lworj8qt {
  width: 300px;
}
[data-mesh-id="comp-lworj8qtinlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: auto;
  padding-bottom: 0px;
  box-sizing: border-box;
}
#comp-lworj8qt_r_comp-l4pcbn0d5 {
  --l_display: unset;
  min-width: 0px;
  min-height: 0px;
  width: auto;
  height: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l4pcbn0d5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0d5:not(.comp-lworj8qt_r_comp-l4pcbn0d5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0g {
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l4pcbn0g-container {
  box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0g {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: var(--color_11);
  --rd: 0px 0px 0px 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l4pcbn0m4 {
  height: auto;
  width: auto;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  position: relative;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: -0.00012500000002546585px;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l4pcbn0m4-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0m4:not(.comp-lworj8qt_r_comp-l4pcbn0m4-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0m4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l4pcbn0u4 {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: 100%;
  max-height: 99999px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  position: relative;
  margin-left: auto;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l4pcbn0u4-container {
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcbn0u4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-ldiom0w5 {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-ldiom0w5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-ldiom0w5:not(.comp-lworj8qt_r_comp-ldiom0w5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-ldiom0w5 {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l6dc7zat {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l6dc7zat-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l6dc7zat:not(.comp-lworj8qt_r_comp-l6dc7zat-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l6dc7zat {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l4pcd96z {
  min-height: 1px;
  --l_display: none;
  height: 387.296875px;
  width: 204px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  margin-left: 110px;
  margin-right: 110px;
  margin-top: 40px;
  margin-bottom: 40px;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworj8qt_r_comp-l4pcd96z .comp-lworj8qt_r_comp-l4pcd96z-container {
  box-sizing: border-box;
  position: relative;
  padding-left: 0%;
  padding-right: 0%;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4pcd96z:not(.comp-lworj8qt_r_comp-l4pcd96z-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l5kvyjcm {
  min-height: 0px;
  --l_display: none;
  height: auto;
  width: 100%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l5kvyjcm-container {
  box-sizing: border-box;
  padding-left: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(100px, max-content);
  grid-template-columns: min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l5kvyjcm:not(.comp-lworj8qt_r_comp-l5kvyjcm-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l5kvyjcm {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: 4px 6.93px 44px 8px rgba(24, 24, 24, 0.18);
  --gradient: none;
  --alpha-bg: 1;
  --alpha-brd: 0;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l6dck4qk {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l6dck4qk-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l6dck4qk {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-l4wou1cx {
  width: 99.99985416561341%;
  height: max-content;
  --l_display: none;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-l4wou1cx-container {
  box-sizing: border-box;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  flex-direction: column;
  --container-layout-type: flex-container-layout;
  --container-display: flex;
}
#comp-lworj8qt_r_comp-l4wou1cx:not(.comp-lworj8qt_r_comp-l4wou1cx-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-l4wou1cx {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-ldwuugcj {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: max-content;
  min-width: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-ldwuugcj-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: minmax(min-content, max-content) min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-ldwuugcj {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-ldwve0jd {
  min-height: 1px;
  --l_display: none;
  height: auto;
  width: 92px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: end;
  margin-top: 32.1015625px;
  margin-bottom: 0px;
  margin-right: 38.88306250000005px;
  margin-left: 0px;
  grid-area: 2/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-ldwve0jd-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-ldwve0jd:not(.comp-lworj8qt_r_comp-ldwve0jd-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le16ss0u {
  height: auto;
  width: 100.00358765200009%;
  min-height: 0px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-le16ss0u-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le16ss0u:not(.comp-lworj8qt_r_comp-le16ss0u-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fiy {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fiy-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fiy:not(
    .comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fiy-container
  ) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
.comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fj2-container {
  box-sizing: border-box;
  row-gap: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(min-content, max-content);
  grid-template-columns: 1fr min-content min-content 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fj2 {
  position: relative;
  --is-sticky: 0;
  --top: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --brw: 0px;
  --brd: var(--color_13);
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46tqumo {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 0%;
  margin-right: 6px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/2/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46tqumo {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --alpha-backgroundColor: 0;
  --boxShadowToggleOn-boxShadow: none;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46tqumo html-image {
  overflow: clip;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46tqumo html-image img {
  height: 100%;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46trbc5 {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 6px;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/2/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46trbc5 {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --boxShadowToggleOn-boxShadow: none;
  --alpha-backgroundColor: 0;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46trbc5 html-image {
  overflow: clip;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46trbc5 html-image img {
  height: 100%;
}
#comp-lworj8qt_r_comp-le172tpv {
  min-height: 98px;
  --l_display: none;
  height: auto;
  width: 552px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: end;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -396.609375px;
  margin-left: 0px;
  grid-area: 1/1/3/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworj8qt_r_comp-le172tpv-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworj8qt_r_comp-le172tpv:not(.comp-lworj8qt_r_comp-le172tpv-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-kr1rltgy {
  width: 120px;
}
#comp-krj3kobl {
  width: 50px;
  height: 50px;
}
#comp-kr1rvfff {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kr1rvfg91inlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 103px;
}
#comp-kr1rvfg91 {
  width: 980px;
}
#comp-lt8rwg65 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg65inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg65inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg65inlineContent-gridContainer"]
  > [id="comp-kqz7m9g4"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqz7m9g4 {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kqz7m9heinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kqz7m9heinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kqz7m9heinlineContent-gridContainer"]
  > [id="comp-kqz8jbxi"] {
  position: relative;
  margin: 37px 0px 51px calc((100% - 980px) * 0.5);
  left: 95px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqz7m9heinlineContent-gridContainer"]
  > [id="comp-kqzaaf94"] {
  position: relative;
  margin: 50px 0px 10px calc((100% - 980px) * 0.5);
  left: 31px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqz7m9heinlineContent-gridContainer"]
  > [id="comp-lzkwpuam"] {
  position: relative;
  margin: 0px 0px 48px calc((100% - 980px) * 0.5);
  left: 227px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqz7m9heinlineContent-gridContainer"]
  > [id="comp-lworl7lh"] {
  position: relative;
  margin: 0px 0px 59px calc((100% - 980px) * 0.5);
  left: 369px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqz7m9he {
  width: 980px;
}
#comp-kqz8jbxi {
  --shd: 0px 0px 0px 0px rgba(0, 0, 0, 0.6);
  --dotsColor: var(--color_15);
  --arrowColor: var(--color_15);
  --rd: 0px;
  --brw: 0px;
  --brd: var(--color_15);
  --alpha-brd: 1;
  --alpha-arrowColor: 1;
  --alpha-dotsColor: 1;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kqz8jbxi:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kqz8jbxi {
  width: 786px;
  height: 378px;
}
#comp-kqz8jbyu {
  width: 786px;
}
[data-mesh-id="comp-kqz8jbyuinlineContent"] {
  height: auto;
  width: 786px;
}
[data-mesh-id="comp-kqz8jbyuinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kqz8jbyuinlineContent-gridContainer"]
  > [id="comp-kqz8lb9w"] {
  position: relative;
  margin: 30px 0px 11px 0;
  left: 58px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kqz8jbyuinlineContent-gridContainer"]
  > [id="comp-kr4udrum"] {
  position: relative;
  margin: 11px 0px 12px 0;
  left: 33px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kqz8lb9w {
  --rd: 25px 25px 25px 25px;
  --shd: none;
  --brd: var(--color_11);
  --brw: 0px;
  --sizeRd: 25px 25px 25px 25px;
  --sizeBrw: 0px;
  --trans: opacity 0.4s ease 0s;
  --bgh: var(--color_15);
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --boxShadowToggleOn-shd: none;
  --alpha-brd: 0;
  --alpha-bgh: 0;
}
#comp-kqz8lb9w {
  width: 683px;
  height: 337px;
}
#comp-kr4udrum {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kr4udrum {
  width: 720px;
  height: 355px;
}
#comp-kr3clmep {
  width: 786px;
}
[data-mesh-id="comp-kr3clmepinlineContent"] {
  height: auto;
  width: 786px;
}
[data-mesh-id="comp-kr3clmepinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr3clmepinlineContent-gridContainer"]
  > [id="comp-kr3clmft"] {
  position: relative;
  margin: 11px 0px 12px 0;
  left: 33px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr3clmft {
  --rd: 25px 25px 25px 25px;
  --shd: none;
  --brd: var(--color_11);
  --brw: 0px;
  --sizeRd: 25px 25px 25px 25px;
  --sizeBrw: 0px;
  --trans: opacity 0.4s ease 0s;
  --bgh: var(--color_15);
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --boxShadowToggleOn-shd: none;
  --alpha-brd: 0;
  --alpha-bgh: 0;
}
#comp-kr3clmft {
  width: 720px;
  height: 355px;
}
#comp-kr3cpidz {
  width: 786px;
}
[data-mesh-id="comp-kr3cpidzinlineContent"] {
  height: auto;
  width: 786px;
}
[data-mesh-id="comp-kr3cpidzinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr3cpidzinlineContent-gridContainer"]
  > [id="comp-kr3cpif4"] {
  position: relative;
  margin: 11px 0px 12px 0;
  left: 33px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr3cpif4 {
  --rd: 25px 25px 25px 25px;
  --shd: none;
  --brd: var(--color_11);
  --brw: 0px;
  --sizeRd: 25px 25px 25px 25px;
  --sizeBrw: 0px;
  --trans: opacity 0.4s ease 0s;
  --bgh: var(--color_15);
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --boxShadowToggleOn-shd: none;
  --alpha-brd: 0;
  --alpha-bgh: 0;
}
#comp-kr3cpif4 {
  width: 720px;
  height: 355px;
}
#comp-kqzaaf94 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kqzaaf94 {
  width: 180px;
  height: 150px;
}
#comp-lzkwpuam {
  width: 726px;
}
[data-mesh-id="comp-lzkwpuaminlineContent"] {
  height: auto;
  width: 726px;
}
[data-mesh-id="comp-lzkwpuaminlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lzkwpuaminlineContent-gridContainer"]
  > [id="comp-kr3bym7j"] {
  position: relative;
  margin: 0px 0px 0 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzkwpuaminlineContent-gridContainer"]
  > [id="comp-kr3bym7m1"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr3bym7j {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr3bym7j:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr3bym7j {
  width: 652px;
  height: auto;
}
#comp-kr3bym7m1 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr3bym7m1:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr3bym7m1 {
  width: 726px;
  height: auto;
}
#comp-lworl7lh {
  width: 300px;
}
[data-mesh-id="comp-lworl7lhinlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: auto;
  padding-bottom: 0px;
  box-sizing: border-box;
}
#comp-lworl7lh_r_comp-l4pcbn0d5 {
  --l_display: unset;
  min-width: 0px;
  min-height: 0px;
  width: auto;
  height: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l4pcbn0d5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0d5:not(.comp-lworl7lh_r_comp-l4pcbn0d5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0g {
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l4pcbn0g-container {
  box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0g {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: var(--color_11);
  --rd: 0px 0px 0px 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l4pcbn0m4 {
  height: auto;
  width: auto;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  position: relative;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: -0.00012500000002546585px;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l4pcbn0m4-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0m4:not(.comp-lworl7lh_r_comp-l4pcbn0m4-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0m4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l4pcbn0u4 {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: 100%;
  max-height: 99999px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  position: relative;
  margin-left: auto;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l4pcbn0u4-container {
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcbn0u4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-ldiom0w5 {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-ldiom0w5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-ldiom0w5:not(.comp-lworl7lh_r_comp-ldiom0w5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-ldiom0w5 {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l6dc7zat {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l6dc7zat-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l6dc7zat:not(.comp-lworl7lh_r_comp-l6dc7zat-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l6dc7zat {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l4pcd96z {
  min-height: 1px;
  --l_display: none;
  height: 387.296875px;
  width: 204px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  margin-left: 110px;
  margin-right: 110px;
  margin-top: 40px;
  margin-bottom: 40px;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworl7lh_r_comp-l4pcd96z .comp-lworl7lh_r_comp-l4pcd96z-container {
  box-sizing: border-box;
  position: relative;
  padding-left: 0%;
  padding-right: 0%;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4pcd96z:not(.comp-lworl7lh_r_comp-l4pcd96z-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l5kvyjcm {
  min-height: 0px;
  --l_display: none;
  height: auto;
  width: 100%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l5kvyjcm-container {
  box-sizing: border-box;
  padding-left: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(100px, max-content);
  grid-template-columns: min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l5kvyjcm:not(.comp-lworl7lh_r_comp-l5kvyjcm-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l5kvyjcm {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: 4px 6.93px 44px 8px rgba(24, 24, 24, 0.18);
  --gradient: none;
  --alpha-bg: 1;
  --alpha-brd: 0;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l6dck4qk {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l6dck4qk-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l6dck4qk {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-l4wou1cx {
  width: 99.99985416561341%;
  height: max-content;
  --l_display: none;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-l4wou1cx-container {
  box-sizing: border-box;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  flex-direction: column;
  --container-layout-type: flex-container-layout;
  --container-display: flex;
}
#comp-lworl7lh_r_comp-l4wou1cx:not(.comp-lworl7lh_r_comp-l4wou1cx-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-l4wou1cx {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-ldwuugcj {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: max-content;
  min-width: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-ldwuugcj-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: minmax(min-content, max-content) min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-ldwuugcj {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-ldwve0jd {
  min-height: 1px;
  --l_display: none;
  height: auto;
  width: 92px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: end;
  margin-top: 32.1015625px;
  margin-bottom: 0px;
  margin-right: 38.88306250000005px;
  margin-left: 0px;
  grid-area: 2/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-ldwve0jd-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-ldwve0jd:not(.comp-lworl7lh_r_comp-ldwve0jd-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le16ss0u {
  height: auto;
  width: 100.00358765200009%;
  min-height: 0px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-le16ss0u-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le16ss0u:not(.comp-lworl7lh_r_comp-le16ss0u-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fiy {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fiy-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fiy:not(
    .comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fiy-container
  ) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
.comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fj2-container {
  box-sizing: border-box;
  row-gap: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(min-content, max-content);
  grid-template-columns: 1fr min-content min-content 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fj2 {
  position: relative;
  --is-sticky: 0;
  --top: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --brw: 0px;
  --brd: var(--color_13);
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46tqumo {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 0%;
  margin-right: 6px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/2/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46tqumo {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --alpha-backgroundColor: 0;
  --boxShadowToggleOn-boxShadow: none;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46tqumo html-image {
  overflow: clip;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46tqumo html-image img {
  height: 100%;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46trbc5 {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 6px;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/2/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46trbc5 {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --boxShadowToggleOn-boxShadow: none;
  --alpha-backgroundColor: 0;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46trbc5 html-image {
  overflow: clip;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46trbc5 html-image img {
  height: 100%;
}
#comp-lworl7lh_r_comp-le172tpv {
  min-height: 98px;
  --l_display: none;
  height: auto;
  width: 552px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: end;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -396.609375px;
  margin-left: 0px;
  grid-area: 1/1/3/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworl7lh_r_comp-le172tpv-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworl7lh_r_comp-le172tpv:not(.comp-lworl7lh_r_comp-le172tpv-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lt8rwg651 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg651inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg651inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg651inlineContent-gridContainer"]
  > [id="comp-krd5t1p2"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lt8rwg651inlineContent-gridContainer"]
  > [id="comp-kr087fz8"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-krd5t1p2 {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-krd5t1r9inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-krd5t1r9inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-krd5t1r9inlineContent-gridContainer"]
  > [id="comp-krd5rgxp"] {
  position: relative;
  margin: 17px 0px 17px calc((100% - 980px) * 0.5);
  left: 65px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-krd5t1r9 {
  width: 980px;
}
#comp-krd5rgxp {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5rgxp:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5rgxp {
  width: 850px;
  height: auto;
}
#comp-kr087fz8 {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kr087g02inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr087g02inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 871px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr087g02inlineContent-gridContainer"]
  > [id="comp-lzl7ask2"] {
  position: relative;
  margin: 167px 0px 10px calc((100% - 326px) * 1);
  left: 39px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr09zccoinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr09zccoinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 871px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr09zccoinlineContent-gridContainer"]
  > [id="comp-lzl3khd3"] {
  position: relative;
  margin: 167px 0px 10px calc((100% - 328px) * 0.5);
  left: 30px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr09zjo2inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr09zjo2inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 871px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr09zjo2inlineContent-gridContainer"]
  > [id="comp-lzl3kk1d"] {
  position: relative;
  margin: 167px 0px 10px calc((100% - 326px) * 0);
  left: 33px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr087g02 {
  width: 326px;
}
#comp-lzl7ask2 {
  width: 260px;
}
[data-mesh-id="comp-lzl7ask2inlineContent"] {
  height: auto;
  width: 260px;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-kr3gg0br"] {
  position: relative;
  margin: 0px 0px 39px 0;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-krdcltup"] {
  position: relative;
  margin: 9px 0px 48px 0;
  left: 9px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-kr1qf900"] {
  position: relative;
  margin: 0px 0px 5px 0;
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-kr1qfoab"] {
  position: relative;
  margin: 0px 0px 11px 0;
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-kr1qf2av"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 30px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-krd5mivv"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 70px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-krd5mm5x"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 110px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-krd5mm6m"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 150px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl7ask2inlineContent-gridContainer"]
  > [id="comp-lzl77kzm"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 190px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr3gg0br:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr3gg0br {
  width: 250px;
  height: 250px;
}
#comp-krdcltup {
  --shd: none;
  --brw: 0px;
  --brd: 255, 255, 255;
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --alpha-brd: 0;
  --boxShadowToggleOn-shd: none;
}
#comp-krdcltup {
  width: 232px;
  height: 232px;
}
#comp-kr1qf900 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1qf900:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1qf900 {
  width: 260px;
  height: auto;
}
#comp-kr1qfoab {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1qfoab:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1qfoab {
  width: 260px;
  height: auto;
}
#comp-kr1qf2av {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1qf2av:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1qf2av {
  width: 40px;
  height: 40px;
}
#comp-krd5mivv {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5mivv:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5mivv {
  width: 40px;
  height: 40px;
}
#comp-krd5mm5x {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5mm5x:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5mm5x {
  width: 40px;
  height: 40px;
}
#comp-krd5mm6m {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5mm6m:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5mm6m {
  width: 40px;
  height: 40px;
}
#comp-lzl77kzm {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-lzl77kzm:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-lzl77kzm {
  width: 40px;
  height: 40px;
}
#comp-kr09zcco {
  width: 328px;
}
#comp-lzl3khd3 {
  width: 260px;
}
[data-mesh-id="comp-lzl3khd3inlineContent"] {
  height: auto;
  width: 260px;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-kr3ghf0k"] {
  position: relative;
  margin: 0px 0px 39px 0;
  left: 10px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krdcm822"] {
  position: relative;
  margin: 9px 0px 48px 0;
  left: 19px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-kr1qec5l"] {
  position: relative;
  margin: 0px 0px 5px 0;
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-kr1qegja"] {
  position: relative;
  margin: 0px 0px 11px 0;
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krd5owtj1"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 30px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krd5owtl1"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 70px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krd5owto1"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 110px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krd5owtq"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 150px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3khd3inlineContent-gridContainer"]
  > [id="comp-krd5owtr2"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 190px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr3ghf0k:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr3ghf0k {
  width: 250px;
  height: 250px;
}
#comp-krdcm822 {
  --shd: none;
  --brw: 0px;
  --brd: 255, 255, 255;
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --alpha-brd: 0;
  --boxShadowToggleOn-shd: none;
}
#comp-krdcm822 {
  width: 232px;
  height: 232px;
}
#comp-kr1qec5l {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1qec5l:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1qec5l {
  width: 260px;
  height: auto;
}
#comp-kr1qegja {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1qegja:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1qegja {
  width: 260px;
  height: auto;
}
#comp-krd5owtj1 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5owtj1:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5owtj1 {
  width: 40px;
  height: 40px;
}
#comp-krd5owtl1 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5owtl1:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5owtl1 {
  width: 40px;
  height: 40px;
}
#comp-krd5owto1 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5owto1:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5owto1 {
  width: 40px;
  height: 40px;
}
#comp-krd5owtq {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5owtq:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5owtq {
  width: 40px;
  height: 40px;
}
#comp-krd5owtr2 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5owtr2:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5owtr2 {
  width: 40px;
  height: 40px;
}
#comp-kr09zjo2 {
  width: 326px;
}
#comp-lzl3kk1d {
  width: 260px;
}
[data-mesh-id="comp-lzl3kk1dinlineContent"] {
  height: auto;
  width: 260px;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-kr3gjvn4"] {
  position: relative;
  margin: 0px 0px 39px 0;
  left: 5px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krdcmdf9"] {
  position: relative;
  margin: 9px 0px 48px 0;
  left: 14px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-kr1q9rob"] {
  position: relative;
  margin: 0px 0px 5px 0;
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-kr1q9wmo"] {
  position: relative;
  margin: 0px 0px 11px 0;
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krd5pf751"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 30px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krd5pf763"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 70px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krd5pf783"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 110px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krd5pf795"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 150px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lzl3kk1dinlineContent-gridContainer"]
  > [id="comp-krd5pf7b"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 190px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr3gjvn4:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr3gjvn4 {
  width: 250px;
  height: 250px;
}
#comp-krdcmdf9 {
  --shd: none;
  --brw: 0px;
  --brd: 255, 255, 255;
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --alpha-brd: 0;
  --boxShadowToggleOn-shd: none;
}
#comp-krdcmdf9 {
  width: 232px;
  height: 232px;
}
#comp-kr1q9rob {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1q9rob:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1q9rob {
  width: 260px;
  height: auto;
}
#comp-kr1q9wmo {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr1q9wmo:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr1q9wmo {
  width: 260px;
  height: auto;
}
#comp-krd5pf751 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5pf751:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5pf751 {
  width: 40px;
  height: 40px;
}
#comp-krd5pf763 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5pf763:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5pf763 {
  width: 40px;
  height: 40px;
}
#comp-krd5pf783 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5pf783:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5pf783 {
  width: 40px;
  height: 40px;
}
#comp-krd5pf795 {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5pf795:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5pf795 {
  width: 40px;
  height: 40px;
}
#comp-krd5pf7b {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd5pf7b:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd5pf7b {
  width: 40px;
  height: 40px;
}
#comp-lt8rwg66 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg66inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg66inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg66inlineContent-gridContainer"]
  > [id="comp-krd9i4ox"] {
  position: relative;
  margin: 0px 0px 0 calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lt8rwg66inlineContent-gridContainer"]
  > [id="comp-krd6cipl"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-krd9i4ox {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-krd9i4pwinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-krd9i4pwinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-krd9i4pwinlineContent-gridContainer"]
  > [id="comp-krd9i4py2"] {
  position: relative;
  margin: 6px 0px 0 calc((100% - 980px) * 0.5);
  left: 65px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-krd9i4pwinlineContent-gridContainer"]
  > [id="comp-krd8kp5y"] {
  position: relative;
  margin: 0px 0px 13px calc((100% - 980px) * 0.5);
  left: 165px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-krd9i4pw {
  width: 980px;
}
#comp-krd9i4py2 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd9i4py2:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd9i4py2 {
  width: 850px;
  height: auto;
}
#comp-krd8kp5y {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd8kp5y:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd8kp5y {
  width: 650px;
  height: auto;
}
#comp-krd6cipl {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-krd88r0kinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-krd88r0kinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 493px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-krd88r0kinlineContent-gridContainer"]
  > [id="comp-krd8xqgm"] {
  position: relative;
  margin: 70px 0px 10px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-krd88r0kinlineContent-gridContainer"]
  > [id="comp-krd8xrin"] {
  position: relative;
  margin: 70px 0px 10px calc((100% - 980px) * 0.5);
  left: 220px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-krd88r0kinlineContent-gridContainer"]
  > [id="comp-krd8wib7"] {
  position: relative;
  margin: 70px 0px 10px calc((100% - 980px) * 0.5);
  left: 778px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-krd88r0k {
  width: 980px;
}
#comp-krd8xqgm {
  --rd: 25px 25px 25px 25px;
  --shd: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  --brd: var(--color_11);
  --brw: 0px;
  --sizeRd: 25px 25px 25px 25px;
  --sizeBrw: 0px;
  --trans: opacity 0.4s ease 0s;
  --bgh: var(--color_15);
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --alpha-brd: 0;
  --alpha-bgh: 0;
}
#comp-krd8xqgm {
  width: 200px;
  height: 320px;
}
#comp-krd8xrin {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-krd8xrin:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-krd8xrin {
  width: 539px;
  height: 320px;
}
#comp-krd8wib7 {
  --rd: 25px 25px 25px 25px;
  --shd: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  --brd: var(--color_11);
  --brw: 0px;
  --sizeRd: 25px 25px 25px 25px;
  --sizeBrw: 0px;
  --trans: opacity 0.4s ease 0s;
  --bgh: var(--color_15);
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingBottom: 0px;
  --contentPaddingTop: 0px;
  --alpha-brd: 0;
  --alpha-bgh: 0;
}
#comp-krd8wib7 {
  width: 200px;
  height: 320px;
}
#comp-lt8rwg661 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg661inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg661inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg661inlineContent-gridContainer"]
  > [id="comp-kr08zo3z"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr08zo3z {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kr0a3chlinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr0a3chlinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr0a3chlinlineContent-gridContainer"]
  > [id="comp-kr1qjlbm"] {
  position: relative;
  margin: 80px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr0a3chlinlineContent-gridContainer"]
  > [id="comp-kr3eg1gz"] {
  position: relative;
  margin: 80px 0px 10px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr0a3chlinlineContent-gridContainer"]
  > [id="comp-kr3eebmf"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr0a3chlinlineContent-wedge-3"] {
  visibility: hidden;
  height: 832px;
  width: 0;
  grid-area: 1 / 1 / 3 / 2;
}
#comp-kr0a3chl {
  width: 980px;
}
#comp-kr1qjlbm {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}
[data-mesh-id="comp-kr1qjlccinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr1qjlccinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 860px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr1qjlccinlineContent-gridContainer"]
  > [id="comp-kriufl3s"] {
  position: relative;
  margin: 244px 0px 25px calc((100% - 326px) * 1);
  left: 63px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1qjlccinlineContent-gridContainer"]
  > [id="comp-kriufl4n"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 326px) * 1);
  left: 25px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr3f93yfinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr3f93yfinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 860px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr3f93yfinlineContent-gridContainer"]
  > [id="comp-kriuf1zy"] {
  position: relative;
  margin: 244px 0px 15px calc((100% - 327px) * 0.5);
  left: 62px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr3f93yfinlineContent-gridContainer"]
  > [id="comp-kriuf1zz"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 327px) * 0.5);
  left: 26px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kriuen6sinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kriuen6sinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 860px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kriuen6sinlineContent-gridContainer"]
  > [id="comp-kriug6ph"] {
  position: relative;
  margin: 284px 0px 25px calc((100% - 327px) * 0);
  left: 88px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kriuen6sinlineContent-gridContainer"]
  > [id="comp-kriug6om"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 327px) * 0);
  left: 26px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr1qjlcc {
  width: 326px;
}
#comp-kriufl3s {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kriufl3s {
  width: 200px;
  height: 190px;
}
#comp-kriufl4n {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kriufl4n {
  width: 275px;
  height: auto;
}
#comp-kr3f93yf {
  width: 327px;
}
#comp-kriuf1zy {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kriuf1zy {
  width: 200px;
  height: 200px;
}
#comp-kriuf1zz {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kriuf1zz {
  width: 275px;
  height: auto;
}
#comp-kriuen6s {
  width: 327px;
}
#comp-kriug6ph {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kriug6ph {
  width: 150px;
  height: 150px;
}
#comp-kriug6om {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
#comp-kriug6om {
  width: 275px;
  height: auto;
}
#comp-kr3eg1gz {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}
[data-mesh-id="comp-kr3eg1hq1inlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 97px;
}
#comp-kr3eg1hq1 {
  width: 980px;
}
#comp-kr3eebmf {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 980px;
}
[data-mesh-id="comp-kr3eebnb2inlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: 108px;
}
#comp-kr3eebnb2 {
  width: 980px;
}
#comp-lt8rwg67 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg67inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg67inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg67inlineContent-gridContainer"]
  > [id="comp-kritf8zv"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kritf8zv {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kritf9152inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kritf9152inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kritf9152inlineContent-gridContainer"]
  > [id="comp-kritgcf3"] {
  position: relative;
  margin: 22px 0px 0 calc((100% - 980px) * 0.5);
  left: 65px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kritf9152inlineContent-gridContainer"]
  > [id="comp-kritgcfy"] {
  position: relative;
  margin: 0px 0px 36px calc((100% - 980px) * 0.5);
  left: 165px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kritf9152inlineContent-gridContainer"]
  > [id="comp-kritibl3"] {
  position: relative;
  margin: 0px 0px 48px calc((100% - 980px) * 0.5);
  left: 154px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kritf9152 {
  width: 980px;
}
#comp-kritgcf3 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kritgcf3:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kritgcf3 {
  width: 850px;
  height: auto;
}
#comp-kritgcfy {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kritgcfy:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kritgcfy {
  width: 650px;
  height: auto;
}
#comp-kritibl3 {
  width: 672px;
}
[data-mesh-id="comp-kritibl3inlineContent"] {
  height: auto;
  width: 672px;
}
[data-mesh-id="comp-kritibl3inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kritibl3inlineContent-gridContainer"]
  > [id="comp-kritibmx"] {
  position: relative;
  margin: 156px 0px 10px 0;
  left: 276px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kritibl3inlineContent-gridContainer"]
  > [id="comp-kritibn6"] {
  position: relative;
  margin: 0px 0px 0px 0;
  left: 621px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kritibl3inlineContent-wedge-3"] {
  visibility: hidden;
  height: 388px;
  width: 0;
  grid-area: 1 / 1 / 3 / 2;
}
#comp-kritibmx {
  width: 120px;
  height: 120px;
}
#comp-kritibn6 {
  --maincolor: 255, 255, 255;
  --alpha-maincolor: 1;
  --progresscolor: 31, 223, 103;
  --alpha-progresscolor: 1;
  --disabledcolor: 141, 141, 141;
  --alpha-disabledcolor: 1;
  --textcolor: 45, 45, 45;
  --alpha-textcolor: 1;
}
#comp-kritibn6 {
  width: 51px;
  height: 44px;
}
#comp-lt8rwg671 {
  left: 0;
  margin-left: 0;
  width: 100%;
  min-width: 0;
}
[data-mesh-id="comp-lt8rwg671inlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-lt8rwg671inlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-lt8rwg671inlineContent-gridContainer"]
  > [id="comp-kr1sujdh"] {
  position: relative;
  margin: 0px 0px 0px calc((100% - 980px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-lt8rwg671inlineContent-gridContainer"]
  > [id="comp-krd9cm5s"] {
  position: relative;
  margin: 327px 0 0px 0;
  left: 0;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: stretch;
  align-self: start;
}
#comp-kr1sujdh {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 80px - 80px);
  min-width: 980px;
}
[data-mesh-id="comp-kr1sujexinlineContent"] {
  height: auto;
  width: 100%;
}
[data-mesh-id="comp-kr1sujexinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 348px;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr1sujexinlineContent-gridContainer"]
  > [id="comp-kr0bm0q5"] {
  position: relative;
  margin: 37px 0px 0 calc((100% - 568px) * 0.5);
  left: 44px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1sujexinlineContent-gridContainer"]
  > [id="comp-kr0blf8b"] {
  position: relative;
  margin: 0px 0px 31px calc((100% - 568px) * 0.5);
  left: 44px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1sujexinlineContent-gridContainer"]
  > [id="comp-lworlm1f"] {
  position: relative;
  margin: 0px 0px 10px calc((100% - 568px) * 0.5);
  left: 44px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
[data-mesh-id="comp-kr1yey4dinlineContent"] {
  height: auto;
  width: 100%;
  display: flex;
}
[data-mesh-id="comp-kr1yey4dinlineContent-gridContainer"] {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -40px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
[data-mesh-id="comp-kr1yey4dinlineContent-gridContainer"]
  > [id="comp-kr1ygt6k"] {
  position: relative;
  margin: 0px 0px 40px calc((100% - 412px) * 0.5);
  left: 10px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
#comp-kr1sujex {
  width: 568px;
}
#comp-kr0bm0q5 {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr0bm0q5:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr0bm0q5 {
  width: 500px;
  height: auto;
}
#comp-kr0blf8b {
  --blendMode: normal;
  --textShadow: 0px 0px transparent;
  --textOutline: 0px 0px transparent;
}
@media (prefers-reduced-motion: no-preference) {
  #comp-kr0blf8b:not([data-motion-enter="done"]) {
    opacity: 0;
  }
}
#comp-kr0blf8b {
  width: 500px;
  height: auto;
}
#comp-lworlm1f {
  width: 300px;
}
[data-mesh-id="comp-lworlm1finlineContent"] {
  height: auto;
  width: 100%;
  position: static;
  min-height: auto;
  padding-bottom: 0px;
  box-sizing: border-box;
}
#comp-lworlm1f_r_comp-l4pcbn0d5 {
  --l_display: unset;
  min-width: 0px;
  min-height: 0px;
  width: auto;
  height: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l4pcbn0d5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0d5:not(.comp-lworlm1f_r_comp-l4pcbn0d5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0g {
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l4pcbn0g-container {
  box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0g {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: var(--color_11);
  --rd: 0px 0px 0px 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l4pcbn0m4 {
  height: auto;
  width: auto;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  position: relative;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: -0.00012500000002546585px;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l4pcbn0m4-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0m4:not(.comp-lworlm1f_r_comp-l4pcbn0m4-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0m4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l4pcbn0u4 {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: 100%;
  max-height: 99999px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  position: relative;
  margin-left: auto;
  grid-area: 1/1/2/2;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l4pcbn0u4-container {
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcbn0u4 {
  --brw: 0px;
  --brd: 232, 230, 230;
  --alpha-brd: 1;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-bg: 0;
  --alphaBg: 1;
  --boxShadowToggleOn-shd: none;
  --alphaBrd: 0.18;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-ldiom0w5 {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-ldiom0w5-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-ldiom0w5:not(.comp-lworlm1f_r_comp-ldiom0w5-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-ldiom0w5 {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l6dc7zat {
  min-height: 393.90625px;
  --l_display: none;
  height: auto;
  width: 71.20370370370371%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0%;
  margin-left: 0%;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l6dc7zat-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l6dc7zat:not(.comp-lworlm1f_r_comp-l6dc7zat-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l6dc7zat {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l4pcd96z {
  min-height: 1px;
  --l_display: none;
  height: 387.296875px;
  width: 204px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  justify-self: center;
  margin-left: 110px;
  margin-right: 110px;
  margin-top: 40px;
  margin-bottom: 40px;
  grid-area: 1/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworlm1f_r_comp-l4pcd96z .comp-lworlm1f_r_comp-l4pcd96z-container {
  box-sizing: border-box;
  position: relative;
  padding-left: 0%;
  padding-right: 0%;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4pcd96z:not(.comp-lworlm1f_r_comp-l4pcd96z-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l5kvyjcm {
  min-height: 0px;
  --l_display: none;
  height: auto;
  width: 100%;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: center;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l5kvyjcm-container {
  box-sizing: border-box;
  padding-left: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(100px, max-content);
  grid-template-columns: min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l5kvyjcm:not(.comp-lworlm1f_r_comp-l5kvyjcm-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l5kvyjcm {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: 4px 6.93px 44px 8px rgba(24, 24, 24, 0.18);
  --gradient: none;
  --alpha-bg: 1;
  --alpha-brd: 0;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l6dck4qk {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/3/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l6dck4qk-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: min-content min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l6dck4qk {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-l4wou1cx {
  width: 99.99985416561341%;
  height: max-content;
  --l_display: none;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-l4wou1cx-container {
  box-sizing: border-box;
  padding-right: 0px;
  display: var(--l_display, var(--container-display));
  flex-direction: column;
  --container-layout-type: flex-container-layout;
  --container-display: flex;
}
#comp-lworlm1f_r_comp-l4wou1cx:not(.comp-lworlm1f_r_comp-l4wou1cx-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-l4wou1cx {
  --brw: 0px;
  --brd: var(--color_15);
  --bg: 255, 255, 255;
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 0;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-ldwuugcj {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  width: max-content;
  min-width: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-ldwuugcj-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content min-content;
  grid-template-columns: minmax(min-content, max-content) min-content;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-ldwuugcj {
  --brw: 0px;
  --brd: 50, 65, 88;
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-ldwve0jd {
  min-height: 1px;
  --l_display: none;
  height: auto;
  width: 92px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: end;
  margin-top: 32.1015625px;
  margin-bottom: 0px;
  margin-right: 38.88306250000005px;
  margin-left: 0px;
  grid-area: 2/1/3/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-ldwve0jd-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-ldwve0jd:not(.comp-lworlm1f_r_comp-ldwve0jd-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le16ss0u {
  height: auto;
  width: 100.00358765200009%;
  min-height: 0px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: start;
  justify-self: start;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-le16ss0u-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le16ss0u:not(.comp-lworlm1f_r_comp-le16ss0u-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fiy {
  min-height: 0px;
  --l_display: unset;
  height: auto;
  min-width: 0px;
  width: auto;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: stretch;
  justify-self: stretch;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/1/2/2;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fiy-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fiy:not(
    .comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fiy-container
  ) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
.comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fj2-container {
  box-sizing: border-box;
  row-gap: 0px;
  column-gap: 0px;
  display: var(--l_display, var(--container-display));
  grid-template-rows: min-content minmax(min-content, max-content);
  grid-template-columns: 1fr min-content min-content 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fj2 {
  position: relative;
  --is-sticky: 0;
  --top: 0px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --brw: 0px;
  --brd: var(--color_13);
  --bg: var(--color_11);
  --rd: 0px;
  --shd: none;
  --gradient: none;
  --alpha-brd: 1;
  --alpha-bg: 0;
  --boxShadowToggleOn-shd: none;
  --bg-gradient: none;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46tqumo {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 0%;
  margin-right: 6px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/2/2/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46tqumo {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --alpha-backgroundColor: 0;
  --boxShadowToggleOn-boxShadow: none;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46tqumo html-image {
  overflow: clip;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46tqumo html-image img {
  height: 100%;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46trbc5 {
  height: 43px;
  width: 144px;
  --l_display: unset;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  display: var(--l_display, var(--display));
  align-self: start;
  justify-self: start;
  margin-left: 6px;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-area: 1/3/2/4;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46trbc5 {
  --backgroundColor: 0, 0, 0;
  --borderColor: 255, 255, 255;
  --alpha-borderColor: 1;
  --borderWidth: 0px;
  --cornerRadius: 0px;
  --boxShadow: none;
  --mediaOpacity: 1;
  --blendMode: normal;
  --boxShadowToggleOn-boxShadow: none;
  --alpha-backgroundColor: 0;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46trbc5 html-image {
  overflow: clip;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46trbc5 html-image img {
  height: 100%;
}
#comp-lworlm1f_r_comp-le172tpv {
  min-height: 98px;
  --l_display: none;
  height: auto;
  width: 552px;
  top: calc(var(--is-sticky) * (var(--top) + var(--sticky-offset)));
  --comp-display: unset;
  align-self: center;
  justify-self: end;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -396.609375px;
  margin-left: 0px;
  grid-area: 1/1/3/3;
  position: relative;
  --is-sticky: 0;
  --top: 0px;
}
.comp-lworlm1f_r_comp-le172tpv-container {
  box-sizing: border-box;
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  --container-layout-type: grid-container-layout;
  --container-display: grid;
}
#comp-lworlm1f_r_comp-le172tpv:not(.comp-lworlm1f_r_comp-le172tpv-container) {
  display: var(--l_display, var(--container-display));
  grid-template-rows: 1fr;
  grid-template-columns: minmax(0, 1fr);
  --container-display: grid;
}
#comp-kr1yey4d {
  width: 412px;
}
#comp-kr1ygt6k {
  --contentPaddingLeft: 0px;
  --contentPaddingRight: 0px;
  --contentPaddingTop: 0px;
  --contentPaddingBottom: 0px;
}
#comp-kr1ygt6k {
  width: 335px;
  height: 348px;
}
#comp-krd9cm5s {
  width: 100%;
  left: 0;
  margin-left: 0;
  min-width: initial;
  height: 21px;
}
</style > <style id="compCssMappers_c1dmp" > #c1dmp {
  width: auto;
  min-height: 40px;
}
#pageBackground_c1dmp {
  --bg-position: absolute;
  --bg-overlay-color: rgb(var(--color_23));
  --bg-gradient: none;
}
#comp-lt8rwg64 {
  --bg-overlay-color: rgb(var(--color_41));
  --bg-gradient: none;
  min-width: 980px;
}
#comp-kqz0q5cn {
  --fill-layer-image-opacity: 0.5;
  --fill-layer-background-media-position: fixed;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_41));
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kqz0q5dp {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 118px;
  --column-flex: 118;
}
#comp-krj3idhf {
  --fill-opacity: 1;
  --stroke-width: 0;
  --stroke: #5e97ff;
  --stroke-opacity: 1;
  --fill: #2e69ff;
}
#comp-kr1rlpak {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 742px;
  --column-flex: 742;
}
#comp-kr4vv9ur {
  --height: 158px;
  --width: 687px;
}
#comp-lworj8qt {
  display: block;
}
.device-mobile-optimized #comp-lworj8qt_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworj8qt_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworj8qt_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworj8qt_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworj8qt_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworj8qt_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworj8qt_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworj8qt_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworj8qt_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-kr1rltgy {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 120px;
  --column-flex: 120;
}
#comp-krj3kobl {
  --fill-opacity: 1;
  --stroke-width: 0;
  --stroke: #5e97ff;
  --stroke-opacity: 1;
  --fill: #2e69ff;
  --flip: scale(-1, 1);
}
#comp-kr1rvfff {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr1rvfg91 {
  --fill-layer-image-opacity: 1;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-lt8rwg65 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-kqz7m9g4 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kqz7m9he {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kqz8jbxi {
  height: 378px;
  --nav-dot-section-display: none;
  --nav-dot-section-bottom-margin: 23px;
  --nav-dot-margin: 5.5px;
  --nav-dot-size: 6px;
  --nav-dot-size-selected: 9px;
  --nav-button-width: 12px;
  --nav-button-offset: 12px;
  --nav-button-display: block;
  --slides-overflow: hidden;
  --transition-duration: 5000ms;
}
#comp-kqz8jbyu {
  position: absolute;
  width: 100%;
  height: 100%;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
}
#comp-kqz8lb9w {
  --height: 337px;
  --width: 683px;
}
#comp-kr4udrum {
  --height: 355px;
  --width: 720px;
}
#comp-kr3clmep {
  position: absolute;
  width: 100%;
  height: 100%;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
}
#comp-kr3clmft {
  --height: 355px;
  --width: 720px;
}
#comp-kr3cpidz {
  position: absolute;
  width: 100%;
  height: 100%;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
}
#comp-kr3cpif4 {
  --height: 355px;
  --width: 720px;
}
#comp-kqzaaf94 {
  --height: 150px;
  --width: 180px;
}
#comp-lworl7lh {
  display: block;
}
.device-mobile-optimized #comp-lworl7lh_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworl7lh_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworl7lh_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworl7lh_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworl7lh_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworl7lh_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworl7lh_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworl7lh_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworl7lh_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lt8rwg651 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-krd5t1p2 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-krd5t1r9 {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kr087fz8 {
  --fill-layer-image-opacity: 1;
  --fill-layer-background-media-position: absolute;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr087g02 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 326px;
  --column-flex: 326;
}
#comp-kr3gg0br {
  --fill-opacity: 1;
  --stroke-width: 9;
  --stroke: #2e69ff;
  --stroke-opacity: 1;
  --fill: #ffc8b8;
  --svg-calculated-padding: 4px 5px 5px 4px;
  --svg-calculated-width: calc(100% - 9px);
  --svg-calculated-height: calc(100% - 9px);
}
#comp-krdcltup {
  --height: 232px;
  --width: 232px;
}
#comp-kr1qfoab {
  --min-height: 190px;
}
#comp-kr1qf2av {
  --height: 40px;
  --width: 40px;
}
#comp-krd5mivv {
  --height: 40px;
  --width: 40px;
}
#comp-krd5mm5x {
  --height: 40px;
  --width: 40px;
}
#comp-krd5mm6m {
  --height: 40px;
  --width: 40px;
}
#comp-lzl77kzm {
  --height: 40px;
  --width: 40px;
}
#comp-kr09zcco {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 328px;
  --column-flex: 328;
}
#comp-kr3ghf0k {
  --fill-opacity: 1;
  --stroke-width: 9;
  --stroke: #2e69ff;
  --stroke-opacity: 1;
  --fill: #b9cdff;
  --svg-calculated-padding: 4px 5px 5px 4px;
  --svg-calculated-width: calc(100% - 9px);
  --svg-calculated-height: calc(100% - 9px);
}
#comp-krdcm822 {
  --height: 232px;
  --width: 232px;
}
#comp-krd5owtj1 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5owtl1 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5owto1 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5owtq {
  --height: 40px;
  --width: 40px;
}
#comp-krd5owtr2 {
  --height: 40px;
  --width: 40px;
}
#comp-kr09zjo2 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 326px;
  --column-flex: 326;
}
#comp-kr3gjvn4 {
  --fill-opacity: 1;
  --stroke-width: 9;
  --stroke: #2e69ff;
  --stroke-opacity: 1;
  --fill: #e8a6f7;
  --svg-calculated-padding: 4px 5px 5px 4px;
  --svg-calculated-width: calc(100% - 9px);
  --svg-calculated-height: calc(100% - 9px);
}
#comp-krdcmdf9 {
  --height: 232px;
  --width: 232px;
}
#comp-kr1q9wmo {
  --min-height: 190px;
}
#comp-krd5pf751 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5pf763 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5pf783 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5pf795 {
  --height: 40px;
  --width: 40px;
}
#comp-krd5pf7b {
  --height: 40px;
  --width: 40px;
}
#comp-lt8rwg66 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-krd9i4ox {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-krd9i4pw {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-krd8kp5y {
  --min-height: 29px;
}
#comp-krd6cipl {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-krd88r0k {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-krd8xqgm {
  --height: 320px;
  --width: 200px;
}
#comp-krd8xrin {
  --height: 320px;
  --width: 539px;
}
#comp-krd8wib7 {
  --height: 320px;
  --width: 200px;
}
#comp-lt8rwg661 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-kr08zo3z {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr0a3chl {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kr1qjlbm {
  --fill-layer-image-opacity: 0.4;
  --fill-layer-background-media-position: fixed;
  --fill-layer-background-media-pointer-events: none;
  --bg-overlay-color: rgb(var(--color_41));
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr1qjlcc {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 326px;
  --column-flex: 326;
}
#comp-kriufl3s {
  --height: 190px;
  --width: 200px;
}
#comp-kr3f93yf {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 327px;
  --column-flex: 327;
}
#comp-kriuf1zy {
  --height: 200px;
  --width: 200px;
}
#comp-kriuen6s {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 327px;
  --column-flex: 327;
}
#comp-kriug6ph {
  --height: 150px;
  --width: 150px;
}
#comp-kr3eg1gz {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr3eg1hq1 {
  --fill-layer-image-opacity: 1;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kr3eebmf {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr3eebnb2 {
  --fill-layer-image-opacity: 1;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-lt8rwg67 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-kritf8zv {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kritf9152 {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 980px;
  --column-flex: 980;
}
#comp-kritgcfy {
  --min-height: 29px;
}
#comp-kritibl3 {
  --fill-layer-video-opacity: 1;
  --bg-overlay-color: rgb(33, 33, 33);
  --bg-gradient: none;
  --border-radius: 24px 24px 24px 24px;
  --box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.6);
  --fill-container-overflow: hidden;
  --fill-container-transform: translateZ(0);
  --fill-transform: rotate(0.01deg);
  --border-compensate-margin: 0px;
  --fill-layer-background-overlay-transform: translateZ(0);
  height: 432px;
}
#comp-kritibmx {
  opacity: 0.75;
}
#comp-kritibn6 {
  undefined: #2d2d2d;
  fill-opacity: 1;
  stroke-width: 0;
  stroke: #000000;
  stroke-opacity: 1;
  fill: #ffffff;
}
#comp-lt8rwg671 {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  min-width: 980px;
}
#comp-kr1sujdh {
  --fill-layer-image-opacity: 1;
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  --padding: 0px;
  --margin: 0px;
  min-width: 980px;
  --firstChildMarginTop: -1px;
  --lastChildMarginBottom: -1px;
  --items-direction: row;
}
#comp-kr1sujex {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 568px;
  --column-flex: 568;
}
#comp-kr0bm0q5 {
  --min-height: 36px;
}
#comp-kr0blf8b {
  --min-height: 29px;
}
#comp-lworlm1f {
  display: block;
}
.device-mobile-optimized #comp-lworlm1f_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworlm1f_r_comp-l4pcbn0g {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworlm1f_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworlm1f_r_comp-l4pcbn0u4 {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworlm1f_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworlm1f_r_comp-l6dck4qk {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworlm1f_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworlm1f_r_comp-ldwuugcj {
  --shc-mutated-brightness: 128, 128, 128;
}
.device-mobile-optimized #comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-lworlm1f_r_comp-le16ss0u_r_comp-l46t9fj2 {
  --shc-mutated-brightness: 128, 128, 128;
}
#comp-kr1yey4d {
  --bg-overlay-color: transparent;
  --bg-gradient: none;
  width: 100%;
  --column-width: 412px;
  --column-flex: 412;
}
#comp-kr1ygt6k {
  --height: 348px;
  --width: 335px;
}
</style > </pages-css > @-moz-document url-prefix() {
  :invalid {
    box-shadow: none;
  }
  :-moz-submit-invalid,
  :-moz-ui-invalid {
    box-shadow: none;
  }
}
@keyframes kYZz2Z {
  0% {
    animation-timing-function: ease-out;
    transform: rotate(180deg);
  }
  45% {
    transform: rotate(198deg);
  }
  55% {
    transform: rotate(234deg);
  }
  to {
    transform: rotate(540deg);
  }
}
@keyframes wlf4P4 {
  to {
    opacity: 1;
    transform: rotate(115deg);
  }
}
.Oqnisf {
  overflow: visible;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}
.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.VgO9Yg {
  height: 100%;
}
.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}
.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}
.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}
.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}
.K8MSra {
  opacity: 0;
}
.K8MSra {
  position: absolute;
  top: 0;
}
@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
.rM7ckN {
  --container-corvid-border-color: rgba(
    var(--brd, var(--color_15, color_15)),
    var(--alpha-brd, 1)
  );
  --container-corvid-border-size: var(--brw, 1px);
  --container-corvid-background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
  --overflow-wrapper-border-radius: var(--rd);
  --backdrop-filter: $backdrop-filter;
}
.YJEKQk {
  background: 0 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.InKIFF {
  -webkit-backdrop-filter: var(--backdrop-filter, none);
  backdrop-filter: var(--backdrop-filter, none);
  background-color: var(
    --container-corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1))
  );
  background-image: var(--bg-gradient, none);
  border: var(--container-corvid-border-width, var(--brw, 1px)) solid
    var(
      --container-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-radius: var(--rd, 5px);
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.YAf4Ti {
  bottom: 0 !important;
  height: unset !important;
  left: 0 !important;
  margin: 0 !important;
  max-height: unset !important;
  max-width: unset !important;
  min-height: unset !important;
  min-width: unset !important;
  padding: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: unset !important;
  z-index: unset !important;
}
.TMFrcJ {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.kn76TK {
  height: auto;
}
.kn76TK {
  position: relative;
  width: 100%;
}
.x4zVYf[data-focuscycled="active"] {
  outline: 1px solid transparent;
}
.x4zVYf[data-focuscycled="active"]:not(:focus-within) {
  outline: 2px solid transparent;
  transition: outline 0.01s ease;
}
.x4zVYf .TMFrcJ {
  background-color: transparent;
  border-bottom: var(--brwb, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-radius: var(--rd, 0);
  border-top: var(--brwt, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  bottom: 0;
  box-shadow: var(--shd, 0 0 5px rgba(0, 0, 0, 0.5));
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
.x4zVYf .mTQGgy {
  box-sizing: border-box;
  height: 100%;
  transition: all 0.3s ease;
}
.x4zVYf .QijXjn {
  background-color: var(--screenwidth-corvid-background-color, transparent);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}
.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.VgO9Yg {
  height: 100%;
}
.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}
.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}
.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}
.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}
.K8MSra {
  opacity: 0;
}
.K8MSra {
  position: absolute;
  top: 0;
}
@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
.JVi7i2 {
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 0, 0, 0), var(--alpha-bg, 0))
  );
  border: solid
    var(
      --corvid-border-color,
      rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
    )
    var(--corvid-border-width, var(--brw, 0));
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  box-shadow: var(--shd, 0 0 0 transparent);
}
.d3n4V3 {
  height: 100%;
  left: -var(--corvid-border-width, var(--brw, 0));
  position: absolute;
  top: -var(--corvid-border-width, var(--brw, 0));
  width: 100%;
}
.c7bzh_ {
  width: 100%;
}
.c7bzh_ .I9E5U_ {
  direction: rtl;
}
.c7bzh_.L27qsU {
  position: fixed;
  top: 0;
  z-index: var(--above-all-z-index);
}
.YCPMeD {
  background-color: rgba(
    var(--backgroundColor, var(--color_8, color_8)),
    var(--alpha-backgroundColor, 1)
  );
  border-color: rgba(
    var(--borderColor, var(--color_8, color_8)),
    var(--alpha-borderColor, 1)
  );
  border-radius: var(--cornerRadius, 0);
  border-style: solid;
  border-width: var(--borderWidth, 0);
  box-shadow: var(--boxShadow, none);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.YCPMeD:has(a:focus-visible) {
  outline: 2px solid #116dff !important;
  outline-offset: 1px;
}
.YCPMeD .h1DYhE {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.YCPMeD img {
  display: block;
  height: 100%;
  opacity: var(--mediaOpacity, 1);
  width: 100%;
}
.YCPMeD .QebvG3 {
  display: block;
  height: 100%;
  width: 100%;
}
.AKxYR5 {
  -webkit-tap-highlight-color: transparent;
  fill: var(--fill);
  fill-opacity: var(--fill-opacity);
  stroke: var(--stroke);
  stroke-opacity: var(--stroke-opacity);
  stroke-width: var(--stroke-width);
  filter: var(--drop-shadow, none);
  opacity: var(--opacity);
  transform: var(--flip);
}
.AKxYR5,
.AKxYR5 svg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.AKxYR5 svg {
  height: var(--svg-calculated-height, 100%);
  margin: auto;
  padding: var(--svg-calculated-padding, 0);
  width: var(--svg-calculated-width, 100%);
}
.AKxYR5 svg:not([data-type="ugc"]) {
  overflow: visible;
}
.VZYmYf * {
  vector-effect: non-scaling-stroke;
}
@supports (-webkit-hyphens: none) {
  .AKxYR5.vv0uGt {
    will-change: filter;
  }
}
.q4bY7T {
  position: absolute;
  top: 0;
}
.q4bY7T {
  height: 100%;
  width: 100%;
}
.oYv3_8 [data-mesh-id$="inlineContent-gridContainer"],
.oYv3_8 [data-mesh-id$="inlineContent"] {
  height: 100%;
}
.oYv3_8:before {
  grid-area: 1/1/2/2;
}
.F9nckB {
  border-color: var(--border-color);
  border-radius: var(--border-radius);
  border-style: var(--border-style);
  border-width: var(--border-width);
  bottom: 0;
  box-shadow: var(--box-shadow);
  filter: var(--fill-container-drop-shadow, none);
  left: 0;
  margin: var(--border-compensate-margin, 0);
  overflow: var(--fill-container-overflow);
  position: absolute;
  right: 0;
  top: 0;
  transform: var(--fill-container-transform);
}
.wmoHxw {
  transform: var(--fill-transform);
}
.Xh82G7 {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 0.15s, 0.5s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0),
    cubic-bezier(0.61, 1, 0.88, 1);
}
.JtS1Rf {
  cursor: pointer;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
}
.JtS1Rf:focus {
  opacity: 1;
}
.V9rZ5Z {
  width: 48px;
}
.TtArsF,
.ngHaxP {
  margin: 5px 10px 7px 8px;
  opacity: 0;
}
.oYv3_8[data-can-play] .Xh82G7 {
  opacity: 0.99;
}
@media (prefers-reduced-motion: no-preference) {
  .oYv3_8[data-has-play] {
    cursor: pointer;
  }
}
.oYv3_8[data-no-audio] .JtS1Rf {
  --display: none;
  display: none;
}
.oYv3_8[data-animate-poster="fade"] [class~="bgVideoposter"] {
  transition: opacity 1.6s ease-out;
}
.oYv3_8[data-show-canvas] [class~="bgVideoposter"] {
  opacity: 0;
}
.oYv3_8[data-playing] .Xh82G7 {
  opacity: 0;
  transition-duration: 0.15s, 0.3s;
}
.oYv3_8:not([data-playing]) .F9nckB:focus {
  z-index: auto !important;
}
.oYv3_8[data-show-audio] .JtS1Rf {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.oYv3_8[data-roll-in] .Xh82G7 {
  transform: scale(1.07);
  transition-duration: 0.25s, 0.5s;
}
.oYv3_8[data-roll-in][data-playing] .Xh82G7 {
  transition-duration: 0.25s, 0.3s;
}
.oYv3_8[data-audio="off"] .ngHaxP,
.oYv3_8[data-audio="on"] .TtArsF {
  opacity: 1;
}
.oYv3_8[data-stop] {
  cursor: auto;
}
.oYv3_8[data-stop] .Xh82G7 {
  opacity: 0;
  transform: none;
  transition: none;
}
.oYv3_8[data-stop] .JtS1Rf {
  cursor: auto;
  opacity: 0;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .oYv3_8 {
    cursor: pointer;
  }
  .oYv3_8 .Xh82G7 {
    opacity: 0.99;
  }
}
.AKxYR5 {
  -webkit-tap-highlight-color: transparent;
  fill: var(--fill);
  fill-opacity: var(--fill-opacity);
  stroke: var(--stroke);
  stroke-opacity: var(--stroke-opacity);
  stroke-width: var(--stroke-width);
  filter: var(--drop-shadow, none);
  opacity: var(--opacity);
  transform: var(--flip);
}
.AKxYR5,
.AKxYR5 svg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.AKxYR5 svg {
  height: var(--svg-calculated-height, 100%);
  margin: auto;
  padding: var(--svg-calculated-padding, 0);
  width: var(--svg-calculated-width, 100%);
}
.AKxYR5 svg:not([data-type="ugc"]) {
  overflow: visible;
}
.VZYmYf * {
  vector-effect: non-scaling-stroke;
}
@supports (-webkit-hyphens: none) {
  .AKxYR5.vv0uGt {
    will-change: filter;
  }
}
.q4bY7T {
  position: absolute;
  top: 0;
}
.q4bY7T {
  height: 100%;
  width: 100%;
}
.oYv3_8 [data-mesh-id$="inlineContent-gridContainer"],
.oYv3_8 [data-mesh-id$="inlineContent"] {
  height: 100%;
}
.oYv3_8:before {
  grid-area: 1/1/2/2;
}
.F9nckB {
  border-color: var(--border-color);
  border-radius: var(--border-radius);
  border-style: var(--border-style);
  border-width: var(--border-width);
  bottom: 0;
  box-shadow: var(--box-shadow);
  filter: var(--fill-container-drop-shadow, none);
  left: 0;
  margin: var(--border-compensate-margin, 0);
  overflow: var(--fill-container-overflow);
  position: absolute;
  right: 0;
  top: 0;
  transform: var(--fill-container-transform);
}
.wmoHxw {
  transform: var(--fill-transform);
}
.Xh82G7 {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 0.15s, 0.5s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0),
    cubic-bezier(0.61, 1, 0.88, 1);
}
.JtS1Rf {
  cursor: pointer;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
}
.JtS1Rf:focus {
  opacity: 1;
}
.V9rZ5Z {
  width: 48px;
}
.TtArsF,
.ngHaxP {
  margin: 5px 10px 7px 8px;
  opacity: 0;
}
.oYv3_8[data-can-play] .Xh82G7 {
  opacity: 0.99;
}
@media (prefers-reduced-motion: no-preference) {
  .oYv3_8[data-has-play] {
    cursor: pointer;
  }
}
.oYv3_8[data-no-audio] .JtS1Rf {
  --display: none;
  display: none;
}
.oYv3_8[data-animate-poster="fade"] [class~="bgVideoposter"] {
  transition: opacity 1.6s ease-out;
}
.oYv3_8[data-show-canvas] [class~="bgVideoposter"] {
  opacity: 0;
}
.oYv3_8[data-playing] .Xh82G7 {
  opacity: 0;
  transition-duration: 0.15s, 0.3s;
}
.oYv3_8:not([data-playing]) .F9nckB:focus {
  z-index: auto !important;
}
.oYv3_8[data-show-audio] .JtS1Rf {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.oYv3_8[data-roll-in] .Xh82G7 {
  transform: scale(1.07);
  transition-duration: 0.25s, 0.5s;
}
.oYv3_8[data-roll-in][data-playing] .Xh82G7 {
  transition-duration: 0.25s, 0.3s;
}
.oYv3_8[data-audio="off"] .ngHaxP,
.oYv3_8[data-audio="on"] .TtArsF {
  opacity: 1;
}
.oYv3_8[data-stop] {
  cursor: auto;
}
.oYv3_8[data-stop] .Xh82G7 {
  opacity: 0;
  transform: none;
  transition: none;
}
.oYv3_8[data-stop] .JtS1Rf {
  cursor: auto;
  opacity: 0;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .oYv3_8 {
    cursor: pointer;
  }
  .oYv3_8 .Xh82G7 {
    opacity: 0.99;
  }
}
.q4bY7T {
  position: absolute;
  top: 0;
}
.q4bY7T {
  height: 100%;
  width: 100%;
}
.oYv3_8 [data-mesh-id$="inlineContent-gridContainer"],
.oYv3_8 [data-mesh-id$="inlineContent"] {
  height: 100%;
}
.oYv3_8:before {
  grid-area: 1/1/2/2;
}
.F9nckB {
  border-color: var(--border-color);
  border-radius: var(--border-radius);
  border-style: var(--border-style);
  border-width: var(--border-width);
  bottom: 0;
  box-shadow: var(--box-shadow);
  filter: var(--fill-container-drop-shadow, none);
  left: 0;
  margin: var(--border-compensate-margin, 0);
  overflow: var(--fill-container-overflow);
  position: absolute;
  right: 0;
  top: 0;
  transform: var(--fill-container-transform);
}
.wmoHxw {
  transform: var(--fill-transform);
}
.Xh82G7 {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 0.15s, 0.5s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0),
    cubic-bezier(0.61, 1, 0.88, 1);
}
.JtS1Rf {
  cursor: pointer;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
}
.JtS1Rf:focus {
  opacity: 1;
}
.V9rZ5Z {
  width: 48px;
}
.TtArsF,
.ngHaxP {
  margin: 5px 10px 7px 8px;
  opacity: 0;
}
.oYv3_8[data-can-play] .Xh82G7 {
  opacity: 0.99;
}
@media (prefers-reduced-motion: no-preference) {
  .oYv3_8[data-has-play] {
    cursor: pointer;
  }
}
.oYv3_8[data-no-audio] .JtS1Rf {
  --display: none;
  display: none;
}
.oYv3_8[data-animate-poster="fade"] [class~="bgVideoposter"] {
  transition: opacity 1.6s ease-out;
}
.oYv3_8[data-show-canvas] [class~="bgVideoposter"] {
  opacity: 0;
}
.oYv3_8[data-playing] .Xh82G7 {
  opacity: 0;
  transition-duration: 0.15s, 0.3s;
}
.oYv3_8:not([data-playing]) .F9nckB:focus {
  z-index: auto !important;
}
.oYv3_8[data-show-audio] .JtS1Rf {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
}
.oYv3_8[data-roll-in] .Xh82G7 {
  transform: scale(1.07);
  transition-duration: 0.25s, 0.5s;
}
.oYv3_8[data-roll-in][data-playing] .Xh82G7 {
  transition-duration: 0.25s, 0.3s;
}
.oYv3_8[data-audio="off"] .ngHaxP,
.oYv3_8[data-audio="on"] .TtArsF {
  opacity: 1;
}
.oYv3_8[data-stop] {
  cursor: auto;
}
.oYv3_8[data-stop] .Xh82G7 {
  opacity: 0;
  transform: none;
  transition: none;
}
.oYv3_8[data-stop] .JtS1Rf {
  cursor: auto;
  opacity: 0;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .oYv3_8 {
    cursor: pointer;
  }
  .oYv3_8 .Xh82G7 {
    opacity: 0.99;
  }
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}
.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.VgO9Yg {
  height: 100%;
}
.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}
.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}
.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}
.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}
.K8MSra {
  opacity: 0;
}
.K8MSra {
  position: absolute;
  top: 0;
}
@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
.rM7ckN {
  --container-corvid-border-color: rgba(
    var(--brd, var(--color_15, color_15)),
    var(--alpha-brd, 1)
  );
  --container-corvid-border-size: var(--brw, 1px);
  --container-corvid-background-color: rgba(
    var(--bg, var(--color_11, color_11)),
    var(--alpha-bg, 1)
  );
  --overflow-wrapper-border-radius: var(--rd);
  --backdrop-filter: $backdrop-filter;
}
.YJEKQk {
  background: 0 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.InKIFF {
  -webkit-backdrop-filter: var(--backdrop-filter, none);
  backdrop-filter: var(--backdrop-filter, none);
  background-color: var(
    --container-corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1))
  );
  background-image: var(--bg-gradient, none);
  border: var(--container-corvid-border-width, var(--brw, 1px)) solid
    var(
      --container-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-radius: var(--rd, 5px);
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.YAf4Ti {
  bottom: 0 !important;
  height: unset !important;
  left: 0 !important;
  margin: 0 !important;
  max-height: unset !important;
  max-width: unset !important;
  min-height: unset !important;
  min-width: unset !important;
  padding: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: unset !important;
  z-index: unset !important;
}
.mgXepW {
  min-width: -moz-min-content;
  min-width: min-content;
}
.LHrbPP {
  background: #fff;
  border-radius: 24px;
  color: #116dff;
  cursor: pointer;
  font-family: Helvetica, Arial, メイリオ, meiryo, ヒラギノ角ゴ pro w3,
    hiragino kaku gothic pro, sans-serif;
  font-size: 14px;
  height: 0;
  left: 50%;
  margin-left: -94px;
  opacity: 0;
  padding: 0 24px 0 24px;
  pointer-events: none;
  position: absolute;
  top: 60px;
  width: 0;
  z-index: 9999;
}
.LHrbPP:focus {
  border: 2px solid;
  height: 40px;
  opacity: 1;
  pointer-events: auto;
  width: auto;
}
.QodGTM.mDzRgi {
  --display: grid;
  background-color: transparent;
  box-sizing: border-box;
  display: var(--display);
  min-height: 50px;
  position: relative;
}
.QodGTM.mDzRgi .XvQ3FE {
  align-self: center;
  cursor: pointer;
  display: var(--nav-button-display);
  grid-area: 1/1/1/1;
  margin: 0 var(--nav-button-offset);
  position: absolute;
  width: var(--nav-button-width);
  z-index: 1;
}
.QodGTM.mDzRgi .XvQ3FE.CdshHv {
  justify-self: start;
}
.QodGTM.mDzRgi .XvQ3FE.Qinjwp {
  justify-self: end;
}
.QodGTM.mDzRgi .hDJzl4 {
  grid-area: 1/1/1/1;
  height: 100%;
  overflow: var(--slides-overflow);
  position: absolute;
  width: 100%;
}
.QodGTM.mDzRgi .hDJzl4 > * {
  overflow: var(--slides-overflow);
}
.QodGTM.mDzRgi .N2NGoO {
  border-radius: var(--rd, 0);
  bottom: 0;
  box-shadow: var(--shd, 0 0 0 rgba(0, 0, 0, 0.6));
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.QodGTM .XvQ3FE:hover {
  opacity: 0.6;
}
.QodGTM .XvQ3FE.Qinjwp {
  transform: scaleX(-1);
}
.QodGTM .XvQ3FE svg {
  fill: rgba(
    var(--arrowColor, var(--color_12, color_12)),
    var(--alpha-arrowColor, 1)
  );
  stroke: rgba(
    var(--arrowColor, var(--color_12, color_12)),
    var(--alpha-arrowColor, 1)
  );
  stroke-width: 1px;
}
.T9p3fN {
  transform: translateX(100%);
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}
.aA9V0P {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}
.aA9V0P {
  transform: translateY(0);
}
.imK94d .eF_jBL {
  border-radius: var(--rd, 0);
  will-change: var(--corners-overflow-fix-will-change, initial);
}
.imK94d .wfm0FO {
  border: var(--brw, 0) solid
    rgba(var(--brd, var(--color_11, color_11)), var(--alpha-brd, 1));
  border-radius: var(--rd, 0);
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}
.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.VgO9Yg {
  height: 100%;
}
.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}
.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}
.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}
.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}
.K8MSra {
  opacity: 0;
}
.K8MSra {
  position: absolute;
  top: 0;
}
@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
.snt4Te {
  direction: var(--direction);
  text-align: var(--align);
}
.snt4Te .rEindN {
  -webkit-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  direction: var(--inputDirection);
  display: block;
  font: var(--fnt, var(--font_8));
  height: var(--inputHeight);
  margin: 0;
  max-width: 100%;
  min-width: 100%;
  overflow-y: auto;
  padding-bottom: 3px;
  padding-inline-end: var(--textPaddingEnd);
  padding-top: var(--textPaddingTop);
  padding-inline-start: var(--textPaddingStart);
  padding-top: 0.75em;
  resize: none;
  text-align: var(--inputAlign, "inherit");
}
.snt4Te .rEindN::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.snt4Te .rEindN:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.snt4Te .rEindN::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.snt4Te .rEindN:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}
.snt4Te .rEindN:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}
.snt4Te:not(.pOExcs) .rEindN:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}
.snt4Te .PSkPrR {
  display: none;
}
.snt4Te.oKe0Po .PSkPrR {
  box-sizing: border-box;
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom, 14px);
  padding-inline-end: var(--labelPadding_end, 0);
  padding-inline-start: var(--labelPadding_start, 0);
  text-align: var(--labelAlign, inherit);
  width: 100%;
  word-break: break-word;
}
.MpKiNN {
  --display: flex;
  direction: var(--direction);
  display: var(--display);
  flex-direction: column;
  min-height: 25px;
  position: relative;
  text-align: var(--align, start);
}
.MpKiNN .pUnTVX {
  height: var(--inputHeight);
  position: relative;
}
.MpKiNN .KvoMHf {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
}
.MpKiNN .KvoMHf {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, 255, 255, 255), var(--alpha-bg, 1))
  );
  border-color: var(
    --corvid-border-color,
    rgba(var(--brd, 227, 227, 227), var(--alpha-brd, 1))
  );
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 1px));
  box-shadow: var(--shd, 0 0 0 transparent);
  box-sizing: border-box !important;
  direction: var(--inputDirection, "inherit");
  font: var(--fnt, var(--font_8));
  margin: 0;
  max-width: 100%;
  min-height: var(--inputHeight);
  padding: var(--textPadding);
  padding-inline-end: var(--textPadding_end);
  padding-inline-start: var(--textPadding_start);
  text-align: var(--inputAlign, "inherit");
  text-overflow: ellipsis;
  width: 100%;
}
.MpKiNN .KvoMHf[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  width: 100%;
}
.MpKiNN .KvoMHf::-moz-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.MpKiNN .KvoMHf:-ms-input-placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.MpKiNN .KvoMHf::placeholder {
  color: rgb(var(--txt2, var(--color_15, color_15)));
}
.MpKiNN .KvoMHf:hover {
  background-color: rgba(var(--bgh, 255, 255, 255), var(--alpha-bgh, 1));
  border-color: rgba(var(--brdh, 163, 217, 246), var(--alpha-brdh, 1));
  border-style: solid;
  border-width: var(--brwh, 1px);
}
.MpKiNN .KvoMHf:disabled {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 163, 217, 246), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--brwd, 1px);
  color: rgb(var(--txtd, 255, 255, 255));
}
.MpKiNN:not(.LyB02C) .KvoMHf:focus {
  background-color: rgba(var(--bgf, 255, 255, 255), var(--alpha-bgf, 1));
  border-color: rgba(var(--brdf, 163, 217, 246), var(--alpha-brdf, 1));
  border-style: solid;
  border-width: var(--brwf, 1px);
}
.MpKiNN .wPeA6j {
  display: none;
}
.MpKiNN.qzvPmW .wPeA6j {
  color: rgb(var(--txtlbl, var(--color_15, color_15)));
  direction: var(--labelDirection, inherit);
  display: inline-block;
  font: var(--fntlbl, var(--font_8));
  line-height: 1;
  margin-bottom: var(--labelMarginBottom);
  padding-inline-end: var(--labelPadding_end);
  padding-inline-start: var(--labelPadding_start);
  text-align: var(--labelAlign, inherit);
  word-break: break-word;
}
.MpKiNN.qzvPmW.lPl_oN .wPeA6j:after {
  color: rgba(var(--txtlblrq, 0, 0, 0), var(--alpha-txtlblrq, 0));
  content: " *";
  display: var(--requiredIndicationDisplay, none);
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.mGoGm2 {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.lDHlrQ {
  min-height: var(--image-min-height);
  min-width: var(--image-min-width);
}
.lDHlrQ img {
  filter: var(--filter-effect-svg-url);
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100% 100%);
  mask-size: var(--mask-size, 100% 100%);
  -o-object-position: var(--object-position);
  object-position: var(--object-position);
}
.dWLwCn .lDHlrQ img {
  box-shadow: 0 0 0 #000;
  position: static;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dWLwCn .mGoGm2 {
  background-color: rgba(
    var(--brd, var(--color_11, color_11)),
    var(--alpha-brd, 1)
  );
  border-color: rgba(
    var(--brd, var(--color_11, color_11)),
    var(--alpha-brd, 1)
  );
  border-radius: 50%;
  border-style: solid;
  border-width: var(--brw, 2px);
  box-shadow: var(--shd, 0 1px 3px rgba(0, 0, 0, 0.5));
  display: block;
  overflow: hidden;
}
.dWLwCn .lDHlrQ {
  border-radius: 50%;
  overflow: hidden;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.Ikn7zx {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.BJSaf1 {
  min-height: var(--image-min-height);
  min-width: var(--image-min-width);
}
.BJSaf1 img {
  filter: var(--filter-effect-svg-url);
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100% 100%);
  mask-size: var(--mask-size, 100% 100%);
  -o-object-position: var(--object-position);
  object-position: var(--object-position);
}
.LjV9wd .Ikn7zx {
  background-color: rgba(
    var(--brd, var(--color_11, color_11)),
    var(--alpha-brd, 1)
  );
  border-color: rgba(
    var(--brd, var(--color_11, color_11)),
    var(--alpha-brd, 1)
  );
  border-radius: var(--rd, 5px);
  border-style: solid;
  border-width: var(--brw, 2px);
  box-shadow: var(--shd, 0 1px 3px rgba(0, 0, 0, 0.5));
  display: block;
  height: 100%;
  overflow: hidden;
}
.LjV9wd .BJSaf1 {
  border-radius: calc(
    var(--sizeRd, var(--rd, 5px)) - var(--sizeBrw, var(--brw, 2px))
  );
  overflow: hidden;
}
.LjV9wd:after {
  background-color: rgba(
    var(--bgh, var(--color_15, color_15)),
    var(--alpha-bgh, 1)
  );
  border-radius: var(--rd, 5px);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: var(--trans, opacity 0.4s ease 0s);
  width: 100%;
}
.LjV9wd:hover:after {
  opacity: 1;
}
.PlZyDq {
  touch-action: manipulation;
}
.uDW_Qe {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: var(--label-align);
  min-width: 100%;
  text-align: initial;
  width: -moz-max-content;
  width: max-content;
}
.uDW_Qe:before {
  max-width: var(--margin-start, 0);
}
.uDW_Qe:after,
.uDW_Qe:before {
  align-self: stretch;
  content: "";
  flex-grow: 1;
}
.uDW_Qe:after {
  max-width: var(--margin-end, 0);
}
.FubTgk {
  height: 100%;
}
.FubTgk .uDW_Qe {
  border-radius: var(--corvid-border-radius, var(--rd, 0));
  bottom: 0;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(
    --trans1,
    border-color 0.4s ease 0s,
    background-color 0.4s ease 0s
  );
}
.FubTgk .uDW_Qe:link,
.FubTgk .uDW_Qe:visited {
  border-color: transparent;
}
.FubTgk .l7_2fn {
  color: var(--corvid-color, rgb(var(--txt, var(--color_15, color_15))));
  font: var(--fnt, var(--font_5));
  margin: 0;
  position: relative;
  transition: var(--trans2, color 0.4s ease 0s);
  white-space: nowrap;
}
.FubTgk[aria-disabled="false"] .uDW_Qe {
  background-color: var(
    --corvid-background-color,
    rgba(var(--bg, var(--color_17, color_17)), var(--alpha-bg, 1))
  );
  border: solid
    var(
      --corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    )
    var(--corvid-border-width, var(--brw, 0));
  cursor: pointer !important;
}
:host(.device-mobile-optimized) .FubTgk[aria-disabled="false"]:active .uDW_Qe,
body.device-mobile-optimized .FubTgk[aria-disabled="false"]:active .uDW_Qe {
  background-color: rgba(
    var(--bgh, var(--color_18, color_18)),
    var(--alpha-bgh, 1)
  );
  border-color: rgba(
    var(--brdh, var(--color_15, color_15)),
    var(--alpha-brdh, 1)
  );
}
:host(.device-mobile-optimized) .FubTgk[aria-disabled="false"]:active .l7_2fn,
body.device-mobile-optimized .FubTgk[aria-disabled="false"]:active .l7_2fn {
  color: rgb(var(--txth, var(--color_15, color_15)));
}
:host(:not(.device-mobile-optimized))
  .FubTgk[aria-disabled="false"]:hover
  .uDW_Qe,
body:not(.device-mobile-optimized)
  .FubTgk[aria-disabled="false"]:hover
  .uDW_Qe {
  background-color: rgba(
    var(--bgh, var(--color_18, color_18)),
    var(--alpha-bgh, 1)
  );
  border-color: rgba(
    var(--brdh, var(--color_15, color_15)),
    var(--alpha-brdh, 1)
  );
}
:host(:not(.device-mobile-optimized))
  .FubTgk[aria-disabled="false"]:hover
  .l7_2fn,
body:not(.device-mobile-optimized)
  .FubTgk[aria-disabled="false"]:hover
  .l7_2fn {
  color: rgb(var(--txth, var(--color_15, color_15)));
}
.FubTgk[aria-disabled="true"] .uDW_Qe {
  background-color: rgba(var(--bgd, 204, 204, 204), var(--alpha-bgd, 1));
  border-color: rgba(var(--brdd, 204, 204, 204), var(--alpha-brdd, 1));
  border-style: solid;
  border-width: var(--corvid-border-width, var(--brw, 0));
}
.FubTgk[aria-disabled="true"] .l7_2fn {
  color: rgb(var(--txtd, 255, 255, 255));
}
:host(:not(.device-mobile-optimized)) .CohWsy,
body:not(.device-mobile-optimized) .CohWsy {
  display: flex;
}
:host(:not(.device-mobile-optimized)) .V5AUxf,
body:not(.device-mobile-optimized) .V5AUxf {
  -moz-column-gap: var(--margin);
  column-gap: var(--margin);
  display: flex;
  flex-direction: var(--items-direction);
  margin: 0 auto;
  position: relative;
  width: calc(100% - var(--padding) * 2);
}
:host(:not(.device-mobile-optimized)) .V5AUxf > *,
body:not(.device-mobile-optimized) .V5AUxf > * {
  flex: var(--column-flex) 1 0%;
  left: 0;
  margin-bottom: var(--padding);
  margin-top: var(--padding);
  min-width: 0;
  position: relative;
  top: 0;
}
:host(.device-mobile-optimized) .V5AUxf,
body.device-mobile-optimized .V5AUxf {
  display: block;
  padding: var(--padding) 0;
  position: relative;
}
:host(.device-mobile-optimized) .V5AUxf > *,
body.device-mobile-optimized .V5AUxf > * {
  margin-bottom: var(--margin);
  position: relative;
}
:host(.device-mobile-optimized) .V5AUxf > :first-child,
body.device-mobile-optimized .V5AUxf > :first-child {
  margin-top: var(--firstChildMarginTop, 0);
}
:host(.device-mobile-optimized) .V5AUxf > :last-child,
body.device-mobile-optimized .V5AUxf > :last-child {
  margin-bottom: var(--lastChildMarginBottom);
}
.LIhNy3 {
  backface-visibility: hidden;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.if7Vw2 {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.if7Vw2.f0uTJH {
  clip: rect(0, auto, auto, 0);
}
.if7Vw2 .i1tH8h {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.if7Vw2 .DXi4PB {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.if7Vw2 .DXi4PB img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .if7Vw2.f0uTJH {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.wG8dni {
  height: 100%;
}
.tcElKx {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.Yjj1af {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.rWP3Gv {
  left: 0;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: var(--fill-layer-background-media-position);
}
.Tr4n3d,
.rWP3Gv {
  height: 100%;
  top: 0;
  width: 100%;
}
.Tr4n3d {
  background-color: var(--fill-layer-background-overlay-color);
  opacity: var(--fill-layer-background-overlay-blend-opacity-fallback, 1);
  position: var(--fill-layer-background-overlay-position);
  transform: var(--fill-layer-background-overlay-transform);
}
@supports (mix-blend-mode: overlay) {
  .Tr4n3d {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
.YzqVVZ {
  overflow: visible;
  position: relative;
}
.MW5IWV {
  height: 100%;
  left: 0;
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100%);
  mask-size: var(--mask-size, 100%);
  overflow: hidden;
  pointer-events: var(--fill-layer-background-media-pointer-events);
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV.N3eg0s {
  clip: rect(0, auto, auto, 0);
}
.MW5IWV .Kv1aVt {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.MW5IWV .dLPlxY {
  height: var(--fill-layer-image-height, 100%);
  opacity: var(--fill-layer-image-opacity);
}
.MW5IWV .dLPlxY img {
  height: 100%;
  width: 100%;
}
@supports (-webkit-hyphens: none) {
  .MW5IWV.N3eg0s {
    clip: auto;
    -webkit-clip-path: inset(0);
  }
}
.VgO9Yg {
  height: 100%;
}
.LWbAav {
  background-color: var(--bg-overlay-color);
  background-image: var(--bg-gradient);
  transition: var(--inherit-transition);
}
.yK6aSC {
  opacity: var(--fill-layer-video-opacity);
}
.mNGsUM {
  transform: scale(var(--scale, 1));
  transition: var(--transform-duration, transform 0s);
}
.bX9O_S {
  -webkit-clip-path: var(--fill-layer-clip);
  clip-path: var(--fill-layer-clip);
}
.Z_wCwr,
.bX9O_S {
  position: absolute;
  top: 0;
}
.Jxk_UL img,
.Z_wCwr,
.bX9O_S {
  height: 100%;
  width: 100%;
}
.K8MSra {
  opacity: 0;
}
.K8MSra {
  position: absolute;
  top: 0;
}
@supports (mix-blend-mode: overlay) {
  .m4khSP {
    mix-blend-mode: var(--fill-layer-background-overlay-blend-mode);
    opacity: var(--fill-layer-background-overlay-blend-opacity, 1);
  }
}
._C0cVf {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.CJF7A2 {
  height: auto;
}
.CJF7A2,
.U4Bvut {
  position: relative;
  width: 100%;
}
:host(:not(.device-mobile-optimized)) .G5K6X8,
body:not(.device-mobile-optimized) .G5K6X8 {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}
.xU8fqS[data-focuscycled="active"] {
  outline: 1px solid transparent;
}
.xU8fqS[data-focuscycled="active"]:not(:focus-within) {
  outline: 2px solid transparent;
  transition: outline 0.01s ease;
}
.xU8fqS ._4XcTfy {
  background-color: var(
    --screenwidth-corvid-background-color,
    rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1))
  );
  border-bottom: var(--brwb, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  border-top: var(--brwt, 0) solid
    var(
      --screenwidth-corvid-border-color,
      rgba(var(--brd, var(--color_15, color_15)), var(--alpha-brd, 1))
    );
  bottom: 0;
  box-shadow: var(--shd, 0 0 5px rgba(0, 0, 0, 0.7));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.xU8fqS .gUbusX {
  background-color: rgba(
    var(--bgctr, var(--color_11, color_11)),
    var(--alpha-bgctr, 1)
  );
  border-radius: var(--rd, 0);
  bottom: var(--brwb, 0);
  top: var(--brwt, 0);
}
.xU8fqS .G5K6X8,
.xU8fqS .gUbusX {
  left: 0;
  position: absolute;
  right: 0;
}
.xU8fqS .G5K6X8 {
  bottom: 0;
  top: 0;
}
:host(.device-mobile-optimized) .xU8fqS .G5K6X8,
body.device-mobile-optimized .xU8fqS .G5K6X8 {
  left: 10px;
  right: 10px;
}
.SPY_vo {
  pointer-events: none;
}
.BmZ5pC {
  min-height: calc(100vh - var(--html-ads-height));
  min-width: var(--site-width);
  position: var(--bg-position);
  top: var(--html-ads-height);
}
.BmZ5pC {
  height: 100%;
  width: 100%;
}
.j7pOnl {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.BI8PVQ {
  min-height: var(--image-min-height);
  min-width: var(--image-min-width);
}
.BI8PVQ img {
  filter: var(--filter-effect-svg-url);
  -webkit-mask-image: var(--mask-image, none);
  mask-image: var(--mask-image, none);
  -webkit-mask-position: var(--mask-position, 0);
  mask-position: var(--mask-position, 0);
  -webkit-mask-repeat: var(--mask-repeat, no-repeat);
  mask-repeat: var(--mask-repeat, no-repeat);
  -webkit-mask-size: var(--mask-size, 100% 100%);
  mask-size: var(--mask-size, 100% 100%);
  -o-object-position: var(--object-position);
  object-position: var(--object-position);
}
.MazNVa {
  left: var(--left, auto);
  position: var(--position-fixed, static);
  top: var(--top, auto);
  z-index: var(--z-index, auto);
}
.MazNVa .BI8PVQ img {
  box-shadow: 0 0 0 #000;
  position: static;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.MazNVa .j7pOnl {
  display: block;
  overflow: hidden;
}
.MazNVa .BI8PVQ {
  overflow: hidden;
}
.PFkO7r {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.HT5ybB {
  height: auto;
  position: relative;
  width: 100%;
}
body:not(.responsive) .dBAkHi {
  align-self: start;
  grid-area: 1/1/1/1;
  height: 100%;
  justify-self: stretch;
  left: 0;
  position: relative;
}
:host(:not(.device-mobile-optimized)) .PFkO7r,
body:not(.device-mobile-optimized) .PFkO7r {
  margin-left: calc((100% - var(--site-width)) / 2);
  width: var(--site-width);
}
:host(.device-mobile-optimized) .PFkO7r,
body.device-mobile-optimized .PFkO7r {
  left: 10px;
  right: 10px;
}
.r4OX7l,
.xTjc1A {
  box-sizing: border-box;
  height: 100%;
  overflow: visible;
  position: relative;
  width: auto;
}
.r4OX7l[data-state~="header"] a,
.r4OX7l[data-state~="header"] div,
[data-state~="header"].xTjc1A a,
[data-state~="header"].xTjc1A div {
  cursor: default !important;
}
.r4OX7l .UiHgGh,
.xTjc1A .UiHgGh {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.xTjc1A {
  --display: inline-block;
  cursor: pointer;
  display: var(--display);
  font: var(--fnt, var(--font_1));
}
.xTjc1A .yRj2ms {
  padding: 0 var(--pad, 5px);
}
.xTjc1A .JS76Uv {
  color: rgb(var(--txt, var(--color_15, color_15)));
  display: inline-block;
  padding: 0 10px;
  transition: var(--trans, color 0.4s ease 0s);
}
.xTjc1A[data-state~="drop"] {
  display: block;
  width: 100%;
}
.xTjc1A[data-state~="drop"] .JS76Uv {
  padding: 0 0.5em;
}
.xTjc1A[data-state~="link"]:hover .JS76Uv,
.xTjc1A[data-state~="over"] .JS76Uv {
  color: rgb(var(--txth, var(--color_14, color_14)));
  transition: var(--trans, color 0.4s ease 0s);
}
.xTjc1A[data-state~="selected"] .JS76Uv {
  color: rgb(var(--txts, var(--color_14, color_14)));
  transition: var(--trans, color 0.4s ease 0s);
}
.NHM1d1 {
  overflow-x: hidden;
}
.NHM1d1 .R_TAzU {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.NHM1d1 .R_TAzU .y7qwii {
  height: calc(100% - (var(--menuTotalBordersY, 0px)));
  overflow: visible;
  white-space: nowrap;
  width: calc(100% - (var(--menuTotalBordersX, 0px)));
}
.NHM1d1 .R_TAzU .y7qwii .Tg1gOB {
  display: inline-block;
}
.NHM1d1 .h3jCPd {
  display: block;
  opacity: 1;
  z-index: 99999;
}
.NHM1d1 .h3jCPd .wkJ2fp {
  display: inherit;
  overflow: visible;
  visibility: inherit;
  white-space: nowrap;
  width: auto;
}
.NHM1d1 .h3jCPd .p90CkU {
  display: inline-block;
}
.XwCBRN > nav {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.XwCBRN .h3jCPd,
.XwCBRN .y7qwii,
.XwCBRN > nav {
  position: absolute;
}
.XwCBRN .h3jCPd {
  margin-top: 7px;
  visibility: hidden;
}
.XwCBRN .h3jCPd[data-dropMode="dropUp"] {
  margin-bottom: 7px;
  margin-top: 0;
}
.XwCBRN .wkJ2fp {
  background-color: rgba(
    var(--bgDrop, var(--color_11, color_11)),
    var(--alpha-bgDrop, 1)
  );
  border-radius: var(--rd, 0);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, 0.6));
}
.T9p3fN {
  transform: translateX(100%);
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}
.aA9V0P {
  transition: transform var(--transition-duration)
    cubic-bezier(0.87, 0, 0.13, 1);
}
.aA9V0P {
  transform: translateY(0);
}
body:not(.responsive) .JsJXaX {
  overflow-x: clip;
}
[data-view-transition="page-transition"] .JsJXaX {
  view-transition-name: page-group;
}
.AnQkDU {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 100%;
}
.AnQkDU > div {
  align-self: stretch !important;
  grid-area: 1/1/2/2;
  justify-self: stretch !important;
}
.AKxYR5 {
  -webkit-tap-highlight-color: transparent;
  fill: var(--fill);
  fill-opacity: var(--fill-opacity);
  stroke: var(--stroke);
  stroke-opacity: var(--stroke-opacity);
  stroke-width: var(--stroke-width);
  filter: var(--drop-shadow, none);
  opacity: var(--opacity);
  transform: var(--flip);
}
.AKxYR5,
.AKxYR5 svg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.AKxYR5 svg {
  height: var(--svg-calculated-height, 100%);
  margin: auto;
  padding: var(--svg-calculated-padding, 0);
  width: var(--svg-calculated-width, 100%);
}
.AKxYR5 svg:not([data-type="ugc"]) {
  overflow: visible;
}
.VZYmYf * {
  vector-effect: non-scaling-stroke;
}
@supports (-webkit-hyphens: none) {
  .AKxYR5.vv0uGt {
    will-change: filter;
  }
}
.HcOXKn {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
ol.font_100,
ul.font_100 {
  color: #080808;
  font-family: "Arial, Helvetica, sans-serif", serif;
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}
ol.font_100 li,
ul.font_100 li {
  margin-bottom: 12px;
}
ol.html-list-text-align,
ul.html-list-text-align {
  list-style-position: inside;
}
ol.html-list-text-align h1,
ol.html-list-text-align h2,
ol.html-list-text-align h3,
ol.html-list-text-align h4,
ol.html-list-text-align h5,
ol.html-list-text-align h6,
ol.html-list-text-align p,
ul.html-list-text-align h1,
ul.html-list-text-align h2,
ul.html-list-text-align h3,
ul.html-list-text-align h4,
ul.html-list-text-align h5,
ul.html-list-text-align h6,
ul.html-list-text-align p {
  display: inline;
}
.QxJLC3 [data-attr-richtext-marker="true"] {
  display: block;
}
.QxJLC3 [data-attr-richtext-marker="true"] table {
  border-collapse: collapse;
  margin: 15px 0;
  width: 100%;
}
.QxJLC3 [data-attr-richtext-marker="true"] table td {
  padding: 12px;
  position: relative;
}
.QxJLC3 [data-attr-richtext-marker="true"] table td:after {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
}
.QxJLC3 [data-attr-richtext-marker="true"] table tr td:last-child:after {
  border-right: 1px solid currentColor;
}
.QxJLC3 [data-attr-richtext-marker="true"] table tr:first-child td:after {
  border-top: 1px solid currentColor;
}
.SxM0TO blockquote,
.SxM0TO h1,
.SxM0TO h2,
.SxM0TO h3,
.SxM0TO h4,
.SxM0TO h5,
.SxM0TO h6,
.SxM0TO p {
  letter-spacing: normal;
  line-height: normal;
}
.SxM0TO,
.c9GqVL {
  word-wrap: break-word;
  direction: var(--text-direction);
  min-height: var(--min-height);
  min-width: var(--min-width);
  mix-blend-mode: var(--blendMode, normal);
  overflow-wrap: break-word;
  pointer-events: none;
  text-align: start;
  text-shadow: var(--textOutline, 0 0 transparent),
    var(--textShadow, 0 0 transparent);
  text-transform: var(--textTransform, "none");
}
.SxM0TO > *,
.c9GqVL > * {
  pointer-events: auto;
}
.SxM0TO li,
.c9GqVL li {
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}
.SxM0TO ol,
.SxM0TO ul,
.c9GqVL ol,
.c9GqVL ul {
  letter-spacing: normal;
  line-height: normal;
  margin-inline-end: 0;
  margin-inline-start: 0.5em;
  padding-inline-end: 0;
  padding-inline-start: 1.3em;
}
.SxM0TO ul,
.c9GqVL ul {
  list-style-type: disc;
}
.SxM0TO ol,
.c9GqVL ol {
  list-style-type: decimal;
}
.SxM0TO ol ul,
.SxM0TO ul ul,
.c9GqVL ol ul,
.c9GqVL ul ul {
  list-style-type: circle;
}
.SxM0TO ol ol ul,
.SxM0TO ol ul ul,
.SxM0TO ul ol ul,
.SxM0TO ul ul ul,
.c9GqVL ol ol ul,
.c9GqVL ol ul ul,
.c9GqVL ul ol ul,
.c9GqVL ul ul ul {
  list-style-type: square;
}
.SxM0TO blockquote,
.SxM0TO h1,
.SxM0TO h2,
.SxM0TO h3,
.SxM0TO h4,
.SxM0TO h5,
.SxM0TO h6,
.SxM0TO p,
.c9GqVL blockquote,
.c9GqVL h1,
.c9GqVL h2,
.c9GqVL h3,
.c9GqVL h4,
.c9GqVL h5,
.c9GqVL h6,
.c9GqVL p {
  margin-block: 0;
  margin: 0;
}
.SxM0TO a,
.c9GqVL a {
  color: inherit;
}
.Vd6aQZ {
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  white-space: nowrap;
}
.mHZSwn {
  display: none;
}
.HlRz5e {
  display: block;
  height: 100%;
  width: 100%;
}
.HlRz5e img {
  max-width: var(--html-img-max-width, 100%);
}
.HlRz5e[data-animate-blur] img {
  filter: blur(9px);
  transition: filter 0.8s ease-in;
}
.HlRz5e[data-animate-blur] img[data-load-done] {
  filter: none;
}
.WzbAF8 .mpGTIt .O6KwRn {
  display: var(--item-display);
  height: var(--item-size);
  margin: var(--item-margin);
  width: var(--item-size);
}
.WzbAF8 .mpGTIt .O6KwRn:last-child {
  margin: 0;
}
.WzbAF8 .mpGTIt .O6KwRn .oRtuWN {
  display: block;
}
.WzbAF8 .mpGTIt .O6KwRn .oRtuWN .YaS0jR {
  height: var(--item-size);
  width: var(--item-size);
}
.WzbAF8 .mpGTIt {
  height: 100%;
  position: absolute;
  white-space: nowrap;
  width: 100%;
}
:host(.device-mobile-optimized) .WzbAF8 .mpGTIt,
body.device-mobile-optimized .WzbAF8 .mpGTIt {
  white-space: normal;
}
.O6KwRn{
  padding-left: 20px;
}