
/*--------------------------------------------------------------
#GAME CARD
--------------------------------------------------------------*/
  .games-container{
    margin: 0 50px;
  }
  .card-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .big-games .row.content{
    margin-bottom: 200px;
  }

  .row.content .game-name{
    font-size: 24px;
    font-weight: 600;
  }

  .row.content .play-button img{
    transition: all 0.3s;
    width: 25%; 
    opacity: .9;
  }
  .row.content .play-button img:hover{
    transform: scale(1.1);
  }
  @media (max-width: 990px){
    .big-games{
        margin: 50px 0px;
    }
    .games-container{
      margin: 0;
    }
    .row.content{
      margin: 0 0 50px 0 !important;
    }

    .row.content .card{
        height: 190px !important;
    }

    .row.content .game-name{
        display: none;
    }
  }
  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  
  /* .portfolio-item {
    position: relative;
    border: 1px solid var(--color-white);
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
  }
  
  .portfolio-item img {
    transition: all 0.3s;
    border-radius: 16px;
  }
  
  .portfolio-item:before {
    content: "";
    inset: 0;
    position: absolute;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 2;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
  }
  
  .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-default);
    color: var(--color-default);
  }
  
  .portfolio-item:hover img {
    filter: brightness(75%);
  }
  
  .portfolio-item:hover .portfolio-info {
    opacity: 1;
    inset: auto -5px 0 0;
    background: var(--color-white);
  } */


