@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --primary: 9, 204, 255;
  --primary-hover: 16, 33, 123;
  --primary-active: 21, 41, 149;
  --dark: 15, 23, 42;
  --dark-2: 0, 63, 111;

  --heroHeight: 400px;
}

/* reset everything */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
  font-family: "Lato", sans-serif;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
[role="button"] {
  cursor: pointer;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;

  &:focus {
    outline: 0;
  }
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
}

[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;

  &:focus {
    outline: 0;
  }
}

::-moz-placeholder {
  opacity: 1;
}

textarea {
  /* // move the label to the top */
  vertical-align: top;

  /* // turn off scroll bars in IE unless needed */
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  &:focus {
    outline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(var(--primary));
  outline: 1px solid slategrey;
  border-radius: 1rem;
}

.text-white {
  color: white;
}

.text-dark-2 {
  color: rgba(var(--dark-2));
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background-color: rgba(var(--primary));
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: all 50ms ease;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(var(--primary-hover));
}

.btn-primary:hover {
  background-color: rgba(var(--primary-hover));
  color: rgba(var(--primary));
}

.btn-primary:active {
  background-color: rgba(var(--primary-active));
}

.btn-secondary {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: rgba(var(--primary));
}

.btn-secondary:active {
  background-color: rgba(var(--primary-active));
}

.btn-secondary.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-rounded {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-rounded:disabled {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.btn-rounded:hover {
  background-color: rgba(var(--primary));
}

.app {
  background: linear-gradient(117deg, #000 0.74%, #1D1D1D 100%);
  min-height: 100vh;
  color: #fff;
}

.app .app-content {
  margin-left: auto;
  margin-right: auto;
}

.app-header {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  background: #000;
  backdrop-filter: blur(21px);
  padding: 11px;
}

.header-content {
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}

.headerBtns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-content .headerBtns {
  margin-left: auto;
}

.headerBtn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.headerBtn:hover {
  color: rgba(var(--primary));
}

main {
  padding-top: 64px;
}

@media screen and (min-width: 480px) {
  .hero-section {
    background-image: url(./Img/bannerDangerFlappy.png);
    background-size: cover;
  }

  .swiperWrapper1 {
    /* width: 95%; */
    /* max-width: 1290px; */
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-section {
  position: relative;
}

.swiper-slide-active .hero-section {
  opacity: 1;
}

.hero-section {
  opacity: 0;
}

.hero-section .banner-bg .banner-wrap {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  max-height: 538px;
}

.hero-section .banner-bg .banner-wrap img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.hero-content {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 100px;
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-content .btn-primary {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 19px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.sub-head {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

.hero-content .sub-head {
  margin-top: 4px;
}

.badge-v1 {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.75rem;
  color: rgba(var(--primary));
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.1px;
  display: inline-block;
}

.badge-v1.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.badge-v1.blue {
  color: rgba(var(--dark-2));
  background-color: rgba(255, 255, 255, 0.2);
}

.text-white.text-white {
  color: white;
}

.badge-v2 {
  color: #e67e22;
  /* color: #0F172A; */
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.badge-v2.text-white {
  color: white;
}

.swiperWrapper1 .swiper {
  width: 100%;
}

.swiperWrapper1 {
  position: relative;
}

.swiperWrapper1 .slideBtns {
  position: absolute;
  /* bottom: 80px; */
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
}

.swiperWrapper1 .slideBtns>div {
  position: relative;
  cursor: pointer;
  inset: 0;
}

.swiperWrapper1 .swiper-pagination {
  display: none;
}

.swiper-button-prev:hover:not(:disabled)+.btn-rounded,
.swiper-button-next:hover:not(:disabled)+.btn-rounded {
  background-color: rgba(var(--primary));
  border-color: rgba(var(--primary));
}

.swiper-button-prev:active:not(:disabled)+.btn-rounded,
.swiper-button-next:active:not(:disabled)+.btn-rounded {
  background-color: rgba(var(--primary-active));
  border-color: rgba(var(--primary-active));
}

.swiperWrapper1 .swiper-button-prev,
.swiperWrapper1 .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.3);
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  inset: 0;
  margin: 0;
}

.playGroundAllGames {
  border-radius: 24px 24px 0px 0px;
  background: linear-gradient(117deg, #000 0.74%, #1d1d1d 100%);
  padding-top: 3rem;
  z-index: 2;
  position: relative;
  margin-top: 3rem;
}

.gamesWrapper:not(:first-child) {
  padding-top: 4rem;
}

.gameNameHeading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gameNameHeading img.icon {
  width: 36px;
}

.gamesWrapper .gamesHeadingWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}

.gamesWrapper .GamesWrap {
  padding-top: 60px;
}

.game-card {
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  width: 100%;
}

.game-card:hover {
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.08) 100%);
}

.game-card .cardImg1 {
  transition: all 0.6s linear;
  transform: rotate(0deg);
  transform-origin: bottom left;
}

.game-card:hover .cardImg1 {
  transform: rotate(-10deg);
}

/* .gamesWrapper .game-card::after{
  content: '';
 
  background-color: white;
  z-index: -999;
} */
.game-card .cardImg1 {
  width: 63px;
  min-width: 63px;
  height: 63px;
  min-height: 63px;
  border-radius: 1rem;
  margin-top: -23px;
  position: relative;
}

.game-card .cardImg1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.game-card .cardImg1 .shadow-img {
  position: absolute;
  bottom: -2px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50%;
  z-index: -1;
  filter: blur(14px);
}

.game-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 19px;
  margin-bottom: 2px;
}

.list-subheading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 500;
}

.list-subheading>li {
  position: relative;
}

.list-subheading>li:not(:first-child)::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: -11px;
  transform: translate(0%, -40%);
}

.gamesWrapper .GamesWrap {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  /* Adjust the max width as needed */
  margin: 0 auto;
  padding: 20px;
}

.game-card .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 1.625rem;
  width: 100%;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1rem 1.5rem;
}

.gamesWrapper .swiperGames {
  padding-top: 3rem;
  padding-left: 13px;
  padding-right: 13px;
}

.game-card .badge-v2 {
  background-color: transparent;
  padding: 0;
}

.game-card .cardContent {
  padding: 0 1.5rem;
  height: 70%;
}

.swiperGamesFunctions {
  position: relative;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}

.swiperGames .swiperButtonNext,
.swiperGames .swiperButtonPrev {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  z-index: 9999;
  flex: 0 0 auto;
}

.swiperButtonNext.swiper-button-disabled,
.swiperButtonPrev.swiper-button-disabled {
  color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.swiperGames .swiper-pagination {
  position: relative;
  margin-top: 13px;
}

.swiperGamesFunctions .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiperGamesFunctions .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: white;
}

/* .swiperWrapper1 .swiper-slide {
  padding-bottom: 4rem;
} */
.swiperGames .swiper-wrapper {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.loginContent .swiperWrapper1 {
  margin-top: 1.5rem;
}

.loginOuter {
  width: 95%;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}

.loginFormWrap {
  border-radius: 24px;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(21px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.loginFormWrap h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.loginFormWrap h2 span {
  color: rgba(var(--primary));
}

.loginFormWrap .loginForm {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.loginFormWrap .loginForm input {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1rem 1rem 4rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}

.loginFormWrap .loginForm .btn-primary {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 45px;
}

@media only screen and (min-width: 700px) {
  .playGroundAllGames {
    margin-top: -2rem;
  }

  .loginFormWrap {
    margin-top: -2rem;
  }

  .swiperWrapper1 .slideBtns .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    z-index: 9999999999999;
  }

  .swiperWrapper1 .slideBtns .swiper-button-next {
    position: absolute;
    top: 50%;
    /* left: 93%; */
    margin-right: 2rem;
    transform: translateY(-50%);
    z-index: 9999999999999;
  }

  .AllgamesOuterWrap {
    background: linear-gradient(117deg, #000 0.74%, #1D1D1D 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-top: 50px;
  }
}

@media only screen and (min-width: 700px) and (max-width: 900px) {
  .swiperWrapper1 .slideBtns .swiper-button-next {
    left: 85%;
  }
}

@media only screen and (min-width: 900px) and (max-width: 1500px) {
  .swiperWrapper1 .slideBtns .swiper-button-next {
    left: 93%;
  }
}

@media only screen and (min-width: 1500px) {
  .swiperWrapper1 .slideBtns .swiper-button-next {
    left: 95%;
  }
}

.loginFormWrap h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.loginFormWrap h2 span {
  color: rgba(var(--primary));
}

.loginFormWrap .loginForm {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.loginFormWrap .loginForm input {
  border-radius: 61px;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1rem 1rem 4.4rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}

.loginFormWrap .loginForm .btn-primary {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 45px;
}

.numberInput {
  position: relative;
  font-size: 20px;
}

.numberInput .numberExtension {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}


.AllgamesOuter {
  width: 98%;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.5rem 1.5rem 0 0;
  padding-left: 1rem;
  ;
  padding-right: 1rem;
  ;
}

.allGameWrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px 15px;
  margin: 0 auto;
  padding: 62px 0px 20px 0px;
  width: 100%;
}

@media screen and (min-width: 608px) {
  .allGameWrapper {
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(238px, 2fr));
  }
}

@media screen and (min-width: 900px) {
  .allGameWrapper {
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(238px, 3fr));
  }
}

@media screen and (min-width: 1150px) {
  .allGameWrapper {
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(238px, 4fr));
  }
}

@media screen and (min-width: 1300px) {
  .allGameWrapper {
    /* grid-template-columns: repeat(5, 1fr); */
    grid-template-columns: repeat(auto-fill, minmax(238px, 5fr));

  }
}

.categoryInside .swiperWrapper1 {
  margin-bottom: 0rem;
}

.categoriesDropdownWrapper {
  position: relative;
}

.categoriesDropdownOuter {
  position: relative;
}

.categoriesDropdownOuter+.categoriesDropdown .categoriesDropdownItem {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 10px;
}

.categoriesDropdownItem .icon {
  width: 36px;
}

.categoriesDropdownOuter+.categoriesDropdown .categoriesDropdownItem:hover {
  color: rgba(var(--primary));
}

.categoriesDropdownOuter+.categoriesDropdown .categoriesDropdownItem .iconImg {
  flex: 0 0 auto;
  min-width: 40px;
}

.categoriesDropdownOuter .categoriesDropdown .categoriesDropdownItem .iconImg img {
  width: 24px;
  height: 30px;
}

.categoriesDropdownOuter+.categoriesDropdown {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: calc(100% + 30px);
  left: 50%;
  border-radius: 1.5rem;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(110deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(21px);
  min-width: 250px;
  font-size: 18px;
  line-height: 24px;
  /* 133.333% */
  color: white;

}

.categoriesDropdownOuter.selected+.categoriesDropdown {
  opacity: 1;
  pointer-events: all;
  transform: translate(-64%, 0%);
  cursor: pointer;
}

.categoriesDropdownOuter.selected .dropdownIcon {
  rotate: 180deg;
}

.gameModal {
  border-radius: 1.5rem;
  background: linear-gradient(117deg, #070f1c 0.74%, #192837 100%);
  width: 95%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  top: 25%;
  padding-top: 1px;
}

.gameModal .btn-primary {
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1rem 1.5rem;
}

.gameModal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 21px;
  margin-bottom: 8px;
}

.gameModal .subHeading {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.gameModal .mainContent {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.gameModal .list-subheading {
  justify-content: center;
}

.gameModal .badge-v2 {
  padding: 0;
  background-color: transparent;
}

.modalImg1 {
  width: 100px;
  min-width: 100px;
  height: 100px;
  min-height: 100px;
  border-radius: 1.5rem;
  margin-top: -50px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.modalImg1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.modalImg1 .shadow-img {
  position: absolute;
  bottom: -2px;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 50%;
  z-index: -1;
  filter: blur(14px);
}

.gameModal .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.gameModal .closeBtn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(7.5px);
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.headerNavBtn {
  display: none;
  flex: 0 0 auto;
  margin-right: 20px;
}

.xsScreenBanner {
  display: none;
  width: 90%;
  object-fit: cover;
}

nav {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(7.5px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  z-index: 100;
  transform: translateX(-100%);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  overflow: auto;
}

nav .nav-toggle {
  display: block;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7rem;
  padding-left: 2rem;
  max-width: 430px;
}

.nav__link {
  color: inherit;
  font-weight: var(--fw-bold);
  font-size: var(--fs-h2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link-categories+.nav__link-categories__content {
  opacity: 0;
  pointer-events: none;
}

.nav__link.selected+.nav__link-categories__content {
  opacity: 1;
  pointer-events: all;
}

.nav__link:hover {
  color: rgba(var(--primary));
}

.nav-open nav {
  transform: translateX(0);
}

/* .nav-open .nav-toggle{
  position: fixed;
} */

.nav-open .hamburger {
  transform: rotate(0.625turn);
}

.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-6px);
}

.nav-open .hamburger::after {
  /* opacity: 0; */
  display: none;
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  background: green;
  width: 2em;
  height: 3px;
  border-radius: 1em;
  transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.hamburger::before {
  top: 6px;
}

.hamburger::after {
  bottom: 6px;
}

.nav-toggle {
  position: absolute;
  top: 25px;
  left: 32px;
  display: none;
  z-index: 101;
}

.nav-toggle .closeBtn {
  display: none;
}

body.nav-open .nav-toggle .threeLineHamburgur {
  display: none;
}

body.nav-open .nav-toggle .closeBtn {
  display: block;
}

.heroBtnMobile {
  display: none;
}

.swiper-pagination-mobileScreen {
  display: none;
}

.swiperWrapper1 .slideBtns .lgScreen {
  display: flex;
}

.swiperWrapper1 .slideBtns .xsScreen {
  display: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.5rem 1.5rem;
  flex: 0 0 auto;
  min-width: 65px;
  max-height: 30px;
  color: white;
}

@media screen and (max-width: 900px) {
  .swiperWrapper1 .slideBtns {
    margin-left: 1rem;
  }

  .hero-section .banner-bg .banner-wrap {
    /* min-height: 400px; */
  }

  .hero-section .banner-bg .banner-wrap img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* min-height: 400px; */
    /* object-position: 100% 100%; */
  }
}

.mainIconMObile {
  display: none;
}

@media screen and (max-width: 700px) {
  .btn-secondary {
    font-size: 14px;
  }

  .headerNavBtn {
    display: block;
  }

  .headerBtns {
    display: none;
  }

  .mainLogo {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-wrap {
    max-width: 100%;
    min-height: 407px;
    padding: 1rem;
  }

  .banner-wrap img {
    object-fit: cover;
    object-position: right top;
  }

  .lgScreenBanner {
    display: none;
  }

  .xsScreenBanner {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    align-items: flex-end;
    height: 100%;
    padding: 0 1rem 1rem 4rem;
  }

  .swiperWrapper1 .slideBtns {
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    top: 94%;
    width: max-content;
  }

  .swiperWrapper1 .heroSwiper {
    padding-bottom: 5rem;
  }

  .swiperWrapper1 .slideBtns {}

  .banner-wrap {
    margin-bottom: 1rem;
  }

  .hero-section .banner-bg .banner-wrap .xsScreenBanner {
    max-height: 560px;
    min-height: 525px;
    object-fit: cover;
    object-position: 0 50%;
  }

  .nav-toggle {
    display: block;
    z-index: 1000;
    background: none;
    border: none;
  }

  .threeLineHamburgur {
    display: block;
  }

  .closeBtn {
    display: none;
  }

  body.nav-open .threeLineHamburgur {
    display: none;
  }

  body.nav-open .closeBtn {
    display: block;
  }


  .nav .categoriesDropdownWrapper .categoriesDropdownOuter.selected {
    color: rgba(255, 255, 255, 0.5);
  }

  .nav .categoriesDropdownWrapper .dropdownIcon {
    display: none;
  }

  .nav .categoriesDropdownWrapper .categoriesDropdownOuter.selected+.categoriesDropdown {
    border-color: transparent;
    background-color: transparent;
    background: transparent;
    backdrop-filter: blur(0px);
    transform: translate(-55%, -6%);
  }

  .categoriesDropdownOuter+.categoriesDropdown .categoriesDropdownItem .iconImg {
    min-width: 24px;
    width: 24px;
  }

  .categoriesDropdownOuter+.categoriesDropdown {
    transition: none;
  }

  .loginFormWrap {
    margin-top: 3rem;
  }

  .loginForm {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .loginFormWrap h2 {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .swiperWrapper1 .slideBtns.heroBtnLgScreen {
    display: none;
  }

  .heroBtnMobile {
    display: block;
  }

  .swiperWrapper1 .slideBtns .swiperBtnMobile {
    border-color: transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    z-index: 9999;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    color: white;
    max-height: 30px;
  }

  .swiper-pagination-lgScreen {
    display: none;
  }

  .swiper-pagination-mobileScreen {
    display: block;
  }

  .swiperWrapper1 .slideBtns .lgScreen {
    display: none;
  }

  .swiperWrapper1 .slideBtns .xsScreen {
    display: flex;
  }

  .swiperWrapper1 .swiper-slide {
    padding-bottom: 1.5rem;
  }

  .categoryInside .swiperWrapper1 {
    margin-bottom: 3rem;
  }

  .gamesWrapper {
    padding-top: 4rem;
  }

  body.nav-open .mainIconMObile {
    display: block;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 3rem;
  }

  .swiperWrapper1 .swiper-pagination {
    display: block;
  }

  .swiperWrapper1 .slideBtns .swiper-button-prev {
    position: relative;
  }

  .swiperWrapper1 .slideBtns .swiper-button-next {
    position: relative;
    z-index: 9999999999999;
  }
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: white;
}

@media only screen and (max-width: 800px) and (min-width: 400px) {}