/******* üst menu *******/
.top-menu {
    width: 100%;
    background-color: snow;
    height: 150px;
}

.top-menu-img {
    float: left;
}

.top-menu-img img {
    width: 100%;
}

.top-menu-text {
    position: fixed;
    top: 30px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1000;
}

.bars-menu {
    transition: 0.3s;
}



/******* perde menu *********/
.menu {
    position: fixed;
    overflow: auto;
    width: 375px;
    height: 100%;
    right: -380px;
    background-color: rgb(255, 255, 255);
    transition: 0.7s;
    border: 0.5px solid rgba(99, 99, 99, 0.37);
    z-index: 10000;
}

.menu-bar {
    width: 100%;
    height: 100%;
}

.menu-close {
    width: 100%;
    height: 30px;
    position: relative;
    font-size: 35px;
    color: red;
    cursor: pointer;
    transition: 0.5s;
}

.menu-close-bar {
    position: relative;
    width: 20px;
    height: 50px;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.5s;

}

.menu-img {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(99, 99, 99, 0.37);
}

.menu-text {
    margin-top: 40px;
}

.menu-li {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(99, 99, 99, 0.37);
}

.menu-li li {
    font-size: 20px;
}

.menu-li a {
    color: rgb(18, 155, 141);
    text-decoration: none;
}

.li-span {
    color: rgba(82, 82, 82, 0.507);
    font-size: 16px;
}



/*******   css olaylar  *********/

.menu-close:hover .menu-close-bar {
    transform: rotate(360deg);
}

.top-menu-text:hover {
    color: rgb(105, 175, 0);
}

.menu-li a:hover {
    color: rgb(18, 155, 141);
    text-decoration: none;
}