@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap);
:root {
    --padding-nav: 20px 50px;

}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding-nav);
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

ul.navbar-ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0%;
}

li.navbar-li {
    list-style: none;
    margin: 0px 10px;
}

.brand-logo {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    margin: 0px 5px;
}

.brand-img {
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fade-in-fwd {
    -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.container-nav-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    margin: 10px;
    box-sizing: border-box;
}

.img-icon {
    width: 100%;
}

.button-li {
    cursor: pointer;
    transition: background 0.5s ease-in-out;
    border-radius: 10px;
    padding: 10px;
}

.button-li:hover {
    background: var(--secundary-color);
}

.menu-rs-box {
    display: none;
}

.content-box-button-void.blue-btn {
    background-color: #252b6b;
    transition: background-color 1.5s ease;
}

.content-box-button-void.blue-btn:hover {
    background-color: #3f479b;
}

.blockie-navbar-container {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-signButton-box {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-button-void {
    text-align: center;
}

.content-box-button-void {
    width: 150px;
    overflow: hidden;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--main-color);
    transition: background-color 0.5s ease;
}

.content-box-button-void:hover {
    background-color: #222630;
}

.container-button-void.box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-section {
    width: 100%;
    height: 100vh;
    /*  overflow: hidden; */
}

.text-box {
    background: var(--main-color);
    padding: 15px;
    border-radius: 10px;
    width: 400px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.home-container {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
}

.home-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    position: relative;
}

.welcome-image {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    border-radius: 10px;
}

.welcome-img {
    width: 100%;
}

.home-button-box {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-home.title-box {
    font-size: 80px;
    padding: 20px;
}

.welcome-text {
    width: calc(100%/2);
}

.home-text {
    font-size: 18px;
}

.button-home {
    width: 50%;
}

.home-mint-windows-container.active {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 600px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
}

.home-mint-windows-container.inactive {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 800px;
    bottom: -800px;
    transition: top 0.5s ease-in-out;
}
.progress-container {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar {
    height: 100%;
    background-color: #252b6b;
    transition: width 0.3s ease;
}

.progress-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: #000;
}
.mint-windows-container {
    backdrop-filter: blur(2px);
    background-color: hsl(226.51deg 66.43% 2.45% / 63%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mint-windows-box {
    width: 800px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-mint-container {
    width: 250px;
    height: 250px;
    min-width: 250px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

img.mint-windows-logo {
    width: 100%;
    height: 100%;
}

.content-mint-windows {
    background-color: hsl(0deg 0% 93.85% / 61%);
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
    backdrop-filter: brightness(0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mint-windows-content-box {
    width: 100%;
}

.mint-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.content-box-button-void.btn-mint-amount {
    width: 100px;
    padding: 5px;
}

.mint-windows-content-l1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: solid 1px #737373;
}

.mint-windows-main-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.mint-windows-content-l2 {
    padding: 10px;
    color: black;
}

.text-container-content.mint-updates {
    padding: 5px;
    border: solid 1px #757575;
    border-radius: 8px;
    background-color: hsl(226.51deg 66.43% 2.45% / 63%);
    color: white;
}
input.input-field {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #c9c9c9;
    outline: none;
    /* Elimina el borde negro al hacer clic */
    font-size: 16px;
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

}

.input.content {
    width: 100%;
    box-sizing: border-box;
}


.toast-container.active {
    position: fixed;
    z-index: 9999;
    top: 20px;
    bottom: 0;
    right: 20px;
    display: flex;
    align-items: baseline;
    justify-content: end;
    max-height: 100px;
    min-width: 250px;
    max-width: 300px;
    transition: top 0.5s ease-in-out;
}

.toast-container.inactive {
    position: fixed;
    top: -300px;
    bottom: 0;
    right: 20px;
    display: flex;
    align-items: baseline;
    justify-content: end;
    max-height: 100px;
    min-width: 250px;
}

.toast-content {
    padding: 5px 10px;
    background-color: hsl(0deg 0% 93.85% / 61%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-sizing: border-box;
}

.toast-img-box {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

img.toast-img {
    width: 100%;
    height: 100%;
}
.connect-windows-container.active {
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    background-color: hsl(226.51deg 66.43% 2.45% / 63%);
}

.connect-windows-container.inactive {
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    top: 800px;
    bottom: -800px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    background-color: hsl(226.51deg 66.43% 2.45% / 63%);
}

.connect-windows-content {
    width: 300px;
    height: 300px;
    background-color: var(--main-color);
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.connect-windows {
    padding: 10px;
    margin: 5px;
}

.img-connect-windows-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-close-windows {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-color: hsl(0deg 0% 93.85% / 61%);
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 50%;
}

.x-close-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.content-sign-button {
    padding: 10px;
}

.container-sign-button {
    overflow: hidden;
    border-radius: 8px;
    background-color: #252b6b;
    cursor: pointer;
    transition: background 1.5s ease;
}

.container-sign-button:hover {
    background-color: #3f479b;
}
.text-container-box {
    padding: 10px;
}

.text-container-main {
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.logo-footer {
    width: 100%;
}

.footer-section {
    padding: 30px;
    margin: 20px;
    border-bottom: 1px solid #292d36;

}

.main-footer-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-box {
    margin: 10px;
}

.footer-main-text {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.container-ft {
    margin: 30px;
}

.ft-r-title {
    text-decoration: underline;
    font-size: 20px;
    font-weight: 500;
}

.ft-r-a {
    text-decoration: none;
    color: #a0a0a0;
}

.ft-r-a:hover {
    text-decoration: underline;
}

.ft-r-li {
    list-style: none;
    margin: 10px 0px;
}

.footer-router-container.container-ft {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 10px;
    width: 100%;
}

ul.ft-r-ul {
    padding: 0;
}

.cp-footer-section-box {
    padding: 10px 10px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 12px;
}
@media (max-width: 767px) {
    div.welcome-image {
        display: none;
    }

    .title-home.title-bold.title-box.oswald-font {
        font-size: 45px;
        text-align: center;
    }

    .welcome-text {
        width: 100%;
    }

    .text-box.raleway-font.home-text {
        width: 100%;
        box-sizing: border-box;
    }

    .title-about-box {
        width: 100%;
        text-align: center;
    }

    .about-title.box.oswald-font {
        font-size: 45px;
    }

    .about-text-box.box {
        width: 100%;
        font-size: calc(100% - 3px);
    }

    .roadmap-line {
        display: none;
    }

    .roadmap-container {
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        padding: 10px;
    }

    .roadmap-item {
        box-sizing: border-box;
        width: 100%;
        align-items: center;
        font-size: calc(100% - 2px);
        margin: 5px;
        height: 100%;
    }

    .roadmap-item.top {
        margin-top: 5px;
    }

    .roadmap-item.bottom {
        margin-bottom: 5px;
    }

    section#roadmap {
        height: auto;
    }

    .roadmap-item {
        padding: 15px;
    }

    ul.roadmap-ul {
        padding: 0px;
    }

    li.roadmap-li {
        list-style: none;
    }

    .footer-router-container.container-ft {
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        padding: 10px;
    }

    .footer-main-text {
        display: contents;
    }

    img.icon-rs {
        width: 100%;
    }

    .icon-rs-menu {
        width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-rs-box {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;

    }

    .social-box {
        display: none;
    }

    .container-ft {
        margin: 10px;
    }

    .roadmap-card.card {
        padding: 10px;
        height: 100%;
    }

    .container-ul.active {
        display: flex;
        position: fixed;
        height: 100%;
        left: 0;
        bottom: 0;
        width: 100%;
        box-sizing: border-box;
        background-color: #000000b3;
        backdrop-filter: blur(1px);
        z-index: 999;
        top: 0;
        transition: top 0.5s ease-in-out;
    }

    ul.navbar-ul.ul-active {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    ul.navbar-ul.ul-inactive {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .container-ul.inactive {
        position: fixed;
        display: flex;
        height: 100%;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        background-color: #000000b3;
        backdrop-filter: blur(1px);
        z-index: 999;
        top: -100%;
        transition: top 0.5s ease-in-out;
    }

    .menu-rs-box.close {
        position: fixed;
        z-index: 999;
        background-color: black;
        border-radius: 50%;
    }

    .menu-rs-box.close.btn-inactive {
        display: none;
    }

    .menu-rs-box.close.btn-active {
        display: block;
    }

    .mint-windows-content-l2 {
        display: none;
    }

    .mint-windows-content-l1 {
        border: none;
    }

    .mint-windows-box {
        height: 600px;

    }
}
:root {
    --main-color: #101218;
    --secundary-color: #1d212b;
    --main-font-size: 17px;
    --margin-body: 0px;
    --padding-body: 0px;
    --main-font-color: #ffffff;
}

body {
    margin: var(--margin-body);
    padding: var(--padding-body);
    background-color: var(--main-color);
    color: var(--main-font-color);
    font-size: var(--main-font-size);


    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.button {
    background: var(--main-color);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.5s ease-in-out;
}

.button:hover {
    background: var(--secundary-color);
}

.oswald-font {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.raleway-font {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.box {
    box-sizing: border-box;
}

.bounce {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: bounce 0.8s ease-in-out infinite;
    position: relative;
}

.blur-gradient-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: url('https://via.placeholder.com/600x400') center/cover no-repeat;
}

.blur-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    pointer-events: none;
    /* Permite la interacción con el contenido debajo */
}

.content {
    position: relative;
    padding: 1rem;
    color: black;
}

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

.link {
    text-decoration: none;
    color: white;
}
/* ----------------------------------------------
 * Generated by Animista on 2024-9-22 23:19:33
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}


/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #B7B4B4 #DFE9EB;
}*/

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #B7B4B4;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #8E8C8C;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #686767;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
        /* Ajusta el valor para controlar la altura del salto */
    }
}


/*# sourceMappingURL=main.f9e3d292e3f18fc98031.css.map*/