.morph-button > button {
    position: fixed;
    top:30px;
    left:30px;
    z-index:100;
    padding: 0 1em;
    font-family: 'awesome';
    font-size:14px;
    border: none;
    width:60px;
    height:60px;
    background-color: rgba(0,0,0,.8);
    color: #fff;
    text-transform: uppercase;
    cursor:pointer;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 60px;
    overflow: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.morph-button > button:hover {
    color: #999494;
}
.morph-button > button:before {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: "\f0c9";
}
.morph-button.open > button {
    pointer-events: none;
}

.morph-content {
    pointer-events: none;
    overflow:hidden;
    width:100%;
    height:100%;
}

.morph-button.open .morph-content {
    pointer-events: auto;
}

/* Common styles for overlay and modal type (fixed morph) */
.morph-button-fixed,
.morph-button-fixed .morph-content {
    width: 300px;
    height: 80px;
}

.morph-button-fixed > button {
    z-index: 1000;
    -webkit-transition: opacity 0.1s 0.5s;
    transition: opacity 0.1s 0.5s;
}

.morph-button-fixed.open > button {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
}

.morph-button-fixed .morph-content {
    position: fixed;
    z-index: 900;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
    transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-fixed.open .morph-content {
    opacity: 1;
}

.morph-button-fixed .morph-content > div {
    visibility: hidden;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
    transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
}

.morph-button-fixed.open .morph-content > div {
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: opacity 0.3s 0.5s;
    transition: opacity 0.3s 0.5s;
}

.morph-button-fixed.active > button {
    z-index: 2000;
}

.morph-button-fixed.active .morph-content {
    z-index: 1900;
}

/* Transitions for overlay button and sidebar button */
.morph-button-overlay .morph-content,
.morph-button-sidebar .morph-content {
    -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

.morph-button-overlay.open .morph-content,
.morph-button-sidebar.open .morph-content {
    -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

/* Morph Button Style: Overlay */
.morph-button.morph-button-overlay {
    margin: 50px auto;
}

.morph-button-overlay .morph-content {
    overflow: hidden;
    background: rgba(0,0,0,.9);
}

.morph-button-overlay.open .morph-content {
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
}

/* Morph Button Style: Modal */
.morph-button-modal::before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    pointer-events: none;
}

.morph-button-modal.open::before {
    opacity: 1;
    pointer-events: auto;
}

.morph-button-modal.active::before {
    z-index: 1800;
}

.morph-button-modal .morph-content {
    overflow: hidden;
    -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
    transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-modal.open .morph-content {
    top: 50% !important;
    left: 50% !important;
    margin: -210px 0 0 -300px;
    width: 600px;
    height: 420px;
    -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
    transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}


/* Let's add some nice easing for all cases */
.morph-button .morph-content,
.morph-button.open .morph-content,
.morph-button-modal-4 .morph-clone {
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Helper classes */
.noscroll {
    overflow: hidden;
}

.morph-button-overlay.scroll .morph-content {
    overflow-y: scroll;
}

.morph-button-sidebar.scroll .morph-content {
    overflow: auto;
}

/* No JS fallback: let's hide the button and show the content */
.no-js .morph-button > button {
    display: none;
}

.no-js .morph-button {
    margin: 10px 0;
    float: none;
}

.no-js .morph-button,
.no-js .morph-button .morph-content,
.no-js .morph-button .morph-content > div {
    position: relative;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    pointer-events: auto;
}

.no-js .morph-button .morph-content .icon-close {
    display: none;
}

.no-js .morph-button-sidebar {
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    background: #e85657;
    overflow: auto;
}

.no-transition {
    -webkit-transition: none !important;
    transition: none !important;
}

/* Media Queries */

@media screen and (max-width: 600px) {
    .morph-button-modal.open .morph-content {
        top: 0% !important;
        left: 0% !important;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
        transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    }
}

@media screen and (max-width: 500px) {
    .morph-button-sidebar,
    .morph-button-sidebar .morph-content {
        width: 100% !important;
        height: 60px !important;
    }

    .morph-button-sidebar {
        bottom: 0px;
        left: 0px;
    }
}

@media screen and (max-width: 400px) {
    .morph-button-fixed,
    .morph-button-fixed .morph-content {
        width: 200px;
        height: 80px;
    }

    .morph-button-fixed > button {
        font-size: 75%;
    }

    .morph-button-inflow .morph-content .morph-clone {
        font-size: 0.9em;
    }

    .morph-button-modal-4,
    .morph-button-modal-4 .morph-content {
        width: 220px;
        height: 120px;
    }

    .morph-button-modal-4 > button {
        font-size: 100%;
        line-height: 50px;
    }

    .morph-button-modal-4 > button span {
        display: block;
    }

    .morph-button-modal-4 .morph-clone {
        right: 83px;
        bottom: 26px;
    }
}
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'awesome';
    src:url('../fonts/awesome/fontawesome-webfont.eot');
    src:url('../fonts/awesome/fontawesome-webfont.eot') format('embedded-opentype'),
    url('../fonts/awesome/fontawesome-webfont.woff') format('woff'),
    url('../fonts/awesome/fontawesome-webfont.ttf') format('truetype'),
    url('../fonts/awesome/fontawesome-webfont.svg') format('svg');
}

.logo{
    position:fixed;
    top:30px;
    left:100px;
    width:150px;
    height:60px;
    background:url('../images/logo.png')no-repeat left center;
    background-size: contain;
    z-index:10;
}
/* Style for overlay */

.content-style-overlay {
    text-align: center;
}
.content-style-overlay .menu-in-overlay{
    position:absolute;
    width:100%;
    top:50%;
    left:0;
    z-index:1000;
    margin-top:-130px;
}
.content-style-overlay .menu-in-overlay li{
    width:100%;
    text-align:center;
    margin-top:25px;
    margin-bottom:25px;
    font-family: 'Lato', sans-serif;
    letter-spacing:2px;
    font-weight:700;
    text-transform:uppercase;
    font-size:16px;
    color:#fff;
}

.content-style-overlay .menu-in-overlay li a {
    position: relative;
    outline: none;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight:400;
    letter-spacing:2px;
    font-size:16px;
    margin-left:18px;
}
.content-style-overlay .menu-in-overlay li a:hover,
.content-style-overlay .menu-in-overlay li a:focus {
    outline: none;
}

.content-style-overlay .menu-in-overlay li .cl-effect-11 a {
    color: #fff;
    text-shadow: none;
}

.content-style-overlay .menu-in-overlay li .cl-effect-11 a::before {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    max-width: 0;
    color: #cfa144;
    content: attr(data-hover);
    -webkit-transition: max-width 0.5s;
    -moz-transition: max-width 0.5s;
    transition: max-width 0.5s;
}

.content-style-overlay .menu-in-overlay li .cl-effect-11 a:hover::before,
.content-style-overlay .menu-in-overlay li .cl-effect-11 a:focus::before {
    max-width: 100%;
}



.content-style-overlay .icon-close {
    line-height: 2.8;
}

.content-style-overlay .icon-close:hover {
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Icons */
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'icomoon';
    src:url('../fonts/icomoon/icomoon.eot?i64fx9');
    src:url('../fonts/icomoon/icomoon.eot?#iefixi64fx9') format('embedded-opentype'),
    url('../fonts/icomoon/icomoon.woff?i64fx9') format('woff'),
    url('../fonts/icomoon/icomoon.ttf?i64fx9') format('truetype'),
    url('../fonts/icomoon/icomoon.svg?i64fx9#icomoon') format('svg');
}

.icon-close {
    z-index: 100;
    display: block;
    overflow: hidden;
    width: 3em;
    height: 3em;
    text-align: center;
    color: rgba(255,255,255,0.6);
    line-height: 3;
    cursor: pointer;
}


.icon:before {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-family: 'icomoon';
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.icon-camera:before {
    content: "\e017";
}

.icon-server:before {
    content: "\e022";
}

.icon-heart:before {
    content: "\e024";
}

.icon-zoom-in:before {
    content: "\e037";
}

.icon-microphone:before {
    content: "\e048";
}

.icon-cloud:before {
    content: "\e066";
}

.icon-user:before {
    content: "\e074";
}

.icon-briefcase:before {
    content: "\e075";
}

.icon-globe:before {
    content: "\e078";
}

.icon-cog::before {
    content: "\e600";
}

.icon-close::before {
    content: "\e601";
}

.icon-play::before {
    content: "\e602";
}

.icon-pause::before {
    content: "\e603";
}

.icon-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.icon-close:hover {
    color: #fff;
}

