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

html {
    font-size: 2.5vw;
}

body {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    background-color: #fff;
    width: 100vw;
    overflow-x: hidden;
}

body a {
    text-decoration: none;
}

body svg {
    display: block;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: .4rem 3rem;
    z-index: 1500000;
    -webkit-transition: all .2s ease-out;
}

header.scroll {
    background-color: #57195f;
    background: #0f1c6d;
}

header nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header nav h1 {
    font-size: 25px;
    color: #fff;
    top: 0;
    left: 0;
}

header nav #logo svg {
    width: 4rem;
}

header nav #logo svg .cls-1 {
    fill: #f3f4ed;
}

header nav #logo svg .cls-2 {
    fill: #fff;
}

header nav #logo svg .cls-3 {
    fill: #e0dfce;
}

header nav #logo svg .cls-4 {
    fill: #dbdccb;
}

header nav #logo svg .cls-5 {
    fill: #e09255;
}

header nav #logo svg .cls-6 {
    mix-blend-mode: soft-light;
}

header nav #logo svg .cls-6,
header nav #logo svg .cls-8 {
    isolation: isolate;
}

header nav #logo svg .cls-7 {
    fill: #f5ded2;
}

header nav #logo svg .cls-8 {
    mix-blend-mode: multiply;
}

header nav #logo svg .cls-9 {
    fill: #deb9ab;
}

header nav #nav-toggle {
    display: none;
}

header nav #nav-toggle span {
    display: block;
    height: 0.1rem;
    width: 1.5rem;
    background-color: #fff;
    margin-bottom: 0.2rem;
    transform-origin: top right;
    -webkit-transition: transform 0.3s cubic-bezier(0.18, 0.57, 0.5, 1.03);
    border-radius: 0.1rem;
}

header nav #nav-toggle span:last-of-type {
    margin-bottom: 0;
    -webkit-transform-origin: bottom right;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header nav ul li {
    display: inline-block;
    list-style: none;
    margin-right: .4rem;
    position: relative;
    cursor: pointer;
}

header nav ul li a {
    font-size: 0.35rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #fff;
    display: block;
    z-index: 2;
    -webkit-transition: all 0.2s cubic-bezier(0.18, 0.57, 0.5, 1.03);
}

header nav ul li:last-of-type {
    margin-right: 0;
}

header nav ul li .underline {
    display: block;
    position: absolute;
    bottom: -.08rem;
    left: 0;
    height: .04rem;
    background-color: #fff;
    width: 0%;
    transition: all .3s ease-in;
}

header nav ul li:hover .underline {
    width: 100%;
}

header nav ul li.buy {
    -webkit-transition: all 0.2s cubic-bezier(0.18, 0.57, 0.5, 1.03);
    padding: .3rem .6rem;
    border: 0.06rem solid #fff;
}

header nav ul li.buy:hover {
    background-color: #fff;
}

header nav ul li.buy:hover a {
    color: #391b59;
}

header nav ul li.socials-li svg {
    height: .5rem;
}

header nav ul li.socials-li svg path {
    fill: #fff;
}

#banner {
    width: 100vw;
    overflow: hidden;
    height: 100vh;
    background: #0f1c6d;
    background: linear-gradient( 0deg, #0c1960 0%, #4a4f63 100%);
    padding: 2rem 9rem 3rem 9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#banner h2 {
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

#banner h3 {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #fff;
}

#banner h3 span {
    display: block;
    font-size: .4rem;
    font-weight: 200;
    margin-top: .5rem;
}

#banner svg {
    width: 1.2rem;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    -webkit-animation: moveUpDown 1.5s infinite ease-in-out;
    transform: translateX(-50%);
}

#banner svg path {
    stroke: #fff;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3px;
}

#banner img {
    width: 8rem;
    margin-bottom: 30px;
    bottom: 1rem;
    margin-top: 50px;
}

#banner img.nigiri-2 {
    right: 3rem;
}

#about {
    width: 100vw;
    overflow: hidden;
    padding: 3rem 1rem;
}

#about .section-title {
    position: relative;
    margin-bottom: 2rem;
}

#about .section-title h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: rgb(15 27 106);
    text-transform: uppercase;
}

#about .section-title img {
    width: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#about .section-content {
    padding: 0 8rem;
}

#about .section-content h3 {
    text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
    color: #282828;
}

#about .section-content p {
    text-align: justify;
    font-size: 0.4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #282828;
}

#tokenomics {
    width: 100vw;
    overflow: hidden;
    padding: 3rem 1rem;
    background: #0f1c6d;
    background: linear-gradient( 0deg, #0c1960 0%, #4a4f63 100%);
}

#tokenomics .section-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#tokenomics .section-title h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

#tokenomics .section-title img {
    position: relative;
    z-index: 5;
    height: 2rem;
    margin: 0 -.5rem;
}

#tokenomics .section-content {
    padding: 0 8rem;
}

#tokenomics .section-content h3 {
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #fff;
    text-align: center;
    margin: 1rem;
    text-transform: uppercase;
}

#tokenomics .section-content .supply {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: .5rem;
}

#tokenomics .section-content .supply .perc {
    margin-bottom: .6rem;
}

#tokenomics .section-content .supply .perc p {
    font-size: 0.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #fff;
    margin-bottom: .3rem;
}

#tokenomics .section-content .supply .perc .bar {
    width: 100%;
    height: .8rem;
    border-radius: 1rem;
    background-color: #fff;
    padding: .2rem .1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#tokenomics .section-content .supply .perc .bar p {
    font-size: 0.4rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: 0.05rem;
    margin-bottom: 0;
    margin-left: .2rem;
    color: #282828;
}

#tokenomics .section-content .supply .perc .bar .cont {
    height: .6rem;
    border-radius: 1rem;
    background-color: #FFBDC5;
    transition: 1s ease-in-out;
}

#tokenomics .section-content .supply .perc .bar .cont.one {
    width: 0%;
    transition-delay: .5s;
}

#tokenomics .section-content .supply .perc .bar .cont.two {
    width: 0%;
    transition-delay: .6s;
}

#tokenomics .section-content .supply .perc .bar .cont.three {
    width: 0%;
    transition-delay: .7s;
}

#tokenomics .section-content .supply .perc .bar .cont.four {
    width: 0%;
    transition-delay: .8s;
    border-radius: .6rem;
}

#tokenomics .section-content .supply .perc .bar .cont.five {
    width: 0%;
    transition-delay: .9s;
    border-radius: 10rem;
}

#tokenomics .section-content .supply .perc .bar .filled.one {
    width: 40%;
}

#tokenomics .section-content .supply .perc .bar .filled.two {
    width: 40%;
}

#tokenomics .section-content .supply .perc .bar .filled.three {
    width: 12%;
}

#tokenomics .section-content .supply .perc .bar .filled.four {
    width: 5%;
}

#tokenomics .section-content .supply .perc .bar .filled.five {
    width: 3%;
}

#tokenomics .section-content .taxes {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1rem;
}

#tokenomics .section-content .taxes p {
    text-align: center;
    font-size: 0.4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #fff;
}

#tokenomics .section-content .taxes p span {
    display: block;
    margin-bottom: .5rem;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    background-color: white;
    border-radius: 1rem;
    padding: .2rem;
    color: #FFBDC5;
}

#roadmap {
    width: 100vw;
    overflow: hidden;
    padding: 3rem 1rem 1.5rem 1rem;
}

#roadmap .section-title {
    position: relative;
    margin-bottom: 2rem;
}

#roadmap .section-title h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: rgb(15 27 106);
    text-transform: uppercase;
}

#roadmap .section-title img {
    width: 2rem;
    position: absolute;
    top: -.8rem;
    left: 50%;
    transform: translateX(-70%);
}

#roadmap .section-content {
    padding: 0 8rem;
}

#roadmap .timeline {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#roadmap .timeline .line {
    display: block;
    width: 100%;
    height: .04rem;
    background-color: #FFBDC5;
}

#roadmap .timeline .circle {
    display: block;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background-color: #FFBDC5;
}

#roadmap .phases {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
    position: relative;
    top: -1.5rem;
}

#roadmap .phases .phase {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#roadmap .phases .phase h3 {
    text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: #282828;
}

#roadmap .phases .phase .circle {
    display: block;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: rgb(15 27 106);
    margin: .6rem 0;
    box-shadow: 0 0 0 0.2rem rgba(249, 169, 115, 0.3);
}

#roadmap .phases .phase .line {
    display: block;
    width: .04rem;
    height: 2rem;
    background-color: rgb(15 27 106);
}

#roadmap .phases .phase .steps {
    list-style: none;
}

#roadmap .phases .phase .steps li {
    font-size: 0.4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #282828;
    margin-top: .4rem;
    text-align: center;
}

#roadmap .phases .phase.current .circle {
    -webkit-animation: tilt .7s infinite ease-in-out;
}

#community {
    width: 100vw;
    overflow: hidden;
    padding: 3rem 1rem;
    background: linear-gradient( 0deg, #0c1960 0%, #4a4f63 100%);
    position: relative;
}

#community .section-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#community .section-title h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

#community .section-title img {
    height: 2.5rem;
    position: relative;
    left: -.8rem;
}

#community .section-content {
    padding: 0 8rem;
}

#community p {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05rem;
    color: #fff;
    margin-bottom: 2rem;
}

#community .socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#community .socials a {
    display: block;
    margin-right: 1.5rem;
}

#community .socials a:last-of-type {
    margin-right: 0;
}

#community .socials a svg {
    width: 1.5rem;
}

#community .socials a svg path {
    fill: #fff;
}

#buy {
    width: 100vw;
    overflow: hidden;
    padding: 3rem 1rem;
}

#buy .section-title {
    position: relative;
    margin-bottom: 1rem;
}

#buy .section-title h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05rem;
    color: rgb(15 27 106);
    text-transform: uppercase;
}

#buy .section-title img {
    width: 2.5rem;
    position: absolute;
    right: 50%;
    top: -1rem;
    transform: translateX(-50%);
}

#buy .section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#buy .section-content img {
    width: 6rem;
}

#buy .section-content a {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05rem;
    margin: 1rem 0;
    color: rgb(15 27 106);
    background-color: #fff;
    border: 0.1rem solid rgb(15 27 106);
    padding: .5rem;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

#buy .section-content a:hover {
    color: #fff;
    background-color: rgb(15 27 106);
}

#buy .section-content p {
    font-size: 0.4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #282828;
    text-align: center;
}

@-webkit-keyframes moveUpDown {
    0% {
        -webkit-transform: translate(-50%, -0.5rem);
    }
    50% {
        -webkit-transform: translate(-50%, 0);
    }
    100% {
        -webkit-transform: translate(-50%, -0.5rem);
    }
}

@-webkit-keyframes tilt {
    0% {
        box-shadow: 0 0 0 0.2rem rgba(249, 169, 115, 0.6);
    }
    50% {
        box-shadow: 0 0 0 0.2rem rgba(249, 169, 115, 0);
    }
    100% {
        box-shadow: 0 0 0 0.2rem rgba(249, 169, 115, 0.6);
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 6.5vw;
    }
    header {
        padding: .6rem;
    }
    header nav #nav-toggle {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    header nav ul {
        z-index: -50000;
        position: absolute;
        left: 0;
        top: 100%;
        transform: translateY(-200%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        transition: all .5s ease-out;
    }
    header nav ul li {
        background-color: rgb(15 27 106);
        opacity: 1;
        width: 100%;
        display: block;
        list-style: none;
        margin-right: 0;
        position: relative;
        padding: .75rem;
        text-align: center;
        border: 0.5px solid rgba(255, 255, 255, 0.4);
    }
    header nav ul li a {
        font-size: .4rem;
    }
    header nav ul li .underline {
        display: none;
    }
    header nav ul li.buy {
        padding: .75rem;
        border: none;
        background-color: #fff;
    }
    header nav ul li.buy a {
        color: rgb(15 27 106);
        font-weight: 700;
    }
    header nav ul li.buy:hover {
        background-color: rgb(15 27 106);
    }
    header nav ul li.buy:hover a {
        color: #fff;
    }
    header nav ul li.socials-li {
        display: inline-block;
    }
    header nav ul li.socials-li a {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    header nav ul li.socials-li svg {
        height: .6rem;
    }
    #banner {
        height: auto;
        padding: 4rem 1rem 5rem 1rem;
    }
    #banner h3 span {
        font-size: .5rem;
    }
    #banner img {
        position: relative;
        bottom: 0;
        margin-top: 1.5rem;
    }
    #banner img.nigiri-2 {
        right: 0;
    }
    #about {
        padding: 2rem 1rem;
    }
    #about .section-title {
        position: relative;
        margin-bottom: 1rem;
    }
    #about .section-title h2 {
        font-size: 1.5rem;
    }
    #about .section-title h2 span {
        display: block;
        margin-top: 2rem;
    }
    #about .section-title img {
        width: 2.5rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #about .section-content {
        padding: 0;
    }
    #about .section-content p {
        font-size: .5rem;
    }
    #tokenomics {
        padding: 2rem 1rem;
    }
    #tokenomics .section-title h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.05rem;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
    }
    #tokenomics .section-title img {
        height: 1.5rem;
        margin: 0 -.3rem;
    }
    #tokenomics .section-content {
        padding: 0;
    }
    #tokenomics .section-content h3 {
        font-size: 0.6rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.05rem;
        color: #fff;
        text-align: center;
        margin: 1rem;
        text-transform: uppercase;
    }
    #tokenomics .section-content .supply {
        grid-template-columns: 1fr;
    }
    #roadmap {
        padding: 2rem 1rem;
    }
    #roadmap .section-title {
        margin-bottom: 1rem;
    }
    #roadmap .section-title h2 {
        font-size: 1.5rem;
    }
    #roadmap .section-title img {
        width: 1.8rem;
        transform: translateX(-60%);
    }
    #roadmap .section-content {
        padding: 0;
    }
    #roadmap .timeline {
        display: none;
    }
    #roadmap .phases {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 1.5rem;
        top: 0;
    }
    #roadmap .phases .phase h3 {
        font-size: .6rem;
    }
    #roadmap .phases .phase .line {
        height: 1rem;
    }
    #roadmap .phases .phase .steps li {
        font-size: .5rem;
    }
    #community {
        padding: 2rem 1rem;
    }
    #community .section-title h2 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.05rem;
    }
    #community .section-title img {
        height: 1.5rem;
    }
    #community .section-content {
        padding: 0;
    }
    #buy {
        padding: 2rem 1rem;
    }
    #buy .section-title h2 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.05rem;
    }
    #buy .section-title img {
        width: 2rem;
        transform: translateX(-18%);
    }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
    html {
        font-size: 4vw;
    }
}

.mobile-only {
    display: none;
}

@media(max-width:1024px) {
    .mobile-only {
        display: block;
    }
}

.list-c {
    display: flex;
    font-size: 15px;
    /* color: #fff; */
    list-style: none;
}

.c-a {
    padding: 10px;
    font-size: 0.6rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.c-l {
    border: 0.06rem solid #fff;
    margin: 10px;
}