@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap");
:root {
  /*-- tipography --*/
  --fw-thin: 100;
  --fw-ex_light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-ex_bold: 800;
  --fw-black: 900;
  --fs-basic: clamp(1rem, 1rem + 1dvmin, 1.5rem);
  --fs-small: clamp(0.625rem, 0.526vw + 0.493rem, 1.125rem);
  --fs-xl: clamp(1.5rem, 1.5rem + 1dvmin, 2.5rem);
  /*-- colors --*/
  --clr-prim-dark: #262626;
  --clr-prim-light: #E7EDF0;
  --clr-accent: #40CBE0;
  --clr-black: #181818;
  --clr-white: hwb(200 97% 2%);
  --clr-usdt: #04938F;
  --clr-usdc: #2775CA;
  /*-- spacing --*/
  --spc-basic: 1rem;
  --spc-half: .5rem;
  --spc-x2: 2rem;
  --spc-x4: 4rem;
  --min: 340px;
}

/*-- MIXINS --*/
/*-- tipography --*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--clr-dark);
  font-size: var(--fnt-basic-size);
  line-height: 1.25;
}

html,
body {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
}

li {
  list-style: none;
}

@font-face {
  font-family: "Oswald";
  src: url("../FONTS/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

@keyframes parentAnim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes childBounce {
  to {
    bottom: calc(100% + 0.45rem);
  }
}
.parent {
  display: grid;
  justify-content: center;
  align-items: start;
  width: 3rem;
  position: absolute;
  bottom: 1rem;
  aspect-ratio: 1/2;
  border: solid 1px #40CBE0;
  opacity: 0;
  animation: parentAnim 5s forwards;
  animation-delay: 1s;
}
@media (max-width: 1279px) {
  .parent {
    border-radius: 0.75rem;
  }
  .parent .child-wrp {
    width: 0.9rem;
    height: calc(100% - 1.2rem);
  }
}
@media (min-width: 1280px) {
  .parent {
    border-radius: 1.5rem;
  }
  .parent .child-wrp {
    width: 0.45rem;
    height: 1.5rem;
  }
}
.parent .child-wrp {
  position: relative;
  margin-top: 0.6rem;
  overflow-x: clip;
  -webkit-mask: linear-gradient(transparent, black, black, transparent);
          mask: linear-gradient(transparent, black, black, transparent);
}
.parent .child-wrp .child {
  position: absolute;
  bottom: calc(0% - 0.45rem);
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #40CBE0;
  animation: parentAnim 5s forwards, childBounce 1s ease-in-out 1s infinite;
}

h2.zero-header,
h3.zero-header {
  font-family: "Oswald";
  font-weight: 700;
  line-height: 0.7;
  padding-bottom: 0.8%;
}

.center-center {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.flex-nowrap-overflow {
  display: flex;
}

.flex-nowrap-overflow > * {
  flex: 1;
}

.buttons {
  margin-top: auto;
  align-items: end;
  display: flex;
  justify-content: space-around;
  border-top: solid 1px #262626;
}
.buttons > * {
  flex: 1;
  padding: calc(1rem + 8px) 2rem;
}
.buttons > :first-child {
  border-right: solid 1px #262626;
}

a {
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: fw;
  color: #262626;
  font-weight: 400;
}

.note {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 100;
  color: #E7EDF0;
  font-style: italic;
}/*# sourceMappingURL=utilities.css.map */