@charset "utf-8";
 

/* -------- title style ------- */
.line-title {
  position: relative;
  width: 350px;
}
.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.line-title::after {
  width: 32px;
  background: #e73700;
}

.item-desc h3{ font-size: 40px; font-weight:500;}
.item-desc h3 i{ float: left; margin-top:0; margin-right:10px;}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  padding:0px 0px 0px 11%;
}
.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.game-section .item {
  margin: 0 2px 0px;
  width: 400px;
  height: 650px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: no-repeat center center / cover;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.game-section .item.active {
  width: 700px;
 
 
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
   
}
.game-section .item-desc {
  padding: 0 24px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
 
.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  

  /* -------- Landing page ------- */
  .game-section {
    padding:0px 0px 0px 5%;
  }
  .game-section .item {
    margin: 0 2px 0px;
    width: 260px;
    height: 360px;
  }
  .game-section .item-desc{
    padding: 18px 24px 20px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .item-desc h3{ font-size: 20px;}
  .item-desc h3 i{width: 30px;}
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
 .game-section .item-desc{
    padding: 25px 24px 20px;
  }
  .line-title {
    width: 330px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 0px 2px 0px 5%;
  }
  .game-section .item {
    margin: 0 2px 0px;
    width: 240px;
    height: 330px;
  }
  .game-section .item.active {
    width: 360px;
  }
  /*.game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }*/
  .item-desc h3{ font-size:20px;}
  .item-desc h3 i{ width: 20px;}
  .footer{
      padding: 50px 0 0px 0
  }
}

@media (max-width: 767px) {
 
  .line-title {
    width: 250px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 0px 0 0 20px;
  }
  .game-section .item {
    margin: 0 2px 0px 0px;
    width: 200px;
    height: 280px;
  }
  .game-section .item.active {
    width: 270px;
  
  }
  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
  .item-desc h3{ font-size: 15px;}
  .item-desc h3 i{ width: 15px;}

}