.box {
  width: 100%;
  min-height: 100px;
  padding: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  .gameList {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    .gameItem {
      display: flex;
      flex-direction: column;
      width: 30%;
      min-width: 300px;
      padding: 3%;
      position: relative;
      padding-top: 300px;
      background-image: url("../../../media/games/1.png");
      background-size: 100%;
      background-repeat: no-repeat;
      overflow: hidden;
      .gameText {
        
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        position: absolute;
        bottom: -90px;
        left: 0;
        padding: 3%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: all 0.5s ease;
        span{
          color: #999;
        }
        h5{
          color: #fff;
          margin-bottom: 30px;
        }
        &:hover {
          bottom: 0px;
        }
      }
      @media (max-width: 768px) {
        .gameText {
          bottom: 20px;
        }
      }
    }
    @media (max-width:768px) {
      .game_box{
        width: 100%;
      }
    }
    
    .game2 {
      background-image: url("../../../media/games/2.png");
    }
    .game3 {
      background-image: url("../../../media/games/3.png");
    }
  }
  .gameDetails {
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    background-color: #20202b;
    border-radius: 20px;
    padding: 0;
    margin-top: 30px;
    height: 0px;
    overflow: hidden;
    .gameBanner {
      width: 45%;
      min-width: 400px;
    }
    @media (max-width:768) {
      .gameBanner {
        display: none !important;
      }
    }
    .details{
      width: 45%;
      min-width: 400px;
      h5{color: #fff;}
      p{color: #999;}
    }
  }
}

/* swiper css */
.gameSwiperBox {
  width: 100%;
  min-width: 400px;
  height: auto;
  min-height: 100px;
  margin: 100px 0 50px;
  .swiper-wrapper{
    .swiper-slide{
      display: flex;
      justify-content: center;
      img{
        margin-bottom: 30px;
        border-radius: 20px;
      }
    }
  }
}



/* faq css */
.details_faq_box{
    width: 100%;
    height: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    color: #e2e2e2;
    .faq_item{
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: all .5s ease;
        border: 1px solid #636363;
        .faq_q{
          color: #fff;
          font-size: 20px;
            box-sizing: border-box;
            padding: 15px;
            padding-right: 40px;
            border-radius: 5px;
            background-color: #29293d;
            /* background: linear-gradient(90.53deg, #130a65 -23.97%, #5b119a 108.85%) padding-box, linear-gradient(94.29deg, #3f01ff -19.75%, #f800ff 118.22%) border-box; */
            margin: 0;
            border-bottom: 1px solid #636363;
            transition: all .5s ease;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            &::after{
                content: " ";
                position: absolute;
                right: 10px;
                transition: all .5s ease;
                display: inline-block;
                width: 20px;
                height: 20px;
                margin-right: 5px;
                background-image: url(./icon.png);
                background-size: cover;
                transform: rotate(-90deg);
            }
        }
        .active_faq_q{
            &::after{
                transform: rotate(0deg);
            }
        }
        .faq_a{
            padding: 15px 15px;
            margin: 0;
        }
    }
    .active_faq_item{
        background-color: #404040;
    }
}