@media screen and (max-width: 1500px){
    .winner-item__link{
        flex-wrap: wrap;
    }
    .slots-grid{
        grid-template-columns: repeat(5, 1fr);
    }
    .footer-navbar ul{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 900px){
    .header-navbar{
        gap: 10px;
    }
    .header-auth .btn{
        padding: 5px 10px;
    }
    .menu-toggle{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-toggle svg{
       width: 25px;
       height: 25px;
      
    }
    .menu-close{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar{
        width: 90%;
        position: fixed;
        left: -100%;
        transition: all .3s ease-out;
    }
    .sidebar.show{
        width: 90%;
        position: fixed;
        left: 0%;
        top: 0;
        bottom: 0;
        transition: all .3s ease-in;
    }
    .content{
        width: 100%;
        padding: 100px 0 0;
    }
    .header-navbar__wrapper{
        padding: 15px;
    }
    .header-slider{
        padding: 0 15px;
    }
    .header-blocks{
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    .slots-nav {
        overflow: auto;
    }
    .slots-nav ul li a{
        display: flex;
        align-items: center;
        width: max-content;
    }
    .slots-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .wins{
        flex-wrap: wrap;
    }
    .winners{
        width: 100%;
    }
    .tour{
        width: 100%;
    }
    .loyalty-items{
        overflow: auto;
        justify-content: flex-start;
    }
    .loyalty-item {
        width: max-content;
    }
   
    .payments{
        overflow: auto;
        justify-content: flex-start;
    }
    .payment-item{
        width: max-content;
    }
    .footer-content {
        flex-wrap: wrap;
        padding: 35px 0;
    }
    .footer-icons{
        justify-content: flex-start;
    }
    .footer-icon {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-icon svg,
    .footer-icon img{
        height: 100%;
    }
}
@media screen and (max-width: 600px){
    .header-brand svg {
        height: 30px;
        width: max-content;
    }
    .header-slide__text{
        font-size: 16px;
    }
    .header-blocks{
        grid-template-columns: repeat(1, 1fr);
    }
    .slots-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .winner-item__link {
        flex-wrap: wrap;
    }
    .tour-title{
        text-align: center;
    }
    .tour-content{
        padding: 55px 20px 40px;
    }
    .tour-fund{
        width: 100%;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .tour-img{
        display: none;
    }
    .tour-time {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tour-action{
        justify-content: center;
    }
    .jackpot-value{
        font-size: 50px;
    }
    .footer-navbar ul{
        flex-direction: column;
    }
    .footer-icon {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-icon svg,
    .footer-icon img{
        height: 100%;
    }
    .popup:after{
        width: 100px;
        height: 100px;
    }
}
@media screen and (max-width: 400px){
    .header-brand svg{
        height: 20px;
    }
    .header-navbar__wrapper{
        padding: 15px 0;
    }
}