#biomenu{
    float: right;
    margin-top: 1%;
}
#biomenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}
#biomenu > ul {
    position: relative;
    display: block;
    width: 100%;
    z-index: 500;
    font-size: 0;
}
#biomenu:after,
#biomenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#biomenu.align-right > ul > li {
    float: right;
}
#biomenu.align-center ul {
    text-align: center;
}
#biomenu.align-center ul ul {
    text-align: left;
}
#biomenu > ul > li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}
#biomenu > ul > #menu-button {
    display: none;
}
#biomenu ul li a {
    display: block;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #5B8263;
    font-size: 16px;
    transition: background-color 0.5s ease;
    transition: scale 0.2s linear;
}
#biomenu > ul > li > a {
    font-size: 14px;
    font-weight: 400;
    padding: 15px 20px;
    -moz-transition: color 0.25s ease-out;
    -ms-transition: color 0.25s ease-out;
    -o-transition: color 0.25s ease-out;
    transition: color 0.25s ease-out;
}
#biomenu > ul > li.has-sub > a {
    padding-right: 32px;
}
#biomenu > ul > li:hover:not(:last-child) > a {
    background-color: #5B8263;
    color: white;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#biomenu > ul > li:last-child{
    padding-right:20px;
    padding-left:20px;
    width: 200px;
}

#biomenu > ul > li:last-child a{
    -ms-transform: scale(1); /* IE 9 */
    -webkit-transform: scale(1); /* Safari 3-8 */
    transform: scale(1);
}
#biomenu > ul > li:last-child a:hover{
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}


#biomenu li.has-sub::after {
    display: block;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}
#biomenu > ul > li.has-sub::after {
    right: 10px;
    top: 20px;
    border: 5px solid transparent;
    border-top-color: #5B8263;
}
#biomenu > ul > li:hover::after {
    border-top-color: #5B8263;
}
#biomenu ul ul {
    position: absolute;
    left: -9999px;
    top: 70px;
    opacity: 0;
    -webkit-transition: opacity .3s ease, top .25s ease;
    -moz-transition: opacity .3s ease, top .25s ease;
    -ms-transition: opacity .3s ease, top .25s ease;
    -o-transition: opacity .3s ease, top .25s ease;
    transition: opacity .3s ease, top .25s ease;
    z-index: 1000;
}
#biomenu ul ul ul {
    top: 37px;
    padding-left: 5px;
}
#biomenu ul ul li {
    position: relative;
}
#biomenu > ul > li:hover > ul {
    left: auto;
    top: 44px;
    opacity: 1;
}
#biomenu.align-right > ul > li:hover > ul {
    left: auto;
    right: 0;
    opacity: 1;
}
#biomenu ul ul li:hover > ul {
    left: 130px;
    top: 0;
    opacity: 1;
}
#biomenu.align-right ul ul li:hover > ul {
    left: auto;
    right: 170px;
    top: 0;
    opacity: 1;
    padding-right: 5px;
}
#biomenu ul ul li a {
    width: 130px;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 20px;
    font-size: 12px;
    color: white;
    background: #5B8263;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}
#biomenu.align-right ul ul li a {
    text-align: right;
}
#biomenu ul ul li:hover > a {
    background: white;
    color: #5B8263;
}
#biomenu ul ul li:last-child > a,
#biomenu ul ul li.last > a {
    border-bottom: 0;
}
#biomenu > ul > li > ul::after {
    content: '';
    border: 6px solid transparent;
    width: 0;
    height: 0;
    border-bottom-color: #ffffff;
    position: absolute;
    top: -12px;
    left: 30px;
}
#biomenu.align-right > ul > li > ul::after {
    left: auto;
    right: 30px;
}
#biomenu ul ul li.has-sub::after {
    border: 4px solid transparent;
    border-left-color: #9ea2a5;
    right: 10px;
    top: 12px;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}
#biomenu.align-right ul ul li.has-sub::after {
    border-left-color: transparent;
    border-right-color: #9ea2a5;
    right: auto;
    left: 10px;
}
#biomenu ul ul li.has-sub:hover::after {
    border-left-color: #ffffff;
    right: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
#biomenu.align-right ul ul li.has-sub:hover::after {
    border-right-color: #ffffff;
    border-left-color: transparent;
    left: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #biomenu {
        width: auto;
    }
    #biomenu.align-center ul {
        text-align: left;
    }
    #biomenu.align-right > ul > li {
        float: none;
    }
    #biomenu ul {
        width: auto;
    }
    #biomenu .submenuArrow,
    #biomenu #indicatorContainer {
        display: none;
    }
    #biomenu > ul {
        height: auto;
        display: block;
    }
    #biomenu > ul > li {
        float: none;
        display: block;
    }
    #biomenu li,
    #biomenu > ul > li {
        display: none;
    }
    #biomenu ul ul,
    #biomenu ul ul ul,
    #biomenu ul > li:hover > ul,
    #biomenu ul ul > li:hover > ul,
    #biomenu.align-right ul ul,
    #biomenu.align-right ul ul ul,
    #biomenu.align-right ul > li:hover > ul,
    #biomenu.align-right ul ul > li:hover > ul {
        position: relative;
        left: auto;
        top: auto;
        opacity: 1;
        padding-left: 0;
        padding-right: 0;
        right: auto;
    }
    #biomenu ul .has-sub::after {
        display: none;
    }
    #biomenu ul li a {
        padding: 12px 20px;
    }
    #biomenu ul ul li a {
        border: 0;
        background: none;
        width: auto;
        padding: 8px 35px;
    }
    #biomenu.align-right ul ul li a {
        text-align: left;
    }
    #biomenu ul ul li:hover > a {
        background: none;
        color: #8c9195;
    }
    #biomenu ul ul ul a {
        padding: 8px 50px;
    }
    #biomenu ul ul ul ul a {
        padding: 8px 65px;
    }
    #biomenu ul ul ul ul ul a {
        padding: 8px 80px;
    }
    #biomenu ul ul ul ul ul ul a {
        padding: 8px 95px;
    }
    #biomenu > ul > #menu-button {
        display: block;
        cursor: pointer;
    }
    #biomenu #menu-button > a {
        padding: 14px 20px;
    }
    #biomenu ul.open li,
    #biomenu > ul.open > li {
        display: block;
    }
    #biomenu > ul.open > li#menu-button > a {
        color: #fff;
        border-bottom: 1px solid rgba(150, 150, 150, 0.1);
    }
    #biomenu ul ul::after {
        display: none;
    }
    #biomenu #menu-button::after {
        display: block;
        content: '';
        position: absolute;
        height: 3px;
        width: 22px;
        border-top: 2px solid #7a8189;
        border-bottom: 2px solid #7a8189;
        right: 20px;
        top: 15px;
        box-sizing: content-box;
    }
    #biomenu #menu-button::before {
        display: block;
        content: '';
        position: absolute;
        height: 3px;
        width: 22px;
        border-top: 2px solid #7a8189;
        right: 20px;
        top: 25px;
        box-sizing: content-box;
    }
    #biomenu ul.open #menu-button::after,
    #biomenu ul.open #menu-button::before {
        border-color: #fff;
    }
}
