.navbar{
    width: 100%;
    height: 80px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    z-index: 60;
    position: fixed;
    top: 0;
    background-image: url("../images/bsckground.png"); /* The image used */
    background-color: #cccccc; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    z-index: 200;

}

.navbar .logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    max-width: 150px;
    height: 100%;
}

.navbar .logo-container img {
    max-width: 100%;
    max-height: 100%;
}

.navbar .menu-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    max-width: 920px;
    height: 100%;
}

.navbar .menu-container .menu-general{
    margin-bottom: 0px;
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.navbar .menu-container .menu-general .menu-principal{
      width: 100%;
      padding: 0px 10px;
      border-right: 3px solid #AD5F38;
}

.navbar .menu-container .menu-general .menu-principal .menu-link{
    width: 100%;
    /* border-right: 3px solid #AD5F38; */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 17px;

    color: #D68F5F;
    cursor: pointer;
}

.navbar .menu-container .menu-general .menu-principal .menu-link.activo-menu{
    color: #AD5F38;
}
/* .navbar .menu-container .menu-general .menu-principal .menu-link:focus, .navbar .menu-container .menu-general .menu-principal .menu-link:focus-visible, .navbar .menu-container .menu-general .menu-principal .menu-link:focus-within{
    background-color: #E73A4F !important;
    border-radius: 50px;
}  */

.navbar-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 85%;
    margin: auto;
}