* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Geologica", sans-serif;
}

body {
  background-color: #F5F5F5;
}

.header {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background-color: #F5F5F5;
}
.header .header-top {
  background-color: #090031;
  padding: 9px 0;
}
.header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .container .h-left {
  width: 115px;
}
.header .header-top .container .nav .top-nav {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 48px;
}
.header .header-top .container .nav .top-nav li {
  list-style-type: none;
}
.header .header-top .container .nav .top-nav li a {
  color: #FFFFFF;
  font-weight: 300;
  text-decoration: none;
}
.header .header-top .container .lang {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #fff;
}
.header .header-top .container .lang a {
  padding: 4px 13px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}
.header .header-top .container .lang .active {
  background-color: #fff;
  color: #090031;
}
.header .header-content {
  padding: 14px 0;
}
.header .header-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-content .container .logo img {
  width: 83px;
}
.header .header-content .container .content-nav {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 48px;
}
.header .header-content .container .content-nav li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.header .header-content .container .content-nav li a {
  color: #090031;
  text-decoration: none;
}
.header .header-content .container .content-nav li a img {
  width: 24px;
  margin-right: 8px;
}
.header .header-content .container .content-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header .header-content .container .content-right a img {
  width: 24px;
}

.header-gradient {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-gradient .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-gradient .container .text {
  width: 55%;
  color: #fff;
}
.header-gradient .container .text h1 {
  font-size: 44px;
  margin-bottom: 12px;
  font-weight: bold;
}
.header-gradient .container .text p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 32px;
}
.header-gradient .container .img {
  width: 43%;
}
.header-gradient .container .img img {
  width: 100%;
}
.header-gradient canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: #262e40;
  width: 100%;
  height: 100%;
}
.header-gradient .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.a-btn {
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  padding: 10px 72px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all;
  border: 1px solid #fff;
}
.a-btn:hover {
  background-color: #090031;
  color: #F5F5F5;
}

.a-btn-bg {
  background-color: #090031;
  border: 1px solid #090031;
  color: #F5F5F5;
}
.a-btn-bg:hover {
  background-color: #F5F5F5;
  color: #090031;
}

.title {
  margin-bottom: 40px;
  text-align: center;
}
.title h2 {
  color: #090031;
  font-weight: bold;
  font-size: 40px;
}

.main-shop {
  padding: 100px 0;
}
.main-shop .catalog-main {
  display: flex;
  justify-content: space-between;
}
.main-shop .catalog-main .filter {
  width: 30%;
  margin: 20px auto;
  color: #2c003e;
}
.main-shop .catalog-main .filter-group {
  margin-bottom: 20px;
}
.main-shop .catalog-main .filter-title {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 18px;
}
.main-shop .catalog-main label {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 18px;
  gap: 8px;
}
.main-shop .catalog-main input[type=checkbox] {
  accent-color: #2c003e;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}
.main-shop .catalog-main .shop-items {
  width: 70%;
}
.main-shop .catalog-main .shop-items .a-btn-solid {
  padding: 8px;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shop-items .item {
  border-radius: 16px;
  padding: 24px 16px;
  position: relative;
}
.shop-items .item .novinka {
  transform: rotate(-12deg);
  position: absolute;
  left: -12px;
  top: 20px;
  color: #F7EFDE;
  padding: 8px 20px;
  background-color: #4C5EFD;
  border: 2px solid #121213;
  font-size: 16px;
  font-weight: bold;
}
.shop-items .item .bestseler {
  transform: rotate(-12deg);
  position: absolute;
  left: -12px;
  top: 20px;
  color: #F7EFDE;
  padding: 8px 20px;
  background-color: #9747FF;
  border: 2px solid #121213;
  font-size: 16px;
  font-weight: bold;
}
.shop-items .item .heart-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
  margin-bottom: 16px;
  margin-left: auto;
}
.shop-items .item .heart-icon:hover {
  transform: scale(1.1);
}
.shop-items .item .heart-icon.active .heart-path {
  fill: red;
}
.shop-items .item .img-shop {
  width: 100%;
  margin-bottom: 20px;
}
.shop-items .item .shop-title a {
  text-transform: uppercase;
  color: #090031;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-decoration: none;
}
.shop-items .item .shop-title {
  text-transform: uppercase;
  color: #121213;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.shop-items .item .price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-items .item .price h4 {
  font-size: 20px;
  font-weight: 300;
  text-decoration: line-through;
  color: #090031;
}
.shop-items .item .price h5 {
  color: #090031;
  font-weight: bold;
}
.shop-items .item .text-limit {
  font-size: 14px;
  margin-bottom: 12px;
}
.shop-items .item .shop-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.shop-items .item .shop-blocks .block {
  border-radius: 4px;
  background-color: #F7EFDE;
  border: 1.5px solid #090031;
  padding: 4px;
}
.shop-items .item .shop-blocks .block img {
  width: 20px;
  margin-bottom: 4px;
}
.shop-items .item .shop-blocks .block span {
  display: inline-block;
  font-weight: 300;
  color: #090031;
  font-size: 14px;
}

.a-btn-solid {
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #090031;
  border: 1px solid #090031;
  color: #F5F5F5;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s all;
}
.a-btn-solid img {
  width: 16px;
  margin-right: 8px;
}
.a-btn-solid:hover {
  transform: scale(1.03);
}

.btn-block {
  margin-top: 40px;
  text-align: center;
}

.a-btn-border {
  border: 2px solid #090031;
}

.ng-block {
  padding: 90px 0;
  background: url(../img/bg-1.jpg) center center/cover no-repeat;
  color: #FFFFFF;
  margin-bottom: 100px;
}
.ng-block .text {
  width: 100%;
  max-width: 532px;
}
.ng-block .text h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 16px;
}
.ng-block .text p {
  margin-bottom: 24px;
  font-weight: 300;
}

.main-block-1 {
  color: #090031;
  margin-bottom: 100px;
}
.main-block-1 .container {
  display: flex;
  justify-content: space-between;
}
.main-block-1 .container .text {
  width: 40%;
}
.main-block-1 .container .text h2 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: bold;
}
.main-block-1 .container .img {
  width: 60%;
  padding-left: 50px;
}
.main-block-1 .container .img img {
  width: 100%;
}

.main-block-2 {
  color: #090031;
  margin-bottom: 100px;
}
.main-block-2 .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.main-block-2 .content .text {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}
.main-block-2 .content .text h2 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: bold;
}
.main-block-2 .content .text-left {
  text-align: right;
}
.main-block-2 .content .text-right {
  text-align: left;
}
.main-block-2 .content .img img {
  width: 100%;
}

.main-block-3 {
  position: relative;
  padding: 60px 0;
  margin-bottom: 100px;
}
.main-block-3 h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #F5F5F5;
  font-weight: bold;
  text-align: center;
}
.main-block-3 .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.main-block-3 .items .item {
  border-radius: 16px;
  background-color: #F5F5F5;
  padding: 40px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-block-3 .items .item img {
  width: 80px;
  margin-bottom: 24px;
}
.main-block-3 .items .item h3 {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 20px;
  color: #121213;
  font-weight: bold;
}
.main-block-3 .items .item p {
  margin-bottom: 20px;
  color: #090031;
  text-align: left;
}
.main-block-3 .items .item a {
  width: 100%;
  text-align: center;
  padding: 8px;
}
.main-block-3 canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: #262e40;
  width: 100%;
  height: 100%;
}
.main-block-3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.blog-block {
  margin-bottom: 100px;
}
.blog-block h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #090031;
  text-align: center;
}
.blog-block .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-block .items .item {
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}
.blog-block .items .item .img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}
.blog-block .items .item h4 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-block .items .item p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 16px;
}
.blog-block .items .item a {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog-block .items .item a img {
  width: 24px;
  margin-left: 8px;
}
.blog-block .items .item a:hover {
  background-color: #fff;
  color: #090031;
  transform: scale(1.03);
}

.blog-block-main {
  padding-top: 60px;
}

.contact-form {
  background: url(../img/contact-bg.jpg) center center/cover no-repeat;
  padding: 80px 0;
}
.contact-form .gradient-border-wrapper {
  background: linear-gradient(45deg, #ff2d75, #fca311, #00f0ff, #7f00ff);
  padding: 12px;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.contact-form .form-container {
  background: rgba(177, 177, 177, 0.7);
  border-radius: 16px;
  padding-top: 62px;
  padding-bottom: 60px;
  width: 100%;
  max-width: 860px;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}
.contact-form .form-container h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #121213;
  text-align: center;
}
.contact-form .form-container p {
  margin-bottom: 24px;
  color: #121213;
  font-weight: 300;
  text-align: center;
}

.form-block {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.form-block input,
.form-block select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.form-block button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #000000, #333333);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.custom-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #2d2d2d;
}

.custom-form input,
.custom-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  outline: none;
}

.custom-form input::-moz-placeholder {
  color: #9793A7;
}

.custom-form input::placeholder {
  color: #9793A7;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-field .flag {
  font-size: 20px;
  padding-left: 10px;
}

.custom-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23444' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 18px;
}

.custom-form button {
  width: 100%;
  padding: 10px;
  background: #121213;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-form button:hover {
  background: #451212;
}

.footer {
  background-color: #090031;
  padding: 40px 0;
}
.footer .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 32px;
}
.footer .content .logo img {
  width: 83px;
}
.footer .content .block ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .content .block ul li {
  list-style-type: none;
}
.footer .content .block ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}
.footer .content .block ul li a:hover {
  text-decoration: underline;
}
.footer .content .block ul li .social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer .content .block ul li .social img {
  width: 32px;
}
.footer p {
  color: #B5B2C1;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0;
}

.catalog-gradient .container .text h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.catalog-gradient .container .text p {
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 300;
}
.catalog-gradient .container .text .a-btn-solid {
  width: auto;
  max-width: 350px;
}
.catalog-gradient .container .img {
  width: 30%;
}
.catalog-gradient .container .img img {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  transition: 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.breadcrumb {
  padding-top: 47px;
  padding-bottom: 60px;
}
.breadcrumb .container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb .container a {
  color: #121213;
  text-decoration: none;
}
.breadcrumb .container p {
  color: #121213;
  margin-bottom: 0;
}

.delivery-block {
  padding-top: 60px;
  padding-bottom: 100px;
}
.delivery-block h2 {
  text-align: center;
  font-size: 44px;
  color: #090031;
  margin-bottom: 40px;
  font-weight: bold;
}
.delivery-block .mini-text {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
.delivery-block h3 {
  font-size: 40px;
  color: #090031;
  font-weight: bold;
  margin-bottom: 24px;
}
.delivery-block h4 {
  font-size: 20px;
  color: #090031;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: bold;
}
.delivery-block p {
  font-weight: 300;
}
.delivery-block p strong {
  font-weight: bold;
}
.delivery-block ol, .delivery-block ul {
  margin-bottom: 30px;
}
.delivery-block ol li p, .delivery-block ul li p {
  margin: 0;
}
.delivery-block .partner {
  display: flex;
  justify-content: space-between;
}
.delivery-block .partner .img {
  width: 35%;
}
.delivery-block .partner .img img {
  width: 100%;
  border-radius: 16px;
}
.delivery-block .partner .text {
  width: 60%;
}
.delivery-block .partner .text .grid {
  display: flex;
  justify-content: space-between;
}
.delivery-block .partner .text .grid h4 {
  width: 35%;
}
.delivery-block .partner .text .grid div {
  width: 65%;
}
.delivery-block .game-main-img {
  margin-bottom: 80px;
}
.delivery-block .game-main-img img {
  width: 100%;
  border-radius: 16px;
}
.delivery-block .custom-game-1 {
  margin-bottom: 100px;
}
.delivery-block .custom-game-1 h2 {
  margin-bottom: 40px;
  text-align: left;
}
.delivery-block .custom-game-1 .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.delivery-block .custom-game-1 .items .item img {
  width: 100px;
  margin-bottom: 12px;
}
.delivery-block .custom-game-2 {
  margin-bottom: 100px;
  background-color: #CEDDEC;
  padding: 60px 0;
}
.delivery-block .custom-game-2 h2 {
  margin-bottom: 40px;
  text-align: left;
}
.delivery-block .custom-game-2 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.delivery-block .custom-game-2 .items .item h6 {
  color: #F5F5F5;
  font-size: 100px;
  margin-bottom: 12px;
}
.delivery-block .custom-game-3 h2 {
  margin-bottom: 40px;
  text-align: left;
}
.delivery-block .custom-game-3 .items {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.delivery-block .custom-game-3 .items .item {
  padding: 20px;
  border-radius: 16px;
  width: 40%;
}
.delivery-block .custom-game-3 .items .b-1 {
  border: 2px solid #FFBD00;
}
.delivery-block .custom-game-3 .items .b-2 {
  border: 2px solid #EA333D;
}
.delivery-block .custom-game-3 .items .b-3 {
  border: 2px solid #4C5EFD;
}
.delivery-block .custom-game-3 .items .b-4 {
  border: 2px solid #32EDBB;
}
.delivery-block .custom-game-3 .items .b-5 {
  border: 2px solid #FF0000;
}
.delivery-block .custom-game-3 .items .b-6 {
  border: 2px solid #FE9514;
}
.delivery-block .custom-game-3 .items-right {
  justify-content: flex-end;
}
.delivery-block .conducting-the-game {
  display: flex;
  justify-content: space-between;
}
.delivery-block .conducting-the-game .text {
  width: 58%;
}
.delivery-block .conducting-the-game .img {
  width: 40%;
}
.delivery-block .conducting-the-game .img img {
  width: 100%;
  border-radius: 16px;
}

.delivery-block-game h2 {
  margin-bottom: 5px;
}

.contact-block {
  padding: 140px 0;
}
.contact-block .container .text {
  width: 50%;
}
.contact-block .container .text h1 {
  font-size: 44px;
  margin-bottom: 8px;
}
.contact-block .container .text p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 8px;
}
.contact-block .container .text .bottom-fg {
  height: 16px;
  width: auto;
}
.contact-block .container .text .a-tel {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
}
.contact-block .container .text .social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.contact-block .container .text .social img {
  width: 44px;
}
.contact-block .container .form {
  width: 40%;
}

.about-main {
  padding-top: 60px;
  padding-bottom: 100px;
}
.about-main h2 {
  text-align: center;
  font-size: 44px;
  color: #090031;
  margin-bottom: 40px;
  font-weight: bold;
}
.about-main .block-1 {
  margin-bottom: 100px;
}
.about-main .block-1 .content {
  display: flex;
  justify-content: space-between;
}
.about-main .block-1 .content .text {
  width: 38%;
}
.about-main .block-1 .content .img {
  width: 58%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-main .block-1 .content .img img {
  width: 50%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.about-main .block-2 {
  margin-bottom: 100px;
}
.about-main .block-2 h3 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #090031;
  font-weight: bold;
}
.about-main .block-2 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-main .block-2 .items .item {
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-main .block-2 .items .item img {
  width: 50%;
  border-radius: 16px;
}
.about-main .block-2 .items .item h4 {
  width: 50px;
  font-size: 18px;
  margin-bottom: 0;
  color: #090031;
  font-weight: bold;
}
.about-main .block-2 .items .item-1 {
  background-color: #ADC6F0;
}
.about-main .block-2 .items .item-2 {
  background-color: #F9EAC7;
}
.about-main .block-2 .items .item-3 {
  background-color: #D6DCD9;
}
.about-main .block-3 h3 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #090031;
  font-weight: bold;
  text-align: center;
}
.about-main .block-3 .content {
  display: flex;
  justify-content: space-between;
}
.about-main .block-3 .content .text {
  width: 49%;
}
.about-main .block-3 .content .img {
  width: 49%;
}
.about-main .block-3 .content .img img {
  width: 100%;
  border-radius: 16px;
}

.product-main {
  margin-bottom: 100px;
}
.product-main .container {
  display: flex;
  justify-content: space-between;
}
.product-main .gallery {
  width: 45%;
}
.product-main .gallery .main-image {
  position: relative;
  width: 100%;
  height: auto;
}
.product-main .gallery #current {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
  border-radius: 16px;
}
.product-main .gallery .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.product-main .gallery .nav img {
  width: 40px;
}
.product-main .gallery .prev {
  left: 10px;
}
.product-main .gallery .next {
  right: 10px;
}
.product-main .gallery .b_t {
  overflow-x: auto;
}
.product-main .gallery .thumbnails {
  display: flex;
  overflow-x: auto;
  padding-bottom: 8px;
  gap: 8px;
  margin-top: 10px;
  scroll-behavior: smooth;
}
.product-main .gallery .thumbnails::-webkit-scrollbar {
  height: 4px;
}
.product-main .gallery .thumbnails::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}
.product-main .gallery .thumb {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.product-main .gallery .thumb.active,
.product-main .gallery .thumb:hover {
  border-color: orange;
  opacity: 1;
}
.product-main .info {
  width: 50%;
  color: #121213;
}
.product-main .info h2 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 12px;
}
.product-main .info p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
.product-main .info .price {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.product-main .info .price h3 {
  font-size: 28px;
  text-decoration: line-through;
  font-weight: 300;
  margin-bottom: 0;
}
.product-main .info .price h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
}
.product-main .info .qty-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.product-main .info .qty-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.product-main .info .qty-btn {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  transition: 0.2s;
}
.product-main .info .d-flex {
  gap: 8px;
}
.product-main .info .qty-btn:hover {
  background-color: #ffc76a;
}
.product-main .info .qty-display {
  width: 36px;
  height: 36px;
  background-color: #2C1007;
  color: white;
  text-align: center;
  line-height: 32px;
  font-size: 16px;
  border-radius: 5px;
}
.product-main .info .info-btn {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 26px;
}
.product-main .info .info-btn .a-btn-solid {
  padding: 10px 70px;
  background-color: #121213;
  max-width: 310px;
}
.product-main .info .info-btn .like img {
  width: 40px;
}
.product-main .info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-main .info .info-lang-btn {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-main .info .info-lang-btn .info-lang {
  padding: 8px;
  padding-left: 15px;
  color: #121213;
  font-size: 16px;
  text-decoration: none;
  font-weight: 300;
  border-radius: 4px;
  border: 1px solid #121213;
}
.product-main .info .info-lang-btn .info-lang img {
  width: 20px;
  margin-left: 4px;
}

.product-text-main {
  margin-bottom: 100px;
}
.product-text-main h2 {
  font-size: 40px;
  color: #121213;
  font-weight: bold;
  margin-bottom: 40px;
}
.product-text-main .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-text-main .content .text ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.product-text-main .content .text ul li {
  display: flex;
  align-items: center;
  color: #121213;
}
.product-text-main .content .text ul li img {
  width: 20px;
  margin-right: 4px;
}
.product-text-main .content .text ul li strong {
  margin-right: 8px;
}
.product-text-main .content .text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #121213;
}
.product-text-main .content .text .info-block p {
  margin-bottom: 24px;
}
.product-text-main .content .text .hidden {
  display: none;
}
.product-text-main .content .text .a-btn-solid {
  display: inline-block;
  width: 310px;
}
.product-text-main .content .img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-text-main .content .img img {
  border-radius: 16px;
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-text-pdf {
  margin-bottom: 100px;
}
.product-text-pdf h2 {
  font-size: 40px;
  color: #121213;
  font-weight: bold;
  margin-bottom: 40px;
}
.product-text-pdf .content {
  display: flex;
  justify-content: space-between;
}
.product-text-pdf .content .text {
  width: 25%;
}
.product-text-pdf .content .text ul {
  margin-bottom: 62px;
}
.product-text-pdf .content .text ul li {
  font-size: 24px;
}
.product-text-pdf .content .text .a-btn-border {
  padding: 12px 17px;
  background-color: transparent;
}
.product-text-pdf .content .text .a-btn-border img {
  width: 20px;
  margin-right: 10px;
}
.product-text-pdf .content .text .a-btn-border:hover {
  color: #090031;
}
.product-text-pdf .content .img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 71%;
}
.product-text-pdf .content .img img {
  border-radius: 16px;
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-video video {
  width: 100%;
  border-radius: 32px;
}

.wishlist {
  padding-top: 50px;
  padding-bottom: 100px;
}
.wishlist h2 {
  text-align: center;
  font-size: 44px;
  color: #090031;
  margin-bottom: 40px;
  font-weight: bold;
}
.wishlist .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
}
.wishlist .items .item {
  background-color: #F5F5F5;
  border: 2px solid #090031;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist .items .item .img-main {
  width: 150px;
}
.wishlist .items .item .list-block {
  display: flex;
  align-items: center;
  gap: 35px;
}
.wishlist .items .item .list-block .shop-title {
  text-transform: uppercase;
  color: #121213;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.wishlist .items .item .list-block .price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wishlist .items .item .list-block .price h4 {
  font-size: 20px;
  font-weight: 300;
  text-decoration: line-through;
  color: #090031;
}
.wishlist .items .item .list-block .price h5 {
  color: #090031;
  font-weight: bold;
}
.wishlist .items .item .trash {
  border: none;
  background: transparent;
}
.wishlist .items .item .trash img {
  width: 30px;
}
.wishlist .items .item .qty-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.wishlist .items .item .qty-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.wishlist .items .item .qty-btn {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  transition: 0.2s;
}
.wishlist .items .item .d-flex {
  gap: 8px;
}
.wishlist .items .item .qty-display {
  width: 36px;
  height: 36px;
  background-color: #2C1007;
  color: white;
  text-align: center;
  line-height: 32px;
  font-size: 16px;
  border-radius: 5px;
}
.wishlist .items .card-bottom .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wishlist .items .card-bottom .item .card-price {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wishlist .items .card-bottom .item .card-price h5 {
  font-size: 18px;
  margin-bottom: 0;
}
.wishlist .items .card-bottom .item .card-price h6 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0;
}
.wishlist .items .card-bottom .item .a-btn-solid {
  width: 300px;
}

.blog-item .game-main-img {
  margin-bottom: 35px;
}

.policy {
  padding-top: 50px;
  padding-bottom: 100px;
}
.policy h2 {
  font-size: 24px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .header .header-content .container .content-nav {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .a-btn {
    padding: 8px;
  }
  .header .header-top .container .nav .top-nav {
    display: none;
  }
  .header .header-content .container {
    position: relative;
  }
  .burger {
    display: flex;
  }
  .header .header-content .container .content-nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 20px;
  }
  .header .header-content .container .content-nav {
    display: none;
  }
  .header .header-content .container .active {
    display: flex;
  }
  .content-right {
    display: none;
  }
  .header .header-content .container .logo img {
    width: 60px;
  }
  .header .header-content {
    padding: 8px 0;
  }
  .header-gradient .container {
    flex-direction: column-reverse;
    padding: 30px 0;
  }
  .header-gradient .container .text {
    width: 100%;
  }
  .header-gradient .container .img {
    width: 100%;
  }
  .header-gradient {
    height: auto;
  }
  .header-gradient .container .text h1 {
    font-size: 25px;
  }
  .header-gradient .container .text p {
    font-size: 18px;
  }
  .shop-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-shop {
    padding: 50px 0;
  }
  .title h2 {
    font-size: 30px;
  }
  .ng-block {
    text-align: center;
    margin-bottom: 50px;
  }
  .ng-block .text {
    max-width: 100%;
  }
  .main-block-1 .container {
    flex-direction: column-reverse;
  }
  .main-block-1 .container .img {
    width: 100%;
    padding-left: 0;
    margin-bottom: 35px;
  }
  .main-block-1 .container .text {
    width: 100%;
  }
  .main-block-2 {
    margin-bottom: 50px;
  }
  .main-block-2 .content {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-block-2 .content .text {
    gap: 30px;
  }
  .main-block-2 .content .text-left {
    text-align: center;
  }
  .main-block-2 .content .text-right {
    text-align: center;
  }
  .main-block-3 {
    padding: 50px 0;
    margin-bottom: 50px;
  }
  .main-block-3 h2 {
    font-size: 33px;
  }
  .main-block-3 .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-block h2 {
    font-size: 33px;
  }
  .blog-block .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-form {
    padding: 50px 0;
  }
  .contact-form .form-container {
    padding: 30px 20px;
  }
  .contact-form .form-container h2 {
    font-size: 25px;
  }
  .footer .content {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  .footer .content .block ul li .social {
    justify-content: center;
  }
  .footer p {
    text-align: center;
  }
  .ng-block .text h2 {
    font-size: 30px;
  }
  .header-gradient .container .text {
    text-align: center;
    padding: 20px;
  }
  .delivery-block .partner {
    flex-direction: column;
  }
  .delivery-block .partner .img {
    width: 100%;
    margin-bottom: 35px;
  }
  .delivery-block .partner .text {
    width: 100%;
  }
  .delivery-block .partner .text .grid {
    flex-direction: column;
  }
  .delivery-block .partner .text .grid h4 {
    width: 100%;
  }
  .delivery-block .partner .text .grid div {
    width: 100%;
  }
  .delivery-block h2 {
    font-size: 33px;
  }
  .delivery-block .game-main-img {
    margin-bottom: 50px;
  }
  .delivery-block .custom-game-1 .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .delivery-block .custom-game-1 .items .item {
    text-align: center;
  }
  .delivery-block .custom-game-1 {
    margin-bottom: 50px;
  }
  .delivery-block .custom-game-2 {
    margin-bottom: 50px;
  }
  .delivery-block .custom-game-2 .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .delivery-block .custom-game-2 .items .item h6 {
    font-size: 70px;
  }
  .delivery-block .custom-game-3 .items {
    flex-direction: column;
  }
  .delivery-block .custom-game-3 .items .item {
    width: 100%;
  }
  .delivery-block .conducting-the-game {
    flex-direction: column-reverse;
  }
  .delivery-block .conducting-the-game .img {
    width: 100%;
    margin-bottom: 35px;
  }
  .delivery-block .conducting-the-game .text {
    width: 100%;
  }
  .contact-block {
    padding: 50px 20px;
  }
  .contact-block .container {
    flex-direction: column;
    padding: 0;
  }
  .contact-block .container .text {
    width: 100%;
    margin-bottom: 35px;
    padding: 0;
  }
  .contact-block .container .text .social {
    justify-content: center;
  }
  .contact-block .container .form {
    width: 100%;
  }
  .product-main .container {
    flex-direction: column;
  }
  .product-main .container .gallery {
    width: 100%;
    margin-bottom: 35px;
  }
  .product-main .container .info {
    width: 100%;
  }
  .product-main .info h2 {
    font-size: 30px;
  }
  .product-main .info p {
    font-size: 16px;
  }
  .product-main .info .info-btn .a-btn-solid {
    padding: 10px 20px;
  }
  .product-main .info .info-btn {
    gap: 20px;
  }
  .product-main .info .info-btn .like img {
    width: 30px;
  }
  .product-main {
    margin-bottom: 50px;
  }
  .product-text-main h2, .product-text-pdf h2, .wishlist h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .product-text-main .content {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-text-main .content .img {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-text-main .content .text .a-btn-solid {
    width: 100%;
  }
  .product-text-main {
    margin-bottom: 50px;
  }
  .product-text-pdf .content {
    flex-direction: column;
  }
  .product-text-pdf .content .text {
    width: 100%;
    margin-bottom: 35px;
  }
  .product-text-pdf .content .img {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .product-text-pdf .content .text .a-btn-border {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .product-text-pdf .content .text ul li {
    font-size: 16px;
  }
  .product-text-pdf {
    margin-bottom: 50px;
  }
  .breadcrumb {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .wishlist .items .item .list-block {
    flex-direction: column;
  }
  .card .items .item {
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */