
#header{
    width: 100%;
    height: 130px;

    background-image: url('../imgs/header/header_back.jpg');

    background-size: 100%;
    background-position: 50% 50%;

    box-shadow: 1px 2px 11px #585858;

    z-index: 10;

    position: fixed;
}

.color-filter{
    width: 100%;
    height: 100%;

    padding-left: 45px;
    padding-right: 45px;

    box-sizing: border-box;

    background-color: rgba(129, 181, 233, 0.82);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
}

#logo{
    height: 75px;
    object-fit: scale-down;
}

#menu{
    margin-bottom: 20px;

    display: flex;
    flex-direction: row;
    align-self: flex-end;
}

.menu-button{
    width: 190px;
    height: 32px;

    color: white;
    font-size: 22px;
    text-align: center;
    line-height: 32px;

    /* border-right: solid 2px white; */
    border-radius: 2px;

    cursor: pointer;
    transition: ease-in-out .15s;
}

.menu-button:hover{
    border-bottom: solid 5px white;
}

.active{
    border-bottom: solid 5px white;
}


