#page-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100px;
    z-index: 10000;
    background-color: white;
}
#page-header #header-lufa-icon {
    position: absolute;
    left: 60px;
}
#page-header #header-lufa-icon img {
    height: 120px;
    width: 120px;
}

#header-top {
    height: 50px;
    border-bottom: 2px solid #2C478933;
    display: flex;
    flex-direction: row-reverse;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-start;
}
#header-top>* {
    margin: 0 22px;
    font-family: "gibsonregular";
    font-size: 12px;
    line-height: 12px;
    text-decoration: none;
    text-transform: uppercase;
}
#header-top>*:first-child {
    margin-right: 45px;
}
#header-bottom {
    height: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
}
#header-bottom>* {
    margin: 0 12px;
    font-family: "gibsonregular";
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
}
#page-header a {
    color:#2F2F2F;
}
#page-header a:hover {
    color:#719500;
}
#header-bottom>*:first-child {
    margin-right: 25px;
}
/* MOBILE */
#header-mobile {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 50px;
    background-color: white;
    z-index: 10000;
}
#header-mobile #header-lufa-icon {
    position: absolute;
    left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}
#header-mobile #header-lufa-icon img {
    height: 45px;
    width: 45px;
}
#header-mobile #menu-button {
    background-image: url("/images/v2/hamburger.png");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
#header-mobile #header-top {
    height: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border: 0;
    justify-content: flex-start;
}
#header-mobile #header-top>* {
    margin: 0 6px;
}
#header-mobile #header-top>*:first-child {
    margin-right: 12px;
}
#header-mobile #header-menu {
    position: fixed;
    width: 100%;
    background-color: white;
}
#header-mobile #header-menu #header-menu-top {
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#header-mobile #header-menu #header-menu-top>* {
    margin: 0 7px;
    font-size: 18px;
    font-family: "gibsonsemibold";
    text-transform: capitalize;
}
#header-mobile #header-menu #header-menu-top * {
    text-decoration: none;
}
#header-mobile #header-menu #header-menu-top #menu-close-button {
    margin-left: auto;
    margin-right: 15px;
    background-image: url("/images/v2/close-mobile.png");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
#header-mobile #header-menu #header-menu-top>*:first-child {
    margin-left: 10px;
}
#header-mobile #header-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#header-mobile #header-menu-content>* {
    margin: 7px 0;
    font-size: 18px;
    font-family: "gibsonsemibold";
    text-decoration: none;
    text-transform: capitalize;
}
#header-mobile #header-menu-content>*:first-child {
    margin-top: 15px;
}
#header-mobile #header-menu-content>*:last-child {
    margin-bottom: 15px;
}

/* MENU SLIDE ANIMATION */
#header-mobile .slide-in-right-enter-active {
  transition: all .3s ease;
}
#header-mobile .slide-in-right-leave-active {
  transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
#header-mobile .slide-in-right-enter, #header-mobile .slide-in-right-leave-to
/* #header-mobile .slide-in-right-leave-active below version 2.1.8 */ {
  transform: translateX(100%);
}
