.header-container{
    position: fixed;
    width: 100%;
    z-index: 10;
    top:0;
    background-color: white;
    border-bottom: 1px solid rgb(234, 234, 234);
}
.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    padding: 10px 20px;
    margin: auto;
    align-items: center;
    height: 65px;
    background-color: white;

}
nav {
    display: flex;
    align-items: center;
}
nav a{
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-size: 15px;
    color: #5B5B5B;
    cursor: pointer;
    margin-left: 15px;
    transition: .1s;
}
nav > a:hover{
    border-bottom: 2px solid #FCA417;
}
nav > a.active{
    border-bottom: 2px solid #FCA417;
}
.header-logo{
    height: 38px;
}
.hamburger-menu{
    display: none;  
    cursor: pointer;
}
.hamburger-menu-bar{
    width: 25px;
    height: 2px;
    background-color: #5B5B5B;
    margin: 6px 0;
}
.drawer-container{
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index: 10;
}
.drawer{
    height: 100%;
    width: 100%;
    max-width: 392px;
    background-color: white;
    z-index: 11;
    position: fixed;
    left: -100%;
    transition: 0.2s;
}
.drawer-header{
    display: flex;
    align-items: center;
    height: 65px;
    padding: 10px 20px;
    justify-content: space-between;
}
.drawer-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.drawer-nav a{
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    color:#5B5B5B;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 90%;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    transition: .1s;
}
.drawer-nav > a.active{
    background-color: rgba(251, 164, 24, .6);
    color: white;
}
.drawer-nav > a:hover{
    background-color: rgba(251, 164, 24, .2);
    color: white;
}
.drawer > hr {
    width: 60%;
    height: 1px;
    background-color: lightgray;
    border:none;
}
.drawer-footer{
    margin-top: 20px;
    padding: 0px 15px;
}
@media screen and (max-width: 865px) {
    nav{
        display: none;
    }
    .header-logo{
        height: 28px;
        flex: 1;
    }
    .hamburger-menu{
        display: inline-block;  
        cursor: pointer;
    }
}