/*--------NAVBAR-------*/
#navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top:1.2rem;
    padding-bottom:1.2rem;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 100;
    transition: all .4s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: .2rem;
}

#navbar.sticky{
    background: #151515;
    padding:.4rem;
    box-shadow: 0 .1rem .5rem rgba(255,255,255,.4);
}

#navbar.degistir{
    background: black;
}

#navbar-img{
    height: 7rem;
}

#navbar-img.sticky{
    height: 6rem;
}

#navbar-links1{
    display: flex;
    flex-direction: row;
}

#navbar-links1 a{
    padding:.8rem 1rem;
    margin-left:.8rem;
    color:#dbdbdb;
    font-size: 1.2rem;
}

#navbar-links1 a:first-child{
    margin-left:0;
}

#navbar-links1 a:hover{
    color:white;
}

#navbar-list-button{
    cursor: pointer;
}

#navbar-list{
    display: flex;
    flex-direction: column;
    position:absolute;
    bottom:0;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
    box-shadow: .1rem .1rem .5rem rgba(255,255,255,.6);
}

#navbar-list.degistir{
    opacity: 1;
    bottom: -6.5rem;
    
}

#navbar-list.sticky.degistir{
    opacity: 1;
    bottom: -9rem;
}

.navbar-urun-item{
    margin: 0 !important;
    background-color: #151515;
}

#navbar-button{
    display: none;
    outline: none;
}

#navbar-links2{
    position: fixed;
    top:8.4rem;
    right:-100%;
    z-index: 200;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    transition: all .4s ease;
    display: none;
    font-family: 'Raleway', sans-serif;
    letter-spacing: .2rem;
}

#navbar-links2.degistir{
    right:0%;
}

#navbar-links2.sticky{
    top:6.8rem;
}

.nav2-item{
    width: 100%;
    display: inline-block;
    font-size: 2rem;
    padding:1.7rem 0;
    
    border-bottom:1px solid rgb(109, 109, 109);
}

#urunler2{
    display: flex;
    flex-direction: column;
}

#nav2-urunler {
    display: flex;
    flex-direction: column;
}

#nav2-urun-button{
    
    padding: 0;
    padding-top: 1.7rem;
}

#nav2-urunler a{
    padding:1.7rem 0;
    padding-left:5rem;
    font-size: 2rem;
    border-bottom:1px solid rgb(109, 109, 109);
}

#navbar-links2 a:last-child{
    border:none;
}

#navbar-button{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:.5rem;
    background-color: inherit;
    color: rgb(231, 231, 231);
    border:none;
    position: relative;
    display: none;
}

#cubuk1{
    display:flex;
    width: 5rem;
    height: .2rem;
    background-color: white;
    margin-bottom: 1rem;
    transition: all .4s ease;
}

#cubuk1.degistir{
    transform: rotate(-25deg);
}

#cubuk2{
    display:flex;
    width: 5rem;
    height: .2rem;
    background-color: white;
    transition: all .4s ease;
}

#cubuk2.degistir{
    transform: rotate(25deg);
    position: absolute;
}

@media (max-width: 992px) {
    #navbar-button{
        display: flex;
    }

    #navbar-links1{
        display: none;
    }
    
    #navbar-links2{
        display: flex;
    }

    #navbar-img{
        height: 6rem;
    }
    
}






