* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Poppins", sans-serif;
}
.container {
  margin-inline: auto;
  width: 100%;
  padding-inline: 12px;

  @media (width > 992px) {
    max-width: 960px;
  }
  @media (width > 1200px) {
    max-width: 1140px;
  }
  @media (width > 1400px) {
    max-width: 1320px;
  }
  a {
    text-decoration: none;
  }
  ul {
    list-style: none;
  }
}
.first__header {
  position: absolute;
  padding-top: 40px;
  transition: all 0.3s;
  background-color: transparent;
  z-index: 100;
  width: 100%;
}
.sec__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0071f8;
  padding: 30px 40px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: all 0.3s ease;
}
.sec__header img {
  width: 110px;
  height: 41.5px;
}
.sec__header.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
  border-radius: 0px 0px 25px 25px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px !important;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins" sans-serif;
}
.nav__list {
  display: flex;
}
.nav__list-item {
  padding-inline: 10px;
}
.nav__list-item--sign a,
.nav__list-item a {
  display: inline-block;
  border-radius: 20px;
  padding-inline: 20px;
  line-height: 40px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}
.nav__list-item--sign a {
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(238, 98, 107);
  border-radius: 20px;
}
.nav__list-item a:hover {
  background-color: rgb(26, 137, 249);
  border-radius: 20px;
}
.nav__list-item--sign a:hover {
  background-color: rgb(238, 98, 107);
  border-radius: 20px;
}
.hero {
  background-image: url(banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 225px;
  border-radius: 0 0 150px 150px;
}
.hero__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  @media (width < 992px) {
    flex-direction: column;
    justify-content: center;
  }
}
.hero__content {
  color: #fff;
  flex: 1;
  padding-inline: 5px;
  max-width: 636px;

  @media (width < 992px) {
    text-align: center;
  }
}
.hero__content h6 {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5;
}
.hero__content h2 {
  font-size: 48px;
  color: #fff;
  margin-top: 20px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 40px;
}
.hero__content img {
  left: 137px;
  display: block;
  position: absolute;
}
.hero__content p {
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 70px;
}
.hero__content form {
  display: flex;
  max-width: 450px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  @media (width < 992px) {
    margin-inline: auto;
    max-width: 100%;
  }
}
.hero__content form input {
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-weight: 300;
  color: #7a7a7a;
  padding-inline: 25px;
  border: none;
  outline: none;
}
.hero__content form button {
  display: block;
  line-height: 50px;
  background-color: rgb(238, 98, 107);
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding-inline: 25px;
  border-radius: 25px;
  min-width: fit-content;
  border: none;
  transition: all 0.3s;
  outline: none;
}
.hero__img {
  position: relative;
  @media (width < 992px) {
    width: 65%;
  }
}
.hero__img img {
  border-radius: 25px;
  @media (width < 992px) {
    width: 100%;
  }
}
.hero__img-price {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 23px;
  background-color: #008af8;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 4px 14px;
}
.hero__img-offer {
  position: absolute;
  left: -30px;
  bottom: -30px;
  border-radius: 50%;
  background-color: rgb(238, 98, 107);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
}
/* ----------------------------------------------------------------------------------- */
.features__container {
  position: relative;
  top: -80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  @media (width <992px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 50px;
  background-color: #fff;
  width: 100%;
  height: 205px;
  border-radius: 25px;
  box-shadow: 0px 3px 10px rgb(159, 159, 159);
  text-transform: uppercase;

  @media (width < 992px) {
    width: calc(35% - 24px);
  }
}
.features__item-img {
  height: 90px;
  width: 90px;
  background-color: #008af8;
  border-radius: 50px;
  padding: 23px;
}
.features__item:hover div {
  background-color: rgb(238, 98, 107);
}
/* ---------------------------------------------------------------------------------------------------------------- */
.trending__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 50px;
}
.trending__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.trending__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
}
.trending__info-btn {
  display: inline-block;
  background-color: #ee626b;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
  border: none;
}
.trending-games__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  @media (width < 992px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.trending-games__item {
  background-color: #eeeeee;
  border-radius: 25px;
  position: relative;
  width: 100%;
  @media (width < 992px) {
    width: calc(35% - 24px);
  }
}
.trending-games__item img {
  border-radius: 25px;
  width: 100%;
}
.trending-games__item:hover .trending-games__item__content-name h2 {
  color: #008af8;
}
.trending-games__item:hover .shop-icon {
  background-color: #008af8;
}
.trending-games__item .span__price {
  position: absolute;
  z-index: 10;
  right: 10px;
  top: 10px;
  font-size: 17px;
  background-color: #008af8;
  border-radius: 5px;
  color: #ffffff;
  width: 63px;
  max-height: 60px;
  text-align: center;
  padding: 7px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.trending-games__item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}
.trending-games__item__content-name h6 {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 5px;
  font-weight: 400;
}
.trending-games__item__content-name h2 {
  font-size: 17px;
  color: #1e1e1e;
  font-weight: 600;
}
.shop-icon {
  background-color: #ee626b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  padding: 7px;
  align-items: center;
}
.shop-icon img {
  width: 24px;
  height: 24px;
}
/* -------------------------------------------------------------------------- */
.top-games {
  padding-block: 100px;
  margin-top: 120px;
  background-color: #f7f7f7;
  border-radius: 150px;
}
.top-games__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.top-games__info div {
  @media (width < 992px) {
    width: 100%;
    text-align: center;
  }
}
.top-games__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.top-games__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
}
.top-games__info-btn {
  display: inline-block;
  background-color: #ee626b;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
  border: none;

  @media (width < 992px) {
    display: none;
  }
}
.games-card__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  @media (width < 992px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.games-card__item {
  position: relative;
  border-radius: 25px;
  background-color: #ffffff;
  margin-bottom: 10px;

  @media (width < 992px) {
    width: calc(35% - 24px);
  }
}
.games-card__item img {
  border-radius: 25px;
  width: 100%;
}
.games-card__item__info {
  padding: 20px 15px 40px 15px;
  text-align: center;
}
.games-card__item__info h6 {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 5px;
  display: inline-block;
}
.games-card__item__info h2 {
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s;
  color: #1e1e1e;
}
.explore {
  position: absolute;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0px 15px;
  background-color: #ee626b;
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.games-card__item:hover .games-card__item__info h2 {
  color: #008af8;
}
.games-card__item:hover .explore {
  background-color: #008af8;
}
.categories__container {
  margin-top: 120px;
}
.categories__info {
  margin-bottom: 70px;
}
.categories__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.categories__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
  text-align: center;
}
.categories-card__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  @media (width < 992px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.categories-card__item {
  background-color: #0071f8;
  border-radius: 25px;
  min-height: 255px;
  cursor: pointer;
  width: 100%;
  @media (width < 992px) {
    width: calc(35% - 24px);
  }
}
.categories-card__item h4 {
  font-size: 17px;
  padding: 22px;
  color: #ffffff;
  text-align: center;
}

.categories-card__item img {
  border-radius: 25px;
  display: block;
  width: 100%;
}
.cta-section {
  margin-top: 80px;
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  position: relative;
}
.cta-section__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: white;
  position: relative;

  @media (width < 992px) {
    flex-direction: column;
  }
}
.cta-section::after {
  content: "";
  background-image: url("cta-bg.jpg");
  background-size: cover;
  background-position: center;
  max-width: 550px;
  max-height: 510px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  z-index: 0;
  border-radius: 25px;

  @media (width < 992px) {
    display: none;
  }
}
.ourshop__container {
  max-width: 526px;
  max-height: 536px;
  margin-top: 80px;
  background-color: #f7f7f7;
  border-radius: 25px;
  padding: 80px;
  z-index: 10;

  @media (width < 1200px) {
    max-width: 376px;
    max-height: 724px;
  }
  @media (width < 992px) {
    max-width: 75%;
    max-height: calc(50% - 24px);
    padding: 12px 12px;
    margin-inline: auto;
  }
}
.ourshop__info {
  margin-right: 30px;
  margin-bottom: 50px;
}
.ourshop__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.ourshop__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
}
.ourshop__info h2 em {
  font-style: normal;
  color: #0071f8;
}
.ourshop__container p {
  font-weight: 600;
  font-size: 16px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}
.ourshop__btn {
  display: inline-block;
  background-color: #ee626b;
  text-transform: uppercase;
  color: #fff;
  border: none;
  margin-block: 20px;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
}
.newsletter__container {
  background-color: #f7f7f7;
  border-radius: 25px;
  padding: 80px 60px;
  max-width: 500px;
  max-height: 456px;
  z-index: 1;
  @media (width < 1200px) {
    max-width: 376px;
    max-height: 518px;
  }
  @media (width < 992px) {
    max-width: 75%;
    max-height: calc(50% - 24px);
    padding: 12px 12px;
    margin-inline: auto;
  }
}
.newsletter__info {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 44px;
  margin-top: 0px;
}
.newsletter__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.newsletter__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
  color: #1e1e1e;
  margin-bottom: 50px;
}
.newsletter__info h2 em {
  font-style: normal;
  color: #0071f8;
}
.email__form {
  display: flex;
  max-width: 450px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  @media (width < 992px) {
    max-width: 100%;
  }
}
.email__input {
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-weight: 300;
  color: #7a7a7a;
  padding-inline: 25px;
  border: none;
  outline: none;
}
.subscribe__btn {
  display: block;
  line-height: 50px;
  background-color: rgb(238, 98, 107);
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding-inline: 25px;
  border-radius: 25px;
  min-width: fit-content;
  border: none;
  transition: all 0.3s;
  outline: none;
}
.footer__container {
  margin-top: 150px;
  background-color: rgb(0, 113, 248);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(footer-bg.jpg);
  min-height: 150px;
  border-radius: 150px 150px 0px 0px;
}
.footer__container p,
a {
  text-align: center;
  line-height: 90px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
}
/* ------------------------------------------------------------------------------------------------------ */
/* shop page style */
.shop {
  background-image: url(banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 120px;
  border-radius: 0 0 150px 150px;
  text-align: center;
}
.shop-title__container {
  margin-top: 60px;
  padding-inline: 12px;
}
.shop-title__container h3 {
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-block: 20px;
  width: 100%;
}
.shop-title__container span {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
  width: 100%;
}
/* shop list style */
.shop-list {
  margin-top: 120px;
}
.shop-list__container {
  padding-inline: 12px;
}
.shop-list__items {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-list__item {
  display: inline-block;
  margin: 5px 8px;
}
.shop-list__item a {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e1e1e;
  background-color: #eee;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s;
}
.shop-list__item .active {
  background-color: #ee626b;
  color: #fff;
}
.shop__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.shop-games__item {
  background-color: #eeeeee;
  border-radius: 25px;
  position: relative;
  margin-bottom: 10px;
}
.shop-games__item .span__price {
  position: absolute;
  z-index: 10;
  right: 10px;
  top: 10px;
  font-size: 17px;
  background-color: #008af8;
  border-radius: 5px;
  color: #ffffff;
  width: 63px;
  max-height: 60px;
  text-align: center;
  padding: 7px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.shop-games__item img {
  border-radius: 25px;
  width: 100%;
}
.shop-games__item:hover .shop-games__item__content-name h2 {
  color: #008af8;
}
.shop-games__item:hover .shop-icon {
  background-color: #008af8;
}
.shop-games__item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}
.shop-games__item__content-name h6 {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 5px;
  font-weight: 400;
}
.shop-games__item__content-name h2 {
  font-size: 17px;
  color: #1e1e1e;
  font-weight: 600;
}
/* page number list style */
.pages-number {
  padding-inline: 12px;
}
.pages-number__list {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pages-number__list--number {
  margin-inline: 5px;
}
.pages-number__list--number a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #eee;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all 0.3s;
}
.pages-number__list--number a:hover {
  background-color: #008af8;
  color: #ffffff;
}
.pages-number__list--number .active {
  background-color: #008af8;
  color: #ffffff;
}
/* ------------------------------------------------------------------------------------------------------------- */
/* product details page style */
.product {
  background-image: url(banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 120px;
  border-radius: 0 0 150px 150px;
  text-align: center;
}
.product-title__container {
  margin-top: 60px;
  padding-inline: 12px;
}
.product-title__container h3 {
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-block: 20px;
  width: 100%;
}
.product-title__container span {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
  width: 100%;
}
.one-product__container {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.one-product__img,
.one-product__details {
  width: 50%;
  padding: 12px;
}
.one-product__details h4 {
  font-size: 27px;
  margin-bottom: 20px;
  color: #1e1e1e;
  font-weight: 700;
}
.one-product__details span {
  font-size: 27px;
  font-weight: 700;
  color: #0071f8;
}
.one-product__details span em {
  font-style: normal;
  color: #c8c8c8;
  font-size: 17px;
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 5px;
}
.one-product__details p {
  margin-top: 50px;
  margin-bottom: 60px;
}
.one-product__details form input {
  width: 80px;
  height: 50px;
  background-color: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 25px;
  text-align: center;
  float: left;
  margin-right: 15px;
}
.one-product__details form button {
  height: 50px;
  line-height: 50px;
  background-color: #ee626b;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px 25px;
  border: none;
  border-radius: 25px;
  transition: all 0.3s;
}
.one-product__details form button img {
  width: 14px;
  height: 15px;
  margin: 0px 10px 0px 0px;
}
.details-list {
  margin-top: 60px;
}
.details-list__item {
  display: block;
  margin: 20px 0px;
  font-size: 14px;
  color: #0071f8;
}
.details-list__item span {
  width: 120px;
  display: inline-block;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}
.details-list__item a {
  color: #0071f8;
  line-height: 10px;
}
.line-div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.line {
  height: 1px;
  background-color: #eee;
  margin-block: 80px;
  padding-inline: 12px;
}
.description__container {
  padding-inline: 12px;
  background-color: #f7f7f7;
  border-radius: 25px;
  padding: 60px;
  display: flex;
  flex-direction: column;
}
.description-nav {
  padding-inline: 12px;
}
.description-nav__list {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 16px;
}
.description-nav__list .desc_li {
  border-right: 1px solid #d7d7d7;
  margin-right: 30px;
  padding-right: 30px;
}
.description-nav__list .rev_li button {
  color: #0071f8;
  border: none;
  border-radius: 0px;
  background-color: transparent !important;
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
 
}
.description-nav__list .desc_li button {
  color: #0071f8;
  border: none;
  border-radius: 0px;
  background-color: transparent !important;
  font-size: 20px;
  font-weight: 600;
 
}

.description__content {
  padding-inline: 12px;
  margin-top: 30px;
}

.description__content p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}
.related-games__container{
  margin-top: 120px;
}
.related-games__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 50px;
}
.related-games__info h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.related-games__info h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
}
.related-games__info-btn {
  display: inline-block;
  background-color: #ee626b;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
  border: none;
}
/* --------------------------------------------------------------------------------------------------------------------- */
/* contact us page style */
.contact {
  background-image: url(banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 120px;
  border-radius: 0 0 150px 150px;
  text-align: center;
}
.contact-title__container {
  margin-top: 60px;
  padding-inline: 12px;
}
.contact-title__container h3 {
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-block: 20px;
  width: 100%;
}
.contact-title__container span {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
  width: 100%;
}