:root {
  --pane-left-width: 50vw;
  --pane-scale: 1;
  --pane-progress: 0;
}

.Nav_brandLink {
  margin-left: clamp(20px, 1.2vw, 1.2vw);
  margin-top: clamp(20px, 1.2vw, 1.2vw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-foreground, var(--lightColor));
  border-radius: 3px;
  padding: 0;
  text-decoration: none;
}
.Nav_brandText {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-exposure);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.InvertedSection_invertedSection {
  position: relative;
  width: 100%;
  height: 100vh;
  height: var(--viewport-height);
  mix-blend-mode: exclusion;
  background-color: #fff;
  z-index: 2;
  margin-top: -100vh;
  margin-top: calc(-1 * var(--viewport-height));
}
.BTM_title {
  position: relative;
  z-index: 100000000;
  color: var(--color);
  font-size: clamp(42px, 8vw, 8vw);
  line-height: 0.9;
  font-family: var(--font-exposure-extralight);
  letter-spacing: -0.07em;
  font-weight: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
  @media (min-width: 1024px) {
    font-size: clamp(42px, 4.85vw, 4.85vw);
  }
}
.BTM_nav nav {
  @media (prefers-reduced-motion: no-preference) {
    transition: width 0.5s ease-out;
  }
  width: 85%;
}
.BTM_titleContainer {
  gap: clamp(30px, 2.2vw, 2.2vw);
}
.BTM_smallTitleContainer,
.BTM_titleContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.BTM_smallTitleContainer {
  position: relative;
  gap: clamp(14px, 1vw, 1vw);
}
.BTM_smallTitleContainer .BTM_button {
  margin-top: clamp(10px, 0.6vw, 0.6vw);
}
.BTM_smallTitleTextContainer {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.8vw, 0.8vw);
}
.BTM_smallTitle {
  font-size: clamp(40px, 6vw, 6vw);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-family: var(--font-exposure-light);
  font-weight: 400;
  opacity: 0.4;
  filter: blur(6px);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
  @media (min-width: 1024px) {
    font-size: clamp(40px, 2.85vw, 2.85vw);
  }
}
.BTM_smallTitleContainer .BTM_body,
.BTM_smallTitleContainer .BTM_button {
  opacity: 0.4;
  filter: blur(6px);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
}
.BTM_gridSection,
.BTM_section {
  font-family: var(--font-exposure);
  font-weight: 400;
  position: relative;
  width: 85%;
  min-height: 80vh;
  padding: 8vh clamp(18px, 0.7vw, 0.7vw) 10vh clamp(18px, 1.2vw, 1.2vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.35vw;
  z-index: 1;
  @media (min-width: 1024px) {
    padding-top: 10vh;
    width: 50%;
  }
}
.BTM_section:first-of-type {
  z-index: 2;
}
.BTM_gridSection {
  width: 85%;
  z-index: 1;
  justify-content: flex-start;
  @media (min-width: 1024px) {
    width: 64%;
  }
}
.BTM_sectionBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background: color-mix(in srgb, var(--backgroundColor) 85%, transparent);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 1;
  @media (min-width: 1024px) {
    transform: translateX(-13.25vw);
    background: var(--backgroundColor);
    width: 64%;
  }
  @media (pointer: coarse) {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.BTM_canvasContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--canvas-height, var(--viewport-height));
  min-height: 100vh;
  min-height: var(--viewport-height);
  transform-origin: right center;
  transform: scale(var(--pane-scale, 1));
  will-change: transform;
  @media (prefers-reduced-motion: reduce) {
    transform: none;
  }
  /* @media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    transition: transform 0.55s ease-out;
  } */
  @media (min-width: 1024px) {
    left: var(--pane-left-width, 50vw);
    right: 0;
    width: auto;
  }
}
.BTM_canvasContainer.BTM_fullCanvas {
  left: 0 !important;
  width: 100vw !important;
  z-index: -1;
}

.BTM_sectionBackgroundLine {
  position: fixed;
  display: none;
  left: calc(32.4% - 7px);
  top: 0;
  border-right: 1px dashed color-mix(in srgb, var(--color) 30%, transparent);
  height: 100vh;
  height: var(--viewport-height);
  z-index: 2;
  transform: translateY(var(--viewport-height, 100vh));
  @media (prefers-reduced-motion: no-preference) {
    transition: transform 0.5s ease-out;
  }
  @media (min-width: 1024px) {
    display: block;
  }
}
.BTM_sectionBackground:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0.6vw;
  width: 1px;
  height: 100%;
  border-right: 1px dashed color-mix(in srgb, var(--color) 30%, transparent);
  z-index: 1;
}
.BTM_gridSectionBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backgroundColor);
  z-index: 0;
  transform: translateX(-20.4%);
}
.BTM_comment {
  font-size: clamp(13px, 0.9vw, 0.9vw);
  line-height: 1;
  color: var(--color);
  opacity: 0.6;
}
.BTM_button,
.BTM_comment {
  font-family: var(--font-exposure);
  letter-spacing: -0.02em;
}
.BTM_button {
  font-size: clamp(14px, 0.9vw, 0.9vw);
  line-height: 1.2;
  display: flex;
  border: 1px dashed var(--color);
  border-radius: 14vw;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: clamp(4px, 0.4vw, 0.4vw) clamp(30px, 2.2vw, 2.2vw)
    clamp(5px, 0.5vw, 0.5vw);
  margin-left: -2px;
  opacity: 0;
  filter: blur(6px);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.6s ease,
      filter 0.6s ease;
  }
  @media (prefers-reduced-motion: reduce) {
    opacity: 1;
    filter: none;
  }
}
.BTM_button:hover {
  background-color: var(--color);
  color: var(--backgroundColor);
}
.BTM_box {
  width: 100%;
  margin-top: 8px;
}
.BTM_metaContainer {
  display: flex;
  position: fixed;
  bottom: clamp(46px, 2.2vw, 2.2vw);
  left: clamp(18px, 1.2vw, 1.2vw);
  width: clamp(280px, 22.5vw, 22.5vw);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(10px, 0.6vw, 0.6vw);
  opacity: 0;
  z-index: 2;
  @media (min-width: 1024px) {
    bottom: clamp(18px, 1.2vw, 1.2vw);
  }
  @media (prefers-reduced-motion: no-preference) {
    transition: opacity 0.3s ease-out;
  }
}
.BTM_firstMetaContainer {
  width: clamp(280px, 28.5vw, 28.5vw);
}
.BTM_meta {
  position: relative;
  z-index: 100000000;
  color: var(--color);
  font-size: clamp(13px, 0.9vw, 0.9vw);
  font-family: var(--font-exposure);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transform: scale(var(--scale));
  padding: 0 clamp(16px, 1.2vw, 1.2vw) 0 0;
  @media (min-width: 1024px) {
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    transition: opacity 0.2s;
  }
}
.BTM_gridContainer {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  margin-top: 0.6vw;
  align-items: flex-end;
  @media (min-width: 1024px) {
    grid-template-columns: 50% 50%;
    gap: 0;
  }
}
.BTM_firstGridSectionBorderTop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px dashed color-mix(in srgb, var(--color) 30%, transparent);
}
.BTM_gridContainerRight {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  margin-top: clamp(12px, 0.6vw, 0.6vw);
  align-items: flex-end;
  justify-content: flex-end;
  @media (min-width: 1024px) {
    gap: 0;
  }
}
.BTM_gridColumnRight {
  @media (min-width: 1024px) {
    margin-left: 50%;
  }
}
.BTM_gridItemRight,
.BTM_gridItem {
  border-bottom: 1px dashed color-mix(in srgb, var(--color) 30%, transparent);
  align-self: stretch;
  border-left: none;
  padding: clamp(10px, 1vw, 1vw) clamp(30px, 3vw, 3vw) clamp(10px, 1vw, 1vw) 0;
}
.BTM_gridItemRight,
.BTM_gridItem:nth-of-type(2n) {
  @media (min-width: 1024px) {
    padding-left: clamp(10px, 1vw, 1vw);
    padding-bottom: clamp(10px, 1vw, 1vw);
    padding-right: clamp(10px, 1vw, 1vw);
    padding-top: clamp(10px, 1vw, 1vw);
    padding-right: clamp(30px, 3vw, 3vw);
  }
}
.BTM_gridItemRight {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed color-mix(in srgb, var(--color) 30%, transparent);
}
.BTM_gridItemRight:first-of-type {
  @media (min-width: 1024px) {
    padding-top: 0;
  }
}
.BTM_gridTitleRight,
.BTM_gridTitle {
  width: calc(100% + 1px);
  padding-top: 10vh;
  font-size: clamp(40px, 6vw, 6vw);
  font-family: var(--font-exposure-light);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.07em;
  margin-bottom: 30px;
  opacity: 0.4;
  filter: blur(6px);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
  @media (min-width: 1024px) {
    margin-bottom: 0;
    padding-bottom: clamp(20px, 2.5vw, 2.5vw);
    font-size: clamp(40px, 2.85vw, 2.85vw);
  }
  @media (max-width: 1023px) {
    max-width: 600px;
  }
}
.BTM_gridTitleRightGroup {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.8vw, 0.8vw);
  align-items: flex-start;
  width: calc(100% + 1px);
  margin-bottom: 10px;
  @media (min-width: 1024px) {
    width: calc(50% + 1px);
    position: -webkit-sticky;
    position: sticky;
    top: 30vh;
    z-index: 2;
  }
}
.BTM_gridTitleRightGroup .BTM_button {
  margin-top: clamp(10px, 0.6vw, 0.6vw);
}
.BTM_gridTitle {
  grid-column: 1/-1;
  @media (min-width: 1024px) {
    border-bottom-color: color-mix(in srgb, var(--color) 30%, transparent);
    border-bottom-style: dashed;
    border-bottom-width: 1px;
  }
}
.BTM_gridTitleRight {
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  @media (min-width: 1024px) {
    width: 100%;
  }
}
.BTM_gridSubTitleRight,
.BTM_gridSubTitle {
  position: relative;
  margin-bottom: clamp(10px, 0.6vw, 0.6vw);
  font-size: clamp(14px, 1.1vw, 1.1vw);
  font-family: var(--font-exposure);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-left: clamp(28px, 2.2vw, 2.2vw);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
}
.BTM_gridItemNumber {
  position: absolute;
  left: clamp(-126px, -2.3vw, -28px);
  top: 0;
}
.BTM_gridBodyRight,
.BTM_gridBody {
  font-size: clamp(14px, 1.1vw, 1.1vw);
  padding-left: clamp(26px, 2.2vw, 2.2vw);
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
  @media (max-width: 1023px) {
    max-width: 600px;
  }
}
.BTM_body,
.BTM_gridBodyRight,
.BTM_gridBody {
  font-family: var(--font-exposure);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.BTM_body {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  width: 100%;
  @media (prefers-reduced-motion: no-preference) {
    transition:
      opacity 0.4s ease-out,
      filter 0.4s ease-out;
  }
  @media (max-width: 1023px) {
    max-width: 600px;
  }
  @media (min-width: 1024px) {
    width: 24.5vw;
  }
}
.BTM_footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  width: 100%;
  color: var(--backgroundColor);
  background: color-mix(in srgb, var(--color) 30%, transparent);
  font-size: clamp(24px, 4.85vw, 72px);
  line-height: 0.82;
  font-family: var(--font-title);
  font-weight: 200;
  letter-spacing: -0.07em;
  height: 100vh;
  height: var(--viewport-height);
  z-index: 100000000;
  padding: clamp(72px, 4vw, 4vw) 0 clamp(56px, 2.7vw, 3.7vw);
  gap: clamp(18px, 1.1vw, 1.1vw);
}
@media (min-width: 1024px) {
  .BTM_footer {
    flex-direction: row;
    align-items: stretch;
    padding: clamp(72px, 4vw, 4vw) clamp(18px, 1.1vw, 1.1vw)
      clamp(56px, 2.7vw, 3.7vw);
  }
}
.BTM_footerItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: clamp(10px, 2.2vw, 2.2vw);
  padding: 0 clamp(18px, 1.1vw, 1.1vw);
  flex: 1 1;
  min-height: 0;
  width: 100%;
  @media (min-width: 1024px) {
    width: 50%;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
    flex: 1 1;
    min-height: 100%;
  }
}
.BTM_footerLink {
  align-items: stretch;
  text-decoration: none;
}
.BTM_footerButton,
.BTM_footerLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.BTM_footerButton {
  position: relative;
  font-size: clamp(58px, 9vw, 9vw);
  line-height: 1;
  font-family: var(--font-title);
  letter-spacing: -0.07em;
  font-weight: 300;
  border: 1px dashed var(--backgroundColor);
  padding: clamp(18px, 1.1vw, 1.1vw) 0;
  border-radius: clamp(20px, 20px, 20px);
  cursor: pointer;
  align-items: center;
  @media (prefers-reduced-motion: no-preference) {
    transition: all 0.3s ease;
  }
  @media (min-width: 1024px) {
    font-size: clamp(58px, 6.5vw, 6.5vw);
    padding-left: 0;
    padding-bottom: clamp(18px, 1.1vw, 1.1vw);
    padding-right: 0;
    padding-top: clamp(18px, 1.1vw, 1.1vw);
  }
}
@media (pointer: fine) {
  .BTM_footerButton:hover {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
.BTM_mobileOnly {
  display: none;
}

@media (max-width: 1023px) {
  .BTM_desktopOnly {
    display: none;
  }
  .BTM_mobileOnly {
    display: inline;
  }
}
.BTM_aLink {
  text-decoration: underline;
}
.BTM_aLink:hover {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  opacity: 0.7;
  @media (prefers-reduced-motion: no-preference) {
    transition: opacity 0.2s ease;
  }
}
.BTM_fullCanvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: var(--viewport-height) !important;
  z-index: 1 !important;
}
@media (min-width: 1024px) {
  .BTM_fullCanvas {
    left: 0 !important;
    width: 100vw !important;
  }
}
.BTM_walletFlashMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  z-index: 999999;
  pointer-events: none;
  animation:
    BTM_walletFlashIn 0.5s ease-out forwards,
    BTM_walletFlashOut 0.25s ease-in 1.5s forwards;
  @media (min-width: 1024px) {
    top: 50%;
    left: 75%;
    width: auto;
  }
}
.BTM_walletFlashContent {
  background: var(--color);
  border-radius: 5px;
  padding: clamp(4px, 0.2vw, 0.2vw) clamp(10px, 0.5vw, 0.5vw)
    clamp(5px, 0.25vw, 0.25vw);
}
.BTM_walletFlashText {
  color: var(--backgroundColor);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
}
@keyframes BTM_walletFlashIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 0.2;
    transform: translate(-50%, -50%);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  90% {
    opacity: 0.2;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes BTM_walletFlashOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .BTM_walletFlashMessage {
    animation: none;
    opacity: 1;
  }
  .BTM_walletFlashMessage[data-hiding="true"] {
    opacity: 0;
  }
}
@keyframes Nav_fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Nav_nav {
  position: fixed;
  opacity: 0;
  animation: Nav_fadeIn 0.6s ease-out forwards;
  z-index: 100000000;
  --nav-foreground: var(--color);
  --nav-background: var(--backgroundColor);
  color: var(--nav-foreground);
}
.Nav_nav.Nav_nav--inverted {
  --nav-foreground: var(--backgroundColor);
  --nav-background: var(--color);
}
.Nav_nav__top {
  position: fixed;
  top: 0;
  left: 0;
  width: 49.2%;
  height: 100px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100000000;
}
.Nav_nav__top[data-full="true"] {
  width: 100%;
}
.Nav_nav__links {
  height: 100px;
  margin-top: clamp(24px, 2vw, 35px);
  margin-right: clamp(24px, 2.2vw, 42px);
  padding-top: 2px;
}
.Nav_nav__links a {
  border-radius: 4.86px;
  border: 1px dashed color-mix(in srgb, var(--nav-foreground) 50%, transparent);
  color: var(--nav-foreground);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -3%;
  line-height: 97%;
  padding: 3px 5px;
}
.Nav_nav__links a[data-active="true"] {
  color: color-mix(in srgb, var(--nav-background) 90%, transparent);
  background-color: var(--nav-foreground);
}
.Nav_nav__statIcon {
  position: relative;
  top: -1px;
}
.Nav_nav__stats {
  font-size: 10px;
  line-height: 8px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-top: 12px;
  font-family: monospace;
  display: flex;
  gap: 30px;
  display: none;
}
.Nav_nav__statsColumn {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 150px;
}
.Nav_nav__statTitle {
  line-height: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: monospace;
  text-decoration: underline;
  margin-top: 8px;
}
.Nav_nav__statScrollChart {
  position: relative;
  border-left: 1px solid;
  border-right: 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33.333%;
  height: 30px;
}
.Nav_nav__statScrollChartPosition {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color);
  transform: translateY(var(--line-y));
}
.Nav_nav__statScrollChartLine {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px dotted;
}
.Nav_nav__statCoordChart {
  position: relative;
  width: 50px;
  height: 30px;
  border: 1px solid;
}
.Nav_nav__statBurstChart {
  stroke: var(--color);
  strokewidth: 1px;
  animation: Nav_burstRotate 3s linear infinite;
  opacity: 0.5;
}
@keyframes Nav_burstRotate {
  0% {
    d: "M 25 0 L 25 50 M 0 25 L 50 25 M 0 0 L 50 50 M 50 0 L 0 50";
  }
  to {
    d: "M 0 25 L 50 25 M 25 0 L 25 50 M 0 0 L 50 50 M 0 50 L 50 0";
  }
}
.Nav_nav__statChartRow {
  display: flex;
  gap: 9px;
  height: 40px;
}
.Nav_nav__statCoordChartLineX {
  width: 100%;
  height: 1px;
  transform: translateY(var(--line-x));
}
.Nav_nav__statCoordChartLineX,
.Nav_nav__statCoordChartLineY {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color);
  opacity: 0.5;
  transition: transform 0.3s;
}
.Nav_nav__statCoordChartLineY {
  width: 1px;
  height: 100%;
  transform: translateX(var(--line-y));
}
.Nav_nav__statCoordChartDot {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--color);
  opacity: 1;
  border-radius: 50%;
  transform: translate(var(--line-y), var(--line-x));
  transition: transform 0.6s;
}
.Nav_nav__statWaveChart {
  position: relative;
  width: 100%;
  height: 100%;
}
.Nav_nav__statWaveChart:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color);
  opacity: 0.5;
}
.Nav_nav__statWaveChartLine {
  position: relative;
  strokedasharray: 200px;
  stroke-dashoffset: 0px;
  animation: Nav_waveFlow 3s linear infinite;
  opacity: 0.5;
  transform: translateY(var(--line-y));
  transition: transform 0.3s;
  left: -6px;
}
.Nav_nav__statWaveChartLine:nth-child(2) {
  animation-delay: 1.5s;
  strokedasharray: 200px;
  position: absolute;
  left: 6px;
  top: 0;
  opacity: 0.4;
}
@keyframes Nav_waveFlow {
  0% {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: -400px;
  }
}
.Nav_contactSales {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--backgroundColor);
  padding: 10px 30px;
  border-radius: 20px;
  font-size: 13.4862px;
  line-height: 16px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.Nav_contactSales:hover {
  background-color: var(--color);
  color: var(--backgroundColor);
}

html.wide-ascii .BTM_canvasContainer {
  left: 0;
  right: auto;
  width: 100%;
}

html.wide-ascii .BTM_sectionBackground {
  background: transparent;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
