header #header-right #ikon-menu{
    color: rgb(0, 0, 0);
}

header {
    background-color: rgb(255, 255, 255);
    padding-top: 0;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 30px 0px;
    top: 0;
}
header  #header-container #header-right #h-ul-container .li a{
    color: black;
}



#category{
    width: 100%;
    margin-bottom: 7rem;
}
#category #category-container{
    width: 78%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
#category #category-container .categories-container{
    flex: 0 1 calc(25% - 10px);
    height: 24rem;
    width: auto;
    border-radius: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.141);
    padding: 2rem 2rem;
    color: black;
    position: relative;
    background-color: white;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.148);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 9px 19px;
    box-shadow: 0 7px 1rem #00000051;
    backdrop-filter: blur(0.8px);
}
#category #category-container .categories-container:hover .overlay{
    opacity: 1;
    border: none;
    transition: opacity 0.7s ease;
}
#category #category-container .categories-container:hover .overlay p{
    font-size: 1.8rem;
    font-weight: 900;
    width: 75%;
    height: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #67d3ddbd;
    border-radius: 9px 19px;
}
#category #category-container .categories-container:hover .categories{
    transform:scale(1.05);
    border: none;
}
#category #category-container .categories-container:hover{
    border-color: rgba(255, 255, 255, 0);
}
#category #category-container .categories-container .categories{
    width: 100%;
    height: 100%;
}
#category #category-container .categories-container .categories img{
    z-index: 500;
    width: 100%;
    height: 70%;
    object-fit: contain;
    align-items: center;
}

#category #category-container .categories-container .categories .categories-title{
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}


/* TRANSİTİON */
#category-container .categories-container{
    transform: translateX(-40px);
    transition: all 0.1s ease;
    opacity: 0;
}
#category-container .categories-container.active{
    transform: translateX(0px);
    opacity: 1;
}



@media (max-width: 1200px) {
    #category #category-container{
        width: 90%;
    }
}
@media (max-width: 992px) {
    #category #category-container{
        flex-wrap: wrap;
    }
    #category #category-container .categories-container{
        flex: 1 0 45%;
    }
}
@media (max-width: 500px) {
    #category #category-container .categories-container{
        height: 25rem;
    }
    #category #category-container{
        width: 95%;
    }
}