@media screen and (max-width:1500px){
    .installation__background, .spins__background, .support__background{
        opacity: 0.5;
    }

    .installation__info, .spins, .home .support{
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media screen and (max-width:1400px){
    .hero__info{
        background-color: rgba(0, 0, 0, 0.8);
        -webkit-border-radius: 12px;
                border-radius: 12px;
    }

    .download{
        padding: 20px;
    }

    .download__button-group{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

@media screen and (max-width:1250px){
    .sidebar{
        display: none;
    }

    .page-nav{
        display: block;
    }

    .main__content, .footer__container{
        width: 100%;
        max-width: none;
    }

    .hero__info{
        margin-left: 0;
    }

    .header__menu{
        margin-left: 100px;
    }
}

@media screen and (max-width:1100px){
    .hero__background img{
        -o-object-position: 40%;
           object-position: 40%;
    }

    .loyalty:has(.loyalty__background) .loyalty__background, .welcome__background{
        opacity: 0.3;
    }

    .loyalty:has(.loyalty__background) > *:not(.loyalty__background){
        max-width: none;
        width: 100%;
    }

    .loyalty:has(.loyalty__background), .welcome{
        background-color: rgba(0, 0, 0, 0.8);
    }

    .download__button-group{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .experience__background{
        opacity: 0.7;
    }

    .experience{
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media screen and (max-width:1000px){
    .header__burger {
        border: 2px solid rgba(55, 197, 158, 1);
        padding: 4px;
        -webkit-border-radius: 8px;
                border-radius: 8px;
        width: 40px;
        height: 40px;
        background-color: transparent;
        margin-left: 20px;
        z-index: 500;
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 6px;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
   }

   .header__burger span{
        display: block;
        width: 100%;
        height: 2px;
        background-color: rgba(55, 197, 158, 1);
        -webkit-border-radius: 8px;
                border-radius: 8px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .header__burger.active span:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
            -ms-transform: translateY(8px) rotate(45deg);
                transform: translateY(8px) rotate(45deg);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
            -ms-transform: translateY(-8px) rotate(-45deg);
                transform: translateY(-8px) rotate(-45deg);
    }

    .header__menu{
        display: none;
        position: static;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        margin-left: 0;
    }

    .header__menu ul{
        background-color: transparent;
    }

    .mobile-menu .header__menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .reviews__item{
        width: -webkit-calc((100% - 17px) / 2);
        width: calc((100% - 17px) / 2);
    }

    .specifications__info > *:not(.specifications__background) {
        width: 100%;
    }

    .specifications__background{
        opacity: 0.3;
    }

    .footer__info{
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .footer__info p{
        max-width: none;
    }

    .pros-cons__table tbody td{
        padding: 20px;
    }

    .banner__background img{
        -o-object-position: 50%;
           object-position: 50%;
    }

    .overview__background, .mobile__background, .coverage__background, .esports__background, .traditional__background{
        opacity: 0.3;
    }

    .overview__info:nth-child(4), .mobile__info, .coverage__info:nth-child(3), .traditional__info:has(.traditional__background),
    .esports__info:has(.esports__background){
        background-color: rgba(0, 0, 0, 0.8);
    }

    .rating__list li{
        width: -webkit-calc((100% - 32px) / 3);
        width: calc((100% - 32px) / 3);
    }

    .opinion__background img {
        -o-object-position: 10%;
        object-position: 10%;
    }

    .installation__background{
        opacity: 0.3;
    }
}

@media screen and (max-width:850px){
    .hero__info, .banner__info{
        background-color: rgba(0, 0, 0, 0.8);
        -webkit-border-radius: 12px;
                border-radius: 12px;
    }

    .banner__info{
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .banner__background img{
        -o-object-position: right;
           object-position: right;
    }

    .main, .footer{
        padding: 0 20px;
    }

    table tbody td, table thead th{
        padding: 8px 12px;
    }

    .header__container{
        padding: 20px;
    }

    .pros-cons__table{
        width: 100%;
    }

    .providers__list li, .payment__list li{
        width: -webkit-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }

    .traditional__info:has(.traditional__background) > *:not(.traditional__background), .esports__info:has(.esports__background) > *:not(.esports__background){
        width: 100%;
        color: rgba(149, 174, 180, 1);
    }
}

@media screen and (max-width:800px){
    .banner{
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .spins__info{
        width: 100%;
    }

    .spins__background{
        opacity: 0.3;
    }
}

@media screen and (max-width:701px){
    .header__button-auth{
        display: none;
    }

    .mobile-menu .header__button-auth{
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .header__button-auth{
        margin-right: 0;
        margin-left: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .reviews__item{
        width: 100%;
    }

    .reviews__background{
        opacity: 0.2;
    }

    .home .tournaments__info{
        width: 100%;
    }

    .home .tournaments__background{
        opacity: 0.5;
    }

    /* .tournaments{
        background-color: rgba(0, 0, 0, 0.8);
    } */

    .hero__background img{
        -o-object-position: right;
           object-position: right;
    }

    .download{
        background-color: rgba(0, 0, 0, 0.8);
    }

    .download__background{
        opacity: 0.3;
    }

    .download__button-group{
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }

    .footer-menu__item{
        width: -webkit-calc((100% - 40px) / 2);
        width: calc((100% - 40px) / 2);
    }

    .app .responsibility__background{
        opacity: 0.5;
    }

    .app .responsibility{
        background-color: rgba(0, 0, 0, 0.8);
    }

    .responsibility__info, .overview__info:nth-child(4) > *:not(.overview__background), .mobile__info > *:not(.mobile__background),
    .requirements__info:not(:last-child) > *:not(.requirements__background), .coverage__info:nth-child(3) > *:not(.coverage__background){
        width: 100%;
    }
    .installation__info > *:not(.installation__background) {
        width: 100%;
    }

    .requirements__background{
        opacity: 0.3;
    }

    .opinion__info, .register__info{
        width: 100%;
    }

    .opinion__background, .register__background{
        opacity: 0.5;
    }

    .opinion, .register{
        background-color: rgba(0, 0, 0, 0.8);
    }

    .rating__list li {
        width: -webkit-calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
    }
}

@media screen and (max-width:650px){
    .banner{
        min-height: 300px;
    }
}

@media screen and (max-width:600px){
    .section{
        padding: 12px;
    }

    .main, .footer{
        padding: 0 12px;
    }

    .header__container, .footer__container{
        padding: 20px 12px;
    }

    .header__menu ul{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 20px;
    }

    .mobile-menu__content{
        gap: 30px;
    }

    .specifications__info, .bonuses__item, .vip__item, .home .tournaments__list, .games__list, .table-games__item, .opinion__info,
    .welcome__item, .reload__info, .offers__info, .loyalty__info, .cashback__item, .bonus .tournaments__info,
    .overview__info, .mobile__info, .requirements__info, .responsibility__info, .coverage__info, .experience__info, .features__info, .interface__info,
    .pros-cons__data, .intro__info, .traditional__info, .vip__info{
        padding: 12px;
    }

    .section ul:not([class]) li, .section ol:not([class]) li,
    .payment__list li, .providers__list li{
        padding: 12px 16px 12px 50px;
        font-size: 15px;
    }

    .section ul:not([class]) li::before,
    ul.payment__list li::before, ul.providers__list li::before{
        left: 14px;
    }

    .section ol:not([class]) li::before,
    ol.payment__list li::before, ol.providers__list li::before{
        left: 14px;
    }

    .deposits__background{
        opacity: 0.7;
    }

    .deposits{
        background-color: rgba(0, 0, 0, 0.8);
    }

    .footer__info p{
        text-align: center;
    }

    .providers__list li, .payment__list li{
        width: 100%;
    }
}

@media screen and (max-width:500px){
    .footer-menu__item{
        width: 100%;
        max-width: none;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .footer__category{
        text-align: center;
    }

    .footer__extra{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .hero__background img{
        -o-object-position: 70%;
           object-position: 70%;
    }

    .rating__list li {
        width: 100%;
    }
}

@media screen and (max-width:400px){
    .reviews__name{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }
}