@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro: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');

:root {
  --white-color: #fff;
  --black-color: #060606;
  --white-color-section: #fcfcfc;
  --accent: #f68b1f;
  --hover-tranzitipn: all ease 0.5s;
  --flex-basis-1: calc((100% - 3* 30px) / 3);
  --flex-basis-2: calc((100% - 2* 30px) / 2);
  --col-box-1: #588146;
  --col-box-2: #4c9a2a;
  --col-box-3: #4c6542;
  --gold-color-1: #cd9c5b;
  --gold-color-2: #d2b48c;



}

body {

  direction: ltr;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  line-height: 1.2;

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 200ms linear;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

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

ul {
  list-style: none;
}

[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}

h2 {
  font-size: clamp(21px, 4vw, 36px) !important;
}

.buttunGame-1 {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: #ffcc00;
  color: #000;
  padding: 15px 20px;
  border: none;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease;

}

.buttunGame-1:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  transition: all 0.5s ease;
  transform: skewX(-45deg);
  z-index: 0;
}

.buttunGame-1:hover:before {
  left: 100%;
}

.buttunGame-1:hover {
  background-color: #ff9900;
  color: #fff;
}

.buttunGame-1:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}


.buttunGame-1::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: all 0.2s ease;
  transform: rotate(45deg);
  z-index: -1;
}

.buttunGame-1:hover::after {
  opacity: 1;
  transform: rotate(45deg) scale(1.2);
}

.buttunGame-2 {
  padding: 15px 23px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border: none;
  outline: none;
  color: #000;
  background: orange;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 4px;
  transition: var(--hover-tranzitipn);
}

.buttunGame-2:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #8c97cf, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .2s ease-in-out;
  border-radius: 4px;
}

.buttunGame-2:hover {
  color: #fff;
}

.buttunGame-2:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: orange;
  left: 0;
  top: 0;
  border-radius: 4px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.buttunGame-3 {
  text-align: center;
  width: fit-content;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: #fff;
  border: none;
  padding: 15px 26px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);/ transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.buttunGame-3:hover {
  background: linear-gradient(135deg, #4caf50, #81c784);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);

}

.buttunGame-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 10.01%);
  background-size: 50% 50%;
  transition: transform 0.5s ease-in-out;
  transform: translateX(-50%) scale(0);
  z-index: 0;
}

.buttunGame-3:hover:before {
  transform: translateX(-50%) scale(1);
}

.buttunGame-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: linear-gradient(90deg, #ff0000, #ff6600);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 26px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;

}

.buttunGame-4:hover,
.buttunGame-4:focus {

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.buttunGame-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: all 0.5s ease-in-out;
}

.buttunGame-4:hover:before,
.buttunGame-4:focus:before {
  left: 100%;
}

.buttunGame-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background: linear-gradient(45deg, #ff5722, #ff9800);
  color: #fff;
  border: none;
  padding: 15px 33px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 29px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 15px rgba(255, 87, 34, 0.5);
}

.buttunGame-5:hover {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(255, 152, 0, 0.7);
}

.buttunGame-5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-size: 50% 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}

.buttunGame-5:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.canvas {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.top-section {
  position: relative;
  z-index: 3;
  padding: 15px 0;
  color: var(--white-color-section);
  background-color: #0B3D0B;
}

.heroJun {
  position: relative;
  display: grid;
  place-items: center;
  padding: 100px 0 200px;
}

.heroJun::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #4c9a2a3b;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 2s ease-in-out;
}

.hero-slide_items {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
}

.hero-slide_items.is-visible {
  opacity: 1;

}


.heroJun_context {
  position: relative;
  z-index: 2;

}

.heroJun_flex {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;

}

.jungle-adventure-title {
  display: inline;
  font-size: calc(1.5rem + 3vw);
  color: #FF4500;
  padding: 26px;
  text-shadow: 0 0 10px #FFFF00, 0 0 20px #FFFF00;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jungle-adventure-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(8px);
  z-index: -1;
  clip-path: polygon(0% 8%, 5% 3%, 10% 8%, 15% 1%, 20% 10%, 25% 5%, 30% 10%, 35% 0%, 40% 12%, 45% 5%, 50% 8%, 55% 0%, 60% 10%, 65% 3%, 70% 10%, 75% 0%, 80% 12%, 85% 3%, 90% 10%, 95% 0%, 100% 5%,
      100% 95%, 95% 100%, 90% 95%, 85% 97%, 80% 88%, 75% 100%, 70% 90%, 65% 97%, 60% 90%, 55% 100%, 50% 92%, 45% 95%, 40% 88%, 35% 100%, 30% 90%, 25% 95%, 20% 90%, 15% 99%, 10% 92%, 5% 95%, 0% 90%);

}

.heroJun-text {
  width: 75%;
  text-align: center;
  color: #fff;
  font-size: 23px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .9);
}

.nav-top_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links {
  position: relative;
  padding: 10px 20px;
  display: block;
  color: var(--white-color-section);
  font-size: 16px;
  text-transform: uppercase;
}

.nav-links::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ADFF2F;
  left: 0;
  bottom: 0px;
  transition: transform 0.2s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.nav-links:hover,
.nav-links:focus {
  color: #ADFF2F;
  text-shadow:
    0 0 10px #ADFF2F,
    0 0 20px #ADFF2F;
}

.nav-links:hover:after,
.nav-links:focus:after {
  transform: scaleX(1);
}

.top-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;

  img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.gap-25 {
  gap: 29px;
}

.box-row {
  flex-direction: row-reverse;
}

.justify {
  justify-content: space-between;
}

.radius-section {
  background-position: center;
  background: url(visualtreasure/dir-bg/opacity_bg-0696a94fe0e1dc.png) repeat scroll var(--white-color-section);
  overflow: hidden;
  padding: 100px 0 150px;
  margin-top: -90px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  position: relative;
  z-index: 1;
}

.section-imges {
  padding: 100px 0 150px;
  margin-top: -90px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(visualtreasure/dir-bg/bg-dark-0696a94fe0e18d.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-imges2 {
  background-image: url(visualtreasure/dir-bg/bg-light-0696a94fe0e153.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-imges::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #0606067a;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.blok_position {
  position: relative;
}

.gold-section {
  background: var(--gold-color-1);
  overflow: hidden;
}

.flex-wrappers {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-direction: row-reverse;
}

.flex-wrappers_element {
  flex: 1;
}

.flex-wrappers_2element {
  flex: 2;
}

.flex-wrappers_text {
  font-size: 16px;

  p {
    margin-bottom: 10px;
    text-indent: 3ch;
  }
}

.flex-wrappers_text ul,
ol {
  list-style: inside;
}

.title-wrappers {
  color: var(--black-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgb(3 223 30 / 90%);
}

.about-avatar {
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
    max-height: 394px;
    object-fit: contain;
  }

}

.scroll-image {
  transition: transform 100ms linear;
}

.about-gellery {
  display: flex;
  height: 272px;
  overflow: hidden;
  border: 1px solid var(--col-box-1);
  transition: var(--hover-tranzitipn);
  border-radius: 50%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about-gellery:hover {
  transform: scale(1.05);
}

.about-img-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.step-img {

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    max-height: 394px;
    object-fit: contain;

  }
}

.step-listNM {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.step-box_goup {
  display: flex;
  flex-direction: row;
  gap: 26px;
}

.step_item {

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-radius: 0;
  transition: var(--hover-tranzitipn);
  border-bottom: 0px dashed green;

  p {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
  }
}

.step_item:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
}

.step_icons {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}

.game-grid-wrapper {
  margin-top: 56px;
}

.games-grid {
  display: grid;
  grid-auto-rows: auto;
  grid-gap: 25px;
}

.games-listMain {
  display: block;
}

.game-item {
  position: relative;
  display: block;
  height: 394px;
  overflow: hidden;
  border-radius: 35px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
}

.overley {
  position: absolute;
  inset: 0;
  background: #0b3d0bb5;
  overflow: hidden;
  border-radius: 35px;
  transition: var(--hover-tranzitipn);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.overley-dark {
  background: #000000b5;
}

.overley-red {
  background-color: #795548b5;

}

.game-item:hover .overley {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.game-titles:hover {
  color: #FF8C42;
}

.game-contents {
  width: 100%;
  height: 100%;
  padding: 45px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.game-inform {
  color: #e9dddd;
  font-size: 16px;
}

.game-titles {
  color: #FFF;
  transition: var(--hover-tranzitipn);
}

.like {
  position: absolute;
  top: 10px;
  right: 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(2px);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 15px;

  svg {
    width: 12px;
    height: 12px;
    fill: transparent;
    stroke: #fff;
  }

}

.like-tex {
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  line-height: 9px;
  text-transform: capitalize;
}

.bg-footer {
  background-color: #0B3D0B;
}

.pad-bottom-section {
  padding: 70px 0 35px;
}

.foorer-bottomJK_copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #e9dddd;
  justify-content: flex-end;
}

.name-site {
  color: #2df4a1;
}

.footer-lite {
  position: relative;
  padding: 56px 0;
  display: grid;
  place-items: center;
}

.divider {
  width: 100%;
  border: 3px solid #fff;
}

.ava-age {
  position: absolute;
  height: 70px;

  img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

.logo-footerJK {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  color: #2df4a1;
  font-size: 18px;
  font-weight: 700;

  img {
    height: 56px;
    width: auto;
    object-fit: contain;
  }
}

.foter-iner-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 29px;

}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav .nav-links {
  font-size: 13px;
  display: inline-block;
}

.disclaimer-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  padding: 25px;
  overflow: hidden;
  border: 2px solid #2df4a1;
  box-sizing: border-box;
  background: #951313;
}

.disclaimer-wrapper::before,
.disclaimer-wrapper::after,
.disclaimer-wrapper span::before,
.disclaimer-wrapper span::after {
  content: '';
  position: absolute;
  background: #adff2f;
  pointer-events: none;
  width: 100%;
  height: 2px;
}

.disclaimer-wrapper::before {
  top: 0;
  left: 0;
  animation: slideRight 4s linear infinite;
}

.disclaimer-wrapper::after {
  bottom: 0;
  left: 0;
  animation: slideLeft 4s linear infinite 2s;
}

.disclaimer-wrapper span::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  animation: slideDown 4s linear infinite 1.5s;
}

.disclaimer-wrapper span::after {
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  animation: slideUp 4s linear infinite 4.5s;
}

@keyframes slideRight {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

@keyframes slideLeft {

  0%,
  100% {
    transform: translateX(100%);
  }

  50% {
    transform: translateX(-100%);
  }
}

@keyframes slideDown {

  0%,
  100% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(100%);
  }
}

@keyframes slideUp {

  0%,
  100% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(-100%);
  }
}


.disclTitle {
  color: #2df4a1;
  font-weight: 700;
}

.disclTex {
  font-size: 20px;
  color: #fff;
}

.contact-bg {
  background: var(--white-color-section);
}

.contact-wrapperAWW {

  padding: 41px 35px;
  border-radius: 10px;
  margin: 0 auto;
  background-position: center;
  background: url(visualtreasure/dir-bg/opacity_bg-1696a94fe0e1e7.png) repeat scroll var(--col-box-1);
  overflow: hidden;
}

.form-wrapperNM,
.form-bottom {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  color: var(--white-color-section);

}

.form-wrapperNM input,
.form-wrapperNM textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #2df4a1;
  transition: all 0.2s ease-in;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f9b0f 0%, #616161 100%);
  color: var(--white-color-section);
}

.form-wrapperNM input::placeholder,
.form-wrapperNM textarea::placeholder {
  color: #e9dddd;
}

.form-wrapperNM input:focus,
.form-wrapperNM textarea:focus {
  border-color: #adff2f;
}

.check {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;

  input {
    width: auto;
  }

}

.cont-item {
  flex-grow: 1;
  flex-basis: 250px;
  padding: 15px 10px;
  border: 1px solid #2df4a1;
  align-items: center;
  text-align: center;
  transition: var(--hover-tranzitipn);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f9b0f 0%, #616161 100%);
  display: flex;
  flex-direction: column;
  gap: 25px;

  h3 {
    color: #fff;
    font-weight: 700;
    font-size: 23px;
  }
}

.cont-item:hover {
  border-color: #adff2f;
  transform: scale(1.04);
}

.cont-linkJK {
  color: #adff2f;
  font-weight: 700;
  font-size: 18px;
  word-wrap: break-word;
}

.cont-flex {
  align-items: unset;
  gap: 36px;
}

.cont-listPO {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.flex-col-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.about-page-imgBig {
  height: 394px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid var(--col-box-1);

  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
  }
}

.about-page-imgBig:hover img {
  transform: scale(1.08);
  opacity: 0.8;
}

.imges-opasit {
  position: relative;
}

.imges-opasit::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
  background-image: url(visualtreasure/other/liana-0696a94fe0e27a.svg);
}

.about-gellery-group {
  align-items: unset;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  transform-style: preserve-3d;
  perspective: 500px;
  margin: auto;
}

.gallery_items {
  position: relative;
  flex: 1;
  cursor: pointer;
  height: 272px;
  background: #000;
  transition: 0.5s;
  border: 1px solid var(--col-box-1);
  border-radius: 35px;
  transform-style: preserve-3d;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 44, 5, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 18px;
  margin-top: -50px;
  color: white;
  font-weight: 700;
  font-size: 40px;
  user-select: none;
  transition: 0.2s;
}

.prev {
  inset-inline-start: 0;
}

.next {
  inset-inline-end: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(1, 44, 5, 0.8);
}

.playingJN {
  height: 100vh;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
}

.playingJN iframe {
  height: 100vh;
  width: 100%;
  border: none
}

.main-pecture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  img {
    width: 100%;
    height: 371px;
    object-fit: contain;
  }
}

.privacyJN {
  word-break: break-word;
  color: var(--black-color);
}

.privacyJN p {
  margin-bottom: 10px;
  text-indent: 3ch;
}

.privacyJN h1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.privacyJN h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.privacyJN table,
.privacyJN a {
  word-break: break-word;
  color: inherit;
}

.games-listIO {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  justify-content: center;
}

.games-listIO_item {
  margin: 15px;
  flex-basis: var(--flex-basis-1);
}

.single-games {
  width: 100%;
  height: 394px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(228, 214, 214, 0.35) 0px 5px 15px;
  border-radius: 35px;
}

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

.part-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.part-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.part-text::before,
.part-text::after {
  position: absolute;
  content: "";
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}

.part-text::before {
  inset-inline-end: 0;
  top: 0;
  width: 120%;
  height: 200%;
  background: linear-gradient(130deg, #4caf50, #8bc34a);
  transform: rotate(25deg) translateY(-15%) translateX(120%);

}

.part-text::after {
  inset-inline-start: 0;
  top: 0;
  width: 120%;
  height: 200%;
  background: linear-gradient(135deg, #0f9b0f 0%, #616161 100%);
  transform: rotate(28deg) translateY(-20%) translateX(-130%);
  transition: all 0.5s ease;
}

.games-listIO-title {
  display: block;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin-top: -7px;
  margin-bottom: 25px;
  position: relative;
  inset-inline-start: -150%;
  transition: all 0.2s ease-in;
  transition-delay: 0.2s;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .9);
}

.games-listIO_button {
  position: relative;
  inset-inline-start: -150%;
  transition: all 0.2s ease-in;
  transition-delay: 0.5s;
}

.section-imges .title-wrappers {
  color: #fff;
}

.gap-60 {
  gap: 60px;
}

.form-element {
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .jungle-adventure-title {
    text-shadow: none;
    padding: 29px 10px;
  }

  .heroJun-text {
    font-size: 20px;
  }

  .about-avatar img {
    max-height: 394px;
  }

  .step-box_goup {
    flex-direction: column;
  }

  .step_item p {
    font-size: 16px;
  }

  .step_item {
    padding: 20px 15px;
  }

  .game-inform {
    font-size: 16px;
  }

  .contact-wrapperAWW {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-pecture img {
    height: auto;
  }

  .games-listIO_item {
    flex-basis: 100%;
  }

  .part-text {
    padding: 29px 15px;
  }

  .games-listIO-title {
    font-size: 20px;
  }
}

@media (min-width: 575px) and (max-width: 992px) {
  .about-img-wrapper {
    flex-direction: row-reverse;
  }

  .about-avatar,
  .about-gellery {
    flex: 1;
  }

  .about-gellery {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .games-listIO_item {
    flex-basis: var(--flex-basis-2);
  }
}

@media (min-width: 769.99px) {
  .gallery-wrapper:hover .gallery_items {
    transform: rotateY(20deg);
  }

  .gallery-wrapper .gallery_items:hover~.gallery_items {
    transform: rotateY(-20deg);
  }

  .gallery-wrapper .gallery_items:hover {
    transform: rotateY(0deg) scale(1.08);
    z-index: 1;
  }

  .single-games:hover .part-text::before,
  .single-games:hover .part-text::after {
    opacity: 1;
  }

  .single-games:hover .part-text::before {
    transform: rotate(25deg) translateY(-15%) translateX(30%);
  }

  .single-games:hover .part-text::after {
    transform: rotate(28deg) translateY(-20%) translateX(-40%);
  }

  .single-games:hover .games-listIO-title,
  .single-games:hover .games-listIO_button {
    inset-inline-start: 0;
  }

}

@media (max-width: 768px) {

  .games-listIO_button,
  .games-listIO-title {
    inset-inline-start: 0;
  }

  .part-text::after {
    display: none;
  }

  .part-text::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, rgb(39, 84, 41) 100%);
    transform: rotate(0deg) translateY(0%) translateX(0%);
  }

  .single-games:hover .part-img img {
    transform: scale(1.08);
    opacity: 0.8;
  }

  .justify {
    justify-content: center;
  }

  .heroJun-text {
    width: 100%;
  }

  .foorer-bottomJK_copyright {
    justify-content: center;
  }

  .disclTex {
    font-size: 18px;
  }

  .radius-section,
  .section-imges {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .about-page-imgBig {
    height: 272px;
  }

  .gallery_items:hover img {
    transform: scale(1.08);
    opacity: 0.8;
  }

  .gallery-wrapper {
    flex-direction: column;
  }

  .gallery_items {
    flex: auto;
  }

  .prev {
    inset-inline-end: 50%;
    inset-inline-start: auto;
  }

  .next {
    inset-inline-start: 50%;
    inset-inline-end: auto;
  }

  .prev,
  .next {
    bottom: 0;
    top: auto;
    font-size: 18px;
  }

  .form-btn {
    width: 100%;
  }

  .about-gellery-group {
    flex-direction: column;
  }

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



@media (max-width: 992px) {
  .nav-top_list li a {
    font-size: 16px;
  }

  .flex-wrappers {
    flex-direction: column;
  }

  .step-img img {
    max-height: 394px;
  }



}

@media (min-width: 992px) {
  .cont-flex {
    flex-direction: column;
  }

  .section-imges .cont-flex {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .about-gellery-group {
    flex-direction: row;
  }

  .about-gellery-group .flex-wrappers_2element {
    flex: 1;
  }

  .form-wrapperNM {
    width: 85%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {

  .canvas {
    max-width: 1170px;
  }
}




.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;

    &:hover,
    &:hover {
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}