@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --cb-1: #8B4513;
  --cb-2: #2F4F4F; 
  --cb-3: #A0522D; 
  --cb-4: #3C2415; 
  --cb-5: #5B3A29; 

  --cq-1: #FFD700; 
  --cq-2: #F4A460;
  --cq-3: #E5E5E5;
  --cq-4: #FFDEAD; 
  --cq-5: #FAF0E6; 
}


*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  direction: ltr;
  font-family: 'Barlow Semi Condensed', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  padding: 5px 0;
  line-height: 1.5;
}

li{
  margin: 0 8px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  margin: 0;
  padding: 0;
}

.container-box{
  width: auto;
  padding-right: 18px;
  padding-left: 18px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 480px) {
  .container-box{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .container-box{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container-box{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .container-box{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .container-box{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .container-box{
    max-width: 1274px;
  }
}

.page-privacy-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.page-privacy-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.page-privacy-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-068ad87fee001d.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.page-privacy{
  word-break: break-all;
  padding: 65px 0;
  overflow: hidden;
  width: 100%;
}

.title-politics{
  text-transform: uppercase;
  text-align: center;
  color: var(--cb-3);
  margin-bottom: 26px;
  font-size: clamp(22px, 4vw, 30px);
}

.content-politics{
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--cb-3);
  text-align: justify;
}

.page-privacy a{
  color: var(--cb-3);
}

.page-privacy a:hover{
  color: var(--cb-3);
  opacity: 0.5;
}

.header-container {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: rgba(19, 12, 12, 0.8);
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 22px;
}

.brand-image img {
  transition: 0.3s ease;
  max-height: 50px;
  object-fit: contain;
  width: 50px;
}

.brand:hover .brand-image img{
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.636));
}

.brand a {
  transition: color 0.3s ease;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.nav-list li {
  padding: 26px 10px;
  position: relative;
}

.nav-transition{
  transition: 0.3s ease;
}

.nav-link {
  position: relative;
  font-size: clamp(14px, 4vw, 16px);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-link-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.nav-link-category svg{
  transition: 0.3s ease;
}

.nav-transition:hover svg{
  transform: rotateX(180deg);
}

.nav-link-category svg{
  fill: var(--cq-3);
}

.nav-link:hover {
  color: var(--cq-3);
}

.dropdown {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: rgba(19, 12, 12, 0.8);
  border-top: 2px solid var(--cq-3);
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
      margin-top: 30px;
      opacity: 0;
  }
  100% {
      margin-top: 0;
      opacity: 1;
  }
}

.dropdown li {
  margin: 0;
  padding: 0;
}

.dropdown a {
  background-color: transparent;
  font-size: clamp(14px, 4vw, 14px);
  color: #fff;
  padding: 10px;
  display: block;
  transition: 0.3s ease;
}

.dropdown a:hover {
  color: var(--cq-3);
}

.nav-list li:hover .dropdown {
  display: block;
}

.hero-back{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.hero-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-068ad87fee017e.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.hero-content{
  width: 70%;
  margin: auto;
  padding: 121px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 45px;
}

.logo-hero{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  transition: 0.5s ease;
}

.logo-hero:hover{
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.636));
}

.logo-hero h1{
  width: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: clamp(30px, 4vw, 80px);
}

.logo-hero img{
  width: 147px;
  object-fit: contain;
  position: relative;
}

.hero-content h2{
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.hero-button {
  background: var(--cb-3);
  color: var(--cq-3);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 500;
  border-radius: 0.9em;
  border: 2px solid var(--cq-3);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--cb-3);
  overflow: hidden;
  position: relative;
  min-height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.hero-button .icon {
  background: var(--cq-3);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--cb-3);
  right: 0.3em;
  transition: all 0.3s;
}

.hero-button:hover .icon {
  width: calc(100% - 0.6em);
}

.hero-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--cb-3);
}

.hero-button:hover .icon svg {
  transform: translateX(0.1em);
}

.hero-button:active .icon {
  transform: scale(0.95);
}

.step-game-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.step-game-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.step-game-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-168ad87fee0049.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.step-game{
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 65px 0;
}

.step-game h2{
  text-transform: uppercase;
  text-align: center;
  color: #212121;
  font-size: clamp(22px, 4vw, 30px);
}

.step-game-box {
  display: flex;
  gap: 20px; 
}

.step-game-card {
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.step-game-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-game-icon svg{
  width: 80px;
  height: 80px;
  fill: var(--cb-3);
}

.step-game-card h5{
  font-weight: normal;
  color: #212121;
  font-size: clamp(16px, 4vw, 16px);
}

.step-game-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-game-arrow svg {
  transform: scale(1.3);
  fill: var(--cb-3);
}

.benefits-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.benefits-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-168ad87fee01ab.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.benefits-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.benefits{
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 65px 0;
}

.benefits h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.slider-container {
  direction: initial;
  display: flex;
  align-items: center;
  position: relative;
}

.benefits-box {
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  border-radius: 26px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.benefits-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.benefits-card {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  flex: 0 0 100%;
  text-align: center;
}

.benefits-card:nth-child(1) {
  background-image: url(imagevault/bg/gallery-068ad87fee027b.jpg);
}

.benefits-card:nth-child(2) {
  background-image: url(imagevault/bg/gallery-168ad87fee029e.jpg);
}

.benefits-card:nth-child(3) {
  background-image: url(imagevault/bg/gallery-268ad87fee02c1.jpg);
}

.benefits-card:nth-child(4) {
  background-image: url(imagevault/bg/gallery-368ad87fee02e2.jpg);
}

.benefits-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.benefits-card h5{
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.slider-arrow {
  transition: 0.3s ease;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow:hover svg{
  transform: scale(1.4);
}

.slider-arrow svg{
  transform: scale(1.2);
  transition: 0.3s ease;
  fill: #fff;
}

.slider-arrow-left {
  left: -5%;
}

.slider-arrow-right {
  right: -5%;
}

.aboutus-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.aboutus-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.aboutus-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-268ad87fee0071.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.aboutus{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 65px;
  padding: 65px 0;
}

.aboutus-content{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.aboutus-content h2{
  text-transform: uppercase;
  color: var(--cb-3);  
  font-size: clamp(22px, 4vw, 30px);
}

.aboutus-p{
  opacity: 0.8;
  font-weight: normal;
  color: #212121;  
  font-size: clamp(16px, 4vw, 16px);
}

.aboutus-img{
  flex: 1;
}

.aboutus-img img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  animation: scaleAnimation 6s infinite; 
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1); 
  }
  50% {
    transform: scale(1.05); 
  }
  100% {
    transform: scale(1); 
  }
}

.game-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.game-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-268ad87fee01d7.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.game-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.game{
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 65px 0;
}

.game h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.game-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.game-card {
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  background-color: rgba(19, 12, 12, 0.9);
  border-radius: 0.5rem;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  border-radius: 5px 5px 50% 50%;
  height: 50%;
  background: var(--cq-3);
  z-index: 0;
  transition: 0.4s ease-in-out;
}

.game-card:hover::before {
  border-radius: 0;
  height: 100%;
}

.game-title {
  z-index: 1;
}

.game-title h5 {
  text-align: center;
  transition: 0.5s ease;
  color: var(--cb-3);
  font-size: clamp(18px, 4vw, 22px);
}

.game-title h5:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.game-img {
  border-radius: 50%;
  transition: 0.5s ease;
  width: 223px;
  height: 223px;
  z-index: 1;
  border: 5px solid var(--cq-3);
}

.game-img img {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: 0.5s ease;
}

.game-card:hover .game-img img {
  filter: grayscale(0);
}

.game-card:hover .game-img{
  transform: scale(1.05);
  border: 5px solid var(--cb-3);
  padding: 10px;
}

.game-content {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.game-content p {
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 16px);
}

.game-card:hover .game-content p{
  color: var(--cb-3);
}

.game-box-one{
  display: none;
}

.game-box-two{
  display: none;
}

.twocatalog-card {
  width: 100%;
  border-radius: 0.5rem;
}

.card-inner {
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card-inner.flipped {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.card-front-icon{
  cursor: pointer;
  transition: 0.8s ease;
  position: absolute;
  bottom: 26px;
  right: 26px;
}

.card-front-icon svg{
  transform: scale(1.5);
  fill: #fff;
}

.card-front{
  transition: 0.8s ease;
}

.card-front:hover .card-front-icon{
  transform: rotate(180deg);
}

.card-back {
  background-color: rgba(19, 12, 12, 1); 
  transform: rotateY(180deg);
}

.card-back p {
  padding: 26px;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.front-title{
  padding: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-title h5 {
  text-transform: uppercase;
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  text-align: center;
  font-weight: bold;
}

.front-title h5:hover{
  opacity: 0.7;
  transform: scale(1.1);
}

.card-front img {
  border-radius: 0.5rem;
  filter: brightness(0.5);
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.accordion-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.accordion-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-368ad87fee0097.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.accordion-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 65px;
  padding: 65px 0;
}

.accordion-img {
  flex: 1;
}

.accordion-img img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  animation: scaleAnimation 6s infinite; 
}

.accordion {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 65px;
}

.accordion h2 {
  text-transform: uppercase;
  color: var(--cb-3);  
  font-size: clamp(22px, 4vw, 30px);
}

.accordion-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.accordion-item {
  border-bottom: 0.1px solid grey;
}

.accordion-item h5 {
  margin: 0;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 22px);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  color: #212121;
  transition: color 0.3s ease;
}

.accordion-item svg {
  width: 30px;
  height: 30px;
}

.accordion-item.active h5 {
  color: var(--cb-3); 
}

.accordion-item.active {
  border-bottom: none; 
}

.accordion-item.active svg {
  fill: var(--cb-3); 
}

.accordion-answer {
  margin-top: 20px;
  color: #212121;
  font-size: clamp(16px, 4vw, 18px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.wrapper-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 65px 0;
}

.wrapper-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-368ad87fee0202.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.wrapper-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.wrapper-img{
  text-align: center;
  border-radius: 22px;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  direction: initial;
  padding: 65px 0;
  min-height: 50vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.wrapper-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background-image: url(imagevault/bg/gallery-468ad87fee0303.jpg);
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.wrapper-img h2{
  text-align: center;
  padding: 0;
  font-weight: bold;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
  text-transform: uppercase;
}

.form-back{
  position: relative;
  width: 100%;
  padding: 65px 0; 
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.form-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.form-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-468ad87fee00bd.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.form-block{
  background: #F8F9FD linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 45px;
  padding: 22px 26px;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: var(--cb-3) 0px 30px 30px -20px;
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.form-block h2{
  text-transform: uppercase;
  text-align: center;
  color: var(--cb-3);  
  font-size: clamp(22px, 4vw, 30px);
}

.osn-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-container label{
  color: color: rgb(170, 170, 170);;
}

.input-container .input-input__section_input, .input-container .textarea-input__section_input {
  outline: none;
  margin: 8px 0;
}

.input-container .input-input__section_input {
  border-radius: 1.5rem;
  color: #212121;
  background-color: #fff;
  box-shadow: var(--cb-3) 0px 10px 10px -5px;
  border: none;
  border-inline: 2px solid transparent;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-input__section_input {
  border-radius: 1.5rem;
  color: #212121;
  background-color: #fff;
  box-shadow: var(--cb-3) 0px 10px 10px -5px;
  border: none;
  border-inline: 2px solid transparent;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 45px;
  max-height: 150px;
}

.input-container .input-input__section_input::placeholder, .input-container .textarea-input__section_input::placeholder{
  color: rgb(170, 170, 170);
}

.input-container .input-input__section_input:focus, .input-container .textarea-input__section_input:focus{
  outline: none;
  border-inline: 2px solid var(--cb-3);
}

.check{
  transition: 0.3s ease;
  color: var(--cb-3);
}

.check:hover{
  opacity: 0.5;
  color: var(--cb-3);
}

.form-check {
  color: var(--cb-3);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.form-button{
  margin: 0 auto;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.footer-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.footer-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-all-468ad87fee022d.jpg);
  background-position: center;
  filter: brightness(0.3);
  background-size: cover;
  z-index: -1;
}

.footer-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.footer{
  display: flex;
  flex-direction: column;
}

.footer-top{
  text-align: center;
  padding: 65px 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.disclaimer {
  background-color: var(--cb-3);
  border: 1px solid var(--cb-3);
  padding: 26px;
  border-radius: 10px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.disclaimer__title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(22px, 4vw, 30px);
  color: var(--cq-3);
  margin-bottom: 26px;
  position: relative;
  width: max-content;
  margin-inline: auto;
}

.disclaimer__title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(270deg, var(--cb-3), var(--cq-3));
  inset-inline-start: 0;
  inset-block-end: 0;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
}

.disclaimer__text {
  padding: 0;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--cq-3);
  opacity: 0.7;
}

.disclaimer::after,
.disclaimer::before {
  content: "";
  position: absolute;
  background-image: conic-gradient(from var(--angle), transparent 70%, var(--cq-3));
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  padding: 3px;
  box-sizing: content-box;
  border-radius: inherit;
  animation: move 3s linear infinite;
}

.disclaimer::before {
  filter: blur(10px);
  opacity: 0.7;
}

.disclaimer:hover .disclaimer__title::after {
  width: 100%;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes move {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.privacy ul li a {
  font-size: clamp(16px, 4vw, 18px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.footer-bottom{
  border-top: 0.1px solid #fff;
  padding: 26px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}



.playing-block{
  padding: 70px 0;
  width: 100%;
  height: 100vh;
}

.playing-block iframe{
  border: none;
  width: 100%;
  height: 100vh;
}

.column-content{
  display: flex;
  flex-direction: column-reverse;
}

.art-cont-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.art-cont-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.art-cont-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-568ad87fee00e3.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.art-cont {
  padding: 65px 0;
}

.art-cont-title {
  text-align: center;
  padding: 65px 0;
  text-transform: uppercase;
  color: var(--cb-3);
  font-size: clamp(22px, 4vw, 30px);
}

.art-block {
  overflow: hidden;
  position: relative;
}

.art-block-images {
  border: 1px solid var(--cq-3);
  border-radius: 0.5rem;
  float: left;
  width: 35%;
  margin: 45px;
  margin-top: 0;
  margin-left: 0;
}

.art-block-content {
  color: var(--cb-3);
  font-size: clamp(16px, 4vw, 18px);
}

.art-block-content ul {
  list-style: inside;
}

.contacts-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
}

.contacts-back:after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  background: url(imagevault/assets/borders_long-068ad87fee036a.png) center center;
  background-size: auto 100%;
  pointer-events: none;
}

.contacts-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/bg/bg-light-668ad87fee0108.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.contacts-box{
  padding: 45px 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.cont-card{
  border: 2px solid var(--cq-3);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 20px;
  background-color: var(--cb-3);
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.cont-card svg{
  width: 30px;
  height: 30px;
  fill: var(--cq-3);
}

.cont-card a{
  flex: 1;
}

.cont-card a h5{
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--cq-3);
}

.cont-card a h5:hover{
  opacity: 0.5;
}

.cont-card h5{
  flex: 1;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--cq-3);
}

.kontact-form{  
  background: #F8F9FD linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 45px;
  padding: 22px 26px;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: var(--cb-3) 0px 30px 30px -20px;
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  text-transform: uppercase;
  text-align: center;
  color: var(--cb-3);  
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 26px;
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  margin: 8px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 1.5rem;
  color: #212121;
  background-color: #fff;
  box-shadow: var(--cb-3) 0px 10px 10px -5px;
  border: none;
  border-inline: 2px solid transparent;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 1.5rem;
  color: #212121;
  background-color: #fff;
  box-shadow: var(--cb-3) 0px 10px 10px -5px;
  border: none;
  border-inline: 2px solid transparent;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 45px;
  max-height: 150px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: rgb(170, 170, 170);
}

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  outline: none;
  border-inline: 2px solid var(--cb-3);
}

.kontact-form button{
  margin: 0 auto;
}

.menu-toggle {
  cursor: pointer;
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.5s;
}

.menu-toggle span:nth-of-type(2) {
  top: calc(50% - 7px);
}

.menu-toggle span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.menu-toggle.is-active span:nth-of-type(1) {
  display: none;
}

.menu-toggle.is-active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-toggle.is-active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.menu-panel {
  padding: 50px 0;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.9;
  background: #000;
  transform: translateY(-100%);
  transition: transform 0.5s;
}

.menu-panel.is-open {
  transform: translateY(0);
}

.menu-panel nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.menu-panel ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  padding: 0;
}

.menu-panel li {
  list-style-type: none;
}

.menu-panel li a {
  letter-spacing: 2px;
  text-align: center;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

.menu-panel li a:hover {
  opacity: 0.6;
  color: #fff;
}


@media (max-width: 991px) {
  .aboutus-img img{
    max-height: 60vh;
  }

  .accordion-img img{
    max-height: 60vh;
  }

  .menu-toggle{
    display: block;
  }

  .nav{
    display: none;
  }

  .header-container{
    padding: 15px 0;
  }

  .hero-content{
    width: 100%;
  }

  .logo-hero img{
    width: 80px;
  }

  .step-game-box{
    flex-direction: column;
  }

  .step-game-arrow svg {
    transform: scale(1.3) rotate(90deg);
  }

  .aboutus{
    flex-direction: column-reverse;
  }

  .game-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .accordion-wrapper{
    flex-direction: column-reverse;
  }

  .form-block{
    width: 100%;
  }

  .kontact-form{
    width: 100%;
  }
}

@media (max-width: 767px) {
  .slider-arrow-left{
    left: 0;
  }

  .slider-arrow-right{
    right: 0;
  }

  .game-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .art-block-images{
    width: 100%;
    margin: 0 0 45px 0;
  }

  .playing-block{
    height: 100vh;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .contacts-box{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px){

}

.footer-logos {
    display: flex;
    justify-content: center; 
    align-items: center;
   flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-logos a img {
    max-height: 50px;
    width: auto;
    display: block;
  }