/* Menu */
#menu_tray{
    position: fixed;
    height: 100%;
    width: 100%;
    max-width: 500px;
    left: 100%;
    top: 0px;
    background-color: #2F2A28;
    transition: 350ms;
    overflow: auto;
    z-index: 8888;
}

#menu_tray.open{
    -webkit-transform: translate(-100%);
    -ms-transform: translate(-100%);
    transform: translate(-100%);
}

#menu{
    margin-top: 120px;
    width: 100%;
    text-align: center;
}

a.menu_button{
    text-transform: uppercase;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.075em;
    display: inline-block;
    margin-bottom: 35px;
    color: #D6C9C5;
}

a.menu_button:hover{
    color: white;
}

a.current_page{
    color: white;
}

#social_media_container{
    margin-top: 10px;
}

a.social_media_icon{
    height: 50px;
    width: 50px;
    display: inline-block;
    margin-left: 14px;
    margin-right: 14px;
    background-size: 100%;
}

a.social_media_icon:hover{
    background-position: bottom;
}

a.facebook_icon{
    background-image: url("../images/facebook_icon.svg");
}

a.instagram_icon{
    background-image: url("../images/instagram_icon.svg");
}

a.pinterest_icon{
    background-image: url("../images/pinterest_icon.svg");
}

#menu_footer{
    position: absolute;
    bottom: 100px;
    width: 100%;
}

#more_pages_container{
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 5px;
}

a.more_pages{
    font-size: 18px;
    padding-left: 14px;
    padding-right: 20px;
    background: url("../images/more_pages_line.svg") no-repeat right;
}

a.more_pages:last-child{
    background: none;
}

#copyright{
    font-size: 18px;
    margin-top: 32px;
}

/* Menu burger */
#menu_burger{
    height: 50px;
    width: 50px;
    position: fixed;
    top: 22px;
    right: 28px;
    cursor: pointer;
    z-index: 9888;
}

#menu_burger_inner{
    height: 24px;
    width: 36px;
    margin-top: 13px;
    margin-left: 7px;
    position: relative;
}

#menu_burger_inner span{
    height: 4px;
    width: 36px;
    position: absolute;
    background-color: white;
    left: 0px;
    transition: transform 350ms, width 350ms, top 350ms;
}

#menu_burger_inner span:nth-child(1)
{
    top: 0px;
}

#menu_burger_inner span:nth-child(2)
{
    top: 10px;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

#menu_burger_inner span:nth-child(3)
{
    top: 20px;
}

#menu_burger.open span:nth-child(1){
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 12px;
}

#menu_burger.open span:nth-child(2){
    width: 0px;
}

#menu_burger.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 12px;
}

#menu_cover{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: black;
    opacity: 0;
    visibility: hidden;
    transition: 350ms;
}

#menu_cover.open{
    opacity: 0.2;
    visibility: visible;
}