@charset "UTF-8";
@font-face {
  font-family: "Luckiest Guy";
  font-display: swap;
  src: url("../fonts/LuckiestGuy-Regular.woff2") format("woff2"), url("../fonts/LuckiestGuy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --fontFamily: "Luckiest Guy", sans-serif;
  --fontFamily2: "Montserrat", sans-serif;
  --fontSize: 14px;
  --main: #ffffff;
  --circle: rgba(179, 187, 149, 0.3);
  --title: #c0e8b2;
  --orange: #f4b836;
  --blue: #3066a5;
  --cyan: #50c5f8;
  --border: #2e153e;
  --red: #b72723;
  --title2: radial-gradient(151.65% 99.31% at 59.69% -10.94%, rgb(79, 255, 26) 29.598897695541382%, rgb(0, 255, 177) 72.76344299316406%);
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

*::selection {
  background: gray;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: var(--main);
  font-family: var(--fontFamily);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: var(--fontFamily);
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-size: var(--fontSize);
  background: var(--blue);
}
.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  max-width: 68.75rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.section {
  margin-bottom: 100px;
}
.section__body {
  margin-top: 60px;
}
.section__title {
  font-family: var(--second-family);
  background: radial-gradient(151.65% 99.31% at 59.69% -10.94%, #4fff1a 29.5988976955%, #00ffb1 72.7634429932%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  margin-bottom: 40px;
}
.section__title_main {
  font-size: 42px;
  text-transform: uppercase;
  color: var(--title);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  margin-bottom: 30px;
}
@media (max-width: 29.99875em) {
  .section__title {
    margin-bottom: 20px;
  }
}
.section__submain {
  margin-top: 40px;
}
.section__content p,
.section__content a,
.section__content ul,
.section__content ol {
  font-family: var(--fontFamily2);
}
.section__content a {
  text-decoration: underline;
}
.section__content ol:not(:last-child),
.section__content ul:not(:last-child),
.section__content p:not(:last-child),
.section__content li:not(:last-child) {
  margin-bottom: 10px;
}
.section__content h3 {
  margin-top: 40px;
}
.section__content h4 {
  font-family: var(--fontFamily2);
  font-weight: bold;
  text-transform: uppercase;
  margin-block: 30px;
}
.section__content p,
.section__content li {
  line-height: 1.5;
}
.section__line {
  background: var(--main);
  width: 100%;
  height: 1px;
  margin-block: 50px;
}
.section__back {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--main);
}
.section__back p {
  font-family: var(--second-family);
  -webkit-text-stroke: 1px var(--border);
  text-stroke: 1px var(--border);
  font-size: 22px;
}
.section__back svg {
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.header {
  padding: 10px 0;
}
.header__body {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: 30px;
  transition: transform 0.4s ease;
}
.header__logo img {
  width: 100%;
  max-width: 120px;
}
@media (any-hover: hover) {
  .header__logo:hover {
    transform: scale(1.1);
  }
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
}
.menu__item {
  margin: 5px 10px;
}
.menu__link {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--title);
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 1px var(--border);
  text-stroke: 1px var(--border);
  transition: color 0.4s ease;
}
@media (max-width: 29.99875em) {
  .menu__link {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: var(--orange);
  }
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: rem(30);
		height: rem(18);
		cursor: pointer;
		z-index: 5;
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			right: 0;
			position: absolute;
			width: 100%;
			height: rem(2);
			background-color: #000;
		}
		&::before {
			top: 0;
		}
		&::after {
			bottom: 0;
		}
		span {
			top: calc(50% - rem(1));
		}
		.menu-open & {
			span {
				width: 0;
			}
			&::before,
			&::after {
			}
			&::before {
				top: calc(50% - rem(1));
				transform: rotate(-45deg);
			}
			&::after {
				bottom: calc(50% - rem(1));
				transform: rotate(45deg);
			}
		}
	}
}
*/
.footer {
  overflow: hidden;
  position: relative;
  padding-top: 200px;
  padding-bottom: 160px;
  background: url("../img/footer.svg") top/cover no-repeat;
}
@media (max-width: 47.99875em) {
  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -30px;
}
.footer__social a {
  margin: 10px 30px;
  transition: transform 0.4s ease;
}
@media (any-hover: hover) {
  .footer__social a:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 47.99875em) {
  .footer__social {
    margin: -10px;
  }
  .footer__social a {
    margin: 10px;
  }
}
.footer__social img {
  width: auto;
  max-height: 70px;
  object-fit: contain;
}
@media (max-width: 47.99875em) {
  .footer__social img {
    max-height: 50px;
  }
}
@media (max-width: 29.99875em) {
  .footer__social img {
    max-height: 30px;
  }
}
.footer__img {
  position: absolute;
  bottom: -30%;
  right: 5%;
  animation: two 8s 5s linear infinite;
  pointer-events: none;
}
.footer__img img {
  width: 100%;
  max-width: 399px;
}
@media (min-width: 70.625em) {
  .footer__img img {
    max-width: 24.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 70.625em) {
  @supports (max-width: clamp( 12.4375rem , 7.4992283951rem  +  24.6913580247vw , 24.9375rem )) {
    .footer__img img {
      max-width: clamp( 12.4375rem , 7.4992283951rem  +  24.6913580247vw , 24.9375rem );
    }
  }
  @supports not (max-width: clamp( 12.4375rem , 7.4992283951rem  +  24.6913580247vw , 24.9375rem )) {
    .footer__img img {
      max-width: calc(
				12.4375rem + 12.5 * (100vw - 20rem) / 50.625
			);
    }
  }
}
@media (max-width: 20em) {
  .footer__img img {
    max-width: 12.4375rem;
  }
}
.footer__copyright {
  margin-top: 40px;
  text-align: center;
  font-family: var(--fontFamily2);
}
.footer__copyright a {
  text-decoration: underline;
}

@keyframes two {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
  }
}
.intro {
  position: relative;
}
.intro__video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  border-radius: 0 0 50% 50%;
  background: var(--circle);
  z-index: -1;
}
@media (max-width: 61.99875em) {
  .intro__video {
    width: 120%;
    border-radius: 0 0 40% 40%;
  }
}
.intro video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.intro video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.intro video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.intro video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.intro video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.intro__body {
  padding-top: 80px;
  padding-bottom: 200px;
  max-width: 415px;
}
@media (max-width: 47.99875em) {
  .intro__body {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.intro__suubtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  background: var(--red);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--border);
  text-stroke: 1px var(--border);
}
.intro__suubtitle img {
  width: 100%;
  max-width: 30px;
  margin-right: 10px;
}
.intro__title {
  font-size: 42px;
  text-transform: uppercase;
  color: var(--title);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  margin-bottom: 10px;
}
@media (max-width: 47.99875em) {
  .intro__title {
    font-size: 28px;
  }
}
.intro__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px;
  font-size: 25px;
}
@media (max-width: 47.99875em) {
  .intro__actions {
    font-size: 20px;
  }
}
@media (max-width: 29.99875em) {
  .intro__actions {
    font-size: 16px;
  }
}
.intro__btn {
  display: inline-block;
  margin: 10px;
  border-radius: 18px;
  background-color: var(--orange);
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  color: var(--title);
  padding: 16px 60px;
  transition: background-color 0.4s ease;
}
@media (max-width: 29.99875em) {
  .intro__btn {
    padding: 14px 30px;
  }
}
@media (any-hover: hover) {
  .intro__btn:hover {
    background-color: var(--red);
  }
}
.intro__wath {
  margin: 10px;
  display: flex;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  color: var(--orange);
  transition: color 0.4s ease;
}
.intro__wath img {
  width: 100%;
  max-width: 70px;
  margin-right: 5px;
}
@media (max-width: 47.99875em) {
  .intro__wath img {
    max-width: 50px;
  }
}
@media (any-hover: hover) {
  .intro__wath:hover {
    color: var(--red);
  }
}

.about {
  position: relative;
}
.about__body {
  display: grid;
  gap: 40px 80px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 29.99875em) {
  .about__body {
    grid-template-columns: 100%;
  }
}
.about__title {
  font-size: 28px;
}
@media (max-width: 29.99875em) {
  .about__title {
    font-size: 24px;
  }
}
.about__subtitle {
  max-width: 400px;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--title);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  margin-bottom: 40px;
}
@media (max-width: 29.99875em) {
  .about__subtitle {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.about__desk {
  font-family: var(--fontFamily2);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}
.about__desk p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 29.99875em) {
  .about__desk {
    font-size: 14px;
  }
}
.about__animate {
  position: absolute;
  bottom: -30%;
  left: -30px;
  animation: one 5s 4s linear infinite;
  pointer-events: none;
}
.about__animate img {
  width: 100%;
  max-width: 171px;
}
.about__item {
  text-align: center;
}
.about__img {
  position: relative;
  margin-bottom: 10px;
}
.about__img_red {
  position: absolute;
  right: 15%;
  top: 52%;
  font-size: 12px;
  color: #b72723;
  transform: rotate(10deg);
}
.about__img_white {
  position: absolute;
  top: 25%;
  left: 20%;
  font-size: 22px;
}
.about__img img {
  width: 100%;
  object-fit: contain;
  height: 90px;
}
@media (max-width: 29.99875em) {
  .about__img img {
    height: 60px;
  }
}
.about__img_large {
  max-width: 150px;
  margin-inline: auto;
}
.about__img_large img {
  height: 140px;
}
@media (max-width: 29.99875em) {
  .about__img_large img {
    height: 120px;
  }
}
.about__th {
  -webkit-text-stroke: 1px var(--border);
  text-stroke: 1px var(--border);
  color: var(--title);
  font-size: 16px;
}
.about__text {
  font-family: var(--fontFamily2);
}
.about__total {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  gap: 10px;
  text-transform: uppercase;
  margin: 30px 0;
  & a {
    filter: drop-shadow(0 2px 6px black);
    transition: filter .1s linear;
    &:hover {
      filter: invert(1) drop-shadow(0 2px 6px black);
    }
  }
  &> div {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}

.about__total-mexc img{
  width: 70px;
  display: block;
}
.about__total-total img{
  width: 20px;
}
@media (max-width: 29.99875em) {
  .about__total {
    font-size: 24px;
  }
}
.about__row {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}
.about__row_end {
  align-items: flex-end;
}
@media (max-width: 29.99875em) {
  .about__row_end {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}
@media (max-width: 29.99875em) {
  .about__row {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
  }
}
.about__percent {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  white-space: nowrap;
}
.about__percent img {
  width: 23px;
  margin: 0 5px;
}
@media (max-width: 29.99875em) {
  .about__percent img {
    display: none;
  }
}

@keyframes one {
  0% {
    left: -30px;
  }
  30% {
    left: -200px;
  }
  90% {
    left: -40px;
  }
  100% {
    left: -40px;
  }
}
.game__title {
  font-size: 46px;
  background: radial-gradient(151.65% 99.31% at 59.69% -10.94%, #4fff1a 29.5988976955%, #00ffb1 72.7634429932%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
}
@media (max-width: 47.99875em) {
  .game__title {
    text-align: center;
  }
}
.game__arrow {
  position: absolute;
  z-index: -1;
}
@media (max-width: 47.99875em) {
  .game__arrow {
    display: none;
  }
}
.game__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
@media (min-width: 47.99875em) {
  .game__row_2 {
    margin-top: -50px;
  }
}
@media (max-width: 47.99875em) {
  .game__row {
    flex-direction: column;
    justify-content: center;
  }
}
.game__img {
  border-radius: 24px;
  padding-inline: 20px;
  transition: transform 0.4s ease;
}
.game__img img {
  width: 100%;
  max-width: 200px;
  border-radius: inherit;
}
@media (min-width: 47.99875em) {
  .game__img_2 {
    padding-right: 60px;
    padding-left: 20px;
  }
  .game__img_3 {
    padding-left: 60px;
    padding-right: 20px;
  }
  .game__img_4 {
    padding-left: 90px;
    padding-right: 0;
    padding-top: 60px;
  }
}
@media (any-hover: hover) {
  .game__img:hover {
    transform: rotate(5deg);
  }
}
@media (max-width: 47.99875em) {
  .game__img {
    margin-bottom: 30px;
  }
}
.game__group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .game__group {
    margin-bottom: 30px;
  }
  .game__group > img,
.game__group div img {
    display: none;
  }
}
@media (min-width: 47.99875em) {
  .game__group_1 .game__arrow {
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
  }
  .game__group_2 .game__arrow {
    right: -155%;
    bottom: -40%;
  }
  .game__group_2 .game__arrow img {
    max-width: 200px;
  }
  .game__group_2 .game__col {
    margin-left: -50%;
  }
  .game__group_3 {
    align-items: center;
  }
  .game__group_3 p {
    padding-top: 40px;
    transform: rotate(-15deg);
  }
  .game__group_3 .game__arrow {
    top: -30%;
    left: -60%;
  }
  .game__group_3 .game__arrow img {
    max-width: 385px;
  }
  .game__group_3 > img {
    margin-right: -90px;
  }
  .game__group_4 {
    margin-top: 60px;
  }
  .game__group_4 > img {
    margin-top: 40px;
  }
  .game__group_4 .game__arrow {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
  }
}
.game__group p {
  font-size: 28px;
}
@media (min-width: 47.99875em) {
  .game__group p {
    margin-bottom: 40px;
  }
}

.roadmap {
  position: relative;
}
.roadmap__animate_top {
  position: absolute;
  right: -50px;
  top: -140px;
  animation: roadmap__animate_top 8s 4s linear infinite;
}
.roadmap__animate_bottom {
  position: absolute;
  bottom: -140px;
  left: -115px;
  animation: roadmap__animate_bottom 8s 4s linear infinite;
}
.roadmap__title {
  font-size: 60px;
  background: radial-gradient(151.65% 99.31% at 59.69% -10.94%, #4fff1a 29.5988976955%, #00ffb1 72.7634429932%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 2px var(--border);
  text-stroke: 2px var(--border);
  text-align: center;
}
@media (max-width: 29.99875em) {
  .roadmap__title {
    font-size: 40px;
  }
}
.roadmap__body {
  font-family: var(--fontFamily2);
}
.roadmap__row {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 50px 30px;
  border-bottom: 40px solid var(--cyan);
}
@media (max-width: 29.99875em) {
  .roadmap__row_one {
    border-left: 10px solid var(--cyan);
  }
}
.roadmap__row_two {
  border-right: 40px solid var(--cyan);
}
.roadmap__row_three {
  border-left: 40px solid var(--cyan);
}
@media (max-width: 47.99875em) {
  .roadmap__row {
    padding: 30px 0;
    border-width: 10px;
  }
}
@media (max-width: 70.625em) {
  .roadmap__row_reverse .roadmap__group:nth-child(1) {
    order: 4;
  }
  .roadmap__row_reverse .roadmap__group:nth-child(2) {
    order: 3;
  }
  .roadmap__row_reverse .roadmap__group:nth-child(3) {
    order: 2;
  }
  .roadmap__row_reverse .roadmap__group:nth-child(4) {
    order: 1;
  }
}
.roadmap__line {
  position: relative;
  display: flex;
  justify-content: space-around;
  background: var(--cyan);
  margin-top: -40px;
}
.roadmap__line_start {
  justify-content: flex-start;
}
.roadmap__line_start span {
  margin-left: -10px;
  margin-right: 20%;
}
.roadmap__line_end {
  justify-content: flex-end;
}
.roadmap__line_end span {
  margin-right: -10px;
  margin-left: 20%;
}
.roadmap__line span {
  flex-shrink: 0;
  position: relative;
  margin-top: -15px;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cyan);
}
.roadmap__line span.green::before {
  background: #11ec8d;
}
.roadmap__line span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #11a6ec;
}
@media (max-width: 47.99875em) {
  .roadmap__line span {
    margin-top: -8px;
    width: 25px;
    height: 25px;
  }
  .roadmap__line span::before {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 47.99875em) {
  .roadmap__line {
    margin-top: -10px;
  }
}
.roadmap__line_pc {
  height: 40px;
  width: 100%;
}
@media (max-width: 47.99875em) {
  .roadmap__line_pc {
    height: 10px;
  }
}
@media (max-width: 29.99875em) {
  .roadmap__line_pc {
    display: none;
  }
}
.roadmap__line_mb {
  position: absolute;
  top: 0;
  flex-direction: column;
  height: 100%;
  width: 10px;
}
.roadmap__row_left .roadmap__line_mb {
  left: -10px;
}
.roadmap__row_left .roadmap__line_mb span {
  margin-left: -8px;
}
.roadmap__row_right .roadmap__line_mb {
  right: -10px;
}
.roadmap__row_right .roadmap__line_mb span {
  margin-left: -8px;
}
@media (min-width: 29.99875em) {
  .roadmap__line_mb {
    display: none;
  }
}
.roadmap__group {
  position: relative;
  margin-inline: 15px;
  max-width: 290px;
  margin-bottom: 20px;
}
@media (max-width: 47.99875em) {
  .roadmap__group:not(:last-child) {
    margin-bottom: 30px;
  }
}
.roadmap__date {
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 25px;
}
.roadmap__list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  font-size: 10px;
  padding-left: 20px;
  line-height: 1.3;
}
@media (max-width: 29.99875em) {
  .roadmap__list {
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.roadmap__list li {
  break-inside: avoid;
  list-style: disc;
}
.roadmap__list li:not(:last-child) {
  margin-bottom: 5px;
}

@keyframes roadmap__animate_top {
  0% {
    right: -100px;
  }
  50% {
    right: -30px;
  }
  70% {
    right: -100px;
  }
  100% {
    right: -100px;
  }
}
@keyframes roadmap__animate_bottom {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(25deg) translateY(80%);
  }
  80% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
