
.fastgames{
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  
  .fastgames_up{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .fastgames_up_tittle{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Onest", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.56px;
  }
  
  .fastgames_up_arrow{
    vertical-align: middle;
    margin-left: auto;
    cursor: pointer;
    transition: all .5s;
    display: inline-flex;
  }
  
  .fastgames_up_arrow:hover{
    opacity: .5;
  }
  
  .fastgames_games{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: calc(20% - 13px) calc(20% - 13px) calc(20% - 13px) calc(20% - 13px) 20%;
    grid-column-gap: 13px;
    grid-row-gap: 15px;
    margin-top: 18px;
  }
  
  .fastgames_game_image{
    vertical-align: middle;
    width: 100%;
    height: 100%;
    max-width: 253px;
    max-height: 166px;
    border-radius: 13.3px;
    object-fit: cover;
    cursor: pointer;
    transition: all .5s;
    
  }
  
  .fastgames_game_image:hover{
    opacity: .5;
  }

  .fastgames_games--cards {
    grid-template-columns: repeat(5, 1fr);
  }

  .fastgames_games--cards .game-card_title {
    font-size: 13px;
  }


  @media (min-width: 320px) and (max-width: 499px){
    .fastgames_up_tittle{
      gap: 5px;
      font-size: 20px;
    }
    .fastgames_up_tittle svg{
      height: 20px;
    }
    .fastgames_games{
      grid-template-columns: calc(50% - 10px) 50%;
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 10px;
    }
    .fastgames_game_image{
      max-width: 100%;
      max-height: 100px;
    }
    .fastgames_game_image:hover{
      opacity: 1;
    }
    .fastgames_up_arrow{
      width: 15px;
    }
  }

  @media (min-width: 500px) and (max-width: 799px){

    .fastgames_games{
      grid-template-columns: calc(50% - 10px) 50%;
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      margin-top: 15px;
    }
    .fastgames_game_image{
      max-width: 100%;
      max-height: 350px;
    }
    .fastgames_game_image:hover{
      opacity: 1;
    }

  }