

/* header and list */
/* header and list */
/* header and list */
/* header and list */
/* header and list */
ul {
    list-style: none;
}


a {
    text-decoration: none;
    color: inherit;
}



.header {
    background-color: var(--background-green-color);
    direction: rtl;
    position: fixed;
    
    width: 100%;
    border-bottom: 1px solid var(--background-grey-color);
    top: 0; /* for making header fixed when scrolig below */
    z-index: 1000;
}


.header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}


/* nav destpek */
.nav-item1 {
    background-color: var(--background-grey-color);
    padding: 0;
    margin: -20px;
    padding: 2px 10px 2px 25px;
    border-radius: 10px 0px 0px 0px;
}

.nav-link1 {
    color: var(--white-color);
    
}






/* logo */
/* logo */
/* logo */
/* logo */
/* logo */
.logo img {
    width: 70px;
    margin-top: 8px;

}

.nav {
    padding: 0 20px;
}



.nav-list {
    display: flex;
    column-gap: 40px;
}





.nav-link {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;

    transition: color 0.1s;
}







/* hover */
.nav-link:hover,
.nav-link:focus {
    color: var(--grey-color);
    opacity: 0.6;
}

















/* hamburger menu */
/* hamburger menu */
/* hamburger menu */
/* hamburger menu */
/* hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    height: 2px;
    width: 27px;
    background-color: var(--white-color);
    margin: 5px 10px;
    transition: all 0.3s ease-in-out;
}




.nav-open {
    transform: translate(0) !important;
}




.hamburger-open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-open .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}






.nav-link.active,
.nav-link1.active {
  color: var(--grey-color);
  font-weight: bold;
}




/* this header with hamburger mune is being made from this link below */
/* https://www.youtube.com/watch?v=YIVXOMvXmNE&t=16s */