html,
body,
.container {
    background: #FFF url(../img/bg.png) repeat center top;
    font-family: arial,sans-serif;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
/* Bike */
.bike {
    display: none;
    position: absolute;
    height: 80px;
}
#wheel_rear {
    left: 0;
}
#wheel_front {
    right: 0;
}

/* Footer */
.footer {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 0;
}
.tree {
    position: absolute;
    height: 600px;
    right: 20px;
    bottom: 0;
}
.footer .logo {
    margin-left: 20px;
    margin-bottom: -5px;
    height: 80px;
}
.footer .footer_holder {
    position: relative;
    z-index: 9999;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    border:1px solid #000;
    background-color: #000;
    box-shadow: 0 0 2px #000;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer p {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    font-family: arial,sans-serif;
    color: #fff;
    padding: 0;
    margin: 0;
}

/* Menu Button */
.menu-button {
    outline: 0;
    position: fixed;
    z-index: 1000;
    margin: 1em;
    padding: 0;
    width: 2.5em;
    height: 2.25em;
    border: none;
    text-indent: 2.5em;
    font-size: 1.5em;
    color: transparent;
    background: transparent;
}

.menu-button::before {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
    content: '';
}
.menu-button:hover {
    opacity: 0.6;
}

/* Close Button */
.close-button {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 1em;
    top: 1em;
    overflow: hidden;
    text-indent: 16px;
    border: none;
    z-index: 1001;
    background: transparent;
    color: transparent;
}
.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #95a5a6;
}
.close-button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* Close Page Button */
.close-page {
    display: none;
    outline: 0;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 26px;
    top: 8px;
    padding: 0;
    overflow: hidden;
    text-indent: 0;
    border: none;
    z-index: 1002;
    background: transparent;
    font-size: 80px;
    font-weight: bold;
    font-family: cursive;
    line-height: 0;
    color: #373a47;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.close-page:hover {
    opacity: 0.6;
}

/* Menu */
.menu-wrap {
    position: absolute;
    z-index: 1001;
    width: 300px;
    height: 100%;
    font-size: 1.15em;
    -webkit-transform: translate3d(-300px,0,0);
    transform: translate3d(-300px,0,0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.menu {
    background: #373a47;
    width: calc(100% - 120px);
    height: 100%;
    padding: 2em 0;
}
.icon-list {
    width: 280px;
}
.icon-list a {
    display: block;
    padding: 0.8em;
}
.icon-list a i {
    opacity: 0.5;
    min-width: 25px;
    text-align: center;
}
.icon-list a span {
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.75em;
}

/* Morph Shape */
.morph-shape {
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    right: 0;
    fill: #373a47;
    z-index: 1000;
}

/* Shown menu */
.show-menu .menu-wrap {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.show-menu .content-wrap {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate3d(100px,0,0);
    transform: translate3d(100px,0,0);
}
.show-menu .content::before {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.menu-wrap a {
    color: #ddd;
}
.menu-wrap a:hover,
.menu-wrap a:focus {
    color: #c94e50;
}
.content {
    background: #b4bad2;
}
.content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
    transition: opacity 0.3s, transform 0s 0.3s;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
}
.portal {
    display: block;
    opacity: 0;
    background: #FFF url(../img/bg.png) repeat center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}