

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;family=Roboto&amp;display=swap");
@keyframes changeColor {
    0% {
        transform: rotate(0) translateX(0);
    }
    50% {
        transform: rotate(180deg) translateX(3rem);
    }
    100% {
        transform: rotate(360deg) translateX(0);
    }
}

@keyframes toggleGrow {
    0% {
        transform: scale(1.5);
    }
    50% {
        transform: scale(2);
    }
    70% {
        transform: scale(0.6);
    }
    100% {
        transform: scale(1.5);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

@media (min-width: 112.5em) {
    html {
        font-size: 75%;
    }
}

@media (min-width: 0) {
    html {
        font-size: 30%;
    }
}

.note {
    color: gray;
    margin-top: 10rem;
    margin-bottom: 0;
    font-size: 2rem;
}

footer {
    text-align: center;
    padding: 4rem 0;
    font-size: 4rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar {
    width: 4px;
    border-radius: 0.3rem;
}

/* Track */

::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

@media (min-width: 0) {
    body {
        color: white;
        background-color: rgba(0, 0, 0, 0.97);
    }
    .navbar {
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .navbar__brand>a {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 5rem 1rem;
        margin: 0 1rem;
        justify-content: space-around;
        transition: all 0.3s ease;
        text-decoration: none;
        color: white;
    }
    .navbar__brand>a>h1 {
        font-size: 7rem;
        text-align: center;
        font-weight: 500;
        padding: 1rem;
    }
    .navbar__brand>a>img {
        height: 7.6rem;
        padding: 0 2rem;
    }
    .navbar__checkbox {
        position: fixed;
        right: 3rem;
        top: 2rem;
        height: 8rem;
        width: 8rem;
        opacity: 0;
        z-index: 1200;
        cursor: pointer;
        backface-visibility: disabled;
    }
    .navbar__menu {
        position: absolute;
        top: 8.2rem;
        right: 3.6rem;
        background-color: white;
        height: 0.5rem;
        width: 8rem;
        border-radius: 5rem;
        z-index: 1100;
    }
    .navbar__menu,
    .navbar__menu::before,
    .navbar__menu::after {
        transition: all 0.4s ease;
    }
    .navbar__menu::after {
        content: "";
        position: absolute;
        background-color: white;
        width: 8rem;
        height: 0.5rem;
        border-radius: 5rem;
        top: 2rem;
    }
    .navbar__menu::before {
        content: "";
        position: absolute;
        background-color: white;
        width: 8rem;
        height: 0.5rem;
        border-radius: 5rem;
        top: -2rem;
    }
    .navbar__list {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000;
        backdrop-filter: blur(1rem);
        width: 100vw;
        height: 110vh;
        transform: translateX(-100vw);
        transition: all ease 0.4s;
    }
    .navbar__list-links {
        list-style-type: none;
        text-align: left;
        padding-top: 30rem;
    }
    .navbar__list-links>li {
        margin-left: 10rem;
        padding: 3rem 0;
        font-size: 5.2rem;
        font-weight: 300;
    }
    .navbar__list-links>li>a {
        color: white;
        text-decoration: none;
        text-transform: capitalize;
        transition: all 0.2s ease;
    }
    .navbar__list-links>li>a:hover {
        color: #FFD95A;
    }
    .navbar__list-links>li:first-child {
        font-size: 8rem;
        font-weight: 700;
        margin-bottom: 9rem;
    }
    .navbar__list-links>li:first-child>a:hover {
        color: #fff;
    }
    .navbar__checkbox:checked~.navbar__list {
        transform: translateX(0);
    }
    .navbar__checkbox:checked~.navbar__menu {
        transform: rotate(45deg);
        background-color: transparent;
    }
    .navbar__checkbox:checked~.navbar__menu::after {
        transform: rotate(90deg);
        top: 0;
    }
    .navbar__checkbox:checked~.navbar__menu::before {
        transform: rotate(180deg);
        top: 0;
    }
    .hero {
        width: 100%;
        margin: auto;
        height: 100vh;
        padding: 30rem 1rem 0;
        text-align: center;
    }
    .hero__heading {
        text-shadow: 0 0 100rem rgba(255, 0, 127, 0.7);
    }
    .hero__heading-primary {
        font-size: 13.4vw;
        font-weight: 600;
        padding: 1rem 0;
    }
    .hero__heading-primary>span {
        color: #FFD95A;
    }
    .hero__heading-secondary {
        font-size: 5vw;
        padding: 3rem 0;
        font-weight: 300;
        width: 95%;
        margin: auto 0.6rem;
    }
    .hero__button {
        padding: 8rem 0;
        left: 0;
        bottom: 5rem;
        text-align: center;
        width: 100%;
    }
    .hero__button>button {
        background: black;
        cursor: pointer;
        color: lightgrey;
        padding: 2vw 6vw;
        font-size: 4vw;
        border-radius: 10rem;
        border: none;
        box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    }
    .about {
        height: max-content;
        padding: 2rem 0;
        padding-top: 12rem;
        position: relative;
        width: 98%;
        margin: 20rem auto;
    }
    .about__image {
        width: 60%;
        margin: auto;
    }
    .about__image>img {
        width: 100%;
        height: auto;
            animation-name: floating;
            animation-duration: 3s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
        }
         
        @keyframes floating {
            0% { transform: translate(0,  0px); }
            50%  { transform: translate(0, 35px); }
            100%   { transform: translate(0, -0px); }   
        }
    }
    .about__heading {
        margin-top: 8rem;
        text-align: center;
    }
    .about__heading>h2 {
        font-size: 8vw;
        padding: 0.5rem 0;
        font-weight: 700;
    }
    .about__heading>h4 {
        padding: 3rem 0;
        font-size: 4vw;
        font-weight: 300;
        width: 90%;
        margin: auto;
    }
    .about__button {
        text-align: center;
        margin: 2rem 0;
    }
    .about__button>button {
        padding: 2rem 4.4rem;
        color: white;
        background: rgb(0, 0, 0);
        border: none;
        border-radius: 10rem;
        box-shadow: 0 0 30px rgb(255, 255, 255);
    }
    .about__button>button>a {
        text-decoration: none;
        color: white;
        font-size: 3rem;
    }
    .partners {
        background-color: rgba(255, 255, 255, 0.05);
        margin: 36rem auto;
        padding: 10rem;
    }
    .partners__title {
        text-align: center;
    }
    .partners__title>h2 {
        font-weight: 500;
        font-size: 8vw;
    }
    .partners__flex {
        max-width: 90%;
        margin: auto;
        padding: auto;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: center;
        flex-wrap: wrap;
    }
    .partners__flex-partner {
        text-align: center;
        margin: 2rem;
        padding: 3rem;
    }
    .partners__flex-partner>a>img {
        height: 22rem;
    }
    .features {
        max-width: 95%;
        margin: 4rem auto;
        text-align: center;
    }
    .features__heading {
        padding: 2.4rem;
        font-size: 8vw;
        text-transform: capitalize;
    }
    .features__heading>h2 {
        font-weight: 500;
    }
    .features__flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .features__flex-card {
        border-radius: 1rem;
        background-color: rgba(255, 0, 127, 0.2);
        margin: 1rem 0;
        padding: 4rem 10rem;
        text-align: left;
        font-size: 4rem;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.6s ease;
        cursor: default;
    }
    .features__flex-card:nth-child(2n) {
        flex-direction: row-reverse;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.3);
    }
    .features__flex-card>i {
        color: #FFD95A;
        font-size: 5rem;
        padding: 1.6rem;
    }
    .features__flex-card:hover {
        background-color: white;
        color: black;
        transform: translateY(-0.6rem);
        box-shadow: 0 0 60rem orange;
    }
    .date {
        max-width: 90%;
        margin: 28rem auto;
    }
    .date__heading>h2 {
        text-align: center;
        font-size: 10vw;
        text-transform: capitalize;
        font-weight: 500;
    }
    .date__heading>h4 {
        text-align: left;
        font-size: 4vw;
        font-weight: 400;
        margin-top: 4rem;
    }
    .date__art {
        width: 80%;
        margin: auto;
    }
    .date__art>img {
        width: 100%;
        height: auto;
    }
    .date__utilities {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .date__utilities-list {
        padding: 2rem 4rem;
        width: 100%;
    }
    .date__utilities-list>ul {
        list-style-type: none;
        text-align: left;
        width: 100%;
    }
    .date__utilities-list>ul>li {
        font-size: 3.4rem;
        display: flex;
        align-items: flex-start;
        padding: 3.8rem 3rem;
    }
    .date__utilities-list>ul>li>i {
        padding: 0 2.4rem;
        padding-left: 0;
        color: #FFD95A;
        font-size: 6rem;
    }
    .matchrewards {
        max-width: 90%;
        margin: -32rem auto;
        padding: 10rem 0;
    }
    .matchrewards__heading {
        text-align: center;
    }
    .matchrewards__heading>h2 {
        font-size: 10vw;
        padding: 35rem 0;
        font-weight: 500;
    }
    .matchrewards__heading>h4 {
        padding: 0.5rem 0;
        font-size: 4.6vw;
        font-weight: 300;
    }
    .matchrewards__features-list {
        padding: 3rem 0;
        list-style-type: none;
        line-height: 1.7;
    }
    .matchrewards__features-list>li {
        padding: 2rem 0;
        font-size: 3.4rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .matchrewards__features-list>li>i {
        padding: 0 2rem;
        color: #FFD95A;
        font-size: 6rem;
    }
    .matchrewards__features>img {
        width: 100%;
        margin: auto;
        height: auto;
    }
    .matchrewards__button {
        text-align: center;
    }
    .matchrewards__button>button {
        background: rgb(214, 182, 1);
        border-radius: 3rem;
        border: none;
        padding: 2.5rem 7.4rem;
        margin-top: 10rem;
        box-shadow: 0 0 30px rgb(214, 182, 1);
    }
    .matchrewards__button>button>a {
        color: white;
        text-decoration: none;
        font-size: 3.6vw;
    }
    .roadmap-section {
        max-width: 90%;
        margin: 28rem auto;
    }
    .roadmap-section>.roadmap__title {
        padding: 5rem 0;
    }
    .roadmap-section>.roadmap__title>h2 {
        padding-top: 2rem 0;
        font-size: 10vw;
        text-align: center;
        font-weight: 500;
    }
    .roadmap__map {
        flex-direction: row;
        display: flex;
    }
    .roadmap__map-text {
        width: 58%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .roadmap__map-text--card {
        margin: 2rem 0;
        background: rgb(214, 182, 1);
        padding: 0.5rem;
        border-radius: 3rem;
        color: white;
        box-shadow: 0 0 30px rgb(214, 182, 1);
        font-weight: 600;
    }
    .roadmap__map-text--card-head,
    .roadmap__map-text--card-body {
        padding: 2rem;
    }
    .roadmap__map-text--card-head>ul,
    .roadmap__map-text--card-body>ul {
        list-style-type: none;
    }
    .roadmap__map-text--card-head>ul>li,
    .roadmap__map-text--card-body>ul>li {
        padding: 2rem 0;
        font-size: 3rem;
    }
    .roadmap__map-line {
        width: 0.8rem;
        height: inherit;
        background-color: #fff;
        margin: 0 5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        border-radius: 10rem;
        transform: translateX(1rem);
    }
    .roadmap__map-line--dot {
        width: 5rem;
        height: 5rem;
        background: linear-gradient(90deg, rgb(255, 217, 0) 0%, rgb(214, 182, 1) 50%, rgb(255, 187, 0) 100%);
        border-radius: 100%;
        margin-left: -2.1rem;
    }
    .roadmap__map-line--dot:first-child {
        transform: translateY(-15.2rem);
    }
    .roadmap__map-line--dot:first-child::after {
        position: absolute;
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        content: "";
    }
    .roadmap__map-line--dot:nth-child(2) {
        transform: translateY(-15.5rem);
    }
    .roadmap__map-line--dot:nth-child(2)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
    }
    .roadmap__map-line--dot:nth-child(3) {
        transform: translateY(-12.5rem);
    }
    .roadmap__map-line--dot:nth-child(3)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .roadmap__map-line--dot:nth-child(4) {
        transform: translateY(-14rem);
    }
    .roadmap__map-line--dot:nth-child(4)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .roadmap__map-line--dot:nth-child(5) {
        transform: translateY(-16rem);
        background-color: black;

    }
    .roadmap__map-line--dot:nth-child(5)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .roadmap__map-line--dot:nth-child(6) {
        transform: translateY(-15rem);
        background-color: black;

    }
    .roadmap__map-line--dot:nth-child(6)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .roadmap__map-line--dot:nth-child(7) {
        transform: translateY(-14rem);
        background-color: black;

    }
    .roadmap__map-line--dot:nth-child(7)::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .roadmap__map-line--dot:last-child {
        transform: translateY(2.5rem);
        background-color: black;

    }
    .roadmap__map-line--dot:last-child::after {
        width: 16rem;
        right: -19rem;
        font-size: 3rem;
        position: absolute;
        content: "";
    }
    .tokenomics {
        text-align: center;
        margin: 24rem auto;
        padding: 4rem 0;
    }
    .tokenomics__heading>h2 {
        margin: 5rem 0;
        font-size: 10vw;
        font-weight: 500;
    }
    .tokenomics__chart>img {
        width: 100%;
        height: auto;
        border-radius: 6rem;
    }
    .tokenomics__marketcap {
        padding: 5rem 0 0;
    }
    .tokenomics__marketcap>h4 {
        font-weight: 600;
        font-size: 6rem;
    }
    .tokenomics__marketcap>h4>span {
        color: #FFD95A;
        font-size: 7rem;
    }
    .twitter-update {
        max-width: 90%;
        margin: 28rem auto;
        text-align: center;
    }
    .twitter-update__heading {
        text-transform: capitalize;
    }
    .twitter-update__heading>h2 {
        font-size: 6vw;
    }
    .twitter-update__heading>button {
        font-size: 4rem;
        padding: 2rem 8rem;
        background: linear-gradient(90deg, rgb(255, 217, 0) 0%, rgb(214, 182, 1) 50%, rgb(255, 187, 0) 100%);
        border: none;
        border-radius: 10rem;
        margin: 6rem 0;
    }
    .twitter-update__heading>button>a {
        color: white;
        text-decoration: none;
    }
    .twitter-update__post {
        padding: 1.4rem 0;
    }
    .footer {
        padding: 3rem 0;
        margin: 14rem auto;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        text-align: center;
    }
    .footer__company {
        max-width: 70%;
        margin: 10rem auto;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 3rem 0;
    }
    .footer__company>h4 {
        font-size: 10vw;
        padding: 0 1rem;
    }
    .footer__company>img {
        height: 10rem;
    }
    .footer__social {
        padding: 3rem 0;
        margin: 10rem 0;
    }
    .footer__social>ul {
        list-style-type: none;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        padding: 1rem 0;
    }
    .footer__social>ul>li {
        padding: 3rem 0;
        font-size: 8rem;
    }
    .footer__social>ul>li>a {
        color: white;
        text-decoration: none;
    }
    .footer__social>ul>li>a:hover {
        color: #FFD95A;
    }
    .footer__poweredby {
        width: 100%;
        padding: 3rem 0 0;
    }
    .footer__poweredby>h4 {
        font-size: 5vw;
        opacity: 0.5;
        font-weight: 200;
    }
    .footer__poweredby>a {
        margin: 0;
        padding: 0;
    }
    .footer__poweredby>a>img {
        height: auto;
        width: 70%;
        margin: 5rem 0;
    }
}

@media (min-width: 37.5em) {
    .hero {
        margin: 18rem auto;
    }
    .hero__heading-primary {
        font-size: 10vw;
        font-weight: 700;
        letter-spacing: 0.6rem;
    }
    .hero__heading-secondary {
        font-size: 3vw;
        width: 80%;
        margin: auto;
    }
    .hero__button>button {
        font-size: 2.4vw;
    }
    .about {
        margin: 20rem auto;
    }
    .about__image {
        width: 30%;
    }
    .about__heading>h2 {
        font-size: 6vw;
    }
    .about__heading>h4 {
        font-size: 3vw;
    }
    .partners__title>h2 {
        font-size: 4vw;
    }
    .partners__flex {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .partners__flex-partner>img {
        height: 25rem;
    }
    .backers__title>h2 {
        font-size: 4vw;
    }
    .backers__flex-backer>img {
        height: 25rem;
    }
    .features {
        margin: 36rem auto;
    }
    .features__heading>h2 {
        padding: 5rem 0;
        font-size: 4vw;
        font-weight: 600;
        letter-spacing: 0.4rem;
    }
    .features__flex {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .features__flex-card {
        width: fit-content;
        margin: 1.4rem;
        padding: 4rem 6rem;
    }
    .features__flex-card:nth-child(2n) {
        flex-direction: row;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .features__flex-card:hover {
        background-color: white;
    }
    .date {
        margin: 36rem 0;
    }
    .date__heading>h2 {
        font-size: 4vw;
    }
    .date__heading>h4 {
        padding: 2rem 0;
        font-size: 2.6vw;
        font-weight: 300;
    }
    .date__heading>img {
            width: 80%;
            margin: auto;
            height: auto;
        
    }
    .date__utilities {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .matchrewards {
        padding: 36rem auto;
    }
    .matchrewards__features {
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .matchrewards__button>button {
        padding: 3rem 8rem;
    }
    .matchrewards__button>button>a {
        font-size: 2.2vw;
    }
    .roadmap-section {
        margin: 36rem auto;
    }
    .roadmap__map-text {
        width: 45%;
    }
    .roadmap__map-text--card:nth-child(2n) {
        transform: translateX(122%);
    }
    .roadmap__map-line {
        transform: translateX(3rem);
    }
    .roadmap__map-line--dot:nth-child(2n+1)::after {
        right: -30rem;
    }
    .roadmap__map-line--dot:nth-child(2n)::after {
        text-align: right;
        right: 12rem;
    }
    .roadmap__map-line--dot:first-child {
        transform: translateY(-10rem);
    }
    .roadmap__map-line--dot:first-child::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(2) {
        transform: translateY(-14.5rem);
    }
    .roadmap__map-line--dot:nth-child(2)::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(3) {
        transform: translateY(-10.5rem);
    }
    .roadmap__map-line--dot:nth-child(3)::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(4) {
        transform: translateY(-10.5rem);
    }
    .roadmap__map-line--dot:nth-child(4)::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(5) {
        transform: translateY(-11.5rem);
    }
    .roadmap__map-line--dot:nth-child(5)::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(6) {
        transform: translateY(-10.5rem);
    }
    .roadmap__map-line--dot:nth-child(6)::after {
        width: 25rem;
    }
    .roadmap__map-line--dot:nth-child(7) {
        transform: translateY(-5.5rem);
    }
    .roadmap__map-line--dot:nth-child(7)::after {
        width: 25rem;
    }
    .tokenomics {
        margin: 36rem auto;
    }
    .twitter-update {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 36rem auto;
    }
    .twitter-update__post {
        height: 100%;
        width: 100%;
        text-align: center;
        left: 50%;
    }
    .footer {
        margin: 12rem auto;
    }
    .footer__company>h4 {
        font-weight: 500;
    }
    .footer__company>img {
        height: 16rem;
    }
    .footer__social {
        margin: 5rem;
    }
    .footer__social>ul>li {
        font-size: 8rem;
    }
    .footer__poweredby>h4 {
        font-size: 3.4vw;
        font-weight: 300;
    }
    .footer__poweredby>img {
        padding: 6rem 0 10rem;
        width: 70%;
    }
}

@media (min-width: 56.35em) {
    .navbar>div {
        width: 80%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .navbar__menu {
        display: none;
    }
    .navbar__checkbox {
        display: none;
    }
    .navbar__list {
        transform: none;
        background-color: transparent;
        position: relative;
        width: unset;
        height: unset;
        opacity: 1;
    }
    .navbar__list-links {
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .navbar__list-links>li {
        padding: 0 3rem;
    }
    .navbar__list-links>li>a {
        color: white;
        font-size: 1.2vw;
    }
    .navbar__list-links>li:nth-child(5) {
        background: black;
        border-radius: 10rem;
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 2rem 6rem;
    }
    .navbar__list-links>li:nth-child(5)>i {
        padding: 2 1rem;
    }
    .navbar__list-links>li:nth-child(5)>a:hover {
        color: #fff;
    }
    .navbar__list-links>li:first-child {
        display: none;
    }
    .hero__heading-primary {
        font-size: 8vw;
    }
    .hero__heading-secondary {
        font-size: 2vw;
    }
    .hero__button {
        padding: 3rem 0;
    }
    .hero__button>button {
        padding: 2rem 6rem;
        font-size: 1.2vw;
    }
    .collab {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        height: fit-content;
    }
    .partners {
        width: 90%;
        background: none;
    }
    .partners__flex-partner {
        height: 32rem;
        margin: 0 8rem;
        transition: all 0.3s ease;
    }
    .partners__flex-partner:hover {
        transform: scale(1.1);
    }
    .partners__flex-partner>img {
        height: auto;
        width: 90%;
    }
    .date {
        max-width: 80%;
        margin: 36rem auto;
    }
    .date__heading>h2 {
        font-size: 5vw;
    }
    .date__heading>h4 {
        font-size: 3vw;
        font-weight: 300;
    }
    .date__art {
        width: 50%;
    }
    .date__art>img {
        width: 80%;
        height: auto;
    }
    .date__utilities {
        margin: 4rem auto;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .date__utilities-list {
        width: 50%;
    }
    .date__utilities-list>ul>li {
        font-size: 5.4rem;
    }
    .matchrewards {
        max-width: 80%;
        margin: 36rem auto;
    }
    .matchrewards__heading>h2 {
        font-size: 5vw;
    }
    .matchrewards__heading>h4 {
        font-size: 3vw;
    }
    .matchrewards__features {
        padding: 4rem 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .matchrewards__features>img {
        width: 40%;
        height: auto;
    }
    .matchrewards__features-list {
        width: 50%;
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        justify-content: space-evenly;
    }
    .matchrewards__features-list>li {
        font-size: 4.6rem;
        padding: 4rem 0;
    }
    .matchrewards__button>button>a {
        font-size: 1.4vw;
    }
    .roadmap-section {
        width: 80%;
        margin: 36rem auto;
    }
    .roadmap-section .roadmap__title {
        margin: 10rem auto;
    }
    .roadmap-section .roadmap__title>h2 {
        font-size: 5vw;
    }
    .roadmap-section .roadmap__map-text {
        width: 45%;
    }
    .roadmap-section .roadmap__map-text--card-body>ul>li {
        font-size: 4.6rem;
    }
    .roadmap-section .roadmap__map-text--card:nth-child(2n) {
        transform: translateX(118%);
    }
    .roadmap-section .roadmap__map-line {
        transform: translateX(2.6rem);
        background-color: rgba(255, 255, 255, 0.3);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(2n)::after {
        text-align: right;
        right: 12rem;
    }
    .roadmap-section .roadmap__map-line--dot:first-child {
        transform: translateY(-16rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(2) {
        transform: translateY(-14.5rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(3) {
        transform: translateY(-10.5rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(4) {
        transform: translateY(-13.5rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(5) {
        transform: translateY(-11.5rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(6) {
        transform: translateY(-10.5rem);
    }
    .roadmap-section .roadmap__map-line--dot:nth-child(7) {
        transform: translateY(-5.5rem);
    }
    .about {
        padding-top: 42rem;
        max-width: 80%;
        margin: auto;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .about__image {
        width: 30%;
    }
    .about__image>img {
        width: 100%;
        height: auto;
        
    }
    .about__heading {
        width: 60%;
        text-align: left;
    }
    .about__heading>h2 {
        font-size: 4vw;
        font-weight: 600;
    }
    .about__heading>h4 {
        width: 100%;
        font-size: 2vw;
        font-weight: 300;
    }
    .about__button {
        text-align: left;
    }
    .about__button>button {
        font-size: 1.4vw;
    }
    .features {
        max-width: 80%;
        margin: 30rem auto;
    }
    .features__heading {
        text-align: center;
    }
    .features__heading>h2 {
        font-size: 5vw;
    }
    .features__flex {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 6rem 0;
    }
    .features__flex-card {
        margin: 3rem;
        transition: all 0.3s ease;
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        font-size: 4.2rem;
        padding: 5rem 6rem;
    }
    .features__flex-card:nth-child(2n) {
        flex-direction: row;
    }
    .features__flex-card>i {
        font-size: 5rem;
        padding-top: 0 2.6rem;
    }
    .features__flex-card:hover {
        background-color: white;
    }
    .tokenomics {
        max-width: 80%;
        margin: auto;
    }
    .tokenomics__heading>h2 {
        font-size: 5vw;
    }
    .twitter-update {
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .twitter-update__heading {
        width: 55%;
        text-align: left;
    }
    .twitter-update__heading>h2 {
        font-size: 5vw;
        font-weight: 500;
    }
    .twitter-update__heading>button {
        font-size: 4rem;
        padding: 2rem 8rem;
        background: linear-gradient(90deg, rgb(255, 217, 0) 0%, rgb(214, 182, 1) 50%, rgb(255, 187, 0) 100%);
        color: white;
        border: none;
        border-radius: 10rem;
        margin: 6rem 0;
    }
    .twitter-update__post {
        width: 60%;
        height: 60%;
    }
    .footer {
        padding: 0;
        margin: 8rem auto;
        flex-direction: row;
        width: 80%;
        align-items: center;
        justify-content: space-between;
    }
    .footer__company {
        width: 30%;
        margin: 0;
        justify-content: unset;
        padding: 0;
    }
    .footer__company>h4 {
        font-size: 8.6rem;
        font-weight: 600;
    }
    .footer__company>img {
        height: 8.6rem;
    }
    .footer__social {
        padding: 0;
        width: 30%;
    }
    .footer__poweredby {
        padding: 0;
        width: 28%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .footer__poweredby>h4 {
        font-size: 1vw;
        font-weight: 500;
    }
    .footer__poweredby>img {
        height: auto;
        width: 80%;
        margin: 0 0.3rem;
    }
}