
@font-face {
    font-family: "Cutie Molly Demo";
    src: url(/assets/fonts/cutiemollydemo.ttf) format("truetype")
}

@font-face {
    font-family: "Milk Kids";
    src: url(/assets/fonts/milkkids.ttf) format("truetype")
}

@font-face {
    font-family: "Spicy Soup";
    src: url(/assets/fonts/spicysoup.ttf) format("truetype")
}

.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0
}

[data-tippy-root] {
    max-width: calc(100vw - 10px)
}

.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    outline: 0;
    -webkit-transition-property: visibility, opacity, -webkit-transform;
    transition-property: transform, visibility, opacity, -webkit-transform;
    font-family: var(--font-cutie);
    text-align: center
}

.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left
}

.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right
}

.tippy-box[data-inertia][data-state=visible] {
    -webkit-transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
    transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1
}

:root {
    --font-cutie: "Cutie Molly Demo";
    --font-milkids: "Milk Kids";
    --font-soup: "Spicy Soup";
    --font-manrope: "Manrope"
}

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

img, svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none
}

body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
    background-color: #2596ff
}

.container {
    margin: 0 auto;
    max-width: 1540px;
    padding-left: 10px;
    padding-right: 10px
}

.header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 640px) {
    .header__main .btn {
        display: none
    }
}

.header {
    background-color: #2596ff;
    padding-top: 15px;
    padding-bottom: 15px
}

.header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 12px
}

.header__link > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(/assets/svg/cloud_link.svg);
    width: 102px;
    height: 72px;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.header__link2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(/assets/svg/cloud_link2.svg);
    font-family: var(--font-cutie);
    font-size: 24px;
    text-decoration: none;
    color: #2596ff;
    width: 188px;
    height: 72px;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.header__link2:hover, .header__link > a:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px)
}

main {
    overflow: hidden
}

.banner {
    max-width: 100dvw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 82px;
    padding-bottom: 200px;
    background-color: #2596ff;
    position: relative
}

.banner__top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.banner__top > img {
    width: clamp(10px, 90vw, 1070px)
}

.banner__top > div {
    position: absolute;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -60px
}

.banner__text > div > div {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px
}

.banner__text p {
    color: #11254b;
    font-family: var(--font-cutie);
    font-size: clamp(16px, 3vw, 20px);
    max-width: 518px;
    text-align: center;
    text-transform: uppercase
}

.banner__text a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(/assets/png/cloud_link3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 198px;
    height: 81px;
    font-family: var(--font-milkids);
    font-size: 24px;
    color: #19334a;
    text-decoration: none;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.banner__text a:hover {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px)
}

.banner__bottom {
    position: relative;
    width: 100dvw;
    height: 280px;
    margin-top: 340px
}

.banner__transition {
    position: absolute;
    bottom: -70px;
    display: none
}

.snow_bg {
    position: absolute;
    width: 100%;
    min-width: 1600px;
    overflow: hidden;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 0;
    bottom: 200px;
    max-height: 600px
}

.snow {
    position: absolute;
    width: 100%;
    min-width: 1600px;
    top: 155px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1
}

.ping {
    width: 486px;
    height: 442px;
    position: absolute;
    left: 50%;
    top: -250px;
    z-index: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.pinghand {
    width: 160.5px;
    height: 256px;
    position: absolute;
    left: calc(50% - 152px);
    top: 50px;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.partners, .partners__list {
    position: relative;
    z-index: 3
}

@media screen and (max-width: 1400px) {
    ._partners {
        background: #55adff;
        padding-bottom: 50px
    }
}

.partners__list a {
    display: block;
    text-decoration: none;
    cursor: pointer
}

.partners > h2 {
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-cutie);
    text-align: center;
    color: #19334a;
    font-size: clamp(20px, 6vw, 54px)
}

.about_text {
    position: relative
}

.about_text > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    padding: 10px 60px
}

.about_text h2 {
    font-family: var(--font-cutie);
    color: #19334a;
    font-size: clamp(24px, 5vw, 80px);
    text-transform: uppercase;
    font-weight: 400
}

.about_text p {
    font-family: var(--font-cutie);
    color: #19334a;
    font-size: clamp(14px, 3.2vw, 24px);
    text-transform: uppercase;
    font-weight: 400
}

.partners__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    gap: clamp(20px, -35vw, 72px)
}

.partners__list > li > img {
    width: clamp(190px, 20vw, 324px)
}

.tokenomics {
    padding-top: 80px;
    background-color: #2596ff
}

.tokens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 10
}

.tokens > h2 {
    display: inline-block;
    text-align: center;
    font-family: var(--font-cutie);
    font-weight: 400;
    font-size: clamp(20px, 7vw, 74px);
    text-transform: uppercase;
    background-color: #fff;
    color: #2596ff;
    border-radius: 20px;
    padding: 20px 20px 0;
    line-height: 100%
}

.tokens > p {
    font-family: var(--font-soup);
    font-size: clamp(16px, 6vw, 24px);
    text-transform: uppercase;
    max-width: 705px;
    margin-top: 28px;
    color: #fff;
    text-align: center
}

.tokens > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    font-family: var(--font-manrope);
    font-size: clamp(15px, 3vw, 18px);
    width: 100%;
    text-align: center;
    background-color: #fff;
    font-weight: 700;
    padding-left: 24px;
    padding-right: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 999px;
    padding-top: 14px;
    border-bottom: 13px solid #d6def1;
    max-width: 731px
}

.tokens > span button {
    font-family: var(--font-milkids);
    font-size: 24px;
    text-transform: uppercase;
    background-color: #ffde68;
    border: 3px solid #19334a;
    -webkit-filter: drop-shadow(0 4px 0 #19334a);
    filter: drop-shadow(0 4px 0 #19334a);
    border-radius: 999px;
    color: #19334a;
    outline: 0;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    padding: 15px 24px
}

.tokens > span button:hover {
    background-color: #19334a;
    color: #ffde68
}

.tokens__cards {
    margin-top: 80px;
    padding-bottom: 190px;
    display: -ms-grid;
    display: grid;
    width: 100%;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    list-style: none
}

footer {
    background-color: #2289e8;
    padding-top: 150px
}

.tokens__card {
    position: relative;
    background-color: #fff;
    margin: 0 auto;
    padding: 24px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 7px solid #19334a;
    border-radius: 32px
}

.tokens__card:nth-child(1) {
    -webkit-transform: rotate(-3.6deg);
    -ms-transform: rotate(-3.6deg);
    transform: rotate(-3.6deg)
}

.tokens__card:nth-child(2) {
    -webkit-transform: rotate(4.75deg);
    -ms-transform: rotate(4.75deg);
    transform: rotate(4.75deg)
}

.tokens__card:nth-child(3) {
    -webkit-transform: rotate(-2.48deg);
    -ms-transform: rotate(-2.48deg);
    transform: rotate(-2.48deg)
}

.tokens__card:nth-child(4) {
    -webkit-transform: rotate(2.8deg);
    -ms-transform: rotate(2.8deg);
    transform: rotate(2.8deg)
}

.tokens__card > img {
    width: 100%;
    border-radius: 13px;
    border: 7px solid #19334a
}

.tokens__card > div {
    margin-top: 20px
}

.tokens__card > div > div {
    position: relative
}

.tokens__card > div > div > p {
    text-transform: uppercase;
    font-family: var(--font-soup);
    font-size: 20px;
    margin-top: 5px;
    color: #19334a
}

.tokens__card > div > div > p:nth-child(2) {
    font-size: clamp(18px, 6vw, 28px)
}

.bg {
    top: -368px;
    position: absolute;
    z-index: -1
}

.arrows {
    position: absolute;
    top: 120px;
    left: calc(50% + 40px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.accordian:nth-child(2n) {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px)
}

.accordian:nth-child(2n-1) {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.buy {
    position: relative;
    padding-top: 200px;
    background-color: #2596ff;
    z-index: -3
}

.plusminus {
    position: relative;
    width: 25px;
    height: 25px;
    max-width: 25px;
    max-height: 25px;
    cursor: pointer
}

.plusminus.active:before {
    -webkit-transform: translatey(-50%) rotate(-90deg);
    -ms-transform: translatey(-50%) rotate(-90deg);
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0
}

.plusminus.active:after {
    -webkit-transform: translatey(-50%) rotate(0);
    -ms-transform: translatey(-50%) rotate(0);
    transform: translatey(-50%) rotate(0)
}

.plusminus.active:after, .plusminus.active:before {
    background-color: #19334a
}

.plusminus:after, .plusminus:before {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: .35s;
    transition: .35s;
    width: 100%;
    height: 3px
}

.plusminus:before {
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%)
}

.plusminus:after {
    -webkit-transform: translatey(-50%) rotate(90deg);
    -ms-transform: translatey(-50%) rotate(90deg);
    transform: translatey(-50%) rotate(90deg)
}

.accordian_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.plusbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #19334a;
    border-radius: 22px;
    width: 58px;
    z-index: 5;
    height: 58px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.plusbox.active {
    background-color: #fff !important
}

.accordian_header {
    border-radius: 37px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: color .5s;
    transition: color .5s
}

.questions {
    position: relative
}

.questions_bg {
    position: absolute;
    width: 100dvw;
    z-index: 1;
    top: -80px
}

.accordian {
    cursor: pointer;
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 18px 18px 18px 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 37px;
    font-family: var(--font-cutie);
    font-size: clamp(20px, 4vw, 24px);
    color: #19334a;
    text-transform: uppercase;
    border: 6px solid #19334a
}

@-webkit-keyframes opac {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes opac {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.accordian_body {
    padding-top: 0;
    background-color: #fff;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows:0fr;
    -webkit-transition: grid-template-rows .5s;
    transition: grid-template-rows .5s;
    transition: grid-template-rows .5s, -ms-grid-rows .5s
}

.accordian_header.active::before {
    content: " ";
    position: absolute;
    width: calc(100% + 8px);
    height: 94px;
    top: -1px;
    left: -4px;
    border-radius: 37px;
    -webkit-animation: .5s linear opac;
    animation: .5s linear opac;
    opacity: 1;
    background-color: #19334a;
    z-index: 0
}

.accordian_header.active {
    color: #fff
}

.accordian p {
    position: relative;
    z-index: 99
}

.accordian.active {
    color: #fff
}

.accordian_body.active {
    padding-top: 40px;
    -ms-grid-rows: 1fr;
    grid-template-rows:1fr
}

.accordian_body > div {
    overflow: hidden
}

.questions_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 160px;
    position: relative;
    z-index: 5
}

.questions_content div:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.buy__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.buy__content > div {
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.buy__content > div > div {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.buy__content > div > div img {
    max-width: 100dvw;
    padding-right: 50px
}

.invalid {
    padding-left: 30px
}

.community {
    position: relative
}

.community_bg {
    top: -80px;
    position: absolute
}

.community_div {
    position: relative;
    max-width: 1521px;
    width: 100%
}

.cm {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 999
}

.xuy {
    position: relative
}

.xuy > div {
    position: absolute;
    top: 25%;
    right: 10%;
    max-width: 600px
}

.xuy > div > h2 {
    font-family: var(--font-cutie);
    font-size: clamp(28px, 4vw, 44px);
    color: #19334a;
    font-weight: 400;
    text-transform: uppercase
}

.xuy > div > p {
    font-family: var(--font-cutie);
    font-size: clamp(18px, 4vw, 24px);
    color: #19334a;
    font-weight: 400;
    text-transform: uppercase
}

.com_photo {
    position: absolute;
    left: 3%;
    top: 8%;
    width: 40%
}

.com_bg {
    width: 100%
}

.xuy > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-top: 20px
}

.xuy > div > div > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 102px;
    height: 73px;
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

.xuy > div > div > a img {
    width: 30px;
    height: 36px
}

.xuy > div > div > a:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px)
}

.questions {
    padding-bottom: 80px
}

.accordian:nth-child(2n), .accordian:nth-child(2n-1) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.footer {
    position: relative;
    z-index: 99
}

.footer_bg {
    width: 100%;
    position: absolute;
    bottom: 0
}

.end_bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1
}

.content {
    top: 0;
    padding-bottom: 30px;
    width: 100%;
    background-color: #fff;
    z-index: 99
}

.content > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 5px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    font-family: var(--font-cutie);
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    color: #19334a;
    text-transform: uppercase;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.bone2 {
    left: 5%;
    top: 65%;
    z-index: 0;
    position: absolute
}

.skeleton {
    right: 5%;
    top: 80%;
    z-index: 0;
    position: absolute
}

.water1 {
    left: 1%;
    top: 90%;
    z-index: 0;
    position: absolute
}

.water2 {
    right: 1%;
    top: 87%;
    z-index: 0;
    position: absolute
}

.water3 {
    left: 50%;
    bottom: 100px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 0;
    position: absolute
}

.footik {
    position: relative;
    z-index: 99
}

.footik__disclaimer {
    color: #b0c2d4;
    font-size: 13px;
    line-height: 1.5;
    max-width: 32%
}

.footik__disclaimer p:not(:last-child) {
    margin-bottom: 10px
}

.footik .container > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.pizza {
    left: 0;
    top: 27%;
    z-index: 99;
    position: absolute
}

.donut {
    right: 5%;
    top: 20%;
    z-index: 99;
    position: absolute
}

.bone {
    right: 7%;
    top: 65%;
    z-index: 99;
    position: absolute
}

.content > div > div > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--font-cutie);
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    color: #19334a
}

.eggs_small {
    display: -ms-grid;
    display: grid;
    width: 100%;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 90px 20px 0
}

.egg_s {
    width: 100%;
    cursor: pointer
}

.egg_s > div {
    position: relative
}

.egg_s > div::after {
    position: absolute;
    content: " ";
    width: 100%;
    border-radius: 100px/50px;
    height: 50px;
    bottom: 0;
    z-index: -1;
    left: -20px;
    background-color: #1f79cd
}

.egg_s > div > p {
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: var(--font-soup);
    font-size: 24px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    -webkit-transition: top 1.5s;
    transition: top 1.5s;
    text-align: center
}

.egg_s > div > img {
    width: 100%
}

.egg_s > div > img:nth-child(2) {
    position: relative
}

.egg_s > div > img:nth-child(1) {
    position: absolute;
    top: 1px;
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.egg_s:hover > div > img:nth-child(1) {
    -webkit-transform: rotate(90deg) translateX(-90%) translateY(-20%);
    -ms-transform: rotate(90deg) translateX(-90%) translateY(-20%);
    transform: rotate(90deg) translateX(-90%) translateY(-20%)
}

.egg_s:hover > div > p {
    top: 10%
}

.about__content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.questions {
    background-color: #2289e8
}

.about__content > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media (width <= 1390px) {
    .questionsaa {
        display: none
    }

    .questions_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .questions_content div:nth-child(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0
    }
}

@media (width <= 1556px) {
    .about__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .about__content img {
        width: 100%
    }
}

@media (width >= 1539px) {
    .eggs_small {
        display: none
    }
}

@media (width <= 1539px) {
    .egg {
        display: none
    }
}

@media (width <= 1320px) {
    .xuy > div {
        right: 5%
    }

    .xuy > div > h2 {
        font-size: 30px
    }

    .xuy > div > p {
        font-size: 20px
    }
}

@media (width <= 1174px) {
    .buy__content > div > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .xuy > div {
        right: 5%;
        max-width: 500px
    }

    .xuy > div > h2 {
        font-size: 24px
    }

    .xuy > div > p {
        font-size: 18px
    }
}

@media (width <= 1458px) {
    .arrows {
        display: none
    }
}

@media (width <= 1000px) {
    .xuy > div {
        right: 5%;
        max-width: 400px
    }

    .footer {
        padding-top: 100px;
        position: relative
    }

    .xuy > div > h2 {
        font-size: 20px
    }

    .xuy > div > p {
        font-size: 16px
    }
}

@media (width <= 1095px) {
    .banner__top > div {
        position: relative !important;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@media (width <= 880px) {
    .banner__transition {
        bottom: -40px
    }

    .footer {
        padding-top: 90px;
        position: relative
    }
}

@media (width <= 810px) {
    .xuy > div {
        right: 10%;
        top: 25%;
        max-width: 250px
    }

    .xuy > div > h2 {
        font-size: 18px
    }

    .xuy > div > p {
        font-size: 14px
    }
}

@media (width <= 734px) {
    .banner__transition {
        bottom: -25px
    }

    .tokenomics {
        padding-top: 0
    }

    .xuy > div {
        right: 10%;
        top: 20%;
        max-width: 250px
    }

    .xuy > div > h2 {
        font-size: 18px
    }

    .xuy > div > p {
        font-size: 14px
    }

    .footer {
        padding-top: 70px;
        position: relative
    }
}

@media (width <= 639px) {
    .tokens > span button {
        font-family: var(--font-milkids);
        font-size: 16px;
        text-transform: uppercase;
        background-color: #ffde68;
        border: 3px solid #19334a;
        -webkit-filter: drop-shadow(0 4px 0 #19334a);
        filter: drop-shadow(0 4px 0 #19334a);
        border-radius: 999px;
        color: #19334a;
        outline: 0;
        cursor: pointer;
        -webkit-transition: .2s;
        transition: .2s;
        padding: 10px 16px
    }
}

@media (width <= 588px) {
    .xuy {
        margin-bottom: 100px
    }

    .com_photo {
        display: none
    }

    .tokens > span {
        font-size: 14px
    }

    .footer {
        padding-top: 30px;
        position: relative
    }

    .xuy > div > div > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 50px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        -webkit-transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }

    .xuy > div > div {
        right: 0;
        bottom: -90px;
        position: absolute;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .xuy > div > div > a > img {
        width: 16px
    }

    .cm {
        padding-top: 40px;
        padding-bottom: 20px
    }

    .xuy > div {
        top: 15%;
        left: 10%;
        max-width: 100%;
        text-align: center
    }

    .xuy > div > p {
        font-size: 12px
    }
}

.egg {
    cursor: pointer;
    height: 266px
}

.egg:nth-child(1) {
    position: absolute;
    left: 4%;
    top: 50%;
    z-index: 1;
    rotate: -10deg
}

.egg:nth-child(2) {
    position: absolute;
    right: 4%;
    top: 49%;
    z-index: 1;
    rotate: 10deg
}

.egg:nth-child(3) {
    position: absolute;
    left: 24%;
    top: 45%;
    scale: 1.1;
    z-index: 1
}

.egg:nth-child(4) {
    position: absolute;
    right: 24%;
    top: 45%;
    scale: 1.1;
    z-index: 1
}

.egg > div {
    position: relative
}

.egg > div::after {
    position: absolute;
    content: " ";
    width: 230px;
    border-radius: 200px/40px;
    height: 50px;
    z-index: -1;
    left: -20px;
    bottom: -10px;
    background-color: #1f79cd
}

.egg > div > p {
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: var(--font-soup);
    font-size: 24px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    -webkit-transition: top 1.5s;
    transition: top 1.5s;
    text-align: center
}

.egg > div > img:nth-child(2) {
    position: relative
}

.egg > div > img:nth-child(1) {
    position: absolute;
    top: 1px;
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.egg:hover > div > img:nth-child(1) {
    -webkit-transform: rotate(90deg) translateX(-150px) translateY(-50px);
    -ms-transform: rotate(90deg) translateX(-150px) translateY(-50px);
    transform: rotate(90deg) translateX(-150px) translateY(-50px)
}

.egg:hover > div > p {
    top: 50px
}

.questionsaa {
    max-width: 35%
}

.questionsaa img {
    width: 100%
}

.questionsaa__title {
    font-size: 100px;
    font-family: "Cutie Molly Demo";
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 100%
}

.available {
    position: relative;
    font-family: var(--font-cutie);
    padding: 100px 0
}

.available__background {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%
}

.available__container {
    position: relative;
    z-index: 5
}

.available__title {
    font-family: inherit;
    font-size: 74px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    margin-bottom: 40px;
    font-weight: 400
}

.available__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px
}

.available__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 28px;
    background: #1877f2;
    border: 4px solid #143e74;
    -webkit-box-shadow: inset 0 -11px 0 #174f98;
    box-shadow: inset 0 -11px 0 #174f98;
    border-radius: 43%;
    height: 100px;
    -webkit-transition: -webkit-box-shadow .2s, -webkit-transform .2s;
    transition: box-shadow .2s, transform .2s, -webkit-box-shadow .2s, -webkit-transform .2s;
    width: calc(20% - 20px)
}

.available__item:nth-child(1), .available__item:nth-child(2), .available__item:nth-child(3), .available__item:nth-child(4) {
    width: calc(25% - 18px)
}

@media screen and (max-width: 1280px) {
    .available__item {
        width: calc(33.3333333333% - 16px) !important
    }
}

@media screen and (max-width: 800px) {
    .available__items {
        gap: 16px
    }

    .available__item {
        width: calc(50% - 8px) !important
    }
}

@media screen and (max-width: 640px) {
    .available__item {
        width: 100% !important
    }
}

.available__item:hover {
    -webkit-box-shadow: inset 0 -6px 0 #174f98;
    box-shadow: inset 0 -6px 0 #174f98;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.available__item_okx {
    background: #121212;
    border: 3px solid #000;
    -webkit-box-shadow: inset 0 -11px 0 0 #0d0d0d;
    box-shadow: inset 0 -11px 0 0 #0d0d0d
}

.available__item_okx img {
    display: block;
    height: 100%;
    max-height: 50px
}

.available__item_okx:hover {
    -webkit-box-shadow: inset 0 -6px 0 0 #0d0d0d;
    box-shadow: inset 0 -6px 0 0 #0d0d0d
}

.available__item_gateio {
    background: #2354e6;
    border: 3px solid rgba(28, 26, 92, .2196078431);
    -webkit-box-shadow: inset 0 -11px 0 0 rgba(54, 30, 131, .5);
    box-shadow: inset 0 -11px 0 0 rgba(54, 30, 131, .5)
}

.available__item_bitget {
    background: #1da2b4;
    border: 4px solid #1c6e79;
    -webkit-box-shadow: inset 0 -11px 0 0 #1f808d;
    box-shadow: inset 0 -11px 0 0 #1f808d
}

.available__item_bitget:hover {
    -webkit-box-shadow: inset 0 -6px 0 0 #1f808d;
    box-shadow: inset 0 -6px 0 0 #1f808d
}

.available__item_raydium {
    background: linear-gradient(245.22deg, #c200fb 7.98%, #3773fe 49.18%, #11dace 92.11%);
    border: 4px solid #4642b4;
    -webkit-box-shadow: inset 0 -11px 0 rgba(54, 30, 131, .5);
    box-shadow: inset 0 -11px 0 rgba(54, 30, 131, .5)
}

.available__item_raydium:hover {
    -webkit-box-shadow: inset 0 -6px 0 rgba(54, 30, 131, .5);
    box-shadow: inset 0 -6px 0 rgba(54, 30, 131, .5)
}

.available__item_lbank {
    background: #f8e19a;
    border: 4px solid #897c54;
    -webkit-box-shadow: inset 0 -11px 0 #bba86e;
    box-shadow: inset 0 -11px 0 #bba86e
}

.available__item_lbank:hover {
    -webkit-box-shadow: inset 0 -6px 0 #bba86e;
    box-shadow: inset 0 -6px 0 #bba86e
}

.available__item_poloniex {
    background: #119e5f;
    border: 4px solid #093d26;
    -webkit-box-shadow: inset 0 -11px 0 #0f5b39;
    box-shadow: inset 0 -11px 0 #0f5b39
}

.available__item_poloniex:hover {
    -webkit-box-shadow: inset 0 -6px 0 #0f5b39;
    box-shadow: inset 0 -6px 0 #0f5b39
}

.available__item_bitmart {
    background: #252525;
    border: 4px solid #252525;
    -webkit-box-shadow: inset 0 -11px 0 #1b1b1b;
    box-shadow: inset 0 -11px 0 #1b1b1b
}

.available__item_bitmart:hover {
    -webkit-box-shadow: inset 0 -6px 0 #1b1b1b;
    box-shadow: inset 0 -6px 0 #1b1b1b
}

.available__item_jupiter {
    background: linear-gradient(210.41deg, #c7f284 25.16%, #00bef0 92.36%), #252525;
    border: 4px solid #17594e;
    -webkit-box-shadow: inset 0 -11px 0 rgba(20, 74, 72, .43);
    box-shadow: inset 0 -11px 0 rgba(20, 74, 72, .43)
}

.available__item_jupiter:hover {
    -webkit-box-shadow: inset 0 -6px 0 rgba(20, 74, 72, .43);
    box-shadow: inset 0 -6px 0 rgba(20, 74, 72, .43)
}

.available__item_hey-moon {
    background: #0a0a0a;
    border: 4px solid rgba(0, 0, 0, .2196078431);
    -webkit-box-shadow: 0 -11px 0 0 rgba(37, 37, 37, .5019607843) inset;
    box-shadow: 0 -11px 0 0 rgba(37, 37, 37, .5019607843) inset
}

.available__item_hey-moon:hover {
    -webkit-box-shadow: 0 -6px 0 0 rgba(37, 37, 37, .5019607843) inset;
    box-shadow: 0 -6px 0 0 rgba(37, 37, 37, .5019607843) inset
}

.available__item_travala {
    background: #2d2d4f;
    border: 4px solid #2d2d4f;
    -webkit-box-shadow: 0 -11px 0 0 rgba(12, 12, 12, .431372549) inset;
    box-shadow: 0 -11px 0 0 rgba(12, 12, 12, .431372549) inset
}

.available__item_travala:hover {
    -webkit-box-shadow: 0 -6px 0 0 rgba(12, 12, 12, .431372549) inset;
    box-shadow: 0 -6px 0 0 rgba(12, 12, 12, .431372549) inset
}

.available__item_zebec {
    background: #10e1a6;
    border: 4px solid #17634d;
    -webkit-box-shadow: 0 -11px 0 0 rgba(12, 12, 12, .431372549) inset;
    box-shadow: 0 -11px 0 0 rgba(12, 12, 12, .431372549) inset
}

.available__item_zebec:hover {
    -webkit-box-shadow: 0 -6px 0 0 rgba(12, 12, 12, .431372549) inset;
    box-shadow: 0 -6px 0 0 rgba(12, 12, 12, .431372549) inset
}

.available__item_hey-wallet {
    background: #1f1f1f;
    border: 4px solid #000;
    -webkit-box-shadow: 0 -11px 0 0 rgba(18, 18, 18, .431372549) inset;
    box-shadow: 0 -11px 0 0 rgba(18, 18, 18, .431372549) inset
}

.available__item_hey-wallet:hover {
    -webkit-box-shadow: 0 -6px 0 0 rgba(18, 18, 18, .431372549) inset;
    box-shadow: 0 -6px 0 0 rgba(18, 18, 18, .431372549) inset
}

.laboratory {
    background: url(/assets/png/laboratory-background.png) top center/cover no-repeat
}

.laboratory__container {
    padding-top: 50px;
    max-width: 670px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 24px
}

.laboratory__title {
    width: 100%;
    display: block
}

.laboratory__text {
    font-family: var(--font-cutie);
    color: #fff;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4
}

.laboratory__illustration {
    display: block;
    max-width: 100%;
    margin-top: 50px
}

.btn {
    font-family: "Milk Kids";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    color: #19334a;
    background: #ffde68;
    border: 3px solid #19334a;
    -webkit-box-shadow: 0 4px 0 #19334a;
    box-shadow: 0 4px 0 #19334a;
    padding: 14px 36px;
    border-radius: 60px;
    text-transform: uppercase;
    gap: 16px;
    text-align: center;
    outline: 0;
    -webkit-transition: background .2s ease-in-out, -webkit-box-shadow .2s ease-in-out;
    transition: background .2s ease-in-out, box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out;
    cursor: pointer;
    text-decoration: none
}

.btn:hover {
    background: #ffe482;
    -webkit-box-shadow: 0 1px 0 #19334a;
    box-shadow: 0 1px 0 #19334a
}

.btn_blue {
    background: #2596ff;
    color: #fff;
    border: 2px solid #19334a;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn_blue:hover {
    background: #3fa2ff;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn_white {
    background: #fff
}

.btn_white:hover {
    background: #ddefff
}

@media screen and (max-width: 1023.98px) {
    .btn {
        font-size: 20px;
        padding: 12px 28px
    }
}

.wrapper {
    min-height: 100vh;
    background: url(/assets/png/generator-background.jpg) center right/cover no-repeat;
    font-family: var(--font-cutie)
}

.simple-generator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 120px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    gap: 60px
}

@media screen and (max-width: 1600px) {
    .simple-generator {
        padding: 60px
    }
}

@media screen and (max-width: 1280px) {
    .simple-generator {
        padding: 60px 30px;
        gap: 30px
    }
}

@media screen and (max-width: 1023.98px) {
    .simple-generator {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 60px
    }
}

@media screen and (max-width: 540px) {
    .simple-generator {
        padding: 30px 15px
    }
}

.simple-generator__generator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 490px;
    width: 100%;
    padding: 48px;
    border-radius: 24px;
    background: #e5f0ff;
    border: 2px solid rgba(0, 0, 0, .12);
    gap: 16px
}

@media screen and (max-width: 1280px) {
    .simple-generator__generator {
        padding: 24px;
        max-width: 425px
    }
}

.simple-generator__generator .btn {
    width: 100%;
    border-radius: 24px;
    padding: 19px
}

@media screen and (max-width: 1023.98px) {
    .simple-generator__generator {
        max-width: 490px
    }

    .simple-generator__generator .btn {
        padding: 16px
    }
}

@media screen and (max-width: 540px) {
    .simple-generator__generator .btn {
        padding: 12px;
        border-radius: 16px
    }
}

.simple-generator__avatar {
    overflow: hidden;
    border-radius: 36px;
    border: 10px solid #a8b2c1;
    position: relative
}

.simple-generator__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

@media screen and (max-width: 1280px) {
    .simple-generator__avatar {
        border-radius: 18px;
        border: 5px solid #a8b2c1
    }
}

@media screen and (max-width: 767.98px) {
    .simple-generator__avatar {
        border: 3px solid #a8b2c1;
        border-radius: 16px
    }
}

.simple-generator__avatar-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    -webkit-clip-path: circle(0 at 50%);
    clip-path: circle(0 at 50%);
    -webkit-transition: -webkit-clip-path .6s ease-in-out;
    transition: clip-path .6s ease-in-out;
    transition: clip-path .6s ease-in-out, -webkit-clip-path .6s ease-in-out;
    pointer-events: none
}

.simple-generator__avatar-loader_active {
    -webkit-clip-path: circle(80% at 50%);
    clip-path: circle(80% at 50%);
    pointer-events: auto
}

.simple-generator__avatar-loader_active img, .simple-generator__avatar-loader_active svg {
    opacity: 1 !important
}

.simple-generator__avatar-loader img, .simple-generator__avatar-loader svg {
    width: 100px;
    height: 100px;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out .4s;
    transition: opacity .5s ease-in-out .4s
}

.simple-generator__col {
    max-width: 490px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%
}

.simple-generator__title {
    font-weight: 400;
    font-size: 64px;
    color: #000;
    text-transform: uppercase;
    line-height: 100%;
    text-shadow: #fff 2px 0 0, #fff 1.75517px .958851px 0, #fff 1.0806px 1.68294px 0, #fff .141474px 1.99499px 0, #fff -.832294px 1.81859px 0, #fff -1.60229px 1.19694px 0, #fff -1.97998px .28224px 0, #fff -1.87291px -.701566px 0, #fff -1.30729px -1.5136px 0, #fff -.421592px -1.95506px 0, #fff .567324px -1.91785px 0, #fff 1.41734px -1.41108px 0, #fff 1.92034px -.558831px 0
}

@media screen and (max-width: 1600px) {
    .simple-generator__col {
        gap: 24px
    }

    .simple-generator__title {
        font-size: 48px
    }
}

@media screen and (max-width: 1023.98px) {
    .simple-generator__col {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 8px
    }

    .simple-generator__title {
        font-size: 40px
    }
}

.simple-generator__lab {
    margin-left: auto;
    margin-top: -40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 264px;
    width: 100%;
    gap: 16px
}

@media screen and (max-width: 1023.98px) {
    .simple-generator__lab {
        margin: 0
    }
}

.simple-generator__lab-image {
    width: 100%
}

.simple-generator__back {
    border-radius: 20px
}

.wrapper.custom-generator {
    background: 0 0
}

.custom-generator {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 120px 80px;
    position: relative
}

@media screen and (max-width: 1600px) {
    .custom-generator {
        padding: 40px 60px 60px
    }
}

@media screen and (max-width: 1280px) {
    .custom-generator {
        padding: 40px 30px 60px
    }
}

@media screen and (max-width: 540px) {
    .custom-generator {
        padding: 30px 15px
    }
}

.custom-generator__background {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    -o-object-position: center center;
    object-position: center center
}

.custom-generator__header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 20px 0
}

.custom-generator__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 218px;
    width: 100%;
    display: block
}

@media screen and (max-width: 800px) {
    .custom-generator__header {
        padding: 0
    }

    .custom-generator__logo {
        display: none
    }
}

.custom-generator__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 1620px) {
    .custom-generator__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.custom-generator__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 60px;
    position: relative
}

@media screen and (max-width: 1280px) {
    .custom-generator__main {
        gap: 30px
    }
}

.custom-generator__choices {
    max-width: 640px
}

@media screen and (max-width: 1100px) {
    .custom-generator__choices {
        max-width: 50%
    }
}

@media screen and (max-width: 880px) {
    .custom-generator__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .custom-generator__choices {
        max-width: 100%
    }
}

.custom-generator__lab {
    position: absolute;
    right: 120px;
    top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 264px;
    width: 100%;
    gap: 16px
}

@media screen and (max-width: 1620px) {
    .custom-generator__lab {
        position: static;
        margin-top: 60px
    }
}

.custom-generator__lab-image {
    width: 100%;
    display: block
}

@media screen and (max-width: 560px) {
    .custom-generator__back {
        width: 55px;
        height: 55px;
        padding: 0
    }

    .custom-generator__back span {
        display: none
    }
}

.custom-generator__col {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: sticky;
    position: -webkit-sticky;
    top: 24px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 390px;
    width: 100%;
    gap: 16px
}

@media screen and (max-width: 880px) {
    .custom-generator__col {
        position: static;
        max-width: 425px
    }
}

.custom-generator__avatar {
    border: 10px solid #19334a;
    background: #2a4761;
    border-radius: 36px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width: 1280px) {
    .custom-generator__avatar {
        border-radius: 18px;
        border: 5px solid #19334a
    }
}

@media screen and (max-width: 767.98px) {
    .custom-generator__avatar {
        border: 3px solid #19334a;
        border-radius: 16px
    }
}

.custom-generator__avatar canvas {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    outline: 0;
    background: 0 0
}

.custom-generator__avatar._loading .custom-generator__avatar-loader {
    -webkit-clip-path: circle(80% at 50%);
    clip-path: circle(80% at 50%);
    pointer-events: auto
}

.custom-generator__avatar._loading .custom-generator__avatar-loader img, .custom-generator__avatar._loading .custom-generator__avatar-loader svg {
    opacity: 1 !important
}

.custom-generator__avatar-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    -webkit-clip-path: circle(0 at 50%);
    clip-path: circle(0 at 50%);
    -webkit-transition: -webkit-clip-path .6s ease-in-out;
    transition: clip-path .6s ease-in-out;
    transition: clip-path .6s ease-in-out, -webkit-clip-path .6s ease-in-out;
    pointer-events: none
}

.custom-generator__avatar-loader img, .custom-generator__avatar-loader svg {
    width: 100px;
    height: 100px;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out .4s;
    transition: opacity .5s ease-in-out .4s
}

.choices {
    position: relative;
    width: 100%;
    background: rgba(229, 240, 255, .98);
    border: 2px solid rgba(0, 0, 0, .12);
    border-radius: 24px;
    padding: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    font-family: var(--font-cutie);
    font-weight: 400;
    overflow: hidden
}

.choices__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, .3)
}

.choices__overlay svg {
    width: 128px;
    height: 128px;
    display: block;
    margin-bottom: 16px
}

.choices__overlay p {
    font-family: var(--font-cutie);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    max-width: 360px;
    margin: 0 auto;
    width: 100%
}

.choices__title {
    font-weight: 400;
    font-size: 44px;
    text-transform: uppercase;
    color: #19334a
}

@media screen and (max-width: 640px) {
    .choices {
        padding: 24px;
        border-radius: 16px;
        gap: 16px
    }

    .choices__title {
        font-size: 32px;
        text-align: center
    }
}

@media screen and (max-width: 380px) {
    .choices__title {
        font-size: 30px
    }
}

.choices__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.choices__item_mouth .choices__choice {
    background: url(/assets/parts/eyes/common/Original.png) 0 0/cover no-repeat , url(/assets/parts/body/common/Original.png) 0 0 / cover no-repeat
}

.choices__item_need-full-base .choices__choice {
    background: url(/assets/parts/eyes/common/Original.png) 0 0/cover no-repeat, url(/assets/parts/mouth/common/Original.png) 0 0/cover no-repeat, url(/assets/parts/body/common/Original.png) 0 0/cover no-repeat
}

.choices__item_need-base .choices__choice {
    background: url(/assets/parts/mouth/common/Original.png) 0 0/cover no-repeat, url(/assets/parts/body/common/Original.png) 0 0/cover no-repeat
}

.choices__label {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    color: #19334a
}

.choices__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden
}

.choices__choice {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: 0 0;
    border: 1px solid #b9b9b9;
    cursor: pointer;
    width: 64px;
    min-height: 64px !important;
    border-radius: 16px;
    -webkit-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
    overflow: hidden
}

.choices__choice:hover {
    border: 1px solid #2596ff
}

.choices__choice.selected {
    border: 3px solid #2596ff;
    position: relative
}

.choices__choice_unavailable {
    position: relative;
    cursor: not-allowed
}

.choices__choice_unavailable::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='32' height='32' viewBox='0 0 48 48' %3E%3Cpath fill='%23d50000' d='M5.7 22H42.5V26H5.7z' transform='rotate(-45.001 24.036 24.037)' %3E%3C/path%3E%3Cpath fill='%23d50000' d='M24,4C13,4,4,13,4,24s9,20,20,20s20-9,20-20S35,4,24,4z M24,40c-8.8,0-16-7.2-16-16S15.2,8,24,8 s16,7.2,16,16S32.8,40,24,40z' %3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.choices__choice img {
    width: 100%;
    display: block
}

.owl-loaded {
    overflow: hidden;
    position: relative
}

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.owl-dots.disabled, .owl-nav.disabled {
    display: none
}

.owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.owl-next, .owl-prev {
    position: absolute;
    height: 100%;
    background: 0 0;
    border: none;
    margin: 0;
    padding: 0
}

.owl-next span, .owl-prev span {
    position: relative;
    z-index: 5;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #bbd7f0;
    color: #425b73;
    border: none;
    cursor: pointer;
    width: 48px;
    text-align: center;
    font-size: 32px;
    font-family: var(--font-manrope);
    font-weight: 700;
    border-radius: 8px
}

.owl-next.disabled, .owl-prev.disabled {
    display: none
}

.owl-prev {
    left: 0;
    top: 0
}

.owl-prev::after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 100%;
    top: 0;
    left: calc(100% - 8px);
    background: -webkit-gradient(linear, right top, left top, from(rgba(218, 231, 250, 0)), color-stop(50%, #dae7fa));
    background: linear-gradient(-90deg, rgba(218, 231, 250, 0) 0, #dae7fa 50%)
}

.owl-next {
    right: 0;
    top: 0
}

.owl-next::after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 100%;
    top: 0;
    right: calc(100% - 8px);
    background: -webkit-gradient(linear, left top, right top, from(rgba(218, 231, 250, 0)), color-stop(50%, #dae7fa));
    background: linear-gradient(90deg, rgba(218, 231, 250, 0) 0, #dae7fa 50%)
}

@media screen and (max-width: 1023.98px) {
    .footik__disclaimer {
        width: 100%;
        max-width: 329px
    }

    .footik .container > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        gap: 30px
    }

    .avatar__title {
        font-size: 48px
    }

    .avatar__text {
        font-size: 20px
    }
}

@media screen and (max-width: 767.98px) {
    .about_text > div {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        padding: 10px 30px
    }

    .tokens > h2 {
        padding: 10px 20px 0
    }

    .tokens__cards {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr);
        padding-bottom: 0
    }
}

@media (width <= 485px) {
    .xuy > div > div {
        right: 0;
        bottom: -70px;
        position: absolute
    }

    .tokens > span {
        padding-left: 10px;
        font-size: 14px
    }

    .tokens > span button {
        font-size: 14px;
        padding: 5px
    }

    .tokens__cards {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

@media (width <= 430px) {
    .xuy > div > div {
        right: 0;
        bottom: -80px;
        position: absolute
    }

    .tokens > span {
        font-size: 12px
    }

    .header__link2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: url(/assets/svg/cloud_link.svg);
        font-family: var(--font-cutie);
        font-size: 16px;
        text-decoration: none;
        color: #2596ff;
        width: 102px;
        height: 72px
    }

    .header__link > a > img {
        width: 25px
    }
}

@media screen and (max-width: 640px) {
    .available__item {
        width: 100%;
        max-width: 360px;
        margin: 0 auto
    }

    .available__title {
        font-size: 48px;
        margin-bottom: 30px
    }

    .avatar__title {
        font-size: 48px
    }

    .avatar__text {
        font-size: 18px
    }

    .avatar__actions {
        gap: 16px
    }

    .avatar__btn {
        font-size: 18px
    }

    .header__link2 {
        display: none
    }

    .header__links {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}