/*a {
    text-decoration: none;
    list-style: none;
    color: #000000;
}
  
.container1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    background-color: #5d6989;
    max-width: 100vw;
    margin: 0 auto;
    border-bottom: 3px solid #f1cd30;
    height: 106px;
}

.logo a img{
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.navigation ul {
    display: flex;
    text-align: center;
}

.navigation ul li {
    padding: 10px 15px;
    color: #000000;
    font-weight: bolder;
    list-style: none;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: color 0.7s ease;
    transition: border-bottom 0.9s ease;
    border-bottom: solid 2px transparent;
}

.navigation ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f1cd30;
    transition: width 0.7s ease;
}


.navigation ul li:hover::after {
    width: 100%;
}
.login .btn-cadastro,
.login .btn-login {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #f1cd30;
    color: #000000;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.login .btn-cadastro:hover,
.login .btn-login:hover {
    color: #333;
    background-color: #d3b52f;
}*/

header{
    width: 100%;
    height: 106px;
    background-color: #5d6989;
    border-bottom: 3px solid #f1cd30;
}
header .container{
    max-width: 1700px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
   
}

header .container .navigation{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
   
}

header .container .navigation .nav{
   margin:0 auto;
}

header .container .logo {
    width: 100px;
    height: 100px;    
}

header .container .logo a img{
    width: 100%;
    height: 100%;
}

header .container .navigation .nav ul{
    display: flex;
    
}

header .container .navigation .nav ul li{
    margin: 0 20px;
    position: relative;
    transition: 0.7s ease;
    padding: 5px 0;
}

.navigation .nav ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f1cd30;
    transition:  0.7s ease;

}

.navigation .nav ul li:hover::after {
    width: 100%;
}

header .container .navigation .nav ul li a{
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: black;
}

.login{
    display: flex;
}

.login button{
    margin: 0 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #f1cd30;
    color: #000000;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
    text-decoration: none;
}

.login button:hover{
    color: #333;
    background-color: #d3b52f;
}

.user-menu{
    width: 100%;
    position: relative;
}

.user-menu img{
    border-radius: 50px;
    width: 90px;
    height: 90px;
}

.user-menu .menu{
    position: absolute;
    width: 200px;
    background-color: white;
    right: 15%;
    z-index: 999;
    display: none;
}

.user-menu .menu.open{
    display: block;
}

.user-menu .menu ul {
    width: 100%;
    list-style: none;
}
.user-menu .menu ul li{
    width: 100%;
}

.user-menu .menu ul li button{
    width: 100%;
    border-radius: 0;
    height: 50px;
    border: 0;
    border-bottom: 1px solid black;
    cursor: pointer;
    padding: 0;
    background-color: #f1cd30;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
}

.user-menu .menu ul li button:hover{
    background-color: #b49a24;
}



/*nav mobile*/

.nav-mobile {
    display: none;
  }
  
  .menu-mobile {
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
  }
  
  .menu-mobile i {
    color: #f1cd30;
  }
  
  .mobile-menu {
    display: none;
    list-style: none;
    background: #444;
    padding: 2em;
    position: absolute;
    top: 60px;
    right: 16px;
    border-radius: 5px;
    z-index: 100;
  }
  
  .mobile-menu {
    margin: 0.5em 0;
    border: 3px solid #000000;
    ;
  }
  
  .mobile-menu li  {
   
    margin: 0.5em 0;
    border-bottom: 2px solid yellow;
  }
  
  .mobile-menu li a {
    color: #fff;
    text-decoration: none;
  }

.nav-mobile {
 display: none;
  }


@media only screen and (max-width: 992px) {

    header .container .navigation .nav  {
        
        margin: 0 auto;
      
    }
   
    

 
    .nav-mobile {
      display: block;
    }

   

/* .login {
   position: absolute;
   top: 50%;
   transform:translatey(-50%);
   margin-right: 30px;
} */

.nav-mobile .menu-mobile i {
    font-size: 40px;
    margin-left: 15px;
}

.user-menu .menu {
    right:-50%;   
 }

   
    header .container .navigation .nav ul li {
     display: none;
  }

  .login button{
    
    font-size: 14px;
  }
}


@media only screen and (max-width: 723px) {




header .container .navigation .nav-mobile {
    
    
  
   }
 

.user-menu .menu {

    width: 170px;
   
 }

}