
#header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0px 0px 0px 0px rgba(17, 51, 85, 0.2), 0px 0px 0px 0px rgba(17, 51, 85, 0.14), 0px 0px 0px 0px rgba(17, 51, 85, 0.12);
    transition: box-shadow 180ms cubic-bezier(0, 0, 0.2, 1);
    transition: padding 180ms cubic-bezier(0, 0, 0.2, 1);
    padding: 40px 0;
}

/* @media (max-width: 800px) {
    #header {
        display: -webkit-inline-box;
    }
} */

#header.scrolled {
    box-shadow: 0px 2px 4px -1px rgba(17, 51, 85, 0.2), 0px 4px 5px 0px rgba(17, 51, 85, 0.14), 0px 1px 10px 0px rgba(17, 51, 85, 0.12);
    transition: box-shadow 180ms cubic-bezier(0.4, 0, 1, 1);
    transition: padding 180ms cubic-bezier(0.4, 0, 1, 1);
    padding: 10px 0;
}

#header-icon {
    display: flex;
}

#header-icon img {
    margin: 0 10px;
}

#menu-context {
    display: none;
    position: absolute;
    right: 0;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(17, 51, 85, 0.2), 0px 6px 5px 0px rgba(17, 51, 85, 0.14), 0px 3px 10px -7px rgba(17, 51, 85, 0.12);
}

.anchors {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: Roboto;
}

.ignore-anchor {
    text-decoration: none;
}

.anchors a {
    text-decoration: none;
    font-weight: 500;
    margin: 0 5px;
    border-radius: 8px;
}

.menu-button {
    display: none;
    margin: 0 90px;
}

@media (max-width: 1100px) {
    #header, #header.scrolled {
        padding: 5px 10px;
    }
}

@media (max-width: 800px) {
    .anchors {
        display: none;
        margin: 40px 0px;
        padding: 15px 10px!important;
    }

    .menu-button {
        display: flex;
        margin: 0;
    }
}