#header{
    width: 100%;
    max-height: 80px;
    padding: 10px var(--sections_default_padding);

    position: absolute;
    top: 0;
    z-index: 10;
    
    justify-content: space-between;
    align-items: flex-start;
    

    background-color: rgba(0, 0, 0, 0.6);
}

/* dropdown-content */
.dropdown-content {
    display: none;
    cursor: pointer;
    /* position: absolute; */
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 12px 16px;
    z-index: 9;
}

.ionIcon{
    font-size: 30px;
    transition: 1s;
}

#closeMenu{
    display: none;
}

#dropdownMenu{
    width: 0;
    height: 0;
    
    position: absolute;
    top: 80px;
    left: 0;
    
    visibility: hidden;
}

.navbar{
   
    padding: 20px 0;

    flex-flow: column wrap;
    
    font-weight: bold;

    background-color: rgba(0, 0, 0, 0.9);


    border-radius: 20px;
    border: 2px solid white;
}

#dropdownMenu > .navbar > a{
    width: 100%;
    padding: 15px;
    /* margin: 10px auto; */
    cursor: pointer;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

#dropdownMenu > .navbar > a:hover{
    background-color: aliceblue;
    color:black;
}



/* h_contents  */
.h_contents{
    width: 100%;
  
    justify-content: space-between;
    /* gap: 70px; */
    
    padding: 10px 0;
}

.h_li{
    cursor: pointer;
    /* background-color: #000000; */
}

.h_li > a{
    color: white;
    font-size: small;
    font-weight: bolder;
    letter-spacing: 3px;

    text-align: center;
    text-transform: uppercase;

    &:hover{
        color: orange;
    }
}


.h_li:hover{
    color: #000000;
}

.logo{
    color: var(--textColor);
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 1s;
}