/*Header Styles*/


header {
    width: 100%;
    min-height: 30px;
    color: rgb(255, 255, 255);

}

#headercontainer{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height:auto;
    color:#000;
    font-size: 1.2rem;
    transition: 0.2s;
    font-weight: 300;
    max-width:none;
    width:100%;
    background-color: #fff;
    padding:0px;
}
#headercontainer .desklogo{
    width:20%;
}

#headercontainer #donate-button{
    padding:20px;
    width:10%;
}
#headercontainer #donate-button button{
    background-color: #fc4f31;
    border:1px solid #fc4f31;
}
#headercontainer #donate-button button:hover{
    background-color: #fff;
    color:#fc4f31;
    cursor: pointer;
}

#stickyheader{
    position: sticky;
    top: 0px;
    z-index: 1020;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
    transition: 0.2s;

 
}

header .container a .mobilelogo {
    display: none;
}
header #donate-button-mobile{
    display: none;    
   }
   header #donate-button-mobile button{
    width: 200px;
    height: 60px;
    font-size: 1.4rem;
   }
header #top-bar {
    list-style-type: none;
    padding: 20px;
	margin:0;
    display: flex;
    justify-content: right;
    align-items: center;
    transition:1.0s;	
	width: 100%;

}
header #top-bar li {
    /* flex: 1 1 0px; */
    /* flex-basis: 0; */
    text-align: center;
    min-width: 150px;
	transition:2.0s;
}

header #hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;

}
header li a{
    font-size: 1.1rem;
    font-weight: 500;
}
header li a:not([href]){
    color:#212121;
}
header li a:link {
    color: #212121;
    text-decoration: none;
	width:100%;
	height:100%;
	
}
header li a:hover {
    text-decoration: none;
	width:100%;
    color:#fc4f31;
	height:100%;
}
header li a:visited {
    color: #212121;
    text-decoration: none;
	width:100%;
	height:100%;
	
} 

header li a:visited:hover{
    color:#fc4f31;
}
header li a:link:hover{
    color:#fc4f31;
}
header li a:not([href]):hover{
    color:#fc4f31;
}


.logoimg {
    border-radius: 0px;
    width:auto;
    height:47px;
    transition: 0.2s;
    
}
.topbanner {
    background: rgb(19,85,69);
    height: 20px;
    width: 100%;
}
#headercontainer #top-bar{
    width:50%;
   }
@media (max-width: 950px) {
    header {
        background-color: rgb(239,152,24);
   }
    header .container {
        flex-direction: column;
        justify-content: none;
        align-items: none;
		width:100%;
   }
   header #headercontainer{
    padding:0px;
    padding-left:50px;
    padding-top:20px;
    padding-bottom: 20px;
    justify-content: left;
   }
    header .container a .mobilelogo {
        display: initial;
   }
   header #donate-button-mobile{
    display:initial;
   }
   header .container #donate-button{
    display:none;
   }
   header .container .desklogo{
    display: none;
   }
    header #top-bar {
        flex-direction: column;
        justify-content: none;
        align-items: none;
        display: flex;
        position: fixed;
        width: 100%;
        height: 0%;
        overflow: hidden;
        padding: 40px;
        background-color: rgb(255, 255, 255);
        top: 0px;
        left: 0px;
   }
   #headercontainer #top-bar{
    width:100%;
   }
    header #top-bar li {
        padding: 1rem 1rem;
		width:100%;
        text-align: left;

   }
    header #top-bar li:first-child {
        padding-left: 1rem;
        margin-top:100px;
   }
    header #top-bar li:last-child {
        padding-right: 1rem;
		border-bottom:none;

   }
    header #top-bar a {
        display: inline;
		font-size: 1.8rem;
   }
    header #hamburger {
        display: inline;
        transform: rotate(0deg);
        position: fixed;
        z-index: 1;
        top: 15px;
        right: 15px;
		transition:0.5s;
   }
	
   #headercontainer a {
    z-index: 1;
   }
   .menu-footer-menu-container{
        display: none;
   }
}
@media (min-width: 950px) {
    header #top-bar {
        display: flex;
   }
    header #hamburger {
        display: none;
   }
}
