@media(min-width:1500px) and (max-width:1600px){
    .header-right-wrapper{margin-right:50px}
   
}
@media only screen and (min-width:550px) and (max-width:767px)
{
    .slider-button a.white-btn{margin-left:0;margin-top:15px}

}
@media(min-width:993px){
    .sub-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none; /* Başlangıçta gizli */
        position: absolute;
        background-color: #ffffff;
        border: 1px solid #ddd;
        z-index: 1000;
    }
    
    .sub-menu li {
        position: relative; /* Alt menü için gerekli */
    }
    
    .sub-menu a {
        display: block;
        padding: 40px;
        text-decoration: none;
        color: #333;
    }
    
    li:hover > .sub-menu {
        display: block; /* Üzerine gelince alt menüyü aç */
    }
    
    .sub-menu li:hover > .sub-menu {
        left: 70%; /* Alt menüyü sağa kaydır */
        margin-top: -15%;
        top: 0;
        display: block;
    }
   
}