﻿@import "compass/css3";
@import url(https://fonts.googleapis.com/css?family=Cantora+One);

* {
    box-sizing: border-box;
}



nav[role="full-horizontal"] {
    width: 100%;
}

nav[role="full-horizontal"] ul {
    width: 100%;
    list-style: none;
}

    nav[role="full-horizontal"] ul > li {
        position: relative;
        float: left;
        padding: 0.25em 1em;
        margin: 1.25em 1em;
        text-transform: uppercase;
        cursor: pointer;
        background: #ececf0;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        border-radius: 0.75em;
        transition-duration: 0.3s;
        transition-timing-function: ease-in-out;
        transition-property: background, color, padding, border-radius;
        box-shadow: 0.01em -0.01em 0 0.01em rgba(0, 0, 0, .2), inset 0 0 0 0.1em rgba(0, 0, 0, .2), -0.01em 0.01em 0 0.01em rgba(0, 0, 0, .2);
    }

nav[role="full-horizontal"] ul > li:after {
    position: absolute;
    z-index: -1;
    content: "";
    right: 0;
    border-radius: 50%;
    box-shadow: 1em 1em 0 2em rgba(255, 255, 255, .5);
}

nav[role="full-horizontal"] ul > li:last-child:after {
    box-shadow: none;
}

        nav[role="full-horizontal"] ul > li:hover {
            background-color: #43960f;
            padding-left: 3em;
            font-weight: bold;
        }

nav[role="full-horizontal"] ul > li:hover > a {
    color: #fff;
}

nav[role="full-horizontal"] ul > li > a {
    color: #333;
    text-decoration: none;
    font-size: 1.4em;
    transition: color 0.3s ease-in-out;
}
/* small screens */
@media screen and (max-width: 600px) {

    nav[role="full-horizontal"] ul {
        padding: 0 0.5em;
    }

    nav[role="full-horizontal"] ul > li {
        width: 75%;
        padding: 0.45em 0.25em;
        margin: 0 0 0.55em 0;
    }

    nav[role="full-horizontal"] ul > li:after {
        box-shadow: none;
    }
}