/* #navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    justify-content: space-between;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 11%);
    z-index: 9999;
}
#navbar::before{
    content: "";
    background-color:#f2f2f2;
    position: absolute;
    top:0px;
    left:0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 1;
}
#nav-img{
    flex:1;
}
#navbar img{
    height: 6rem;
    width: 6rem;
    margin-top: 2px;
    margin-left: 30px;
    border-radius: 50%;
}
#navbar ul{
    display: flex;
    flex:2;
    justify-content: space-evenly;
}
#navbar ul li{ 
    list-style: none;
    font-size: 1rem;
    margin: 0 ;
}
#navbar ul li a{
    font-size: 1.3rem;
    color: rgb(125, 103, 74);
    display: block;
    /* padding: 3px 22px; */
    /*text-decoration: none;
}
#navbar ul li a:hover{
    color: burlywood;
} */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    --color1: rgb(125, 103, 74) ;
    --color2: #f2f2f2 ;
}
#navbar{
    position: sticky;
    z-index: 9999;
    top: 0px;
}
.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 0 30px 0 20px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 11%);
}
.logo img {width: 90px; border-radius: 50%; margin-top: 3px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
/* .menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-size: 1.3rem;
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color1);
    transition: 0.2s ease-in-out;
}
/* #navbar ul li a:hover{
    color: rgb(255, 240, 211);
    transition: 0.2s ease-in-out;
} */
/*.menu li a:hover:after {width: 100%;} */
/* nav {
    width: 80%;
    margin: 0 auto;
    background: #fff;
    padding: 50px 0;
    box-shadow: 0px 5px 0px #dedede;
  } */
  nav ul {
    list-style: none;
    text-align: center;
  }
  nav ul li {
    display: inline-block;
  }
  nav ul li a {
    display: block;
    padding: 10px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: rgb(125, 103, 74);
    font-weight: 800;
    text-transform: uppercase;
    /* margin: 0 10px; */
  }
  nav ul li a,
  nav ul li a:after,
  nav ul li a:before {
    transition: all .5s;
  }
  nav ul li a:hover {
    color: #555;
  }
#navbar ul .menu li a {
    position:relative;
    z-index: 1;
  }
  #navbar ul .menu li a:hover {
    color: white;
  }
  #navbar ul .menu li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: rgb(125, 103, 74);
    visibility: none;
    opacity: 0;
    z-index: -1;
  }
  #navbar ul .menu li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  

.open-menu , .close-menu {
    position: absolute;
    color: black;
    cursor: pointer;
    font-size: 2.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}

#check {display: none;}
@media(max-width: 1020px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 75%;
        height: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
    
}

