@charset "UTF-8";
:root {
  --bg-color: #212121;
  --theme-color: #090909;
  --size: 15px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ДЛЯ WebKit/Blink (Chrome, Safari, Opera) */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Сховати кнопки на скролбарі */
*::-webkit-scrollbar-button {
  display: none !important;
  width: 0;
  height: 0;
}

/* Інші стилі для скролбару */
*::-webkit-scrollbar-thumb {
  background: #5e5e5e;
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

/* Для старого IE та Edge на Windows */
*::-ms-scrollbar-button {
  display: none !important;
  width: 0;
  height: 0;
}

/* Сховати весь скролбар на Windows */
*::-ms-scrollbar {
  display: none;
}

/* Для Webkit/Blink (Chrome, Opera, Safari) */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-button {
  display: none !important;
  width: 0;
  height: 0;
}

/* Стільки для прокрутки */
*::-webkit-scrollbar-thumb {
  background: #5e5e5e;
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

/* Сховати стрілочки у Webkit (Chrome, Safari) */
*::-webkit-scrollbar-button {
  display: none !important;
}

.section {
  position: relative;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-height: 750px) {
  .section {
    height: auto !important;
    min-height: -moz-fit-content !important;
    min-height: fit-content !important;
  }
}
@media (max-width: 991.98px) {
  .section {
    padding-top: 100px;
    padding-bottom: 50px;
    height: 100%;
  }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.btn-c {
  padding: 0 25px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 186px;
  height: 40px;
  border-radius: 2.7rem 0.2rem 2.7rem 0.2rem;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 250ms linear, background-color 250ms linear, box-shadow 250ms linear, text-shadow 250ms linear, font-weight 250ms linear;
}
.btn-c.big-padding {
  padding: 0 35px;
}
@media (min-width: 2048px) {
  .btn-c.big-padding {
    padding: 0 1.5vw;
  }
}
@media (min-width: 2048px) {
  .btn-c {
    padding: 0 1dvw;
    font-size: 0.75dvw;
    min-width: 8dvw;
    height: 1.8dvw;
    border-radius: 2dvw 0.2rem 2dvw 0.2rem;
  }
}
.btn-c:active {
  transform: translate(1px, 1px);
}
.btn-c.primary {
  background-color: #70c8ba;
  color: #fff;
  border: 1px solid #70c8ba;
}
.btn-c.primary svg {
  vertical-align: baseline;
  fill: #1d1d1d;
}
.btn-c.primary:hover {
  color: #fff;
  box-shadow: 0 0 12px 0 #70c8ba;
  font-weight: 500;
}
.btn-c.primary:hover svg {
  fill: #70c8ba;
}
.btn-c.secondary {
  background-color: #1d1d1d;
  color: #fff;
  border: 1px solid #4C4C4C;
}
.btn-c.secondary svg {
  fill: #fff;
}
.btn-c.secondary:hover {
  background-color: #1d1d1d;
  color: #70c8ba;
  border: 1px solid #70c8ba;
  box-shadow: 0 0 10px 0 #70c8ba;
}
.btn-c.disabled {
  border: 1px solid #1d1d1d;
  background-color: rgba(179, 186, 190, 0.9);
  color: #1d1d1d;
}
.btn-c.disabled:hover {
  border: 1px solid #1d1d1d;
  background-color: rgba(179, 186, 190, 0.9);
  color: #1d1d1d;
}
.btn-c.disabled:hover svg {
  fill: #1d1d1d;
}

.soon {
  position: absolute;
  bottom: 0;
  right: 20px;
  transform: translateY(100%);
  padding: 0 10px;
  border-radius: 2.7rem 0.2rem 2.7rem 0.2rem;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  background-color: #70c8ba;
  color: #fff;
  border: 1px solid #fff;
}
@media (min-width: 2048px) {
  .soon {
    font-size: 0.5dvw;
    right: 1.2dvw;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 520.98px) {
  .section-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .section-title.small-text {
    font-size: 26px;
  }
  .section-title.hide-br br {
    display: none;
  }
}
@media (min-width: 2048px) {
  .section-title {
    font-size: 2.2dvw;
    margin-bottom: 1dvw;
  }
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 520.98px) {
  .section-subtitle.small-text {
    font-size: 1rem;
  }
  .section-subtitle.hide-br br {
    display: none;
  }
}
@media (min-width: 2048px) {
  .section-subtitle {
    font-size: 1.33dvw;
  }
}

.section-descr {
  margin: 0 auto 2.5rem;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  max-width: 600px;
}
@media (max-width: 768px) {
  .section-descr.big-mobile {
    line-height: 1.4;
    font-size: 18px;
  }
}
@media (max-width: 520.98px) {
  .section-descr {
    font-size: 16px;
    line-height: 1.2;
  }
  .section-descr br {
    display: none;
  }
}
@media (min-width: 2048px) {
  .section-descr {
    font-size: 1dvw;
  }
}

.cls-1 {
  fill: #70c8ba;
}

.cls-2 {
  fill: #fff;
}

/* --------------- Menu --------------- */
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: transparent;
  z-index: 9999998;
  transition: background-color 250ms ease-in-out;
}
@media screen and (max-width: 992px) {
  .navbar {
    background-color: rgba(21, 21, 21, 0.95);
  }
}
.navbar.nav-scroll {
  background-color: rgba(21, 21, 21, 0.95);
}
.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  transition: color 250ms linear;
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link svg {
  width: 16px;
  height: 16px;
  transition: fill 250ms linear;
}
@media (min-width: 2048px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 0.75dvw;
    padding: 0.28dvw 1.11dvw;
  }
  .navbar .navbar-nav .nav-item .nav-link svg {
    width: 0.75dvw;
    height: 0.75dvw;
  }
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #70c8ba;
}
.navbar .navbar-nav .nav-item .nav-link:hover svg {
  fill: #70c8ba;
}

.logo {
  display: flex;
  gap: 5px;
  align-items: center;
}
.logo .main-logo {
  width: auto;
  height: 40px;
}
@media (max-width: 520.98px) {
  .logo .main-logo {
    height: 24px;
  }
}
@media (min-width: 2048px) {
  .logo .main-logo {
    height: 1.8dvw;
  }
}
.logo .logo-text {
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 2048px) {
  .logo .logo-text {
    font-size: 1.1dvw;
  }
}

.hamenu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 100dvw;
  height: 100dvh;
  background: #1d1d1d;
  overflow: hidden;
  z-index: 99999999999;
  transition: all 500ms cubic-bezier(1, 0, 0.55, 1);
}
.hamenu:after {
  content: "";
  background-size: contain;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.hamenu .close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 4;
  display: grid;
  place-items: center;
}
.hamenu .close-menu {
  color: #fff;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.4s;
}
.hamenu.open .close-menu {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 500ms;
}
.hamenu.open .menu-links .main-menu {
  list-style: none;
  padding-left: 0;
}
.hamenu.open .menu-links .main-menu > li .link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 500ms;
}
.hamenu.open .cont-info {
  transform: translateX(0);
}
.hamenu.open .cont-info .text-center {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 500ms;
}
.hamenu .menu-links {
  color: #fff;
  height: 100dvh;
  padding: 80px 20px;
  padding-top: 120px;
  overflow: auto;
  width: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.hamenu .menu-links .mining-btn {
  width: 100%;
  padding: 0 30px;
  max-width: 100%;
}
.hamenu .menu-links .mining-btn .btn-c.primary {
  max-width: 100%;
  font-size: 22px;
  height: 50px;
}
.hamenu .menu-links::-webkit-scrollbar {
  width: 5px;
}
.hamenu .menu-links::-webkit-scrollbar-track {
  background: #111;
}
.hamenu .menu-links::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.hamenu .menu-links .main-menu {
  position: relative;
  z-index: 2;
}
.hamenu .menu-links .main-menu ul {
  margin: 0;
  padding: 0;
}
.hamenu .menu-links .main-menu > li {
  transition: all 400ms;
}
.hamenu .menu-links .main-menu > li .link {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  padding: 15px 30px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  transform: translateY(100px);
  opacity: 0;
  transition: all 500ms;
}
.hamenu .menu-links .main-menu > li .link i {
  position: absolute;
  width: 90px;
  top: 0;
  right: 0;
  bottom: 0;
}
.hamenu .menu-links .main-menu > li .link i:before {
  content: "";
  width: 1px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
.hamenu .menu-links .main-menu > li .link i:after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: calc(50% + 8px);
  left: calc(50% - 8px);
  background: #fff;
}
.hamenu .menu-links .main-menu > li .link.dopen i:before {
  opacity: 0;
}
.hamenu .menu-links .main-menu > li .link .fill-text {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.hamenu .menu-links .main-menu > li .link .fill-text .soon {
  right: 0;
  transform: translateY(80%);
  padding: 0 14px;
  font-size: 14px;
}
.hamenu .menu-links .main-menu > li .link .fill-text:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: width 500ms cubic-bezier(0.63, 0.03, 0.21, 1);
}
.hamenu .menu-links .main-menu > li.hoverd .link .fill-text:after {
  width: 0;
}

.inner-logo-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.inner-logo-wrapper .inner-logo {
  --text_block: 360px;
  --text: 351px;
  --logo_width: 100px;
  --center: calc(((var(--text_block) + var(--logo_width)) / 2) - (var(--logo_width) * 0.5));
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(var(--center));
  transition: transform 500ms ease-in-out;
}
@media (min-width: 2048px) {
  .inner-logo-wrapper .inner-logo {
    --text_block: 19dvw;
    --text: 18dvw;
    --logo_width: 5dvw;
  }
}
.inner-logo-wrapper .inner-logo svg {
  width: var(--logo_width);
  transition: all 500ms ease-in-out;
}
.inner-logo-wrapper .inner-logo .title-wrapper {
  position: relative;
  overflow: hidden;
  width: var(--text_block);
  height: 60px;
}
@media (min-width: 2048px) {
  .inner-logo-wrapper .inner-logo .title-wrapper {
    height: 3dvw;
  }
}
.inner-logo-wrapper .inner-logo .title-wrapper .title {
  position: absolute;
  line-height: 1;
  font-size: 60px;
  font-weight: 700;
  transform: translateX(calc(-1 * var(--text_block)));
  opacity: 0;
  transition: opacity 550ms ease-in-out, transform 550ms ease-in-out;
  text-align: end;
}
@media (min-width: 2048px) {
  .inner-logo-wrapper .inner-logo .title-wrapper .title {
    font-size: 3dvw;
  }
}
.inner-logo-wrapper .inner-logo:hover {
  transform: translateX(0);
}
.inner-logo-wrapper .inner-logo:hover .title-wrapper .title {
  opacity: 1;
  transform: translateX(calc(var(--text_block) - var(--text)));
}
.inner-logo-wrapper .inner-logo.loading {
  transform: translateX(0);
}
.inner-logo-wrapper .inner-logo.loading .title-wrapper .title {
  opacity: 1;
  transform: translateX(9px);
}
@media (max-width: 520.98px) {
  .inner-logo-wrapper .inner-logo.loading {
    --logo_width: 50px;
  }
  .inner-logo-wrapper .inner-logo.loading svg {
    max-width: 50px;
    height: 100px;
  }
}
@media (max-width: 520.98px) {
  .inner-logo-wrapper .inner-logo {
    --text_block: 195px;
    --text: 187px;
  }
  .inner-logo-wrapper .inner-logo .title-wrapper {
    height: 32px;
  }
  .inner-logo-wrapper .inner-logo .title-wrapper .title {
    font-size: 32px;
  }
}

.hero-btns {
  margin-top: 72px;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520.98px) {
  .hero-btns {
    flex-direction: column;
    margin-top: 50px;
    gap: 1.25rem;
  }
  .hero-btns .btn-c {
    min-width: 250px;
  }
  .hero-btns .btn-c:first-child {
    margin-left: 1.5rem;
  }
  .hero-btns .btn-c:last-child {
    margin-right: 1.5rem;
  }
}

.animation-subtitle {
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .animation-subtitle br {
    display: none;
  }
}

/* The animation code */
@keyframes kas {
  0% {
    filter: none;
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes undefinedOne {
  0% {
    filter: none;
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #212427;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #212427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #212427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes tao {
  0% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes secondBlockKas {
  0% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes hash {
  0% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #383D40;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #383D40;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #383D40;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes secondBlockBitcoin {
  0% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #202427;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #F7931A;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #F7931A;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #F7931A;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes secondBlockMonero {
  0% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #F26822;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #F26822;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #F26822;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes secondBlockUndefined {
  0% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  20% {
    fill: #929292;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: none;
  }
  50% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1.125);
    opacity: 1;
    filter: none;
  }
  75% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.1rem #71c7ba);
  }
  100% {
    fill: #71C7BA;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0.4rem #71c7ba);
  }
}
@keyframes hashWhite {
  0%, 20% {
    fill: #CCCCCC;
  }
  50%, 100% {
    fill: #ffffff;
  }
}
@keyframes hashMint {
  0%, 20% {
    fill: #929292;
  }
  50%, 100% {
    fill: #70C8BA;
  }
}
@keyframes hashRing {
  0%, 20% {
    fill: #202427;
    stroke: #929292;
  }
  50%, 100% {
    fill: #383D40;
    stroke: #70C8BA;
  }
}
@keyframes burn-enlarge {
  0% {
    transform: translate(-50%, -50%) scale(0.875);
    filter: none;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 0.4rem rgba(254, 123, 15, 0.75));
  }
}
@keyframes burn-color-change {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes burn-enlarge-flame {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.875);
    fill: url(#paint0_linear_95_128);
    filter: none;
  }
  99% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    fill: url(#paint0_linear_95_196);
    filter: drop-shadow(0 0 0.4rem rgba(254, 123, 15, 0.75));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    fill: url(#paint0_linear_95_196);
    filter: drop-shadow(0 0 0.4rem rgba(254, 123, 15, 0.75));
  }
}
@keyframes burning {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes line {
  0% {
    transform: translateX(-101%);
  }
  100% {
    transform: translateX(0);
  }
}
.home-animation {
  width: 496px;
  margin: 0 auto;
  margin-bottom: 32px;
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 520.98px) {
  .home-animation {
    width: 88dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation {
    width: 28dvw;
    margin-bottom: 2dvw;
    margin-top: 4dvw;
  }
}
.home-animation.file-elem {
  flex-wrap: wrap;
}
@media (max-width: 520.98px) {
  .home-animation.file-elem {
    width: 100%;
    display: grid;
    /* 4 columns grid to allow for centered items in second row */
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "item1 item1 item2 item2 item3 item3" ". item4 item4 item5 item5 .";
    place-items: center;
    place-content: center;
  }
  .home-animation.file-elem .item:nth-child(1) {
    grid-area: item1;
  }
  .home-animation.file-elem .item:nth-child(2) {
    grid-area: item2;
  }
  .home-animation.file-elem .item:nth-child(3) {
    grid-area: item3;
  }
  .home-animation.file-elem .item:nth-child(4) {
    grid-area: item4;
  }
  .home-animation.file-elem .item:nth-child(5) {
    grid-area: item5;
  }
  .home-animation.file-elem .item .icon-wrapper .icon {
    width: 18dvw !important;
    height: 18dvw !important;
  }
}
.home-animation .item {
  width: 72px;
  height: 110px;
}
@media (max-width: 520.98px) {
  .home-animation .item {
    width: 14dvw;
    height: 26dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item {
    width: 4dvw;
    height: 6dvw;
  }
}
.home-animation .item .icon.second-block-undefined, .home-animation .item .icon.second-block-monero, .home-animation .item .icon.second-block-bitcoin, .home-animation .item .icon.second-block-kas, .home-animation .item .icon.undefined-one {
  transition: all 200ms ease-in-out;
}
.home-animation .item .icon.second-block-kas {
  fill: #71C7BA !important;
}
.home-animation .item:hover .icon {
  opacity: 1;
  filter: drop-shadow(0 0 0.4rem #71c7ba);
}
.home-animation .item:hover .icon.undefined-one {
  fill: #212427;
}
.home-animation .item:hover .icon.second-block-undefined {
  fill: #71C7BA;
}
.home-animation .item .icon-wrapper {
  width: 72px;
  height: 72px;
  position: relative;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper {
    width: 14dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper {
    width: 4dvw;
    height: 4dvw;
  }
}
.home-animation .item .icon-wrapper .icon {
  border-radius: 50%;
  position: absolute;
  top: 36px;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  fill: #929292;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon {
    width: 14dvw;
    top: 7dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon {
    width: 4dvw;
    height: 4dvw;
    top: 2.1dvw;
  }
}
.home-animation .item .icon-wrapper .icon.kas {
  width: 65px;
  height: 65px;
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.kas {
    width: 4dvw;
    height: 4dvw;
  }
}
.home-animation .item .icon-wrapper .icon.second-block-bitcoin {
  fill: rgb(32, 36, 39);
}
.home-animation .item .icon-wrapper .icon.kas, .home-animation .item .icon-wrapper .icon.tao, .home-animation .item .icon-wrapper .icon.hash {
  filter: none;
  -webkit-filter: none;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.kas, .home-animation .item .icon-wrapper .icon.tao, .home-animation .item .icon-wrapper .icon.hash {
    width: 14dvw;
  }
}
.home-animation .item .icon-wrapper .icon.burn {
  fill: url(#paint0_linear_95_127);
  width: 73px;
  height: 72px;
  filter: none;
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.burn {
    width: 4.56dvw;
    height: 4.56dvw;
  }
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.burn {
    width: 16dvw;
  }
}
.home-animation .item .icon-wrapper .icon.burn .burn-front {
  opacity: 0;
}
.home-animation .item .icon-wrapper .icon.burn.flame {
  opacity: 1;
  width: 34px;
  height: 37px;
  filter: drop-shadow(0 0 0.3rem rgba(254, 123, 15, 0.75));
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.burn.flame {
    width: 2dvw;
    height: auto;
  }
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.burn.flame {
    width: 8dvw;
  }
}
.home-animation .item .icon-wrapper .icon.burn.flame.enlarge {
  fill: url(#paint0_linear_95_128);
  filter: none;
}
.home-animation .item .icon-wrapper .icon.burn.flame.start {
  opacity: 0;
}
.home-animation .item .icon-wrapper .icon.burn.flame.second {
  width: 36px;
  height: 37px;
  opacity: 0;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.second {
    width: 8dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.second {
    width: 2dvw;
    height: auto;
  }
}
.home-animation .item .icon-wrapper .icon.burn.flame.third {
  width: 36px;
  height: 41px;
  opacity: 0;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.third {
    width: 8dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.third {
    width: 2dvw;
    height: auto;
  }
}
.home-animation .item .icon-wrapper .icon.burn.flame.end {
  width: 33px;
  height: 37px;
  opacity: 0;
}
@media (max-width: 520.98px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.end {
    width: 8dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .icon-wrapper .icon.burn.flame.end {
    width: 2dvw;
    height: auto;
  }
}
.home-animation .item .icon-wrapper .icon.hash .white {
  fill: #CCCCCC;
}
.home-animation .item .icon-wrapper .icon.hash .mint {
  fill: #929292;
}
.home-animation .item .icon-wrapper .icon.hash .ring {
  fill: #202427;
  stroke: #929292;
}
.home-animation .item .label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
@media (max-width: 520.98px) {
  .home-animation .item .label {
    font-size: 14px;
  }
}
@media (min-width: 2048px) {
  .home-animation .item .label {
    margin-top: 1dvw;
    font-size: 1dvw;
  }
}
.home-animation .line-wrapper {
  margin-top: 38px;
  width: 80px;
  height: 2px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media (max-width: 520.98px) {
  .home-animation .line-wrapper {
    margin-top: 7dvw;
    width: 10dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .line-wrapper {
    margin-top: 2.3dvw;
    width: 4dvw;
    height: 0.125dvw;
  }
}
.home-animation .line-wrapper .line {
  border-radius: 1px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(113, 199, 186, 0) 0%, #71c7ba 100%);
  transform: translateX(-120%);
}
@media (max-width: 520.98px) {
  .home-animation .line-wrapper .line {
    width: 8dvw;
  }
}
@media (min-width: 2048px) {
  .home-animation .line-wrapper .line {
    width: 3dvw;
    height: 0.125dvw;
  }
}
.home-animation.run-animation .item .icon-wrapper .icon {
  animation-duration: 1800ms;
  animation-fill-mode: forwards;
}
.home-animation.run-animation .item .icon-wrapper .icon.undefined-one {
  animation-name: undefinedOne;
}
.home-animation.run-animation .item .icon-wrapper .icon.second-block-kas {
  animation-name: secondBlockKas;
  animation-delay: 1700ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.second-block-bitcoin {
  animation-name: secondBlockBitcoin;
  animation-delay: 3500ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.second-block-monero {
  animation-name: secondBlockMonero;
  animation-delay: 5300ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.second-block-undefined {
  animation-name: secondBlockUndefined;
  animation-delay: 7100ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.kas {
  animation-name: kas;
}
.home-animation.run-animation .item .icon-wrapper .icon.tao {
  animation-name: tao;
  animation-delay: 1700ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.hash {
  animation-name: hash;
  animation-delay: 3500ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.hash .white {
  animation-name: hashWhite;
  animation-delay: 3500ms;
  animation-duration: 1800ms;
  animation-fill-mode: forwards;
}
.home-animation.run-animation .item .icon-wrapper .icon.hash .mint {
  animation-name: hashMint;
  animation-delay: 3500ms;
  animation-duration: 1800ms;
  animation-fill-mode: forwards;
}
.home-animation.run-animation .item .icon-wrapper .icon.hash .ring {
  animation-name: hashRing;
  animation-delay: 3500ms;
  animation-duration: 1800ms;
  animation-fill-mode: forwards;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn .burn-front {
  animation-name: burn-color-change;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 5300ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.enlarge {
  transform: translate(-50%, -50%) scale(0.875);
  animation-name: burn-enlarge;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 5300ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.flame {
  animation-name: burn-enlarge-flame;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.flame.start {
  opacity: 0;
  animation-duration: 500ms;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: burning;
  animation-delay: 5700ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.flame.second {
  opacity: 0;
  animation-duration: 500ms;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: burning;
  animation-delay: 5825ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.flame.third {
  opacity: 0;
  animation-duration: 500ms;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: burning;
  animation-delay: 5950ms;
}
.home-animation.run-animation .item .icon-wrapper .icon.burn.flame.end {
  opacity: 0;
  animation-duration: 500ms;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  animation-name: burning;
  animation-delay: 6075ms;
}
.home-animation.run-animation .line-wrapper .line {
  animation-name: line;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
.home-animation.run-animation .line-wrapper .line.kas-tao {
  animation-delay: 1500ms;
}
.home-animation.run-animation .line-wrapper .line.tao-hash {
  animation-delay: 3000ms;
}
.home-animation.run-animation .line-wrapper .line.hash-burn {
  animation-delay: 4500ms;
}
.home-animation.run-animation .line-wrapper .line.hash-monero {
  animation-delay: 6800ms;
}

.hhw .container {
  max-width: 1024px;
}
@media (max-width: 768px) {
  .hhw .container {
    max-width: 96dvw;
  }
}
@media (min-width: 2048px) {
  .hhw .container {
    max-width: 70dvw;
    padding: 0 30px;
  }
}
.hhw .section-title {
  text-align: center;
  margin-bottom: 0;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: end;
}
.hhw .section-title .logo {
  width: 76px;
  margin: 0 1rem;
  padding-bottom: 6px;
}
@media (min-width: 2048px) {
  .hhw .section-title .logo {
    width: 4.75dvw;
    padding-bottom: 0.2dvw;
  }
}
.hhw .section-descr {
  margin: 0;
  text-align: center;
  max-width: none;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .hhw .section-descr {
    line-height: 1.4;
    font-size: 22px;
  }
}
@keyframes line-hhw {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.hhw .line-wrapper {
  margin: 1rem auto;
  width: 220px;
  height: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 4px;
}
@media (min-width: 2048px) {
  .hhw .line-wrapper {
    width: 12.5dvw;
    height: 0.24dvw;
    border-radius: 0.24dvw;
    margin: 1dvw auto;
  }
}
.hhw .line-wrapper .line {
  border-radius: 4px;
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, rgba(113, 199, 186, 0) 0%, #71c7ba 100%);
  transform: translateX(-101%);
  animation-name: line-hhw;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
}
@media (min-width: 2048px) {
  .hhw .line-wrapper .line {
    width: 12.5dvw;
    height: 0.24dvw;
    border-radius: 0.24dvw;
  }
}
.hhw .item {
  border-radius: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  transition: all 250ms ease-in-out;
  margin-bottom: 8px;
}
@media (min-width: 2048px) {
  .hhw .item {
    padding-top: 0.44dvw;
    padding-bottom: 0.67dvw;
    margin-bottom: 0.44dvw;
  }
}
.hhw .item .icon {
  width: 56px;
  height: 56px;
}
.hhw .item .icon.miner {
  padding: 4px;
}
@media (min-width: 2048px) {
  .hhw .item .icon {
    width: 3.1dvw;
    height: 3.1dvw;
  }
  .hhw .item .icon.miner {
    padding: 0.22dvw;
  }
}
.hhw .item:hover {
  background-color: #1d1d1d;
  transform: scale(102%);
}
.hhw .item:hover .icon {
  filter: drop-shadow(0 0 0.4rem #71C7BA);
}
.hhw .final-text {
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
}

.faq .container {
  max-width: 800px;
}
@media (min-width: 2048px) {
  .faq .container {
    max-width: 40dvw;
  }
}
.faq .accordion-body {
  background-color: rgba(29, 29, 29, 0.5058823529);
  padding: 1.5rem;
  border-top: none;
  box-shadow: none;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 2048px) {
  .faq .accordion-body {
    font-size: 0.88dvw;
    padding: 1.3dvw;
  }
}
.faq .accordion-item {
  border: none;
  box-shadow: none;
  background-color: transparent;
  transition: transform 300ms ease-in-out;
}
.faq .accordion-item .logo {
  width: 26px;
  min-width: 26px;
  padding-bottom: 0;
  gap: 0;
  transform: rotateZ(0);
  transition: transform 300ms ease-in-out;
}
@media (min-width: 2048px) {
  .faq .accordion-item .logo {
    width: 1.44dvw;
    min-width: 1.44dvw;
  }
}
.faq .accordion-item:hover, .faq .accordion-item:active {
  transform: scale(102%);
}
.faq .accordion-item:hover .logo, .faq .accordion-item:active .logo {
  transform: rotateZ(-180deg);
}
.faq .accordion-flush .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq .accordion-flush .accordion-button {
  background-color: #1d1d1d;
  color: #fff;
  font-weight: bold;
  border: none;
  box-shadow: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  line-height: 1.4;
}
@media (min-width: 2048px) {
  .faq .accordion-flush .accordion-button {
    padding: 1.2dvw 1dvw;
    font-size: 0.88dvw;
  }
  .faq .accordion-flush .accordion-button:after {
    width: 1dvw;
    height: 1dvw;
    background-size: 1dvw;
  }
  .faq .accordion-flush .accordion-button .ms-2 {
    margin-left: 0.5dvw !important;
  }
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  background-color: #1d1d1d;
  color: #fff;
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* --------------- footer --------------- */
.footer {
  min-height: 10dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 16px;
}
@media screen and (max-height: 750px) {
  .footer {
    min-height: 100px;
  }
}
@media (min-width: 2048px) {
  .footer {
    padding-top: 1.33dvw;
    padding-bottom: 0.88dvw;
  }
}
.footer .powered-by {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 2048px) {
  .footer .powered-by {
    font-size: 0.88dvw;
  }
}
.footer .social-icon .link {
  width: 30px;
  height: 30px;
  line-height: 2;
  text-align: center;
  font-size: 14px;
  transition: all 250ms;
}
@media (min-width: 2048px) {
  .footer .social-icon .link {
    font-size: 0.75dvw;
    width: 1.66dvw;
    height: 1.66dvw;
  }
}
.footer .social-icon .link .icon {
  fill: #fff;
}
.footer .social-icon .link .icon.twitter {
  width: 19px;
}
.footer .social-icon .link .icon.discord {
  width: 24px;
}
@media (min-width: 2048px) {
  .footer .social-icon .link .icon.twitter {
    width: 1dvw;
  }
  .footer .social-icon .link .icon.discord {
    width: 1.33dvw;
  }
}
.footer .social-icon .link:hover .icon {
  fill: #70c8ba;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
}

#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  position: relative;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  position: relative;
  background: hsl(0, 0%, 6%);
}
@media (min-width: 2048px) {
  body {
    font-size: 1dvw;
  }
}
@supports (--css: variables) {
  body {
    min-height: 100dvh !important;
    /* Для нових браузерів, що підтримують dvh */
  }
}
@supports not (--css: variables) {
  body {
    min-height: 100dvh !important;
    /* Фолбек для старіших браузерів */
  }
}
body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-size: 48px;
  line-height: 1.25;
}

h3 {
  font-size: 40px;
  line-height: 1.3;
}

h4 {
  font-size: 36px;
  line-height: 48px;
}

h5 {
  font-size: 32px;
  line-height: 1.33;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 2048px) {
  p {
    font-size: 0.88dvw;
  }
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.icon.invert img {
  filter: invert(1);
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative;
  }
  .header-sa .caption {
    position: relative;
    z-index: 4;
  }
  .header-sa .caption .text {
    margin-top: 40px;
    width: 80%;
  }
  .header-sa .imgs {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    transform: translateY(50%);
  }
  .header-sa .imgs .circle {
    width: 250px;
    top: 60%;
  }
  .marq-sa .item h2 {
    font-size: 70px;
    line-height: 1.4;
    -webkit-text-fill-color: #fff;
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .header-sa .caption h1 {
    font-size: 50px;
    line-height: 1.4;
  }
  .header-sa .imgs {
    width: 60%;
    transform: translateY(70%);
  }
  .header-sa .imgs .cube img {
    right: -30px;
  }
  .header-sa .imgs .circle {
    width: 200px;
  }
  .contact-sa .box {
    padding: 120px 40px;
  }
}
.el {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: radial-gradient(ellipse at center, #1f4978 0%, #090a0f 100%);
  width: 100%;
  height: 100dvh;
  opacity: 1;
  -webkit-mask: radial-gradient(circle at 50% 50%, white 2px, transparent 2.5px) 50% 50%/var(--size) var(--size), url("https://assets.codepen.io/605876/noise-mask.png") 256px 50%/256px 256px;
          mask: radial-gradient(circle at 50% 50%, white 2px, transparent 2.5px) 50% 50%/var(--size) var(--size), url("https://assets.codepen.io/605876/noise-mask.png") 256px 50%/256px 256px;
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  animation: flicker 20s infinite linear;
}

@keyframes flicker {
  to {
    -webkit-mask-position: 50% 50%, 0 50%;
            mask-position: 50% 50%, 0 50%;
  }
}/*# sourceMappingURL=home1-style.css.map */