@import"https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500;700&amp;display=swap";

:root {
  --first-color: hsl(203, 71%, 60%);
  --second-color: hsl(277, 56%, 68%)
}

*,
*:before,
*:after {
  box-sizing: border-box
}

* {
  margin: 0
}

html,
body {
  height: max-content
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw
}

html {
  overflow-y: scroll;
  min-height: 100%;
  line-height: 1
}

img,
picture,
video,
canvas,
svg {
  display: block
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

a {
  text-decoration: none
}

a[href] {
  cursor: pointer
}

li {
  list-style-type: none
}

ul {
  padding: 0;
  margin: 0
}

iframe {
  border: 0
}

html {
  --webkit-scrollbar-width: none;
  min-height: 100%;
  scroll-behavior: smooth
}

@media (min-width: 1090px) {
  html {
    min-height: initial
  }
}

body {
  position: relative;
  text-rendering: optimizeSpeed;
  width: 100%;
  font-size: 1rem
}

@media (min-width: 1090px) {
  body {
    height: max-content
  }
}

body.waiting {
  cursor: wait
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3
}

strong,
b {
  font-weight: 700
}

body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  background-color: #000;
  font-family: Noto Sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-weight: 500;
  font-size: 1.0625rem
}

body.is-non-scrollable {
  position: fixed;
  width: 100%;
  overflow: hidden
}

@media (min-width: 1090px) {
  body {
    user-select: auto
  }
}

:root {
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  --webkit-font-smoothing: antialiased
}

a {
  color: #fff
}

p {
  line-height: 1.88
}

.grid {
  display: flex;
  flex-direction: column
}

@media (min-width: 768px) {
  .grid {
    flex-direction: row
  }
}

@media (min-width: 768px) {
  .grid--reverse {
    flex-direction: row-reverse
  }
}

@media (min-width: 768px) {
  .grid--between {
    justify-content: space-between
  }
}

.grid__item {
  width: 100%
}

@media (min-width: 768px) {
  .grid__item {
    padding-left: 1rem;
    padding-right: 1rem;
    flex: 0 0 auto
  }
}

.grid__item--center {
  margin-inline: auto
}

.grid__item--7of12 {
  width: 100%
}

@media (min-width: 768px) {
  .grid__item--7of12 {
    max-width: 58.3333333333%
  }
}

@media (min-width: 768px) {
  .grid__item--6of12 {
    max-width: 50%
  }
}

.grid__item--5of12 {
  width: 100%
}

@media (min-width: 768px) {
  .grid__item--5of12 {
    max-width: 41.6666666667%
  }
}

.community__title,
.section__title {
  font-family: Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.25rem
}

@media (min-width: 1090px) {

  .community__title,
  .section__title {
    font-size: 2.8125rem;
    line-height: 1.33
  }
}

.countdown__label,
.section__subtitle {
  text-transform: uppercase;
  color: #d1feea;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: .2em
}

@media (min-width: 1090px) {

  .countdown__label,
  .section__subtitle {
    line-height: 2.7;
    font-size: 1.5rem;
    line-height: 1.33
  }
}

.text-gradient,
.countdown__label,
.section__subtitle {
  background: linear-gradient(to right, #ff01fa, #03f3fb);
  text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 12s ease-in-out infinite
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 31px;
  font-weight: 700;
  font-size: 1rem
}

.btn span {
  position: relative;
  z-index: 2
}

.btn--primary {
  background-image: linear-gradient(to right, blue, red, yellow);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-size: 250% 100%;
  transition: all .4s ease-in-out;
  transition: .4s ease-in-out infinite;
  background-position: 0 0;
  animation: gradient-animation 4s ease-in-out infinite;
  transform: translateY(0);
  box-shadow: 0
}

.btn--primary:hover {
  background-position: 100% 0;
  transition: all .4s ease-in-out
}

.btn--outline {
  border: 2px solid #fff800;
  position: relative;
  background: transparent
}

.btn--outline:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: inherit;
  transition: .4s ease-in-out all;
  background-image: linear-gradient(to right, #ff01fa, #03f3fb);
  animation: gradient-animation 4s ease-in-out infinite;
  opacity: 0
}

.btn--outline:hover {
  border-color: transparent
}

.btn--outline:hover:before {
  opacity: 1;
  animation: gradient-animation 4s ease-in-out infinite
}

.btn--outline-dark {
  border-color: #1f1e29;
  color: #1f1e29;
  transition: .4s ease-in-out all
}

.btn--outline-dark:before {
  display: none
}

.btn--outline-dark:hover {
  transition: .4s ease-in-out all;
  background: #4D4D70;
  color: #fff
}

.btn--blue {
  background-image: linear-gradient(to right, #1F1E29, #4D4D70);
  color: #fff;
  border-color: #1f1e29;
  transition: .4s ease-in-out all
}

.btn--blue:before {
  display: none
}

.btn--blue:hover {
  transition: .4s ease-in-out all;
  background-image: none;
  color: #1f1e29;
  border-color: #1f1e29
}

.text-primary {
  color: #d1feea
}

.text-center {
  text-align: center
}

.wrapper {
  overflow: hidden;
  min-height: 100vh
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
}

@media (min-width: 1090px) {
  .container {
    max-width: 960px
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px
  }
}

@keyframes text-shine {
  0% {
    background-position: 85% 100%
  }

  50% {
    background-position: -100% -85%
  }

  to {
    background-position: 100% 75%
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 85% 100%
  }

  50% {
    background-position: -100% -85%
  }

  to {
    background-position: 100% 75%
  }
}

@keyframes gradient-circle-animation {
  0% {
    background-size: 85% 85%
  }

  20% {
    background-size: 90% 90%
  }

  35% {
    background-size: 95% 95%
  }

  55% {
    background-size: 105% 105%
  }

  70% {
    background-size: 100% 100%
  }

  95% {
    background-size: 95% 95%
  }

  95% {
    background-size: 100% 100%
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  to {
    background-position: 0% 50%
  }
}

@keyframes heroDown {
  0% {
    transform: translateY(0)
  }

  40% {
    transform: translateY(10px)
  }

  60% {
    transform: translateY(0)
  }
}

@keyframes bounce {
  50% {
    transform: translateY(-15px)
  }
}

@keyframes float-top-bottom {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-60px)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(-15px) rotate(15deg)
  }

  50% {
    transform: translateY(5px) rotate(-15deg)
  }

  75% {
    transform: translateY(15px) rotate(8deg)
  }

  to {
    transform: translateY(0) rotate(0)
  }
}

@keyframes float-staking-1 {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(-15px) rotate(15deg)
  }

  50% {
    transform: translate(-25px, -50px) rotate(15deg)
  }

  75% {
    transform: translateY(-45px) rotate(-8deg)
  }

  to {
    transform: translateY(0) rotate(0)
  }
}

@keyframes float-staking-2 {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(15px) rotate(-15deg)
  }

  50% {
    transform: translate(-5px, 50px) rotate(15deg)
  }

  75% {
    transform: translateY(-15px) rotate(-3deg)
  }

  to {
    transform: translateY(0) rotate(0)
  }
}

@keyframes float-staking-3 {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(-15px) rotate(10deg)
  }

  50% {
    transform: translate(20px, 55px) rotate(-15deg)
  }

  75% {
    transform: translateY(-10deg) rotate(6deg)
  }

  to {
    transform: translateY(0) rotate(0)
  }
}

@keyframes fadeInGamesBg {
  50% {
    background-size: 50% 50%
  }

  to {
    background-size: 100% 100%
  }
}

@keyframes showKart {
  0% {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

@keyframes rideKart {
  0% {
    transform: translate(0)
  }

  50% {
    transform: translate(-50px, -30px)
  }

  to {
    transform: translate(0)
  }
}

@keyframes btnTransition {
  0% {
    background-position: 0 0
  }

  50% {
    background-position: 50% 0
  }

  to {
    background-position: 100% 0
  }
}

@keyframes float-eth {
  0% {
    transform: translateY(.5rem)
  }

  50% {
    transform: translateY(2rem)
  }

  to {
    transform: translateY(.5rem)
  }
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  to {
    background-position: 0% 50%
  }
}

@keyframes move-clouds-back {
  0% {
    background-position: 0 0
  }

  to {
    background-position: 10000px
  }
}

.orb-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: -1
}

.navbar {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: .3s ease-in all;
  background-color: #1f1e29e6
}

@media (min-width: 1090px) {
  .navbar {
    width: 100%;
    max-width: 1320px
  }
}

@media (max-width: 1090px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #1f1e29;
    z-index: 4;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 6.25rem;
    transform: translateY(-100vh);
    opacity: 0;
    transition: transform .4s cubic-bezier(.445, .05, .55, .95)
  }

  .navbar__nav--is-visible {
    transform: translateY(0);
    transition: transform .4s cubic-bezier(.445, .05, .55, .95);
    animation-direction: alternate;
    opacity: 1
  }
}

@media (min-width: 1090px) {
  .navbar__nav {
    display: flex;
    align-items: center;
    transform: translate(0)
  }
}

.navbar__logo {
  display: inline-block;
  position: relative;
  max-width: 200px
}

.navbar__logo svg {
  width: 100%;
  height: auto
}

.navbar__menu {
  display: flex;
  margin-top: 20px;
  flex-direction: column
}

@media (min-width: 1090px) {
  .navbar__menu {
    flex-direction: row
  }
}

.navbar__menu-item {
  margin-bottom: 1.25rem
}

@media (min-width: 768px) {
  .navbar__menu-item:not(:last-child) {
    margin-right: 1.25rem
  }
}

@media (min-width: 1090px) {
  .navbar__menu-item:not(:last-child) {
    margin-right: 2rem
  }
}

.navbar__menu-link {
  color: #fff;
  font-weight: 500;
  display: block;
  padding: .3125rem .75rem
}

@media (max-width: 768px) {
  .navbar__menu-link {
    padding: 0
  }
}

.navbar__menu-link:hover {
  color: #d1feea
}

.navbar__burger {
  position: relative;
  z-index: 10;
  background: transparent;
  border: 0;
  padding: 0;
  margin: .1875rem 0 0
}

@media (min-width: 1090px) {
  .navbar__burger {
    display: none;
    visibility: hidden
  }
}

.navbar__burger .line {
  width: 32px;
  height: 2px;
  display: block;
  margin: 8px auto;
  background-color: #fff;
  transition: all .3s ease-in-out
}

.navbar__burger--is-active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg)
}

.navbar__burger--is-active .line:nth-child(2) {
  opacity: 0
}

.navbar__burger--is-active .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg)
}

.navbar__btn {
  position: relative;
  padding: 1.125rem 3.125rem;
  margin-top: -1.125rem;
  overflow: hidden;
  margin-left: 3rem;
  color: #fff !important
}

@media (max-width: 1090px) {
  .navbar__btn {
    margin-top: 1rem;
    margin-left: 0
  }
}

.dropdown {
  position: relative;
  display: inline-block
}

@media (max-width: 1090px) {
  .dropdown {
    display: none;
    margin-left: 1rem;
    width: 100%;
    margin-bottom: pxTorem(16px)
  }
}

.dropdown__btn {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  position: relative;
  cursor: pointer
}

.dropdown__btn svg {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 8.48px;
  height: 4.24px
}

.dropdown__btn:hover {
  transition: .3s ease-in-out all;
  color: #d1feea
}

.dropdown__content {
  position: absolute;
  opacity: 0;
  top: 60px;
  background-color: #17161c;
  box-shadow: 0 8px 16px #0000001a;
  z-index: 1;
  border-radius: 5px;
  transform-style: preserve-3d;
  transform: translate3d(0, 32px, 0);
  transition: .3s ease-in-out all
}

.dropdown__content:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 0;
  height: 0;
  display: inline-block;
  border: 10px solid transparent;
  border-bottom-color: #17161c
}

.dropdown__content--is-visible {
  opacity: 1;
  transform: translateZ(0)
}

.dropdown__content li {
  padding: .5rem 1rem;
  text-decoration: none;
  font-weight: 700;
  display: block;
  font-size: .875rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.dropdown__content li a:hover {
  color: #d1feea
}

@media screen and (min-width: 768px) {
  .navbar {
    background: transparent
  }

  .navbar__logo {
    max-width: 240px
  }
}

@media (min-width: 1090px) {
  .section__title--large {
    font-size: 60px
  }
}

.section__text {
  margin-bottom: 1.875rem
}

.section__heading {
  padding-top: 6.25rem
}

.hero {
  position: relative;
  padding-top: 3.75rem;
  background-image: url(img/hero-bg.jpg);
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  align-items: center;
  justify-content: center
}

.hero__container {
  position: relative;
  z-index: 4;
  padding-top: 74px;
  max-width: 1200px;
  padding-left: 2rem;
  padding-right: 2em;
  margin-inline: auto
}

@media screen and (min-width: 1200px) {
  .hero__container {
    padding-top: 120px
  }
}

@media screen and (min-width: 1600px) {
  .hero__container {
    padding-top: 150px
  }
}

.hero__clouds {
  background: transparent url(img/clouds.png) repeat top center;
  z-index: 3;
  -moz-animation: move-clouds-back 200s linear infinite;
  -ms-animation: move-clouds-back 200s linear infinite;
  -o-animation: move-clouds-back 200s linear infinite;
  -webkit-animation: move-clouds-back 200s linear infinite;
  animation: move-clouds-back 200s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%
}

.hero__title {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 2rem
}

@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 68px
  }
}

.hero__title--small {
  font-size: 48px;
  font-size: 24px
}

@media screen and (min-width: 768px) {
  .hero__title--small {
    font-size: 48px
  }
}

.hero__text {
  font-size: 16px;
  margin-bottom: 2rem;
  display: none;
  visibility: hidden
}

@media screen and (min-width: 768px) {
  .hero__text {
    font-size: 18px;
    display: block;
    visibility: visible
  }
}

.hero__btn {
  min-width: 220px
}

.hero .social-list-hero {
  width: auto;
  max-width: auto;
  display: flex
}

.games {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background: #18171f;
  overflow: hidden;
  min-height: 100vh
}

@media (min-width: 768px) {
  .games {
    padding-top: 10rem;
    padding-bottom: 3.75rem
  }
}

@media (min-width: 768px) {
  .games__container {
    margin-top: 150px
  }
}

.games__text {
  position: relative
}

.games__main {
  position: relative;
  z-index: 2
}

.games__image {
  position: relative;
  margin-top: 2.5rem
}

@media (min-width: 768px) {
  .games__image {
    margin-top: 1.25rem
  }
}

.games__gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  z-index: 1;
  width: 21.25rem;
  height: 21.25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(160, 105, 50) 0%, rgb(24, 23, 31) 70%);
  background-repeat: no-repeat;
  background-position: 50% 50%
}

@media (min-width: 1090px) {
  .games__gradient {
    width: 48.75rem;
    height: 48.75rem
  }
}

.games .kart-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  object-fit: contain
}

.games .kart {
  position: relative;
  z-index: 4;
  max-width: 100%;
  height: auto;
  transform-origin: 50% 50%;
  transform: translate(-40px)
}

.games__col {
  display: flex;
  justify-content: center;
  align-items: center
}

.js-kart-text {
  position: absolute;
  height: auto;
  width: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2
}

@media (min-width: 1200px) {
  .js-kart-text {
    transform: translate(-56%, -55%);
    width: 727px
  }
}

.js-kart-coins {
  position: absolute;
  top: -60px;
  right: -5px;
  height: auto;
  max-width: 170px;
  z-index: 5
}

@media (min-width: 1090px) {
  .js-kart-coins {
    left: -175px;
    max-width: 200px
  }
}

.crush {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  background: url(img/background_crush.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0
}

@media (max-width: 576px) {
  .crush {
    background-position: 56% 50%
  }
}

@media (min-width: 768px) {
  .crush {
    height: 100vh;
    margin-bottom: 0;
    margin-bottom: -9.375rem
  }
}

/* .crush:before {
  content: "";
  position: absolute;
  width: 46px;
  height: 100%;
  background: #FF7700
} */

@media (min-width: 768px) {
  .crush__container {
    margin-top: 50px
  }
}

.crush__title {
  position: relative
}

.crush__title svg {
  width: 200px
}

@media (min-width: 768px) {
  .crush__title svg {
    width: 100%
  }
}

.crush__comingsoon {
  height: 4.0625rem;
  width: 4.0625rem;
  color: #fff;
  background-color: #f70;
  border-radius: 50%;
  font-size: .75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  padding: 1.125rem;
  text-align: center;
  transform: rotate(-10deg) translateY(-50%);
  position: absolute;
  right: -2.5rem;
  top: 55%
}

@media (min-width: 768px) {
  .crush__comingsoon {
    right: -5.625rem;
    height: 7.8125rem;
    width: 7.8125rem;
    font-size: 1rem;
    padding: 2.375rem
  }
}

.crush__text {
  position: relative;
  margin-top: 1.375rem;
  padding-left: 4.375rem;
  padding-right: 2.5rem;
  color: #1f1e29;
  margin-left: auto;
  text-align: center
}

@media (min-width: 768px) {
  .crush__text {
    max-width: 36.125rem;
    padding: 0
  }
}

.crush__subtitle {
  margin-top: 2.5rem;
  margin-bottom: 1.5625rem
}

@media (min-width: 768px) {
  .crush__subtitle {
    margin-top: 2.5rem
  }
}

.crush__subtitle img {
  max-width: 10.4375rem
}

.crush__main {
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column
}

.crush__image {
  position: relative;
  margin-top: 2.5rem
}

@media (min-width: 768px) {
  .crush__image {
    margin-top: 11.25rem
  }
}

.crush__image img {
  height: 100%;
  width: 100%
}

@media (min-width: 768px) {
  .crush__image img {
    width: 120%
  }
}

.crush__gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  z-index: 1;
  width: 21.25rem;
  height: 21.25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(160, 105, 50) 0%, rgb(24, 23, 31) 70%);
  background-repeat: no-repeat;
  background-position: 50% 50%
}

@media (min-width: 1090px) {
  .crush__gradient {
    width: 48.75rem;
    height: 48.75rem
  }
}

.crush__button {
  margin-top: .9375rem
}

.crush__col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -10.625rem
}

@media (min-width: 768px) {
  .crush__col {
    margin-bottom: 0
  }
}

.crush__candy {
  position: absolute;
  display: none
}

@media (min-width: 768px) {
  .crush__candy {
    display: block
  }
}

.crush__candy--green {
  display: none;
  left: -1.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 212px;
  height: 246px
}

.crush__candy--green img {
  max-width: 100%
}

@media (min-width: 1460px) {
  .crush__candy--green {
    display: block
  }
}

.crush__candy--red {
  top: -5rem;
  left: 8.75rem;
  width: 212px;
  height: 246px
}

.crush__candy--red img {
  max-width: 100%
}

.crush__candy--orange {
  top: 6.25rem;
  right: -3.75rem;
  width: 212px;
  height: 246px
}

.crush__candy--orange img {
  max-width: 100%
}

.shiaverse {
  position: relative;
  width: 100%;
  color: #000;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background: linear-gradient(to right, blue, red, yellow);
  overflow: hidden
}

@media (min-width: 768px) {
  .shiaverse {
    padding-top: 16.25rem;
    padding-bottom: 16.25rem
  }
}

.shiaverse .section__subtitle {
  color: #000;
  background: transparent;
  -webkit-text-fill-color: #000
}

.shiaverse .btn {
  color: #000;
  border: 1px solid #000
}

.shiaverse__container {
  height: 100%
}

@media (min-width: 768px) {
  .shiaverse__container {
    align-items: center;
    height: 100%
  }
}

.shiaverse .shia-vr {
  transform: rotate(7deg)
}

.shiaverse__image {
  display: block;
  width: 100%;
  height: auto
}

@media (min-width: 768px) {
  .shiaverse__image {
    position: absolute;
    top: 50%;
    height: 800px;
    width: 800px;
    left: 50%;
    transform: translate(-30%, -40%)
  }
}

.shiaverse__image .shia-vr {
  position: relative;
  z-index: 2
}

.shiaverse__col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  flex: 1 0 0
}

@media (max-width: 768px) {
  .shiaverse__col {
    margin-top: 5rem
  }
}

.shiaverse .shiaverse-coins {
  position: absolute;
  left: 30px;
  transform: translateY(-85px);
  max-width: 432px;
  width: 100%;
  mix-blend-mode: hard-light;
  animation: float 20s ease-in-out infinite
}

@media (max-width: 768px) {
  .shiaverse .shiaverse-coins {
    max-width: 220px
  }
}

#ImgWrapper {
  position: relative;
  width: 100vw;
  min-height: 80vh;
  overflow: hidden;
  perspective: 2200px
}

#ImgWrapper>img {
  position: absolute;
  box-shadow: 0 0 31px #000
}

#ImgWrapper #img1 {
  height: 22vh;
  bottom: 50%;
  left: 7%;
  z-index: 1
}

#ImgWrapper #img2 {
  height: 22vh;
  bottom: 70%;
  right: 7%;
  z-index: 2
}

#ImgWrapper #img3 {
  height: 22vh;
  bottom: 35%;
  right: 35%;
  z-index: 3
}

#ImgWrapper #img4 {
  height: 22vh;
  bottom: 61.89%;
  left: 13%;
  z-index: 4
}

#ImgWrapper #img5 {
  height: 25vh;
  left: 50%;
  bottom: 50%;
  z-index: 5
}

#ImgWrapper #img6 {
  height: 17vh;
  left: 5%;
  bottom: 22%;
  z-index: 6
}

@media (min-width: 768px) {
  #ImgWrapper #img1 {
    z-index: 1;
    height: 25vh;
    bottom: 15%;
    left: 5%
  }

  #ImgWrapper #img2 {
    z-index: 2;
    height: 15vh;
    bottom: 40%;
    right: 5%
  }

  #ImgWrapper #img3 {
    z-index: 3;
    height: 20vh;
    bottom: 22%;
    right: 25%
  }

  #ImgWrapper #img4 {
    z-index: 4;
    height: 15vh;
    bottom: 55%;
    left: 13%
  }

  #ImgWrapper #img5 {
    z-index: 5;
    height: 50vh;
    bottom: 22%;
    left: 36%
  }

  #ImgWrapper #img6 {
    z-index: 6;
    height: 31vh;
    bottom: 13%;
    left: 13%
  }
}

.nfts {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh
}

.nfts__main {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  width: 100%
}

.nfts__main img {
  max-width: 400px
}

@media (min-width: 768px) {
  .nfts__main img {
    position: absolute;
    bottom: -300px;
    right: -350px;
    max-width: 100%
  }
}

.rocket {
  position: absolute;
  right: 0;
  top: 150px;
  width: 350px;
  height: auto
}

.staking {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 8.75rem
}

@media (min-width: 1090px) {
  .staking {
    padding-top: 10rem
  }
}

@media (min-width: 1090px) {
  .staking .grid {
    align-items: center;
    height: 100%
  }
}

.staking__image {
  position: relative;
  margin-top: 3.75rem;
  min-height: 495px
}

@media (max-width: 768px) {
  .staking__image {
    min-height: 220px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
  }
}

@media screen and (max-width: 414px) {
  .staking__image {
    max-width: 375px
  }
}

.staking__image--1,
.staking__image--2,
.staking__image--3 {
  position: absolute;
  top: 0
}

.staking__image--1 {
  top: 0;
  animation: float-staking-1 12s ease-in-out infinite
}

@media (max-width: 768px) {
  .staking__image--1 {
    max-width: 300px
  }
}

.staking__image--2 {
  animation: float-staking-2 8s ease-in-out infinite;
  bottom: -100px;
  right: 0
}

@media (max-width: 768px) {
  .staking__image--2 {
    max-width: 300px
  }
}

.staking__image--3 {
  right: -50px;
  animation: float-staking-3 6s ease-in-out infinite;
  z-index: -1
}

@media (max-width: 768px) {
  .staking__image--3 {
    max-width: 150px;
    right: 50%;
    transform: translate(-50%)
  }
}

@media (min-width: 1090px) {
  .staking__image {
    margin-left: auto
  }
}

.community {
  position: relative;
  padding-top: 3.75rem
}

.community .bg-animation {
  z-index: -1
}

.community__container {
  position: relative;
  z-index: 3;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 940px
}

@media (min-width: 1090px) {
  .community {
    margin-top: 10rem
  }
}

.community__text {
  font-size: .9375rem;
  margin-bottom: 4rem
}

@media (min-width: 1090px) {
  .community__text {
    font-size: 1.0625rem
  }
}

.community__text p {
  font-size: inherit
}

.tokenomics {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  z-index: 2;
  background: #18171f
}

.tokenomics .container {
  overflow: hidden
}

.tokenomics__grid {
  margin-top: 4.375rem
}

@media (max-width: 768px) {
  .tokenomics {
    padding-bottom: 3.75rem
  }
}

.tokenomics-list {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto
}

.tokenomics-list__item {
  position: relative;
  background: linear-gradient(#1f1e29 0%, #302f44 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: .8rem 1.6rem;
  margin-bottom: .5rem
}

.tokenomics-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background-color: var(--theme-color)
}

.tokenomics-list__item .text-theme {
  color: var(--theme-color)
}

.tokenomics-list__item--team {
  --theme-color: #c12315
}

.tokenomics-list__item--advisors {
  --theme-color: #447BD9
}

.tokenomics-list__item--rewards {
  --theme-color: #FFA12D
}

.tokenomics-list__item--ecosystem {
  --theme-color: #5523ED
}

.tokenomics-list__item--marketing {
  --theme-color: #851DCD
}

.tokenomics-list__item--liquidity {
  --theme-color: #C1075F
}

.tokenomics-list__item--seed {
  --theme-color: #FF6924
}

.tokenomics-list__item--public {
  --theme-color: #5ACCE9
}

.tokenomics-list__col {
  display: flex;
  flex-direction: column;
  text-align: left
}

.tokenomics-list__col:nth-child(1) {
  flex-grow: 1
}

.tokenomics-list__col:nth-child(2) {
  text-align: right
}

.tokenomics-list__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .4rem
}

@media (max-width: 768px) {
  .tokenomics-list__title {
    font-size: 1rem
  }
}

.tokenomics-list__small-text {
  color: #ffffff80;
  font-size: .6875rem;
  font-weight: medium
}

.tokenomics-list__col:nth-child(1) .tokenomics-list__small-text {
  padding-right: 2rem
}

@media (max-width: 768px) {
  .tokenomics-list__small-text {
    font-size: .5625rem
  }
}

.tokenomics-list__number {
  font-size: pxTorem(20px);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 120px
}

@media (max-width: 768px) {
  .tokenomics-list__number {
    font-size: .875rem
  }
}

.doughnut-wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-height: 462px;
  height: 100%;
  margin-bottom: 1.5rem
}

@media (min-width: 768px) {
  .doughnut-wrapper {
    margin-top: 5.25rem
  }
}

.doughnut-wrapper .doughnut-supply {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42.5%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none
}

.doughnut-wrapper .doughnut-supply__text-top {
  font-size: 17px;
  color: #ffffff80
}

.doughnut-wrapper .doughnut-supply__text-bottom {
  color: #fff;
  font-size: 24px;
  font-weight: 700
}

.doughnut-wrapper svg {
  width: 100%;
  height: 100%
}

.team {
  position: relative;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-color: #1f1e29
}

@media (max-width: 576px) {
  .team {
    padding-bottom: 2rem
  }
}

.team__heading {
  margin-bottom: 4rem;
  position: relative;
  z-index: 5
}

.team:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1200px;
  width: 1200px;
  background: radial-gradient(circle, rgba(92, 92, 136, .5) 0%, rgb(31, 30, 41) 60%);
  opacity: .55;
  z-index: 1;
  border-radius: 50%
}

.team-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2
}

.team-grid__item {
  flex-shrink: 1 0 0;
  padding-left: .5rem;
  padding-right: .5rem;
  margin-bottom: 1.5rem;
  flex-basis: 25%
}

@media (max-width: 1090px) {
  .team-grid__item {
    flex-basis: 50%
  }
}

@media (max-width: 576px) {
  .team-grid__item {
    min-width: 280px
  }
}

.team-member {
  position: relative;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-block: 2.5rem
}

.team-member:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #14131a;
  opacity: .8;
  z-index: -1;
  box-shadow: 2px 2px 5px #00000026;
  border-radius: 10px;
  border-left: 10px solid #d1feea
}

.team-member__image {
  margin-inline: auto;
  position: relative;
  width: 150px;
  height: 150px
}

.team-member__image:before {
  content: "";
  position: absolute;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  top: -4px;
  right: -4px;
  left: -4px;
  bottom: -4px;
  border-radius: 50%;
  z-index: 1
}

.team-member__image>img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-member__linkedin {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  background-color: #d1feea;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  transition: .3s ease all
}

.team-member__linkedin>svg {
  width: 1rem;
  height: auto;
  z-index: 2;
  fill: #fff
}

.team-member__linkedin:hover {
  transform: translateY(-2px)
}

.team-member__title {
  font-size: 1.5rem;
  margin-bottom: .25rem;
  font-weight: 700;
  display: block
}

.team-member__function {
  display: block
}

.presale {
  position: relative;
  overflow: hidden;
  background: #18171F;
  width: 100%;
  border-bottom-left-radius: 200vw 40vw;
  border-bottom-right-radius: 200vw 40vw;
  box-shadow: 0 0 3px #18171f, 0 0 3px #18171f inset;
  padding-bottom: 1.25rem;
  margin-bottom: 3.75rem
}

@media (min-width: 1090px) {
  .presale {
    padding-bottom: 6.25rem;
    border-bottom-left-radius: 100vw 40vw;
    border-bottom-right-radius: 100vw 40vw;
    width: 200vw;
    margin-left: -50vw
  }
}

.presale .container {
  position: relative;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem
}

.presale__shia {
  margin-left: auto;
  margin-right: auto
}

@media (min-width: 1090px) {
  .presale__shia {
    position: absolute;
    bottom: 0;
    width: 760px;
    height: 760px;
    bottom: -177px;
    right: -60px
  }
}

.progress {
  width: 100%;
  height: 50px
}

.progress-wrap {
  margin: 20px 0;
  padding: 3px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 4px 30px #0000001a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid #fff
}

.progress-wrap .progress-bar {
  width: 0;
  transform-origin: left;
  position: absolute;
  background: linear-gradient(120deg, #fc6400, #fda200, #ff5d20);
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 4px;
  right: 4px;
  height: 32px;
  border-radius: 3px
}

.social-list {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem
}

@media (min-width: 1090px) {
  .social-list {
    margin-bottom: 7.5rem
  }
}

.social-list__item:not(:last-child) {
  margin-right: 1rem
}

@media (min-width: 1090px) {
  .social-list__item:not(:last-child) {
    margin-right: 5rem
  }
}

.social-list__item-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 3rem;
  height: 3rem;
  margin-bottom: .625rem
}

.social-list__item-link {
  display: block;
  transition: .3s transform cubic-bezier(.42, 0, .58, 1)
}

.social-list__item-link:hover {
  transform: translateY(-3px)
}

.social-list__item-text {
  font-size: .875rem
}

@media (min-width: 1090px) {
  .social-list__item-text {
    font-size: pxTorem(15px)
  }
}

.footer__logo {
  display: block;
  width: 314px;
  margin-inline: auto
}

@media (min-width: 1090px) {
  .footer__logo {
    margin-bottom: 5rem
  }
}

.footer__logo svg {
  width: 240px;
  height: auto
}

@media (min-width: 1090px) {
  .footer__logo svg {
    width: 314px
  }
}

.footer__copyright {
  font-size: .9375rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  letter-spacing: -.01em
}

@media (min-width: 1090px) {
  .footer__copyright {
    margin-bottom: 3.75rem
  }
}

.hero-subpage {
  position: relative;
  max-height: 850px;
  overflow: hidden;
  margin-top: 105px
}

@media (min-width: 1090px) {
  .hero-subpage {
    padding-bottom: 40%
  }
}

.hero-subpage>img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.breadcrumbs {
  display: flex;
  color: #fff;
  gap: .5rem;
  margin-top: 2rem
}

@media (min-width: 1090px) {
  .breadcrumbs {
    margin-top: 0
  }
}

.breadcrumbs>a {
  color: #fff;
  text-decoration: underline
}

.breadcrumbs span {
  color: #fff
}

.intro-subpage .grid {
  gap: 2rem
}

@media (min-width: 1090px) {
  .intro-subpage .section--primary {
    position: relative;
    background-color: #d1feea;
    border-radius: 79px;
    padding-inline: 112px;
    padding-block: 62px;
    margin-top: -492px
  }

  .intro-subpage .section--primary p {
    color: #18171f
  }
}

.intro-subpage .section--primary p {
  margin-bottom: 2rem
}

:root {
  --max-column-width: 456px;
  --offset: 52px
}

.section--roadmap {
  text-align: center;
  position: relative;
  z-index: 2
}

.section--roadmap:before {
  content: "";
  position: absolute;
  top: 60%;
  right: -50%;
  left: initial;
  transform: translate(-50%, -50%);
  height: 1200px;
  width: 1200px;
  background: radial-gradient(circle, rgba(92, 92, 136, .5) 0%, rgb(31, 30, 41) 60%);
  opacity: .55;
  z-index: 1;
  border-radius: 50%
}

.roadmap {
  padding-inline: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 102;
  display: flex;
  justify-content: center
}

@media (min-width: 768px) {
  .roadmap {
    padding-inline: 0;
    margin-top: 0
  }
}

.roadmap__current-year {
  font-weight: 700;
  font-size: 54px;
  letter-spacing: .2em;
  line-height: 1.27;
  text-align: center;
  color: #d1feea;
  margin-top: 84px;
  display: block
}

.roadmap__year {
  display: flex
}

@media (min-width: 768px) {
  .roadmap__year {
    flex-direction: column;
    align-items: center
  }
}

.roadmap__left {
  display: none;
  visibility: hidden
}

@media (min-width: 768px) {
  .roadmap__left {
    display: block;
    visibility: visible
  }
}

@media (min-width: 768px) {
  .roadmap__quarters {
    padding: 64px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: center
  }
}

.roadmap__quarters>div {
  width: 100%;
  max-width: var(--max-column-width)
}

.roadmap__line {
  position: absolute;
  top: 78px;
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -1px;
  width: 2px;
  background-color: #d1feea;
  display: none
}

@media (min-width: 768px) {
  .roadmap__line {
    display: block
  }
}

.circle {
  position: absolute;
  top: 50%;
  margin: -21px 0 0;
  width: 42px;
  height: 42px;
  right: -72px;
  display: none
}

@media (min-width: 768px) {
  .circle {
    display: block
  }
}

@media (min-width: 768px) {
  .roadmap__right .circle {
    left: -72px
  }
}

.circle:before {
  content: "";
  background-color: #1f1e29;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: 2
}

.circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: #d1feea;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  z-index: 3
}

.quarter {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem
}

@media (min-width: 768px) {
  .quarter {
    margin-bottom: 100px
  }
}

@media (min-width: 768px) {
  .quarter--hidden-desktop {
    display: none;
    visibility: hidden
  }
}

@media (min-width: 768px) {
  .quarter--q1 {
    margin-bottom: 8rem
  }
}

@media (min-width: 768px) {
  .quarter--q2 {
    margin-top: 12rem;
    padding-bottom: 220px
  }
}

@media (min-width: 768px) {
  .quarter--q3 {
    margin-top: 10rem
  }
}

@media (min-width: 768px) {
  .quarter--q4 {
    margin-bottom: 0
  }
}

.quarter__label {
  margin: 0 0 32px;
  font-size: 2.25rem;
  font-weight: 200;
  position: relative;
  text-align: left
}

@media (min-width: 768px) {
  .quarter__label {
    margin-left: auto;
    margin-right: var(--offset)
  }
}

.quarter__label span {
  font-weight: 700
}

@media (min-width: 768px) {
  .roadmap__right .quarter__label {
    margin-left: var(--offset);
    margin-right: auto
  }
}

.quarter__block {
  justify-content: flex-start;
  padding-right: var(--offset)
}

@media (min-width: 768px) {
  .roadmap__right .quarter__block {
    padding-left: var(--offset);
    padding-right: 0;
    justify-content: flex-end;
    text-align: right
  }
}

.quarter__list {
  display: flex;
  flex-direction: column;
  letter-spacing: -.01em;
  font-size: 18px;
  line-height: 50px;
  margin-bottom: 2rem;
  text-align: left
}

@media (min-width: 768px) {
  .quarter__list {
    font-size: 20px;
    text-align: right
  }
}

@media (min-width: 768px) {
  .roadmap__right .quarter__list {
    text-align: left
  }
}

.quarter__list li {
  position: relative;
  font-size: 1.125rem;
  padding-right: 3.5rem;
  line-height: 1.5;
  margin-bottom: 1.4rem
}

.roadmap__right .quarter__list li {
  padding-right: 0;
  padding-left: 3.5rem
}

.quarter__list li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%
}

@media (min-width: 768px) {
  .quarter__list li:after {
    width: 36px;
    height: 36px
  }
}

.roadmap__right .quarter__list li:after {
  left: 0;
  right: initial
}

.quarter__list li.current {
  color: #d1feea
}

.quarter__list li.current:after {
  border-color: #d1feea
}

.quarter__list li.passed:after {
  display: none
}

.quarter__list li.passed:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34.352' height='34.353' viewBox='0 0 34.352 34.353'%3E%3Cpath id='check_circle_FILL1_wght500_GRAD0_opsz48' d='M88.677,194.813l12.081-12.081-2.148-2.116-9.933,9.933-4.984-4.984-2.106,2.116Zm2.517,9.322a16.676,16.676,0,0,1-6.663-1.348,17.26,17.26,0,0,1-9.161-9.16,17.241,17.241,0,0,1,0-13.368,17.134,17.134,0,0,1,3.686-5.452,17.588,17.588,0,0,1,5.47-3.672,17.2,17.2,0,0,1,13.371,0,17.145,17.145,0,0,1,9.123,9.121,17.2,17.2,0,0,1,0,13.373,17.593,17.593,0,0,1-3.672,5.471,17.135,17.135,0,0,1-5.451,3.687A16.771,16.771,0,0,1,91.194,204.135Z' transform='translate(-74.022 -169.782)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: 50% 50%
}

.roadmap__left .quarter__list li.passed:before {
  left: initial;
  right: 0
}

@media (min-width: 768px) {
  .quarter__list li.passed:before {
    width: 36px;
    height: 36px
  }
}

.countdown {
  margin-top: 1rem;
  margin-bottom: 2rem
}

.countdown__title {
  letter-spacing: .25rem;
  text-transform: uppercase
}

.countdown__label {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .2rem
}

#countdown {
  position: relative;
  margin: 0 auto;
  border-width: 1px 0;
  font-weight: 700;
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center
}

#countdown li {
  padding: 0;
  display: inline-block;
  line-height: 1.3;
  text-align: center
}

#countdown li .number {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  background: linear-gradient(to right, blue, red, yellow);
  border-radius: 15px;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  margin-bottom: .5rem;
  background-size: 200% 200%
}

#countdown li .label {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 300
}

@media screen and (min-width: 1024px) {
  #countdown .number {
    font-size: 4rem !important;
    width: 7rem !important;
    height: 7rem !important
  }
}

.js-staking-image {
  max-width: 516px
}

@media screen and (min-width: 1024px) {
  .br-small {
    display: none
  }
}

@media screen and (max-width: 768px) {
  .ca {
    font-size: 13px
  }
}

.exchanges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem
}

@media screen and (min-width: 768px) {
  .exchanges {
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5rem
  }
}

.exchanges--row2 {
  justify-content: center
}

.exchanges .item {
  background: rgba(255, 255, 255, .23);
  box-shadow: 0 4px 30px #0000001a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  padding: 1rem 2rem;
  transition: .3s ease-in all;
  text-align: left;
  font-size: 1rem;
  text-align: center
}

.exchanges .item:hover {
  background: rgba(255, 255, 255, .33);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px)
}

@media screen and (min-width: 1200px) {
  .exchanges .item {
    min-width: 245px
  }
}

.exchanges .item a {
  display: block
}

.social-list-hero {
  margin-top: 3rem;
  margin-bottom: 1.875rem;
  gap: 1.5rem;
  display: flex;
  justify-content: center;
  margin-inline: auto
}

@media (min-width: 1090px) {
  .social-list-hero {
    margin-bottom: 6.25rem;
    margin-top: 5rem
  }
}

.social-list-hero__item-icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-bottom: .625rem
}

.social-list-hero__item-link {
  display: block;
  transition: .3s transform cubic-bezier(.42, 0, .58, 1)
}

.social-list-hero__item-link:hover {
  transform: translateY(-3px)
}

.social-list-hero__item-text {
  font-size: .875rem
}

@media (min-width: 1090px) {
  .social-list-hero__item-text {
    font-size: pxTorem(15px)
  }
}