/*
    http://webdesignerwall.com/tutorials/css-responsive-navigation-menu
    CSS Responsive Navigation Menu
    Nick La
*/

/* Menu Topo */
.nav-container { 
    background: none;
}

.f-nav{ 
    z-index: 9999; 
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 100%;
}
/* Fim Menu Topo */

.nav {
	position: relative;
	z-index: 9;
    width: 100%;
    background: rgba(40,114,155,1);
    font-family: 'Open Sans', sans-serif;
    clear: both;
}

.nav ul {
	margin: 0;
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 0px;
}

.nav ul li:hover {
}

.nav .current a {
}

.nav li {
	text-transform: uppercase;
	margin-right: auto;
    margin-left: auto;
	list-style: none;
	display: inline-block;
    padding: 1.5em;
}

.nav li:first-child {
    border-left: 0;
    margin-left: 0;
}

.nav a {
	text-decoration: none;
	color: #fff;
    /* Efeito Transição */
	-o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    /* Fim Efeito Transição */
}

.nav ul:hover li {
    text-decoration: none;
}

.nav.center ul {
	text-align: center;
}

.nav ul li a {
    color: #fff;
    font-family: 'Open sans', sans-serif !important;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.2em;
}

.nav li a:hover {
	color: #6db4b2;
    text-decoration: none !important;
}

#topo-mobile{
    display: none;
}

/* Breakpoint - Celulares e Tablets */
@media screen and (max-width: 600px) {
    #topo-mobile{
        display: block;
        text-align: center;
        list-style: none;
        list-style-type: none;
        background: #fff;
    }
    #menu-mobile{
        display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2em;
        font-weight: normal;
        text-transform: uppercase;
        margin: 0;
    }
    #menu-mobile a{
        display: block;
        color: #FFF;
        text-decoration: none;
        background: rgba(40,114,155,1);
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
        /* Efeito Transição */
        -o-transition:.3s;
        -ms-transition:.3s;
        -moz-transition:.3s;
        -webkit-transition:.3s;
    /* Fim Efeito Transição */
    }
    #menu-mobile a:hover {
        color: #6db4b2;
    }
    .btn-menu{
        position: relative;
        padding: 1em 0;
        cursor: pointer;
        display: block;
    }
    .bar1,.bar2,.bar3{
        width: 30px;
        height: 5px;
        background-color: #6db4b2;
        margin: 0 auto;
        margin-bottom: 2px;
        transition: 0.5s;
    }
    .change .bar1{
        transform: rotate(-45deg) translate(-5px,5px);     
        background-color: rgba(40,114,155,1); 
    }
    
    .change .bar3{
        transform: rotate(45deg) translate(-5px,-5px); 
        background-color: rgba(40,114,155,1); 
    }
    
    .change .bar2{
        opacity: 0;
    }

    .nav {
        display: none;
    }
    .nav ul li:hover {
        background: none;
    }
    .nav li a:hover {
	   color: #6db4b2;
    }
    .nav {
        position: relative;
        padding: 0em;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2em;
        font-weight: 600;
    }	

    .nav li {
        background: rgba(40,114,155,1);
        display: none; /* hide all <li> items */
        margin: 0;
    }
    
    .nav ul {
        padding: 0 !important;
    }
    
    .nav ul li{
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .nav .current {
        display: block; /* show only current <li> item */
        margin: 0;
    }
    
    .nav .current a {
        width: 3em;
    }

    .nav ul:after {
        content: "\f0c9";
        position: absolute;
        line-height: 1.3em;
        right: 0em; 
        top: 0em;
        font-size: 2em;
        color: #FFF;
        background: rgba(40,114,155,1);
        font-family: FontAwesome;
        padding: 0.27em;
        width: 1.35em;
        text-align: center;
    }

    .nav a {
        display: block;
        padding: 0;
        text-align: left;
    }
    
    /* on nav hover */
    
    .nav a:hover {
        padding: 0;
    }

    .nav ul:hover li {
        border-bottom: 1px solid rgba(0, 0, 1, 0.1);
        display: block;
        margin: 0;
    }
    
    .nav ul:hover .current {
		background-color: none;
	}
    
    .nav ul:hover::after {	
        background: rgba(40,114,155,1);
	}
}
/* Fim do menu responsivo de Nick La */