

.navbar {
    overflow: hidden;
    width: 100%;
    height: var(--navbar-height);
    background-color: hsla(48, 100%, 50%, 0.185);
    border-style: solid;
    box-sizing: border-box;
    border-width: 0 0 1px 0;
    border-color: #ddd;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  
  }
  .navbar-background {
    overflow: hidden;
    width: 100%;
    height: var(--navbar-height);
    
  
  }
  
  .navbar-logo {
    height:var(--navbar-height);
    display: flex;
    align-items: center;
  
  }
  
  .navbar-logo-img {
    height: 60px;
    
  }
  
  .navbar-options {
    display: flex;
    align-items: center;
    margin: 0 0 0 6%;
    
  
  }
  
  .navbar-option-item {
    min-width: 100px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 30px;
    color: aqua;
    
  }
  .navbar-option-item div {
    font-weight: 600;
    font-size: 20px;
    
  }
  
  .perfil {}
  
  .navbar-left-side {
    display: flex;
    align-items: center;
    height: 100%;
  
    margin-left: 2%;
  }
  
  .navbar-right-side {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0px  12vw 0 0;
  
  
  
  }
  
  .navbar a,
  li {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: rgb(72, 72, 72);
    text-align: center;
    padding: 20px 16px;
    list-style-type: none;
    text-decoration: none;
    cursor: pointer;
  
  
  }
  
  
  .dropdown {
    /* float: left;
      overflow: hidden; */
  }
  
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
  }
  
  .navbar-options a:hover,
  .navbar li:hover,
  .dropdown:hover .dropbtn {
    background-color: var(--color-1);
    color: #ffffff;
  }
  
  .navbar-options a:active {
    background-color: var(--color-2);
    transform: translateY(1px);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  /*  >>>>>>>>>>>>>>MOBILE<<<<<<<<<<<<<<< */
  /* MENU */
  .menu-icon {
    display: none;
    cursor: pointer;
  }
  .bar1, .bar2, .bar3 {
    width: 80px;
    height: 10px;
    background-color: #333;
    margin: 15px 0;
    transition: 0.4s;
  }
  .change .bar1 {
    transform: translate(0, 38px) rotate(-45deg);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }
  .menu-link{
    display: none;
    transition: 1s;
  }
  
  
  @media screen and (max-width: 1000px) {
  
    .navbar-options {
      display: none;
      
    }
   
      .navbar{
        height: 100px;
      }
      .navbar-background{
        background-color: #ffffff;
        position: fixed;
        z-index: 999;
        height: 100px;
      }
      .navbar-right-side {
       
        padding: 0px  5vw 0 0;
      
      
      
      }
      
      .navbar-logo {
        height: 100px;
        
      
      }
      
      .navbar-logo-img {
        
        max-width: 90%;
      }
    .menu-icon{
        display: inline-block;
        transition: 1s;
    }
    
    .menu-link{
        display: none;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.979);
        width: 60vw;
        height: 60%;
        top: 100px;
        right: 0px;
        padding: 5%;
        transition: 1s;
        z-index: 999;
        
    }
   
    .menu-link p{
        padding: 10px;
        
        border-width: 1px;
        border-bottom-style:solid;
        color: var(--color-1);
        
        text-decoration: none;
        font-size: 30px;
        font-weight: 700;
    }
    .menu-link a{
        color: #333;
        text-decoration: none;
    }
    .menu-subiten p{
        padding: 10px 0 10px 8%;
        font-size: 16px;
    }
    .menu-subiten a{
        color: var(--color-3);
    }
  
  
  }