/* header section */

.header-menu{    
    display: flex;
    justify-content:space-between;
    align-items: center;
    z-index: 20;
    background-color: white;
    position: sticky;
    top:0;
    box-shadow: 0px 1px 5px 0px gray;
    padding: 0 20px;
}
.header-menu .logo-container{
    height: 80px;
}
.header-menu .logo{
    height: 100%;
    display: block;
}

/* hamburger */
.header-menu .hamburger-box{
    width: 50px;
    cursor: pointer;
}


/* menu items */
.header-menu .menu{
    position: absolute;
    top:100%;
    right: 0%;
    transition: all .2s ease-out;
    padding: 20px;
    height: fit-content;
    width: fit-content;
    background-color:antiquewhite;
    display:none;
    flex-direction: column;
    justify-content: space-around;
    list-style-type: none;
}
.header-menu .menu .item a{
    font-size: 1.2em;
    display: block;
    text-align: center;
    width: 100%;
    min-width:320px ;
    max-width: 500px;
    padding:20px 10px;
    border-radius: 5px;
    color: black;
}
.header-menu .menu .item:hover a{
    color: aliceblue;
    background-color: #005f72;
}
.mobile-menu-box{
    display: block;
    position: fixed;
    overflow: hidden;
    z-index: 25;
    right:0;
    box-sizing: border-box;
    width: 300px;
    height: 0px;
    padding: 0px;
    background-color: antiquewhite;
}
.mobile-menu{
    list-style-type: none;
    transform: translate(200px);
    transition: all .2s ease-in-out;
}
.mobile-menu .item a{
    color: #005f72;
    padding: 20px;
    display: block;
    letter-spacing: 1px;
    word-spacing: 2px;
}
@media only screen and (min-width:1280px) {
    .mobile-menu-box{display: none;}
    .header-menu .menu{
        display:flex;
        position: relative;
        padding: 0;
        background-color:transparent;
        flex-direction: row;
        transform:none;
    }
    
    .header-menu .menu .item{
        padding:10px;
    }
    
    .header-menu .menu .item a{
        min-width:auto;
        max-width:none;
        font-size: 1.1em;
        padding:10px;
        color:black;
    }    
    .header-menu .hamburger-box{
        display: none;
    }
}
#donateButton{
    padding: 10px 20px;
    background-color: #005f72;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 5px;
}
#donateButton .text{
    text-transform:uppercase;
    letter-spacing: 1px;
    line-height: 1em;
    margin:0 0 0 10px;
    font-family: tahoma;
    font-size: 18px;
    color:bisque;
}

/* for js */
.display-none{
    display: none;
}
.height-auto{
    height: fit-content;
    padding: 20px;
}
.slide-in{
    transform: translateX(0) !important;
}