.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255)

}
.blureffect{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* backdrop-filter: blur(8px); */
    z-index: 0;
}

.logo{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20Px;
    z-index: 1;
    color: #2e9d64;
}

.nav-links a{
    font-size: 1rem;
    text-decoration: none;
    color: var(--accent-color);
    margin-right: 15px;
    transition: 0.4s;
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
.nav-links a:hover::after {
    transform: scaleX(1);
  }

.burger{
    display: none;
    margin-right: 20px;
    position: relative;
    z-index: 1000;
}
.bar{
    height: 5px;
    width: 30px;
    background-color: var(--accent-color);
    margin-bottom: 5px;
    border-radius: 2px;
    transform-origin: left;
    transition: 0.4s;
}

.drop-down-menu{
    display: none;
    position: relative;
    top: 0;
    right: 0;
    
}
.drop-down-links{
    position: absolute;
    min-width: 160px;
    right: -20px;
    background-color: white;
    width: fit-content;
    height: fit-content;
}
.drop-down-links a{
    display: block;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    color: var(--accent-color);
    margin: 15px;
    transition: 0.4s;
    font-weight: 600;
}

.open1{
    transform: rotate(45deg);
}
.open2{
    opacity: 0;
}
.open3{
    transform: rotate(-45deg);
}

/* RESPONSIVE */

@media screen and (max-width: 600px) {
    .logo{
        font-size: 1rem;
        margin: 10px;
    }
    .nav-links{
        display:none;
    }
    .burger{
        display:block;
    }
}