/**** Sass Variables ****/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.game-card-wrapper {
  width: 256px;
  height: 319px;
  position: relative;
}

.game-card {
  position: relative;
  top: 50%;
  left: 50%;
  width: 256px;
  height: 319px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.game-card .game-card-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  transition: .5s;
}
.game-card:hover img {
  opacity: 0.4;
  transition: .5s;
}

.game-card:hover .game-card-image {
  transform: translateY(-100px);
  transition: all .9s;
}

/**** Social Icons *****/
.social-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
}
.social-icons li {
  list-style: none;
}
.social-icons li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  font-size: 23px;
  color: #007bff;
  font-weight: bold;
  margin: 0 6px;
  transition: .4s;
  transform: translateY(200px);
  opacity: 0;
  border-radius: 5px;
}

.game-card:hover .social-icons li a {
  transform: translateY(0px);
  opacity: 1;
}

.social-icons li a:hover {
  background: #007bff;
  transition: .2s;
}
.social-icons li a:hover .fab {
  color: #fff;
}

.social-icons li a .fab {
  transition: .8s;
}
.social-icons li a .fab:hover {
  transform: rotateY(360deg);
  color: #fff;
}

.social-icons li a:hover .fas {
  color: #fff;
}

.social-icons li a .fas {
  transition: .8s;
}
.social-icons li a .fas:hover {
  transform: rotateY(360deg);
  color: #fff;
}

.game-card:hover li:nth-child(1) a {
  transition-delay: 0.1s;
}

.game-card:hover li:nth-child(2) a {
  transition-delay: 0.2s;
}

.game-card:hover li:nth-child(3) a {
  transition-delay: 0.3s;
}

.game-card:hover li:nth-child(4) a {
  transition-delay: 0.4s;
}

/**** Personal Details ****/
.details {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100px;
  z-index: 1;
  padding: 20px 10px;
  text-align: center;
}
.details h2 {
  margin: 30px 0;
  padding: 0;
  text-align: center;
}
.details h2 .job-title {
  font-size: 1rem;
  line-height: 2.5rem;
  color: #333;
  font-weight: 300;
}


.profile-two .social-icons li a {
  border-radius: 50%;
}

.game-card:hover .profile-img--two {
  transform: rotateY(180deg);
}

.game-card:hover .jane {
  bottom: 0;
  left: 0;
  transition-delay: 0.5s;
  opacity: 1;
}

.fixed-right-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1030;
  margin: 0 10px 10px 0;
}

.btn_all_pre {
  display: block;
  width: 229px;
  height: 284px;
  transition: 0.5s all;
  cursor: pointer;
  background: url(../images/banner/popup_altf42.png) 0 100% no-repeat;
}

.ad{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1030;
  margin: 0 10px 10px 0;
}

.ad-close{
  position:absolute;
  top:18px;
  right:12px;
  text-decoration:none;
  color:#000;
  padding: 2px;
}
