.Select_Your_Game {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
}

/* ================================
   GAME WRAPPER
================================ */

.Select_Your_Game .gameWrapper {
  position: relative;
  width: 900px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

/* ================================
   COMMON CARD
================================ */

.Select_Your_Game .gameWrapper .gameCard {
  position: absolute;
  transition:
    transform 0.6s ease,
    width 0.6s ease,
    left 0.6s ease,
    right 0.6s ease;
  cursor: pointer;
}

.Select_Your_Game .gameWrapper .gameCard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* ================================
   HOVER GLOW
================================ */

.Select_Your_Game:hover .gameCard img {
  -webkit-filter:
    drop-shadow(0 0 6px rgba(255, 193, 7, 0.8))
    drop-shadow(0 0 12px rgba(255, 193, 7, 0.5));

  filter:
    drop-shadow(0 0 6px rgba(255, 193, 7, 0.8))
    drop-shadow(0 0 12px rgba(255, 193, 7, 0.5));
}

/* ================================
   LEFT CARD
================================ */

.Select_Your_Game .gameWrapper .leftCard {
  width: 340px;
  height: 230px;

  left: 50px;
  bottom: 0;

  z-index: 2;
}

/* ================================
   RIGHT CARD
================================ */

.Select_Your_Game .gameWrapper .rightCard {
  width: 340px;
  height: 230px;

  right: 50px;
  bottom: 0;

  z-index: 2;
}

.Select_Your_Game .gameWrapper .centerCard {
    width: 300px;
    height: 320px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 5;
}

.Select_Your_Game:hover .leftCard {
  width: 370px;
  height: 250px;

  transform: translateX(-100px) scale(1.05);
}

/* ================================
   HOVER - RIGHT
================================ */

.Select_Your_Game:hover .rightCard {
  width: 370px;
  height: 250px;

  transform: translateX(100px) scale(1.05);
}

/* ================================
   HOVER - CENTER
================================ */

.Select_Your_Game:hover .centerCard {
  transform: translateX(-50%) translateY(-25px) scale(1.05);
  z-index: 10;
}

/* ================================
   TITLE
================================ */

.Select_Your_Game .gameTitle {
  font-size: 30px;
  font-family: "Exo";
  color: #fff;
  font-weight: 300;

  margin-top: 55px;

  text-align: center;

  transition:
    letter-spacing 0.6s ease,
    transform 0.6s ease;
}

.Select_Your_Game:hover .gameTitle {
  letter-spacing: 12px;
}

/* ================================
   LARGE DESKTOP
================================ */

@media (min-width: 1400px) {
  .Select_Your_Game .gameWrapper {
    width: 1000px;
    height: 340px;
  }

  .Select_Your_Game .gameWrapper .leftCard,
  .Select_Your_Game .gameWrapper .rightCard {
    width: 380px;
    height: 255px;
  }

  .Select_Your_Game .gameWrapper .leftCard {
    left: 40px;
  }

  .Select_Your_Game .gameWrapper .rightCard {
    right: 40px;
  }

  .Select_Your_Game:hover .leftCard {
    width: 400px;
    height: 270px;
    transform: translateX(-110px) scale(1.04);
  }

  .Select_Your_Game:hover .rightCard {
    width: 400px;
    height: 270px;
    transform: translateX(110px) scale(1.04);
  }
}

/* ================================
   1200px - 1399px
================================ */

@media (min-width: 1200px) and (max-width: 1399px) {
  .Select_Your_Game .gameWrapper {
    width: 900px;
  }

  .Select_Your_Game .gameWrapper .leftCard,
  .Select_Your_Game .gameWrapper .rightCard {
    width: 340px;
    height: 230px;
  }

  .Select_Your_Game:hover .leftCard {
    width: 370px;
    height: 250px;
    transform: translateX(-90px) scale(1.04);
  }

  .Select_Your_Game:hover .rightCard {
    width: 370px;
    height: 250px;
    transform: translateX(90px) scale(1.04);
  }
}

/* ================================
   992px - 1199px
================================ */

@media (min-width: 992px) and (max-width: 1199px) {
  .Select_Your_Game .gameWrapper {
    width: 800px;
    height: 290px;
  }

  .Select_Your_Game .gameWrapper .leftCard,
  .Select_Your_Game .gameWrapper .rightCard {
    width: 300px;
    height: 205px;
  }

  .Select_Your_Game .gameWrapper .leftCard {
    left: 30px;
  }

  .Select_Your_Game .gameWrapper .rightCard {
    right: 30px;
  }

  .Select_Your_Game .gameWrapper .centerCard {
    width: 190px;
    height: 280px;
  }

  .Select_Your_Game:hover .leftCard {
    width: 325px;
    height: 220px;
    transform: translateX(-75px) scale(1.04);
  }

  .Select_Your_Game:hover .rightCard {
    width: 325px;
    height: 220px;
    transform: translateX(75px) scale(1.04);
  }

  .Select_Your_Game .gameTitle {
    font-size: 24px;
  }
}

/* ================================
   MOBILE
================================ */

@media (min-width: 0px) and (max-width: 991px) {
  .Select_Your_Game {
    min-height: auto;
    padding: 30px 20px 40px;
  }

  .Select_Your_Game .gameWrapper {
    display: none;
  }

  .Select_Your_Game .mobile_view {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }

  .Select_Your_Game .mobile_view .mobile_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .Select_Your_Game .gameTitle {
    font-size: 20px;
    margin-top: 20px;
  }

  .Select_Your_Game:hover .gameTitle {
    letter-spacing: 0;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 575px) {
  .Select_Your_Game {
    padding: 20px 15px 35px;
  }

  .Select_Your_Game .mobile_view {
    max-width: 100%;
  }

  .Select_Your_Game .gameTitle {
    font-size: 19px;
  }
}