/* @media (max-width: 700) {
    .button_connect {
        display: none;
    }
} */


/* .button_c {
    margin-top: 30px;
}

.button__connect {
    margin-top: 30px;
    text-decoration: none;
    border: 1px solid black;
    padding: 20px;
    border-radius: 25px;
    color: black;
    text-transform: uppercase;
} */

.button__connect:hover {
    cursor: pointer;
}

.nav__link {
    text-decoration: none;
    padding: 20px;
    color: #000;
    cursor: pointer;
    font-size: 30px;
    font-family: Heffer;
}

.nav__list {
    list-style: none;
}


.nav__list__full {
    display: flex;
    justify-content: center;
    width: 100%;
}

body {
    width: 100vw;
}


.logo {
    display: flex;
    flex-direction: row;
}

.push__right {}

.body__lay {
    padding: 0 20px;
}

/* .list__first {
    margin-left: 400px;
} */


.head__container {
    margin-top: 10px;

}


.navbar {
    position: relative;
    margin-left: 1400px;
}



.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.line {
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.nav__list__full {
    list-style-type: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    display: none;
    width: 90vw;
    height: 200px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    /* Initially position the menu above */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Smooth fade-in and slide-down */
}

.nav__list {
    margin-bottom: 10px;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    padding: 35px 30px;
}

/* Show the dropdown when the menu is toggled */
.nav__list__full.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    /* Move it to its original position */

}



/* Basic Reset */

body {
    font-family: Arial, sans-serif;
}


@media(max-width: 430px) {

    /* .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    } */
    .navbar {}


    .nav__list__full {
        width: 100vw;
        height: 350px;
        padding: 20px 0;
    }

    .nav__link {
        font-size: 15px;
        padding: 40px 30px;
    }

    .navbar {
        margin-left: 350px;
    }

    .nav__list {
        padding: 10px 0;
    }



}

@media(max-width: 500px) {

    /* .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    } */
    .navbar {}


    .nav__list__full {
        width: 100vw;
        height: 350px;
        padding: 20px 0;
    }

    .nav__link {
        font-size: 15px;
        padding: 40px 30px;
    }

    .navbar {
        margin-left: 350px;
    }

    .nav__list {
        padding: 10px 0;
    }



}

