
.responsive-main-manu {
    width: 100%;
    height: 100vh; /* Tam ekran yüksekliği */
    position: fixed; /* Ekrana sabitlenmesi için */
    top: 0;
    left: -100%; /* Soldan başlasın */
    overflow-y: auto;
    overflow-x: hidden;
    background: black;
    z-index: 99999;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    transition: all 150ms;
    
}

.menu-area{
  margin-left: -30px ;
}

.responsive-main-manu li, .responsive-main-manu li a{
    cursor: pointer;
    color: white;
    list-style: none; 
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 45px;
   
}

.close-btn{
    background-color: transparent;
    color: white;
    border: none;
    font-size: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.respMenu-button{
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.responsive-main-manu.active{
    left: 0 !important;
}

@media (max-width: 991px) {
    .respMenu-button{
        display: block;
      
    }
}