/*******carousel game CSS Start ******/
@charset "utf-8";

/******* Common Element CSS Start ******/

.clear {
  clear: both;
}
img {
  /* max-width: 100%; */
  border: 0px;
}
ul,
ol {
  list-style: none;
}
/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
  position: relative;
  padding-top:20px;
  padding-bottom:20px;
  /* line-height: 1px !important; */
  /* width: 400px; */
}
.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;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  /* padding: 30px 5px; */
}
.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.game-section .item {
  margin: 0 5px 5px;
  width: 320px;
  /* height: 400px; */
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  /* background: #343434 no-repeat center center / cover; */
  /* border-radius: 16px; */
  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: 500px; */
  /* box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); */
  /* -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25); */
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); */
}
.game-section .item-desc {
  /* padding: 0 24px 12px; */
  padding: 5px;
  width:100%;
  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;
}
.item-desc img{
	/* max-width:300px  ; */
}
.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

/******** Middle section CSS End *******/
@media (min-width: 1200px) {
  .game-section{
    height: 471px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .game-section .item {
    margin: 0 12px 5px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section{
    height: 431px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .game-section .item {
    margin: 0 12px 5px;
    width: 240px;
    height: 330px;
  }
  .game-section .item.active {
    width: 360px;
  }
   .game-section{
    height: 401px;
  }
}

@media (max-width: 767px) {
   .game-section .item {
    /* margin: 0 10px 40px; */
    margin: 0 5px 5px; /*onderilze*/
    width: 200px;
    /* height: 280px; */
  }
  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
   .game-section{
    /* height: 351px; */
  }
}
@media (max-width: 767px) {
  .game-section{
    /* height: 351px; */
  }
}