@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&amp;display=swap");
body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 10px 0 0 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  display: flex;
  width: fit-content;
  animation: scroll 10s linear infinite;
}

.slider .slide {
  height: 100px;
  width: 250px;
}

a,
button {
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

label {
  margin-bottom: 0;
}

.scrolltotop {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 30px;
  bottom: 25px;
  display: none;
  animation: lab_top_up 5s linear infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #ff27a5;
  z-index: 1;
}

.scrolltotop i {
  color: #ffff;
}

@keyframes lab_top_up {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

.pluse,
.pluse2 {
  position: relative;
  top: 10px;
  left: -8px;
  z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
  -webkit-animation: pluse_animate 2.5s infinite linear;
  animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}

/*==== nev area start===== */

header {
  padding: 20px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  position: fixed;
  max-width: 98%;
  margin: auto;
  width: 100%;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
}

header .container {
  max-width: 99% !important;
  margin: auto;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  max-width: 300px;
  display: inline-block;
  margin-right: 50px;
}

.menu-item {
  display: flex;
  align-items: center;
}

.menu-item ul li {
  margin-left: 10px;
}

.menu-item ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 140px;
  background: linear-gradient(180deg, #171717 0%, #171717 34.22%), #171717;
  width: 148px;
  text-align: center;
}

.menu-item ul li a:hover {
  border-radius: 60px;
  border-bottom: 1px solid #ffdb95;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
}

.active a {
  border-radius: 60px;
  border-bottom: 1px solid #ffdb95;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c !important;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
}

.menu-icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon ul li a {
  transition: 0.3s;
}

.menu-icon ul li a:hover {
  transform: scale(1.2);
}

.section-gap {
  display: block;
  padding: 10px;
}

.menu-bar {
  display: none;
}

.menu-bar a {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.mobile-icon-ss {
  display: none;
}

/*==== nev area end===== */

/*==== sticky-nev start=== */

.fixed-menu {
  background: rgba(0, 0, 0, 0.76);
  position: fixed;
  top: 10px;
  -webkit-animation: slide-down 0.5s !important;
  animation: slide-down 0.5s !important;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  z-index: 250;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&amp;display=swap");
/*==== sticky-nev end=== */

/* ====offcanvas manu start===== */

.offcanvas-header {
  background-color: #0b0b0b;
  border-bottom: 1px solid #ff9e4c;
}

.offcanvas-header h5 img {
  max-width: 100px;
}

.offcanvas-body {
  background-color: #0b0b0b;
  padding: 0px !important;
}

.clloss-x {
  font-size: 25px;
  cursor: pointer;
  color: #fff;
}

.clloss-x:hover {
  color: #fff !important;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 340px;
  z-index: 11111111111111;
}

.mobile-menu-item ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 15px 20px;
  display: block;
  transition: 0.2s;
  text-transform: capitalize;
}

.mobile-menu-item ul li a:hover {
  color: #fff !important;
  border-bottom: 1px solid #ffdb95;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
}

.m-active {
  border-bottom: 1px solid #ffdb95;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
  color: #fff !important;
}

.mobile-menu-item ul li a i {
  font-size: 20px;
  margin-right: 15px;
}

/* ====offcanvas manu end===== */

@keyframes blink {
    0% { opacity: 1;
      text-shadow: 0 0 8px #ff9e4c, 0 0 16px #ff9e4c, 0 0 20px #ff9e4c, 0 0 40px #ff9e4c, 0 0 80px #ff9e4c; }
    50% { opacity: 0.25;
      text-shadow: 0 0 8px black, 0 0 16px black, 0 0 20px black, 0 0 40px black, 0 0 80px black; }
    100% { opacity: 1;
      text-shadow: 0 0 8px #ff9e4c, 0 0 16px #ff9e4c, 0 0 20px #ff9e4c, 0 0 40px #ff9e4c, 0 0 80px #ff9e4c; }
  }
  
  .glowing {
    animation: blink 4s infinite;
  }

/* =====hero-area-start===== */

.hero-area {
  background-color: #0c0c0c;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  position: relative;
  padding: 40px 0 180px;
  border-radius: 20px;
  background: #0c0c0c;
  width: 99%;
  margin: auto;
  background-image: url(img/hero-shedo.png);
  background-repeat: no-repeat;
  background-position: -280px -280px;
}

.hero-title h2 {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 102px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 112.2px */
  text-transform: uppercase;
  margin-top: 210px;
  margin-bottom: 30px;
}

.hero-title h2 span {
  color: #ff9e4c;
}

.hero-area p {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 80px;
}

.hero-title ul {
  display: flex;
  align-items: center;
  gap: 15px;
  /* justify-content: center; */
}

.hero-title ul li a {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 14px */
  text-transform: uppercase;
  display: inline-block;
  padding: 18px 20px;
  transition: 0.3s;
  text-align: center;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title ul li a:hover {
  transform: scale(1.1);
}

.hero-title ul li:first-of-type a {
  border-radius: 60px;
  border-bottom: 1px solid #ffdb95;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #ff9e4c;
  box-shadow: 0px 3px 1px 0px #ff9e4c;
}

.hero-title ul li:last-of-type a {
  border-radius: 60px;
  border-bottom: 1px solid #747474;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 34.22%
    ),
    #1e1e1e;
  box-shadow: 0px 3px 1px 0px #494949;
}

.hero-right {
  margin-top: 100px;
  text-align: center;
  position: relative;
}

.hero-right img {
  max-width: 1200px;
  position: absolute;
  left: -100px;
  top: -100px;
}

/* about area start */

.about-area {
  padding: 80px 0;
  border-radius: 20px;
  background: #0b0b0b;
  width: 99%;
  margin: auto;
}

.about-right {
  padding: 30px;
  border-radius: 22px;
  margin-top: 35px;
}

.about-right h2 {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 66px */
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-right h2 span {
  color: #ff9e4c;
}

.about-right p {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 20px;
}

/* ======our partners area start====== */

.partners-area {
  padding: 80px 0px;
  border-radius: 20px;
  background: #0b0b0b;
  width: 99%;
  margin: auto;
}

.partners-title h2 {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 66px */
  text-transform: uppercase;
  margin-bottom: 58px;
}

.partners-title h2 span {
  color: #ff9e4c;
}

.pretners-items a {
  border-radius: 20px;
  background: #151515;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  height: 91px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s;
}

.pretners-items a img {
  transition: 0.5s;
}

.pretners-items a img:hover {
  transform: scale(1.2);
}

.mas-pra {
  max-width: 590px;
  margin: auto;
}

/* =========Tokenomics area start ========*/

.tokenomics-area {
  padding: 80px 0px;
  border-radius: 20px;
  background: #0b0b0b;
  width: 99%;
  margin: auto;
  background-image: url(img/rd-ng.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.tokenomic-title h2 {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 66px */
  text-transform: uppercase;
  margin-bottom: 58px;
}

.tokenomic-title h2 span {
  color: #ff9e4c;
}

.token-left-item {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 0, 0);
  background: #151515;
  backdrop-filter: blur(2px);
}

.token-left-item2 {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 221, 0.623);
  background: #000000;
  backdrop-filter: blur(2px);
}

.token-left-item:last-of-type {
  margin-top: 30px;
}

.copy-notification {
  color: #000;
  background-color: #09ff00;
  padding: 10px;
  border-radius: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150px;
  margin-top: -30px;
  margin-left: -85px;
  display: none;
  text-align: center;
  cursor: pointer;
}

.wallet-address p {
  cursor: pointer;
}

.token-left-item h2 {
  color: #ff9e4c;
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.token-left-item ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.token-left-item ul li {
  margin-bottom: 12px;
}

.token-left-item ul li:first-of-type {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 24px */
}

.token-left-item ul li:last-of-type {
  color: #ff9e4c;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

/* token-right */

.token-right img {
  max-width: 550px;
}

/* =========Our Roadmap start ======== */

.our-roadmap-area {
  padding: 80px 0;
  border-radius: 20px;
  background: #0b0b0b;
  width: 99%;
  margin: auto;
}

.roadmap-title h2 {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 66px */
  text-transform: uppercase;
  margin-bottom: 57px;
}

.roadmap-title h2 span {
  color: #ff9e4c;
}

.timeline {
  height: auto;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.timeline-content {
  background: rgb(221, 141, 12);
  background: linear-gradient(
    180deg,
    rgb(221, 141, 12) 10%,
    rgb(221, 141, 12) 87%
  );
  padding: 1px 1px 0 1px;
  border-radius: 20px;
}

.timeline-component {
  margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-middle {
    position: relative;
    background-color: #ff9e4c;
    width: 3px;
    height: 100%;
  }
  .main-middle {
    opacity: 0;
  }
  .timeline-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #000;
    border: 3px solid #ff9e4c;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.roadmap-item {
  padding: 30px;
  border-radius: 20px;
  /* border: 1px solid #ff9e4c; */
  background: #151515;
  /* margin-bottom: 30px; */
  background-image: rgba(255, 0, 131, 1), rgba(255, 0, 131, 0);
}

.roadm-t h2 {
  color: #ff9e4c;
  font-family: "Space Grotesk";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.26px;
  margin-bottom: 25px;
}

.roadmap-item ul li {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  position: relative;
  margin-left: 22px;
}

.roadmap-item ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff9e4c;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 5px;
}

/* ========footer======== */

footer {
  padding: 80px 0;
  border-radius: 20px 20px 0 0;
  background: #0b0b0b;
  width: 99%;
  margin: auto;
}

.ft-logo {
  margin-bottom: 45px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left ul {
  display: flex;
  gap: 30px;
}

.footer-left ul li a {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 20px */
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-left ul li a:hover {
  color: #ff9e4c;
}

.footer-right ul {
  display: flex;
  gap: 30px;
}

.footer-right ul li a {
  color: #fff;
  font-family: "Space Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 20px */
  text-transform: uppercase;
}

.footer-right ul li a:hover {
  color: #ff9e4c;
}

.footer-right .active a {
  background: transparent !important;
  box-shadow: none !important;
  border: none;
}

.coppyright-text {
  width: 99%;
  margin: auto;
}

.coppyright-text p {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 14px */
  text-transform: uppercase;
  padding: 18px;
  background: #ff9e4c;
  border-radius: 0 0 20px 20px;
}

html,
body {
  scroll-behavior: smooth;
}

/******* Fonts Import Start **********/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/********* Fonts Face CSS End **********/

/******* Common Element CSS Start ******/

* .clear {
  clear: both;
}

img {
  max-width: 100%;
  border: 0px;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

a:focus,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #e73700;
}

h2 {
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
}

h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 36px;
}

button {
  outline: none !important;
}

/******* Common Element CSS End *********/

/* -------- title style ------- */

.line-title {
  position: relative;
  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: #e700d4;
}

/******* Middle section CSS Start ******/

/* -------- Landing page ------- */

.game-section {
  padding: 60px 50px;
}

.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}

.game-section .item {
  margin: 0 15px 60px;
  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;
  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 .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 {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

/******** Middle section CSS End *******/

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

@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
  .line-title {
    width: 330px;
  }
  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    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));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  h2 {
    margin-bottom: 20px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }
  .line-title {
    width: 250px;
  }
  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }
  .game-section .item {
    margin: 0 10px 40px;
    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 .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

/* end all the css  */
