@charset "UTF-8";
@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;
}

body {
  background-color: #181818;
  overflow-x: clip;
}

.why {
  background-color: #181818;
}
.why__slogan {
  position: relative;
  width: 100vw;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why__slogan h1 {
  min-width: 100%;
  text-transform: none;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 100;
  color: #E7EDF0;
}
.why__slogan h1 span {
  border-bottom: solid 2px #40CBE0;
}
.why__description {
  background-color: #262626;
  min-height: 50dvh;
  display: grid;
  align-content: center;
}
.why__description__wrpr {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: min(1280px, 100vw);
  margin-inline: auto;
  padding: 2rem 1rem;
}
.why__description__wrpr > * {
  flex: 1;
  min-width: 360px;
}
.why__description__wrpr > h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.25rem, 0.9968rem + 1.0127vw, 2.25rem);
  font-weight: 600;
  color: #E7EDF0;
  text-align: end;
}
.why__description__wrpr > p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 100;
  color: #E7EDF0;
}

.because {
  background-color: #262626;
}
.because .about {
  background-color: #E7EDF0;
  min-height: 50dvh;
  display: flex;
  flex-wrap: wrap;
}
.because .about__wrp {
  flex: 1;
  flex-grow: 3;
  min-width: 360px;
  overflow-x: clip;
}
.because .about__wrp h2 {
  color: #262626;
  transform: translateX(-3px);
}
.because .about__wrp p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: fw;
  color: #262626;
  -moz-column-width: 45ch;
       column-width: 45ch;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 4rem 1rem;
}
.because .about__video {
  height: auto;
  flex: 1;
  width: 100%;
  min-width: 360px;
  min-height: 360px;
  overflow: hidden;
}
.because .about__video iframe {
  width: 101%;
  height: 101%;
  border: 0;
}
.because .about__carusele {
  flex-basis: 100%;
  width: 100%;
  background-color: #262626;
  margin-inline: auto;
  position: relative;
  height: 150px;
  overflow: hidden;
}
.because .about__carusele ul {
  width: 100%;
  overflow-x: clip;
  gap: 2rem;
}
.because .about__carusele ul li.carusele-header-wrpr {
  overflow: hidden;
}
.because .about__carusele ul li {
  min-width: 300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 300px;
  height: 150px;
  position: absolute;
  left: max(2700px, 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.because .about__carusele ul li h3:not(.list__header) {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: none;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 100;
  color: #E7EDF0;
  opacity: 0.75;
}
.because .about__carusele ul li h3.list__header {
  color: #E7EDF0;
}
.because .about__carusele ul li p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 100;
  color: #E7EDF0;
  opacity: 0.5;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden; /* обрезает лишний текст */
  text-overflow: ellipsis; /* добавляет "…" */
}
@keyframes scrollLeft {
  to {
    left: -200px;
  }
}
.because .about__carusele ul .item1 {
  animation-delay: -26.6666666667s;
}
.because .about__carusele ul .item2 {
  animation-delay: -23.3333333333s;
}
.because .about__carusele ul .item3 {
  animation-delay: -20s;
}
.because .about__carusele ul .item4 {
  animation-delay: -16.6666666667s;
}
.because .about__carusele ul .item5 {
  animation-delay: -13.3333333333s;
}
.because .about__carusele ul .item6 {
  animation-delay: -10s;
}
.because .about__carusele ul .item7 {
  animation-delay: -6.6666666667s;
}
.because .about__carusele ul .item8 {
  animation-delay: -3.3333333333s;
}
.because .about__carusele ul .item9 {
  animation-delay: 0s;
}
.because__extra {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.because__extra > * {
  flex: 1;
  min-width: 360px;
}
.because__extra p {
  position: relative;
  padding: 4rem 1rem 4rem 4rem;
}
.because__extra p img {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.buy {
  background-color: #181818;
  min-height: 500px;
}
.buy .buy-wrapper {
  display: flex;
  overflow: clip;
  flex-wrap: wrap;
  width: min(1280px, 100vw);
  margin: 0 auto;
  padding: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.buy .buy-wrapper > * {
  min-width: 360px;
}
.buy__description {
  flex: 1;
}
.buy__description h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.25rem, 0.9968rem + 1.0127vw, 2.25rem);
  font-weight: 600;
  color: #E7EDF0;
  text-align: end;
}
.buy__description p {
  padding-top: 4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 100;
  color: #E7EDF0;
  text-align: end;
}
.buy__description p a {
  color: #40CBE0;
}
.buy__links {
  flex: 0;
  background: linear-gradient(to left, #40CBE0, #30B0C7);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.buy__links button {
  margin-top: 1rem;
  border: solid 2px #262626;
  background: none;
}
.buy__links button a {
  display: block;
  padding: 1rem 2rem;
}/*# sourceMappingURL=main.css.map */