#hamburger {
    background-color: transparent;
    bottom: auto;
    height: 40px;
    line-height: 30px;
    border: 2px solid black;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 40px;
    z-index: 15000;
    transition: border 0.2s;
}

#hamburger.hamburger-open {
    border: 2px solid white;
    transition: border 0.2s;
}

#hamburger.hamburger-open.fa-times:before {
    color: white;
    z-index: 9999999;
    transition: all 0.2s;
}

#hamburger.fa-bars:before {
    color: black;
    z-index: 9999999;
    transition: all 0.2s;
}

body > header > nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 32px 0;
    z-index: 10000;
    width: 280px;
    overflow-y: scroll;
    height: 100%;
    background: rgba(39, 38, 43, 0.8) none repeat scroll 0 0;
    transition: transform 0.3s ease 0s;
    transform: translate3d(100%, 0px, 0px);
}

body > header > nav.show-menu {
    transform: translate3d(0px, 0px, 0px);
    transition: transform 0.3s ease 0s;
}

body > header > nav.show-menu .menu__level--current {
    visibility: visible;
    height: auto;
}

body > header ul {
    list-style: none;
    padding: 0;
}

body > header > nav.show-menu > div > ul > li {
    transition: transform 0.3s ease 0s;
    transform: translate3d(0px, 0px, 0px);
}

body > header > nav > div > ul > li {
    background: rgba(50, 56, 60, 0.5) none repeat scroll 0 0;
    color: #FFF;
    position: relative;
    margin-bottom: 10px;
}

body > header > nav > div > ul > li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 10px 10px 40px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transform-origin: 0 0 0;
    transition: padding 0.3s ease 0s, transform 0.3s ease 0s, visibility 0.2s;
    text-align: left;
    text-decoration: none;
    display: block;
}

body > header > nav > div > ul > li a i {
    padding-right: 5px;
}

body > header > nav > div > ul > li a:before {
    content: "\f054";
    font-family: "FontAwesome";
    font-size: 12px;
    left: 0;
    position: absolute;
    padding-left: 8px;
}

body > header > nav > div > ul > li ul {
    display: none;
    margin-left: 20px;
}

/* END MENU */
.icon {
    font-family: 'feather';
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

.icon--arrow-left:before {
    content: '\e901';
}

.icon--cross:before {
    content: '\e117';
}

/* Menu styles */

.menu__wrap {
    overflow: hidden;
    width: 100%;
}

.menu__level {
    visibility: hidden;
    overflow: hidden;
    overflow-y: scroll;
    width: calc(100% + 50px);
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: auto;
    position: absolute;
    top: 60px;
    left: 0;
}

.menu__item {
    display: block;
    width: calc(100% - 50px);
}

.menu__link {
    font-weight: 600;
    position: relative;
    display: block;
    color: #bdbdbd;
    transition: color 0.1s, padding 0.3s ease 0s, transform 0.3s ease 0s, visibility 0.2s;
}

.menu__link:hover,
.menu__link[data-submenu]:hover::after {
    color: #5c5edc;
}

.menu__link--current::before {
    content: '\00B7';
    font-size: 1.5em;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 0.5em;
    height: 4px;
    color: #5c5edc;
}

#primary-sidebar {
    transition: margin-top 0.2s;
}

[class^='animate-'],
[class*=' animate-'] {
    visibility: visible;
}

.animate-outToRight .menu__item {
    animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes outToRight {
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.animate-outToLeft .menu__item {
    animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes outToLeft {
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.animate-inFromLeft .menu__item {
    animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes inFromLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-inFromRight .menu__item {
    animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes inFromRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.menu__breadcrumbs {
    font-size: 0.65em;
    line-height: 1;
    position: relative;
    padding: 0.5em 3.75em 1.5em 2.5em;
}

.menu__breadcrumbs a {
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5c5edc;
}

.menu__breadcrumbs a:last-child {
    pointer-events: none;
}

.menu__breadcrumbs a:hover {
    color: #8182e0;
}

.menu__breadcrumbs a:not(:last-child)::after {
    content: '\f178';
    font-family: 'FontAwesome';
    display: inline-block;
    padding: 0 0.5em;
    color: white;
}

.menu__breadcrumbs a:not(:last-child):hover::after {
    color: #33353e;
}

.menu__back {
    font-size: 1.05em;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 2.25em;
    margin: 0;
    padding: 1.365em 0.65em 0 0;
    cursor: pointer;
    color: #2a2b30;
    border: none;
    background: none;
}

.menu__back--hidden {
    pointer-events: none;
    opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
    color: #fff;
    outline: none;
}


/* Open and close buttons */

.action {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.action:focus {
    outline: none;
}

#mobile-hamburger.action--open {
    font-size: 1.5em;
    top: 1em;
    left: 1em;
    display: none;
    color: #fff;
    position: fixed;
    z-index: 1000;
}

.action--close {
    font-size: 1.1em;
    top: 1.25em;
    right: 1em;
    display: none;
    color: #45464e;
}

/* Example media query */
@media screen and (max-width: 40em) {
    #mobile-hamburger.action--open,
    .action--close {
        display: block;
    }
    #hamburger {
        display: none;
    }
    .menu {
        z-index: 1000;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translate3d(-100%, 0, 0);
        transition: transform 0.3s;
    }
    .menu--open {
        transform: translate3d(0, 0, 0);
    }
}

@media only screen
and (max-device-width: 768px) {
    #home figure {
        width: 100%;
    }
    #home figure {
        opacity: 1;
    }
}

@media only screen
and (min-device-width: 1920px) {
    #home figure {
        height: 300px;
    }

}

#primary-sidebar h2 {
    color: #5c5edc;
    font-size: 1em;
    font-weight: bold;
    padding: 0.2em 3.0em 0.5em 2.5em;
}

#primary-sidebar a {
    color: #bdbdbd;
    text-decoration: none;
}

#primary-sidebar a:hover {
    color: #5c5edc;
}

#primary-sidebar p {
    color: #bdbdbd;
}

#primary-sidebar > div > div {
    background: rgba(20, 24, 27, 0.5) none repeat scroll 0 0;
    padding: 1em 0.5em;
}

#primary-sidebar {
    margin-bottom: 5em;
}

#follow-me a {
    padding: 0 0.5em;
}

#menu_map {
    height: 300px;
    width: 264px;
}

#wp-calendar {
    width: 100%;
}

#wp-calendar caption {
    color: #5c5edc;
    font-size: 1em;
    font-weight: bold;
    padding: 0.2em 3.0em 0.5em 2em;
    text-align: left;
}

#primary-sidebar ul {
    padding-left: 15px;
    background: rgba(20, 24, 27, 0.5) none repeat scroll 0 0;
}