@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');


:root {   
  --colorWhite: #f6f4ec;
  --colorDark: #080101;
  --white:#fff;
  --header-color-1:#76b76a;
  --header-color-2:#ff914d;
  --header-color-3:#2e8b57;
  --header-color-4:#a68b5b;
  --header-color-5:#2e5730;

  --hero-color-1:linear-gradient(to bottom, #5eb85f, #62bd60); 
  --hero-color-2:linear-gradient(to bottom, #ffb347, #ffcc33);
  --hero-color-3:linear-gradient(to bottom, #006400, #228b22);
 --hero-color-4: linear-gradient(to bottom, #c4a484, #8b6f47);
 --hero-color-5:linear-gradient(to bottom, #4b8e4b, #5fa35f);

  --mane-color-1: linear-gradient(to bottom, #536b54, #62bd60);
  --mane-color-2:linear-gradient(to top, #aa6f00, #ff914d);
  --mane-color-3:linear-gradient(to top, #355e3b, #4caf50);
  --mane-color-4:linear-gradient(to top, #6e593c, #b08d57);
  --mane-color-5:linear-gradient(to top, #3c6c40, #5fa35f);

  --wrapper-color-1:#0d4b56;
  --wrapper-color-2:#522e1e;
  --wrapper-color-3:#013220;
 --wrapper-color-4: #3e2f1b;
 --wrapper-color-5:#0a3b44;

  --border-color-1:#daa520;
  --border-color-2:#ffb700;
  --border-color-3:#c4a000;
  --border-color-4:#d4af37;
  --border-color-5:#b8860b;

  --fotter-color-1:linear-gradient(145deg, #2c3e30, #1e2f2b);
  --fotter-color-2:linear-gradient(145deg, #662d1a, #33150d);
  --fotter-color-3:linear-gradient(145deg, #1c4012, #0e2910);
  --fotter-color-4:linear-gradient(145deg, #5c4033, #3b2c1a);
  --fotter-color-5:linear-gradient(145deg, #1f3a2b, #152821); 
  
}

body{  
  direction: ltr;
  font-family: 'Changa', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;    
  line-height: 1.4;
    
}
* {
  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(22px,4vw,36px)
}
.buttonGam-1 {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: var(--border-color-4); 
  color: #000; 
  padding: 14px 22px;
  border: none;
  border-radius:  36px; 
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden; 
  transition: all 0.4s ease; 
  
}
.buttonGam-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.4s ease;
  transform: skewX(-45deg); 
  z-index: 0;
}

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

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

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


.buttonGam-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.3s ease;
  transform: rotate(45deg);
  z-index: -1;
}

.buttonGam-1:hover::after {
  opacity: 1;
  transform: rotate(45deg) scale(1.2); 
}
.buttonGam-2 {
  padding: 14px 22px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: none;
  outline: none;
  color:#000;
  background: var(--border-color-4);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 13px;
  transition: all .3s ease-in-out;
}

.buttonGam-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);
  -webkit-animation:glowing 20s linear infinite;
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .3s ease-in-out;
 border-radius:13px;
}

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

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

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

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

  100% {
    background-position: 0 0;
  }
}
.buttonGam-3{
  text-align: center;
  width: fit-content;
 background: #2e7d32; 
  color: #fff; 
  border: none;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
} 
.buttonGam-3:hover{
  background: linear-gradient(135deg, #4caf50, #81c784); 
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4); 
  transform: translateY(-3px); 

}
.buttonGam-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.4s ease-in-out;
  transform: translateX(-50%) scale(0);
  z-index: 0;
}
.buttonGam-3:hover:before{
   transform: translateX(-50%) scale(1); 
}
.buttonGam-4 {
  display: block;
  text-align: center;
  width: fit-content;
  border-radius: 36px;
  padding:  14px  28px;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 11px;
  transition:  background .4s ease;
  background: linear-gradient(90deg, #ce501e 0, #fc8428);
}

.buttonGam-4:hover,
.buttonGam-4:focus {
  
  background: #ce501e;
}

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

.buttonGam-5:hover {
  background: linear-gradient(45deg, #ff9800, #ffc107); 
  transform: scale(1.05); 
  box-shadow: 0 12px 20px rgba(255, 152, 0, 0.7); 
}
.buttonGam-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.4s ease-in-out;
  z-index: 0;
}

.buttonGam-5:hover:before{
  transform: translate(-50%, -50%) scale(1); 
}
.header-jd{
  background-color: var(--header-color-4);  
  border-bottom: 1px solid #ffffff40;
  
}
.container-box{
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.overlay {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  background-color: #819c3894; 
  opacity: 0;          
  z-index: 1; 
  visibility: hidden;
  transition: all 700ms ease;
}
.overlay.active{
  opacity: 0.8;
  visibility: visible;
  transition: all 700ms ease;;
}
.top-navLKI{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.top-logo{
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
align-items: center;
text-align: center;
padding: 10px 0;
color: #ffd700;
font-size: 20px;
font-weight: 600;
text-shadow: -1px -1px 0 #4b2e09,  
               1px -1px 0 #4b2e09,  
               -1px 1px 0 #4b2e09,  
               1px 1px 0 #4b2e09; 
  letter-spacing: 2px;


img{
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
}
.top-logo:hover img{
  -webkit-animation:jungleSwing 1s ease-in-out infinite alternate;
  animation: jungleSwing 1s ease-in-out infinite alternate;
}
@keyframes jungleSwing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(3deg); }
}
.hamburger-menu{
  height:22px;
  width: 39px;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: none;
  background: transparent;
}
.hamburger-menu >span{
  display: inline-block;
  position: relative;
  height: 1px;
  width: 100%;
  border-radius: 1px;
  background: #ffd700;
  vertical-align: middle;
}
.hamburger-menu >span::before,.hamburger-menu >span::after{
  display: inline-block;
  position: absolute;
  content: "";
  height: 1px;
  border-radius: 1px;
  background: #ffd700;
    transition: all 0.3s ease-out 0s;
}
.hamburger-menu > span:before {
  top: -11px;
  inset-inline-start: 0px;
  width: 70%;
}
.hamburger-menu > span:after {
  top: 11px;
  inset-inline-end: 0px;
  width: 70%;
}

.hamburger-menu:hover span:after,.hamburger-menu:hover span::before{
  width: 100%;
}
.top-navLKI.active .hamburger-menu > span{
  height: 0;
}
.top-navLKI.active .hamburger-menu > span:before {
  top: 0;
  width: 34px;
  inset-inline-start: 0;
  transform: rotate(45deg);
}
.top-navLKI.active .hamburger-menu > span:after {
  top: 0;
  inset-inline-start: 0;
  width: 34px;
  transform: rotate(-45deg);
} 
.top-navLKI.active .top-menu {
  right: 0;
}
.top-menu{
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  right: -100vw;
  width: 320px;
  transition: all 0.3s ease;
  height: 100vh;
  background: linear-gradient(90deg, #206359 0, #5eb85f);  
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 2;
 overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  box-shadow: 0 8px 25px 0 rgba(255, 165, 0, 0);
}
.top-menu_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px 22px;
 
}
.top-menu_butonClose{
  width: 39px;
  height: 39px;
  background: linear-gradient(135deg, #d2e4cf, #4ce92e);
  border-radius: 20% 20% 20% 20%;
  position: relative;
  transform: rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  svg{
    fill: #adb0bc;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease-out 0s;
  }
}
.top-menu_butonClose:hover{
  background-color: #f4c430; 
  transform: rotate(0deg); 
}
.top-menu_butonClose:hover svg{
  fill:#080101;
}
.top-menu_title{
  padding: 0 15px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.top-menu_maine{
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.top-menu_list,.top-menu_list-contact{
  display: flex;
  flex-direction: column;  
}
.top-menu_list li{
  border-top: 1px solid #5a372059;
}
.top-menu_list li:last-child{
  border-bottom: 1px solid #5a372059;
}
.top-menu_links{
  position: relative;
  display: block;
  padding: 13px 22px;
  transition: all 0.35s ease-in-out;
  color: var(--white);
  font-size:  16px;
  word-wrap: break-word;
}

.top-menu_list li:hover .top-menu_links{
  transform: translateY(-5px);
  color: #ffd700;
}

.tom-menu_img{
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: auto;
    height:  118px;
    object-fit: contain;
  }
}
.bg-main{
  background-image: url(content/back/opacity_bg-069d8cfbbe1465.png), var(--hero-color-4);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-pad{
  padding: 46px 0;
}
.iner-wrappers{   
  padding: 28px 46px;
  background-color: var(--wrapper-color-4);
  border-radius: 4px;
}


.flex-wrapper-rowRevs{
  display: flex;
  gap: 28px;
  align-items: center;
  flex-direction: row;
}
.flex-element{
  flex: 1;
}
.flex-element-big{
  flex: 2;
}
.flex-col{
  display: flex;
  flex-direction: column;
}
.flex-gap-smal{
  gap: 22px;
}
.imperative{
  color: var(--white);
  font-weight: 700;
  font-size:  28px;
}
.hero-text{
  font-size:  22px;
  color: #bfddbf;
}
.hero-galery{
  position: relative;
  width: 363px;
  flex: 0 0 auto;
  height: 363px;
  overflow: hidden;
  margin: 0 auto;  
  border-radius: 0%;
 

}
.hero-slide_item{
 position: absolute;
  inset: 0;
  opacity: 0;
	transition: opacity 3s ease-in-out;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }

}
.hero-slide_item.is-visible{
  opacity: 1;
  
}
.border{
border:  4px solid var(--border-color-4);
}
.btn-group{
  display: flex;
  gap:22px;
  flex-wrap: wrap;

}
.btn-hero{
  border-radius: 36px;
padding:  14px  28px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 11px;
  transition: background-color .4s ease;
  background: linear-gradient(90deg, #ce501e 0, #fc8428);
}
.btn-hero:hover{
  background: #ce501e;
}
.btn-icon{
  height: 50px;
  width: auto;
  flex: 0 0 auto;
  svg{
    width: 100%;
    height: 100%;
    fill:#ce501e ;
  }
}
.flex-element-big{
  flex: 2;
}
.footen-box-link{
  display: flex;
  flex-wrap: wrap;
  gap:28px;
  justify-content: space-between;
  flex-direction: row;
}
.footen-box-link .top-menu_list li{
  border: none;
}

.jungle-header {
  position: relative;
  width: 100%;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  background-color: #004d26;
  padding: 46px 0;
}


.jungle-disclaimer {
  position: relative;
  width:100%;  
  padding: 25px 25px;
  background: linear-gradient(145deg, #ffb700, #ff7b00, #d65a00);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius:  15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);  
  -webkit-animation:sway 3s infinite ease-in-out alternate;
  animation: sway 3s infinite ease-in-out alternate;
  display: flex;  
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

@keyframes sway {
    0% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
}

.jungle-disclaimer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.fire {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-left {
  margin-left: -15px;
}

.fire-right {
  margin-right: -15px;
}
.game-features{
 background:var(--mane-color-4);
}
.section-pad{
  padding: 50px 0;
  
}
.ava-age{
  display: flex;
  align-items: center;
  justify-content: center;
 height: 76px;
 img{
  height: 100%;
  width: auto;
  object-fit: contain;
 }

}
.mein-blok{
  
  position: relative;
  padding: 50px 13px;
}
.mein-blok::before{
  position: absolute;
  display: block;
  content: "";
  top: -31px;
  left: 0;
  width: 100%;
  height: 80px;
  background-position: center;
  background-size: contain;
  background-repeat:repeat-x;
  background-image: url(content/tematik/liana-069d8cfbbe16a6.svg);
}

.grid-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 22px; 
  justify-items: center;
 
}
.card-grid {
  width: 100%;
  height: 100%;
  min-height:  284px;
  perspective: 1000px; 
}

.article {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
}

.article-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}


.article-front,
.article-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.article-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}
.article-front img {
  position: absolute;
  inset: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur( 2px);
  z-index: 0;
}

.figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px  8px;
  text-align: center;
  background: rgba(53, 49, 6, 0.6);
}

.figcaption p {
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(51, 51, 51, 0.3);
}


.article-back{
  position: relative;

}
.article-back::before{
  position: absolute;
  content: "";
  inset: 0%;
  background-color: #004d273b;
}

.article-back-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-stil{
  text-align: left;
  margin-bottom: 36px;
  color: var(--colorWhite);
  text-shadow: 0 3px 0 rgba(0, 0, 0, .2);
}
.align-us{
  align-items: unset;
}
.lider-list{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
  
}
.lider_item{
  display: flex;
  gap:  13px;
  transition: all .3s ease-in-out;
  align-items: center;
  padding:  8px;
  flex-grow: 1;
  border-radius: 4px;
  justify-content: space-between;
  flex-direction:  row;
}
.lider_item:hover{
  background: rgba(0, 0, 0, .1);
}
.lider_imgs{
  flex: 0 0 auto;
  width:66px;
  height: 66px;
 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
 }
}
.lider_avatars{
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  border-radius: 0%;
  img{ 
  object-fit: cover;
 }
}
.lider_name{
 color:#ebc947;
 font-size: 16px;
 font-weight: 600; 
}
.coins-animation{
  -webkit-animation:  gold-shine 3s infinite alternate, gold-sway 3s infinite ease-in-out;
  animation: gold-shine 3s infinite alternate, gold-sway 3s infinite ease-in-out;
}
@keyframes gold-shine {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.5) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  }
}
@keyframes gold-sway {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-5px);
  }
}
.flex-col-box{
  display: flex;  
  flex-direction: column-reverse;
}
.distance{
  gap: 50px;
}
.m-t{
  margin-top: 50px;
}
.aboutus_box-text{
  font-size: 16px;
  color: var(--colorWhite);
  p{
  margin-bottom:  8px;
  text-indent: 3ch;
  }
}
.aboutus_box-text ul,ol{
  list-style: inside;
}
.about-box_img{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  img{
    width: 100%;
    height:363px;
    object-fit: contain;
  }
}
.about-galery{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-image-1{
  z-index: 0;
  border-radius: 0%;
  background-image: url(content/back/bg-dark-069d8cfbbe13b7.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width:  363px;
  height:  363px;
  
}
.u-image-2{
  z-index: 1;
  margin-bottom: -30%;
  margin-left: auto;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border:  4px solid #fc8428;
  border-radius:  0%;
  background-image: url(content/back/bg-light-069d8cfbbe135d.jpg);
  width: 222px;
  height: 222px;
}
.u-shape-1{
  z-index: 1;
  margin-top: -20%;
  margin-right: auto;
  margin-left: 15%;
  background-color: #fc8428;
  border-radius:  0%;
  width: 118px;
  height: 118px;

}
.concealedSection{
  display: flex;
}
.exposedSection{
  display: none;
}
.step-listvbn{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap:  28px;
  height: 100%;
}
.leaf {
  display: inline-flex; 
  padding: 66px 28px; 
  align-items: center;
  background: linear-gradient(145deg, #5eb85f, #76c17c); 
  border-radius: 0 0% 0 0%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  
  position: relative;
  text-align: center; 
  color: #fff;
  flex:1;
  font-size: 14px; 
  line-height: 1.4;
  max-width: 300px;
  margin: 0 auto; 
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leaf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); 
  border-radius: 50%; 
  transform: translate(-50%, -50%) scale(1);
  z-index: 1; 
 
  pointer-events: none; 
}
.leaf:hover{
  box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5);
  transform: translateY(-5px);
} 

.leaf p { 
  position: relative;
  z-index: 1; 
  color: #4b3621;
  font-weight: 700;
  
}
.games-list-gridKs{
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.game-gridKs_item{ 
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(content/back/opacity_bg-069d8cfbbe1465.png); 
  padding: 28px;
  background-color: var(--colorWhite);
  border-radius:  0px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateX(0) rotateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
  
}
.game-gridKs_item:hover {
  transform: perspective(1000px) rotateX(+9deg) rotateY(9deg) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5); 
}

.game-gridKs_iner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-direction: column;
}
.game-gridKs_img{
  width: 100%;
  max-width: 230px;
  height: 230px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.wrap-element{
  flex-grow: 1;
  flex-basis: 250px;
}
.game-gridKs_title{
  font-size: clamp(22px, 4vw, 30px);
  text-align: center;
  color: var(--colorDark);
  text-shadow: 0 3px 0 rgba(9, 133, 23, 0.2);
}
.footer-jn-wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.privacy-boxJN{
 word-break: break-word;
}
.privacy-boxJN ul,.privacy-boxJN ol{
   padding-left: 22px;
}
.privacy-boxJN h1{
  font-weight: 600;
  text-align: center;
  margin-bottom:  29px;
}
.privacy-boxJN h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:20px ;
}
.privacy-boxJN table,.privacy-boxJN a{
  word-break: break-word;
  color: inherit !important;
}

.footer-jn{
  padding-top:  66px;
  color: var(--white);
  background: var(--fotter-color-4);
}
.footer-jn-bottom{
  padding: 22px 0;  
  border-top: .01em solid  #0f515d;
  margin-top: 36px;
}
.foorer_copyright{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #e9dddd;
  justify-content:  flex-start;
}
.foter-img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: 100%;
    height: 279px;
    object-fit: contain;
  }
}
.footer-link{
  position: relative;
}
.footer-link::before{
  content: "🍌";
  font-size: 20px; 
  margin-inline-end: 8px;
  display: none;
}
.gameJN-pley{
  height: 100vvh;
  width: 100%;  
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;

  iframe{
    height: 100vh;
    width: 100%;
    border: none;
  }
}
.jungle-section-image{
  position: relative;
  overflow: hidden;
  max-height: 403px;
  object-fit: contain;    
  border-radius: 9px;
  float: left;
  width: 40%;
  margin: 20px;
  margin-top: 0;
  margin-left: 0;
}
.contakt-wrapper-flex{
  display: flex;
  flex-direction: column;
  gap: 39px;
}
.contact-listGame{
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: space-between;
  gap: 28px;
}
.contact-game_item{
  flex-grow: 1;
  flex-basis: 300px;
}
.contact-game_item-link{
  display: flex;
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  h3{
    font-size: 20px;
    color: #F5F5DC;
  }
  p{
    color: #4B3621;    
    font-weight: 700;
    font-size:  16px;
  }
}
.check{
  display: flex;
  flex-direction: row;
  gap:8px;
  align-items: center;
  font-size: 13px;
  input{
    width: auto;
  }
 
}

.contact-form-container {
  background: linear-gradient(145deg, #6ba86b, #4f8b4f);
  padding: 27px;
  border-radius:  0px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.form-title {
  color: #F5F5DC;
  font-size: 22px;
  text-align: center;
  margin-bottom: 22px;
}


.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--colorWhite);
}
.contact-form::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #f5f5dc;
  margin-bottom:  8px;
  font-size: 16px;
}

.form-group input,
.form-group textarea,
.input-user--layout_element,
.textarea-user--layout_element {
  border: 1px solid #4f8b4f;
  border-radius:  11px;
  padding:  11px;
  font-size: 16px;
  color: #333;
  background: #f9f9f9;
}
.btn-wh{
  margin: 0 auto;
  z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus, 
.input-user--layout_element:focus,.textarea-user--layout_element:focus{
  border-color: #da9c20;
  outline: none;
}
.contact-listGame .leaf{
 padding: 28px;
 max-width: unset;
border-radius:  0px;
}
.u-layout-row{
  display: flex;
  flex-wrap: wrap;
  min-height: fit-content;
  max-width: 100%;
}
.u-layout-row >*{
  max-height: 100%;
  min-height: fit-content;
  display: flex;
}
.u-size-15{
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 25%;
}
.u-layout-col{
  flex-direction: column;
  flex: 1 1 auto;
  border: 14px solid transparent;
  display: flex;
}
.u-size-15:nth-child(even) .u-layout-col{
   flex-direction: column-reverse;
}
.u-gutter{ 
  flex: 20 0 auto;  
  position: relative;
  display: flex;
}
.u-container-layout{
  padding: 39px;
  flex: 1;
}
.u-layout-cell{  
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 0px;
}

.u-galery-img{
  height: 284px;
  width:100%; 
  object-fit: cover;
  transition: all 0.4s ease;
}
.u-size-15:hover .u-galery-img{
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5);
}

.replacement{
  display: none;
}



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

@media (max-width: 575px){
 .imperative{
  font-size: 22px;
 }
 .hero-text{
  font-size: 16px;
 }
 .form-title{
  font-size: 20px;
 }
 .hero-galery,.about-image-1{
  width: 250px;
  height: 250px;
 }
 .u-image-2 {
  width: 106px;
  height: 106px;
 }
 .u-shape-1 {
  width:  76px;
  height:  76px;

 }
 .lider_item {
  flex-direction: column;
 }
 .grid-list {
      grid-template-columns: repeat(1, 1fr);
 }
 
 .leaf{
  padding: 36px  22px;
 }
 .game-gridKs_img{
  height:222px;
  max-width: 200px;
 }
 .game-gridKs_item{
  padding: 28px 15px;
 }
 .contact-form-container{
  padding: 27px  13px;
 }
 .contact-listGame .leaf{
  padding: 28px 13px;
 }
 .u-layout-col{
  border: none;
  border-bottom: 22px solid transparent;
 }
 .foorer_copyright{
  justify-content: center;
 }
 .title-stil{
  text-align: center;
 }
 .top-menu_links {
  padding: 11px;
 }
 .footer-jn-wrapper{
  flex-direction: column;
  gap: 20px;
  justify-content: center;
 }
 .contact-form{
  font-size: 14px;
 }
}
@media (min-width: 575px) and (max-width: 992px){
  
}

@media (min-width: 768px){
.container-box{
    max-width: 730px;
  }
  .article-front{
   transform: rotateY(180deg);
  }
  .card-grid:hover .article {
  transform: rotateY(180deg);
}
}
@media (max-width: 768px){
.jungle-disclaimer {
      font-size: 14px;
      padding: 12px;
      flex-direction: column;
  }

  .fire {
      width: 46px;
      height: 46px;
  }

  .fire-left, .fire-right {
      margin: 0;
  }
  .article-back{
    transform: rotateY(180deg);
  }
  .games-list-gridKs{
  grid-template-columns: repeat(1, 1fr);
 }
 .jungle-section-image{
  float: none;
  width:100%;
  margin: 0 0 20px 0;  
  }
 .u-size-15{
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 100%;
 }
 .u-gutter{
  display: none;
 }
  
}

@media (min-width: 768px) and (max-width: 992px){
 .step-listvbn{
  flex-direction: row;
 }
 .games-list-gridKs{
  grid-template-columns: repeat(2, 1fr);
 }
 .u-size-15{
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 50%;
 }
}

@media (max-width: 992px){ 
.iner-wrappers{
  padding: price_size_v10} 15px;
}
.mein-blok{
  padding: 46px 15px;
}
.flex-wrapper-rowRevs{
  align-items: unset;
  flex-direction: column;
}
.hero-content{
  text-align: center;
  align-items: center;
}
.lider-list{
 flex-direction: row;
}
.lider_item{
  flex-basis: 200px;
}
.gameJN-pley{
  width: 100%;
  height: 100vh;
}
.contakt-wrapper-flex{
  flex-direction: column;
}
.form-mankey img{
  height: 279px;
}
.two-monkey,.foter-img-none{
  display: none;
}
.replacement{
  display: none !important;
}

@media (min-width: 992px){ 
 .container-box {
    max-width: 960px;
  }
  .monkey-swing {
  position: relative;
  -webkit-animation:swing 3s ease-in-out infinite;
  animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-5px);
  }
}
  
}

@media (min-width: 1200px){ 
 .container-box {
      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;
    }
  }
}

