#banners{
    display: flex;
    grid-gap: 25px;
    padding-top: 25px;
}
.banners__photo{
    height: 100%;
    position: relative;
    width: 57.8%;
}
.banners__photo a, .banners__sm a{
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
}
.banners__photo a>img, .banners__sm a>img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.banners__offer{
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    left: 0;
    padding: 90px 25px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.banners__offer .h2{
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 900;
}
.banners__offer .h4{
    font-size: 20px;
    font-weight: 400;
    max-width: 400px;
    width: 100%;
}
.banners__sm{
    height: 100%;
    position: relative;
    width: 19.3%;
}
.banners__btn{
    border: none;
    display: inline-block;
    font-weight: 600;
    height: 50px;
    max-width: 250px;
    width: 100%;
    background-image: linear-gradient(285.39deg,#ffb800 -4.36%,#fff173 115.87%);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255,241,115,.5);
    transition: .3s;
    font-size: 16px;
}
.banners__btn:hover{
    box-shadow: 0 0 18px rgba(255,241,115,.7);
    transform: scale(1.05);
}
.banners__btn_white{
    background: #fff;
    border: none;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    height: 50px;
    max-width: 250px;
    width: 100%;
    transition: 0.3s;
    font-size: 16px;
}
.banners__btn_white:hover{
    background-color: #d8e5fd;
}

#categories__main{
    padding-top: 25px;
}
.categories__fl{
    display: flex;
    justify-content: space-between;
}
.categories__card{
    align-items: center;
    background: linear-gradient(90deg,#1d273e,#11182a);
    border-radius: 12px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    padding: 15px 20px;
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
}
.categories__card:first-child{
    margin-left: 0;
}
.categories__card:before {
    background: linear-gradient(90deg,#2d3c5e,#1b2642);
    border-radius: 12px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: .2s;
    width: 100%;
    z-index: 1;
}
.categories__card:hover:before {
    opacity: 1;
}

.categories__card_wrap{
    position: relative;
    z-index: 2;
    color: #fff;
}
.categories__card_wrap strong{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.categories__card_wrap span{
    color: #fff;
    font-size: 16px;
    display: block;
}
.categories__card_img{
    max-width: 52px;
    transition: .3s;
    position: relative;
    z-index: 2;
}
.categories__card:hover img {
    transform: translateZ(10px) rotate(-10deg);
}

#review-online{
    background: linear-gradient(90deg,#1d273e,#11182a);
    border-radius: 12px;
    margin-top: 25px;
    padding: 30px;
    position: relative;
}
#review-online:before {
    background-image: linear-gradient(90deg,#8d53e9,#00b7ff);
    background-size: 200% auto;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    content: "";
    display: block;
    height: 4px;
    left: 25px;
    position: absolute;
    right: 25px;
    top: 0;
}

.review__main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.review__block h1{
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
}
.review__block .check{
    margin: 20px 0;
    max-width: 338px;
    width: 100%;
}
.review__block .check tr td {
    border: 1px solid #818181;
    padding: 6px 10px;
    font-size: 16px;
}
.review__block .check tr>td:first-child:before {
    background: url(../img/checkbox.svg) 0 0/cover no-repeat;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    width: 18px;
}
.review__sobre{

}
.review__sobre h2{
    color: #fff;
    font-weight: 700;
    margin: 20px 0;
    font-size: 28px;
}

.info-open_btn{
    margin: 0 auto;
    align-items: center;
    background-image: linear-gradient(255deg,#00b7ff,#8d53e9);
    border: none;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-weight: 600;
    justify-content: center;
    padding: 4px 10px;
    position: relative;
    text-decoration: none;
    z-index: 2;
    height: 32px;
}
.info-open_btn:before {
    background-image: linear-gradient(255deg,#3445e2,#9217e4);
    border-radius: 8px;
    content: "";
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: .3s;
    width: 100%;
    z-index: -1;

}
.info-open_btn:hover:before {
    opacity: 1;
}
.info__hidden{
    display: none;
}
.info-open_none{
    display: none;
}
.info__hidden__block{
    display: block;
}
.info__hide_btn{
    display: none;
    position: absolute;
    right: 30px;
    top: 0;
}
.info__hide_btn svg{
    fill: #0095ff;
    cursor: pointer;
    transform: rotate(180deg);
    transition: .2s;
    width: 30px;
}
.info__hide_block{
    display: flex;
}
.review__info__text p{
    margin-top: 3px;
    margin-bottom: 16px;
    font-size: 16px;
}
.review__info__text  a{
    color: #0095ff;
}
.review__info__text h3{
    color: #fff;
    font-weight: 700;
    margin: 20px 0;
    font-size: 22px;
}
.review__info__text ol, .review__info__text ul{
    margin-bottom: 16px;
    padding-left: 32px;
    list-style-type: decimal;
}
.review__info__text ol li{
    margin-top: 4px;
}
.review__info__text ul li{
    list-style: circle;
}

.faq__main{
    margin-top: 40px;
}
.faq__main h2{
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.faq__main>p{
    text-align: center;
    margin-top: 20px;
}
.faq__accordion{
    margin: 40px auto 0;
    max-width: 1045px;
    width: 100%;
}

.faq__block{
    border-radius: 8px;
    box-shadow: 0 0 5px #0095ff;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.faq__box{
    align-items: center;
    background: rgba(78,93,134,.3);
    border-radius: 8px;
    box-shadow: 0 0 5px #0095ff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    position: relative;
}
.faq__box h4{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: 80%;
    padding: 0;
}
.submenu{
    display: none;
}
.submenu p{
    padding: 20px;
}

.faq__plus{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
}
.faq__plus span{
    background-color: #aadcff;
    display: inline-block;
    height: 3px;
    transition: .3s;
    width: 20px;
}
.faq__plus span:last-child {
    transform: translateX(-23px) rotate(90deg);
}
.open .faq__plus span:last-child {
    transform: translateX(-23px) rotate(0deg);
}

#games__main{
    display: flex;
    width: 100%;
}
.games__block{
    background: linear-gradient(90deg,#1d273e,#11182a);
    border-radius: 12px;
    margin-top: 25px;
    padding: 30px;
    position: relative;
    width: 100%;
}

.games__block:before {
    background-image: linear-gradient(90deg,#8d53e9,#00b7ff);
    background-size: 200% auto;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    content: "";
    display: block;
    height: 4px;
    left: 25px;
    position: absolute;
    right: 25px;
    top: 0;
}
.games__block:first-child:before{
    background-image: linear-gradient(90deg,#ff4edf,#ff2958);
}
.games__block + .games__block{
    margin-left: 25px;
}
.games__info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.games__name{
    display: flex;
    align-items: center;
    width: 100%;
}
.games__name h3{
    font-size: 18px;
    font-weight: 700;
}
.games__name span{
    color: hsla(0,0%,100%,.5);
    font-size: 14px;
    margin-left: 10px;
    display: block;
}
.games__info a{
    color: #0095ff;
    font-size: 14px;
}

.games__wrap{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
    margin-top: 25px;
}
.games__box{
    aspect-ratio: 16/11;
    border-radius: 16px;
    display: inline-block;
    height: 100%;
    max-height: 150px;
    max-width: 23.5%;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
    transition: 0.3s;

}
.games__box img{
    max-width: 100%;
    transition: .8s;
}
.games__box:hover img {
    transform: scale(1.1);
}

.games__item_fl{
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.games__item_box{
    display: flex;
    align-items: center;
    padding: 8px;
    background: #2E3A50;
    border-radius: 8px;
    margin-right: 5px;
    margin-top: 5px;
}
.games__item_box span{
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 1700px){
    .games__box {
        max-width: 23.4%;
    }
}
@media (max-width: 1600px){
    .games__box {
        max-width: 23.2%;
    }
}
@media (max-width: 1440px){
    .games__box {
        max-width: 22.8%;
    }
}
@media (max-width: 1320px){
    .banners__offer .h2 {
        font-size: 25px;
    }
    .banners__sm .banners__offer .h2 {
        font-size: 22px;
    }
    .banners__offer {
        padding: 60px 15px;
    }
    .games__box {
        max-width: 22.6%;
    }
}
@media (max-width: 1200px){
    .banners__offer {
        padding: 45px 15px;
    }
    .banners__offer .h4 {
        font-size: 16px;
        max-width: 331px;
    }
    .banners__btn {
        height: 40px;
        max-width: 210px;
        font-size: 15px;
    }
    .banners__btn_white {
        height: 40px;
        font-size: 15px;
    }
    .banners__sm .banners__offer .h2 {
        font-size: 19px;
    }
    .categories__card_wrap strong {
        font-size: 16px;
    }
    .categories__card_wrap span {
        font-size: 14px;
    }
    .games__block {
        padding: 30px 25px;
    }
    .games__wrap {
        grid-gap: 10px;
    }
    .games__box {
        max-width: 23.2%;
    }
}
@media (max-width: 1040px){
    .categories__fl {
        flex-wrap: wrap;
    }
    .categories__card {
        margin-left: 0;
        width: 49%;
        margin-bottom: 20px;
    }

    #review-online {
        margin-top: 15px;
    }
}
@media (max-width: 970px){
    #banners {
        grid-gap: 15px;
        flex-wrap: wrap;
    }
    .banners__photo {
        width: 100%;
    }
    .banners__offer {
        padding: 65px 15px;
    }
    .banners__offer .h2 {
        font-size: 32px;
    }
    .banners__offer .h4 {
        font-size: 19px;
        max-width: 363px;
    }
    .banners__btn {
        height: 50px;
        max-width: 260px;
        font-size: 16px;
    }
    .banners__sm {
        height: 200px;
        width: 48.9%;
    }
    .banners__photo a>img, .banners__sm a>img {
        object-fit: cover;
    }
    .banners__sm .banners__offer {
        padding: 40px 15px;
    }
    .banners__sm .banners__offer .h2 {
        font-size: 24px;
    }
    .banners__btn_white {
        height: 45px;
        font-size: 15px;
    }
    #games__main {
        flex-direction: column;
    }
    .games__box {
        max-width: 23.8%;
    }
    .games__block + .games__block {
        margin-left: 0;
    }
    .games__item_box {
        padding: 6px;
    }
    .games__item_box span {
        font-size: 12px;
    }
}
@media (max-width: 760px){
    .banners__sm {
        height: 200px;
        width: 47.9%;
    }
    .banners__offer {
        padding: 35px 15px;
    }
    .banners__offer .h2 {
        font-size: 26px;
    }
    .banners__offer .h4 {
        font-size: 18px;
    }
    .banners__sm .banners__offer .h2 {
        font-size: 20px;
    }
    .banners__btn {
        height: 40px;
        max-width: 180px;
        font-size: 14px;
    }
    .banners__btn_white {
        height: 40px;
        font-size: 14px;
    }
    .banners__sm .banners__offer {
        padding: 20px 15px;
    }
    .banners__sm {
        height: 150px;
    }
    .review__block h1 {
        font-size: 30px;
        line-height: 34px;
    }
    #review-online {
        padding: 25px;
    }
    .review__sobre h2 {
        font-size: 24px;
    }
    .faq__box {
        padding: 10px 15px;
        height: 80px;
    }
    .games__box {
        max-width: 23.2%;
    }
    .games__block {
        padding: 25px;
    }
}
@media (max-width: 570px){
    .games__box {
        max-width: 31.6%;
    }
    .games__block {
        padding: 25px 15px;
    }
    #review-online {
        padding: 25px 15px;
    }
    .info__hide_btn {
        right: 0;
        top: 0;
        position: relative;
        margin-left: auto;
    }
    .review__main {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .review__block h1 {
        font-size: 28px;
    }
    .categories__card {
        width: 100%;
        margin-bottom: 15px;
    }
    #banners {
        grid-gap: 15px;
        padding-top: 5px;
    }
    .banners__offer .h2 {
        font-size: 20px;
    }
    .banners__offer .h4 {
        font-size: 14px;
        max-width: 256px;
    }
    .banners__offer {
        padding: 20px 15px;
    }
    .banners__btn {
        height: 36px;
        max-width: 160px;
        font-size: 13px;
    }
    .banners__sm {
        height: 110px;
        width: 100%;
    }
    .banners__photo a>img, .banners__sm a>img {
        border-radius: 10px;
    }
    h2 {
        font-size: 17px;
    }
    .banners__btn_white {
        height: 35px;
        font-size: 13px;
        max-width: 170px;
    }
    .categories__card_wrap strong {
        font-size: 19px;
    }
    .info-open_btn {
        padding: 13px 40px;
        height: auto;
        font-size: 16px;
    }
}
@media (max-width: 480px){
    #head__main {
        padding: 15px 0 5px;
    }
    body {
        padding: 58px 15px 60px;
    }
    .banners__offer .h4 {
        font-size: 12px;
    }
    .banners__btn {
        height: 28px;
    }
    .review__sobre h2 {
        font-size: 22px;
        margin: 15px 0;
    }
    .faq__box h4 {
        font-size: 16px;
    }
    .games__box {
        max-width: 31.2%;
    }
    .games__box {
        max-width: 48%;
    }
    .info-open_btn {
        width: 100%;
    }
}
@media (max-width: 370px){
    .banners__btn{
        display: none;
    }
    .banners__btn_white{
        display: none;
    }
}

