/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1024px;
    margin-inline: 1.5rem;
}


/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: background .3s;
}

.nav {
    position: relative;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}


/* Nav Glass Effect */
.nav-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    /* backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.nav__logo,
.nav__toggle,
.nav__link,
.nav__close {
    color: var(--text-color);
}


.nav__logo {
    font-weight: var(--font-semi-bold);
    display: flex;
    justify-content: center;
    border-radius: 30px;
    align-items: center;
}

.logo {
    width: 65px;
    margin-right: 15px;
}



.nav__toggle {
    display: inline-flex;
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        width: 100%;
        left: 0;
        top: -100%;
        box-shadow: 0 3px 8px hsla(203, 71%, 4, .2);
        padding: 4rem 0 3.5rem;
        transition: top .4s;
        overflow: hidden;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 2rem;
}

.nav__link {
    font-weight: var(--font-semi-bold);
    transition: color .4s;
}

.nav__link:hover {
    color: var(--first-color);
}

.nav__close,
.nav__img {
    position: absolute;
}

.nav__close {
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav__img {
    width: 80px;
    left: 1rem;
    bottom: -2rem;
    filter: drop-shadow(0 4px 20px hsla(203, 71%, 60%, .5));
}

/* Show menu */
.show-menu {
    top: 0;
}

/* Active link */
.active-link {
    background: linear-gradient(90deg, var(--second-color) 0%, var(--first-color) 100%);
    -webkit-background-clip: text;
    color: transparent;
}


/* Animation ethereum */
@keyframes float-effect {
    0% {
        transform: translateY(0.5rem);
    }

    50% {
        transform: translateY(2rem);
    }

    100% {
        transform: translateY(0.5rem);
    }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }
}

/* For medium devices */
@media screen and (min-width: 767px) {
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__toggle,
    .nav__close,
    .nav__img {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }

    .home__container {
        height: 100vh;
        display: grid;
        grid-template-columns: repeat(2, max-content);
        align-content: center;
        justify-content: center;
        gap: 2rem 4rem;
    }

    .home__group {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        align-self: center;
    }
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .home__title {
        margin-bottom: 1rem;
    }

    .home__description {
        margin-bottom: 3rem;
    }

    .home__img-orbe {
        width: 500px;
    }

}

@media screen and (min-width: 1048px) {
    .container {
        margin-inline: auto;
    }
}

@media screen and (min-width: 1500px) {
    .home__shape-big-2 {
        left: 28rem;
    }
}