nav {
    position: absolute;
    display: block;
}

nav *
{
  font-size:1em;
}

.right {
    float: right;
    margin-left: 1em;
}

.menu-wrapper {
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 10;
    font-size: 1em;
    text-transform: uppercase;
    padding-top: 2px;
    /*padding-bottom: 2px;*/
    background: #fdf8e5;
    -webkit-box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.75);
}

.menu-link {
    font-weight: bold;
}

.menu-wrapper .menu {
    margin: 0;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.menu-wrapper .menu > li {
    position: relative;
    padding: 0.7em 0;
    display: inline-block;
}

/*.menu-wrapper ul.menu,
.menu-wrapper a.menu-link {
    border-top: 1px dashed #dd4949;
    border-bottom: 1px dashed #dd4949;
}*/

.menu-wrapper a.menu-link {
    display: none;
    padding: 0.7em 0;
    background: #fdf8e5;
}

.menu-wrapper a {
    display: block;
    position: relative;
    padding: 0 0.5em;
    margin: 0 0.2em;
    line-height: 1.3em;
    color: #224F38;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.menu-wrapper a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.9);
    transition: all 0.5s;
}

.menu-wrapper .menu > .current-menu-item > a,
.menu-wrapper .menu > .current-menu-ancestor > a {
    position: relative;
    z-index: 12;
    background: #ccc;
    color: #224F38;
    border-bottom: 1px solid transparent;
}

.menu-wrapper .menu > .current-menu-item > a:hover,
.menu-wrapper .menu > .current-menu-ancestor > a:hover {
    background: #000;
}

.menu-wrapper .menu > .current-menu-item > a:hover:after,
.menu-wrapper .menu > .current-menu-ancestor > a:hover:after {
    border-top-color: #000;
}

.menu-wrapper .menu > .current-menu-item > a:after,
.menu-wrapper .menu > .current-menu-ancestor > a:after {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #ddd;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
}

.menu-wrapper li + li a:before {
    /*content: "*";*/
    position: absolute;
    left: -0.5em;
    top: 0.2em;
   color: #224F38;
    font-family: MinervaModern, sans-serif;
    bottom: 0;
}

.menu-wrapper .sub-menu {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /*margin: 18px 0 0 -0.7em;*/
    padding: 3px 0 0 0;
    position: absolute;
    max-height: 0em;
    overflow: hidden;
    list-style: none outside none;
    text-align: left;
    text-transform: none;
}

.menu-wrapper .sub-menu li {
    display: block;
    background: #fdf8e5;
    margin-left: 0.7em;
    margin-right: 0.7em;
}

.menu-wrapper .sub-menu a {
    margin: 0;
    white-space: nowrap;
    line-height: 1.8em;
    border: none;
}

.menu-wrapper .sub-menu a:hover {
    background: #aaa;
}

.menu-wrapper .sub-menu li:last-child {
    padding-bottom: 0.26em;
}

/*.menu-wrapper .sub-menu li:last-child a {
    border-bottom: 1px dashed #dd4949;
}*/

.menu-wrapper li:hover .sub-menu {
    max-height: 30em;
    transition: max-height 0.5s;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    .js .menu-wrapper nav[role=navigation] {
        overflow: hidden;
        max-height: 0em;
    }

    .js .menu-wrapper nav[role=navigation].active {
        max-height: 30em;
        transition: max-height 0.5s ease-out;
    }

    #logo {
        position: relative;
    }

    .menu-wrapper {
        /* unhide the 2nd level */
        /* styling the toggle menu */
        /* arrow to indicate that we have subnav*/
    }

    .menu-wrapper a.menu-link {
        display: block;
        width: auto;
        padding-right: 15px;
        padding-left: 10px;
        border: none;
        margin: 0;
    }


    .menu-wrapper a.menu-link:hover {
        background: #fdf8e5;
    }

    .menu-wrapper a.menu-link.active .ico-caret-down:before {
        font-family: FontAwesome;
        content: "\f00d";
        color: #224F38;
    }

    .menu-wrapper .menu .menu {
        padding-bottom: 5px;
    }

    .menu-wrapper .menu li {
        display: block;
        border: 1px solid pink;
        border: none;
    }

    .menu-wrapper .menu > li {
        padding: 0px;
        border: none;
    }

    /*.menu-wrapper .menu > li + li {
        border-top: 1px dashed #dd4949;
    }*/

    .menu-wrapper .menu a {
        padding: 0.5em 0;
        margin: 0px;
        border: none;
    }

    .menu-wrapper .menu a:hover {
        background: #fdf8e5;
    }

    .menu-wrapper .menu .rightalign {
        float: none;
    }

    .menu-wrapper li + li a:before {
        content: "";
    }

    .menu-wrapper li:hover .sub-menu {
        max-height: 0em;
        transition: none;
    }

    .menu-wrapper .sub-menu {
        background: none;
        margin-left: 0px;
        margin-top: 1px;
        display: block;
        width: 100%;
    }

    .menu-wrapper .sub-menu li,
    .menu-wrapper .sub-menu li a {
        margin: 0;
        display: block;
        width: 100%;
    }

    .menu-wrapper .sub-menu a {
        padding-left: 0.8em;
    }

    .menu-wrapper .sub-menu a:hover {
        background: #ccc;
    }

    /*.menu-wrapper .sub-menu li {
        border-bottom: 1px dashed #dd4949;
    }*/

    .menu-wrapper .sub-menu li:last-child {
        padding: 0;
    }

    .menu-wrapper .sub-menu li:last-child a {
        border: none;
    }

    .menu-wrapper .menu .has-subnav {
        position: relative;
    }

    .menu-wrapper li .sub-menu.active {
        max-height: 30em;
        overflow: visible;
        position: relative;
        z-index: 9;
        transition: max-height 0.5s ease-out;
    }

    .menu-wrapper .toggle-link {
        height: 50px;
        width: 60px;
        display: block;
        position: absolute;
        right: 25%;
        z-index: 200;
        font-size: 0em;
        cursor: pointer;
        font-family: 'icomoon';
        speak: none;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
    }

    .menu-wrapper .toggle-link:hover {
        transition: all 0.2s;
        background: #fdf8e5;
    }

    .menu-wrapper .menu .has-subnav > .toggle-link:after {
        font-family: FontAwesome;
        content: "\f0c9";
        position: absolute;
        width: 50px;
        top: 50%;
        margin-top: -15px;
        bottom: 50%;
        right: 4px;
        font-size: 1.1em;
        color: #224F38;
    }

    .menu-wrapper .menu .has-subnav > .toggle-link.active:after {
        font-family: FontAwesome;
        content: "\f00d";
        margin-top: -18px;
        color: #224F38;
    }
}

.ico-caret-down:before {
    font-family: FontAwesome;
    content: "\f0c9";
    color: #224F38;
}

.ico-caret-up:before {
    font-family: FontAwesome;
    content: "\f00d";
    color: #224F38;
}

i {
    font-family: FontAwesome;
    color: #224F38;
}

.telefono {
    font-family: FontAwesome;
    color: red;
    height: 1em;
    width: 1em;
}

li {
    display: inline-block;
    /*vertical-align: middle;*/
}
