.Select_Your_Game {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
}

.Select_Your_Game .gameWrapper {
  position: relative;
  width: 850px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

/* Common */

.Select_Your_Game .gameWrapper .gameCard {
  position: absolute;
  transition: all 0.6s ease;
  cursor: pointer;
}

.Select_Your_Game .gameWrapper .gameCard img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: all 0.4s ease;
}

/* .Select_Your_Game:hover .gameCard img {
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5))
    drop-shadow(0 0 10px rgba(255, 193, 7, 0.5))
    drop-shadow(0 0 16px rgba(255, 193, 7, 0.3));
} */

.Select_Your_Game:hover .gameCard img {
  -webkit-filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.8))
    drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.8))
    drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
}

/* Left */

.Select_Your_Game .gameWrapper .leftCard {
  width: 340px;
  left: 120px;
  bottom: -35px;
  z-index: 1;
}

.Select_Your_Game:hover .leftCard {
  transform: scale(1.2) translateX(-220px);
  /* z-index: 1; */
  width: 400px;
}

/* Center */

.Select_Your_Game .gameWrapper .centerCard {
  width: 195px;
  height: 100%;
  z-index: 5;
}

.Select_Your_Game:hover .centerCard {
  transform: translateY(-30px) scale(1.05);
}

/* Right */

.Select_Your_Game .gameWrapper .rightCard {
  width: 340px;
  right: 120px;
  bottom: -35px;
  z-index: 1;
}

.Select_Your_Game:hover .rightCard {
  transform: scale(1.2) translateX(220px);
  width: 400px;
}

/* Title */

.Select_Your_Game .gameTitle {
  font-size: 30px;
  font-family: "Exo";
  color: #fff;
  font-weight: 300;
  margin-top: 70px;
  text-align: center;
  transition: all 0.6s ease;
}

.Select_Your_Game:hover .gameTitle {
  letter-spacing: 18px;
}

/*========================== Responsive ============================= */

@media (min-width: 0px) and (max-width: 991px) {
  .mobile_view .mobile_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .Select_Your_Game {
    min-height: 100%;
    padding: 0px 20px;
  }

  .Select_Your_Game .gameTitle {
    font-size: 22px;
    margin-top: 10px;
  }

  .Select_Your_Game:hover .gameTitle {
    letter-spacing: 0;
  }

  .Select_Your_Game .gameWrapper {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Select_Your_Game:hover .leftCard {
    transform: scale(1.2) translateX(-110px);
    width: 300px;
  }

  .Select_Your_Game:hover .rightCard {
    transform: scale(1.2) translateX(110px);
    width: 300px;
  }

  .Select_Your_Game .gameTitle {
    font-size: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .Select_Your_Game:hover .leftCard {
    transform: scale(1.2) translateX(-160px);
    width: 350px;
  }

  .Select_Your_Game:hover .rightCard {
    transform: scale(1.2) translateX(160px);
    width: 350px;
  }
}
