@charset "UTF-8";

* {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
}



#header-nav {
    width: 100%;
    height: 100px;

    position: relative;

    padding: 0px 100px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#header-logo img {
    width: 250px;
    cursor: pointer;
}

#header-list{
    display: flex;
}

#header-list li {
    margin: 0px 20px;

    color: white;
    font-family: TT-Bold;
    font-size: 100%;

    cursor: pointer;

    transition: 0.5s;
}
#header-list li:hover {
    color: brown;
}
#btn-hamburger {
    display: none;
    width: 40px;
    cursor: pointer;
}
a {
    color: white;
    transition: 0.5s;
}
a:hover {
    color: brown;
}


@media (max-width: 1000px) {

    #header-logo {
        z-index: 1000;
    }

    .inactive{
        display: none;
    }

    #header-list {
        
        display: none;
        overflow: hidden;
        width: 100vw;
        height: 100vh;

        position: fixed;
        top: 0px;
        left: 0px;        

        background-color: rgba(0, 0, 0, 0.836);

        z-index: 999;
    }
    
    #btn-hamburger {
        z-index: 1000;
        display: block;
    }

    #header-list.active {

        padding: 40px 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

        z-index: 1000;
        
        transition: 0.6s;
    }
    

    #card-4 {
        display: none;
    }
}

@media (max-width: 500px) {

    header {

        display: flex;
        justify-content: space-between;

        padding: 0px;
        margin: 0px;
    }

    #header-nav {
        padding: 0px 15px;
    }

}
