@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {  
  --bag-main-1:radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent), 
  linear-gradient(135deg, #D4AF37, #C19A6B, #8B4513, #5D3A00);
  --bag-main-2:url(picgallery/bg-assets/bg-dark-068ff8085c31b3.jpg);
  --white: #fff;
  --black: #060606;
  --white-section:#fffef8;
  --hover-color:#f68b1f;  
  --hover-tranzitipn: all ease 0.4s;
  --flex-basis-1: calc((100% - 4* 28px) / 4);
  --flex-basis-2: calc((100% - 2* 28px) / 2);
}

body{
  
    direction: ltr;
    font-family: 'Zilla Slab', sans-serif !important;
    font-size: 13px;
    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(18px,4vw,33px) !important;
}

.buttunPx-1 {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: #ffcc00; 
  color:#a32700; 
  padding: 20px 28px;
  border: none;
  border-radius: 13px; 
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden; 
  transition: all 0.4s ease; 
}

.buttunPx-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;
}

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

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

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


.buttunPx-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;
}

.buttunPx-1:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.2); 
}
.buttunPx-2 {
  padding: 20px 28px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  border: none;
  outline: none;
  color:#a32700;
  background: orange;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 4px;
  transition: var(--hover-tranzitipn);
}

.buttunPx-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% + 5px);
  height: calc(100% + 5px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .3s ease-in-out;
 border-radius: 4px;
}

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

.buttunPx-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;
  }
}
.buttunPx-3{
  text-align: center;
  width: fit-content;
  display: block;
  background: linear-gradient(135deg, #f0c27b, #4b1248);
  border: none;
  border-radius: 40px;
  color: #fff;
  padding: 20px 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} 
.buttunPx-3::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}
.buttunPx-3:hover::before {
   transform: translate(-50%, -50%) scale(1);
}

.buttunPx-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.3);
}



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

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

  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.4); 
}
.buttunPx-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; 
}
.buttunPx-4:hover:before,.buttunPx-4:focus:before{
  left: 100%;
}
.buttunPx-5 {
  width: fit-content;
  display: block;
  text-align: center;
   background-color: #C19A6B; 
  color: #fff; 
  border: 1px solid #B8860B; 
  padding: 13px 21px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.buttunPx-5:hover {
  background-color: #B8860B; 
  color: #000; 
  transform: translateY(-5px); 
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2); 
}

.container-wrapper{
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.header-content{
    padding: 116px 0;
}

.header-back{
  position: relative;
  background-image: url(picgallery/bg-assets/bg-light-068ff8085c3176.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}
.header-back::before{
  position: absolute;
  content: "";
  inset: 0;
  background-color: #6d010175;
}

.header{
  top: 20px;
  z-index: 1;
}

.navOJK{
  box-shadow:0 2px 5px rgba(0,0,0,.75), inset 0 +5px rgba(0,0,0,.26);
  background-position: center; 
  background: url(picgallery/bg-assets/opacity_bg-068ff8085c324d.png) repeat scroll #CD7F32;
}

.navOJK-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navOJK-list li a{
  padding: 13px 20px;
  color: #fff;
  font-weight: 400;
  display: block;
  font-size: 18px;
  background: transparent;
  transition: all 0.35s ease-in-out;
}
.navOJK-list li:hover a{
  background: rgba(0, 0, 0, .3);
}
.items-container{
  display: flex;
  flex-direction:  row-reverse;
}
.gap-30{
  gap:  29px;
}
.gap-50{
  gap: 40px;
}
.items-container_element{
  flex: 1;
}
.items-container_element2{
  flex: 2;
}

.header-img{
  height: 240px;
  width: 100%;

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

.top-section{
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 28px;
}
.gold-text {
  max-width: 100%;
 
  font-style: italic;
 font-size: clamp(33px, 5vw, 53px);
  word-spacing: 0.2em;
  padding: 0;
  line-height: 1;
  color: transparent;
  background-color: #E8A95B;
  background-image: radial-gradient(ellipse farthest-corner at right bottom, white 0%, #F0BB7A 20%, #E8A95B 60%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, white 0%, #F0BB7A 50%, #DE9945 75%, #E8A95B 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  margin: 0 0 5px 0;
  position: relative;
  z-index: 1;
}

.gold-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #E8A95B;
  z-index: -1;
  text-shadow: 
    0 -1px 0 rgba(240, 187, 122, 0.75), 
    0 1px 0 rgba(222, 153, 69, 0.75), 
    0 2px 0 rgba(222, 153, 69, 0.7), 
    0 5px 0 rgba(222, 153, 69, 0.65), 
    0 5px 0 rgba(222, 153, 69, 0.55), 
    0 5px 2px rgba(222, 153, 69, 0.55), 
    0 0.075em 0.1em rgba(26, 35, 39, 0.3), 
    0 5px 0.3em rgba(222, 153, 69, 0.2);
}

.gold-text__highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(100deg, transparent 0%, transparent 6rem, white 11rem, transparent 11.15rem, transparent 15rem, rgba(255,255,255,0.3) 20rem, transparent 25rem, transparent 27rem, rgba(255,255,255,0.6) 33rem, white 33rem, rgba(255,255,255,0.3) 33.15rem, transparent 38rem, transparent 40rem, rgba(255,255,255,0.3) 45rem, transparent 50rem, transparent 100%);
  background-size: 60rem 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite alternate;
}

.gold-text__highlight::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: transparent;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 35%, transparent 75%, #DE9945 100%);
  background-clip: text;
  -webkit-background-clip: text;
  animation: flash 4s linear infinite alternate;
}

@keyframes shine {
  0% {
    background-position: -50rem 0;
  }
  25% {
    background-position: -50rem 0;
  }
  100% {
    background-position: 30rem 0;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mein{
  position: relative;
  background:var(--bag-main-1);
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
  border-top: 0px solid #937d7d;
  border-bottom: 0px solid #937d7d;
  padding: 78px 0;
 
}
.mein::before{
  position: absolute;
  content: "";
  inset: 0;
  background-color: #06060636;
}

.benefit-slides{
  position: relative;
  height:  392px;
  width: 100%;
  overflow: hidden; 
  transition: transform 0.5s ease-in-out;
  
}
.benefit-imgBig{
  position: absolute;
  inset: 0;
  opacity: 0;
	transition: opacity 1s ease-in-out;
 
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.benefit-imgBig.active{
  opacity: 1;
}
.benefit-content{
  font-size: 13px;
  text-align: center;
  position: absolute;
  font-weight: 400;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: #f9e100;
  background-color: #8b4513d6;
}
.benefit-imgSmoll{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height:  392px;
  background: brown;
  padding: 13px;
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.vanishing{
  display: none;
}

.blok-title{ 
  font-weight: 400;
  text-align:  center;
  padding: 13px 28px;
  background: url(picgallery/bg-assets/opacity_bg-168ff8085c3269.png) repeat scroll #D4AF37; 
  background-position: center;
  color: var(--white-section);
  border: 1px solid #8B4513;
}
.border{
  border: 1px solid #8B4513;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .75), inset 0 -5px rgba(0, 0, 0, .26);
  border-radius: 15px;
}
.games-listJK{
  padding: 21px;
  margin-top: 40px;
  background-color: var(--white-section);
  display: flex;
  flex-direction: column;
}

.game-entry,.game-entry-page{
  display: flex;  
  padding: 21px 0;
  gap: 21px;
  align-items: center;  
  flex-direction: row-reverse;
}
.game-entry-page{
flex-direction:  row;
}
.game-entry:not(:last-child){
 border-bottom: 2px dotted #8b45132e; 
} 
.game-entry:nth-child(even){
  flex-direction: row;
}
.game-picture{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
  height: 253px;

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

.game-picture::before{
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
  transition: all 0.6s ease-out 0s;
  z-index: 1;
  background: rgba(255, 255, 255, .04) none repeat scroll 0 0;
}

.game-picture::after{
  content: "";
  background: rgba(255, 255, 255, .04) none repeat scroll 0 0;
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  transform: rotate(180deg);
  transition: all 0.6s ease-in-out 0s;
}

.game-entry:hover .game-picture::after,.game-entry:hover .game-picture::before{
  transform: rotate(0);
  height: 100%;
  width: 100%;
}

.game-picture_link{
  position: absolute;
  inset: 0;
  z-index: 2;
}

.game-content{
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.game-title{
  color: #8B4513;
  font-size: 22px;
  display: block;
  text-align: center;
}
.game-title:hover{
  color: #D4AF37;
}
.btn-game{
  width: 100%;
}
.list-step{
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.step-itemKL{
  position: relative;
  color: #fff;
  background-color: #8B4513;
  border-left: 5px solid #D4AF37;
  padding: 40px 28px;
  transition: var(--hover-tranzitipn);
}
.step2{
  background-color:#3E2723;
}
.step3{
  background-color:#3A3E34;
}
.step4{
  background-color:#1B2631;
}

.step{
  width: 53px;
  height: 53px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -28px;
  right: 0;
  
  
   img{
    height: 100%;
    width: 100%;
    object-fit: contain;
   }
}

.step-itemKL:nth-child(even){
  border: none;
  border-right: 5px solid #D4AF37;

}
.step-itemKL:nth-child(even) .step{
  left: 0;
}

.step-itemKL:hover{
  transform: scale(1.02);
}

.disclaimer {
  background: linear-gradient(135deg, #2a2a2a, #3c3c3c);
  border: 1px solid #FDD835; 
  padding: 20px;
  color: #f1f1f1;
  font-size:  16px;
  text-align: center;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  margin-bottom:  40px;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
  animation: glowBorders 4s ease-in-out infinite, slideText 6s ease-in-out infinite;
}

.disclaimer h2 {
  font-size:  22px;
  color: #FDD835; 
  margin: 0;
  padding-bottom:  13px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-shadow: 0 0  13px rgba(255, 235, 59, 0.7);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 13px rgba(255, 235, 59, 0.7);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 0, 1);
  }
}

@keyframes glowBorders {
  0% {
    box-shadow: 0 0  13px rgba(253, 216, 53, 0.5), inset 0 0  20px rgba(253, 216, 53, 0.5);
    border-color: #FDD835;
  }
  50% {
    box-shadow: 0 0  28px rgba(255, 235, 59, 0.7), inset 0 0 32px rgba(255, 235, 59, 0.7);
    border-color: #FFC107;
  }
  100% {
    box-shadow: 0 0  13px rgba(253, 216, 53, 0.5), inset 0 0  20px rgba(253, 216, 53, 0.5);
    border-color: #FDD835;
  }
}

@keyframes slideText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}

.disclaimer:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 216, 53, 0.1), transparent);
  animation: pulseGlow 5s infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.disclaimer p {
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  position: relative;
  z-index: 1;
}

.section-flex{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.leaderboard-container {
  background: url(picgallery/bg-assets/opacity_bg-268ff8085c3285.png) repeat scroll #8b4513;
  background-position: center;   
  padding: 20px 13px;
  border: 3px solid #DAA520; 
  position: relative;
  overflow: hidden;
}

.smol-title {
  text-align: center;
  font-size: 22px;
  color: #FDD835; 
  text-shadow: 0 0 13px rgba(255, 223, 59, 0.7);
  margin-bottom: 20px;
}

.lider-item{
  display: flex; 
  align-items: center;
  gap: 20px;
  font-weight: 400;
  padding: 13px;
  transition: var(--hover-tranzitipn);
  border-radius: 13px;
  font-size:  16px;
}
.lider-iner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction:  row;
  align-items: center;
  gap: 20px;
}

.lider-item:not(:last-child){
 border-bottom: 1px solid #4B4B4B;
}

.lider-img{
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .75), inset 0 -5px rgba(0, 0, 0, .26);
  border: 1px solid silver;
  border-radius:  50%;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.lider-content{
  display: flex;
  gap: 5px;
  flex-direction: column-reverse;
  text-align: center;
}

.lider-item:hover {
  background-color: #444444;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .75), inset 0 -5px rgba(0, 0, 0, .26);
}

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


.first-score { 
  color: gold;
  
 }
.second-score {
  color: silver; 
}
.third-score {
   color: #cd7f32;
}
.number { 
  font-weight: 900; 
}

.bottom-footer{
  padding: 78px 0 21px;
  background-color: #5d3a00;
}

.footer-flex-col{
  display: flex;
  gap: 21px;
  flex-direction: column-reverse;
}

.bottomfooter-imgUI{
  height:  50px;
  
  img{
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

.footer-infa{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  color: var(--white-section);
}

.copyright-foot{
  display: flex; 
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu{
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff3d;
}

.footer-menu li{
  position: relative;
}

.footer-menu li:not(:last-child)::before{
  position: absolute;
  content: "";
  height: 100%;
  inset-inline-end: -5px;
  inset-inline-start: auto;
  width: 1px;
  top: 0;
  bottom: 0;
  background-color:#ffffff3d;
}

.footer-menu li a{
  text-align: center;
  display: block;
  color: var(--white-section);
  padding: 13px 5px;
  border-radius: 2px;  
}

.footer-menu li:hover a{
  color: #fdd835;
  background: rgba(0, 0, 0, .3);
}

.pad-sectionUK{
  padding: 78px 0;
}

.pag-bg{
  background-position: center;
  background:var(--bag-main-1);
}

.contact-data{
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid #daa520;
  background-color: #3a3e34;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .75), inset 0 -5px rgba(0, 0, 0, .26);
}

.mar-50{
  margin-bottom:  40px;
}

.title-block{
  padding:  13px 21px;
  display: block;
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  color: #FDD835;
  text-shadow: 0 0 13px rgba(255, 223, 59, 0.7);
  background-position: center;
  background: url(picgallery/bg-assets/opacity_bg-268ff8085c3285.png) repeat scroll #8b4513;
  border-bottom: 1px solid #daa520;
}
.form-wrapper{
  padding: 32px 21px; 
}

.formPage{
  display: flex;
  flex-direction: column;
  gap: 21px;
  color: #e7bfbf;
}

.input-gameEG,.textarea-gameEG,.input-form_area__element,.textarea-form_area__element{
  width: 100%;
  color: var(--white-section);
  padding: 13px 20px;
  border: 1px solid #b08310;
  background-color: #6a3006;
}

.input-gameEG::placeholder,.textarea-gameEG::placeholder{
  color: #b3afaf;
}

.textarea-gameEG{
  min-height: 56px;
}

.input-group{
  display: flex;
  gap: 21px;  
  flex-direction: row;
}

.formPage-check{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  font-size: 13px;
 color: var(--white-section);
}

.contact-unit{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline-start: 28px;
}
.mail,.phone,.geo{
  position: relative;
}

.mail::before,.phone::before,.geo::before{
  position: absolute;
  content: "\1F4E9";
  font-size: 18px;
  inset-inline-start: 0;
  font-weight: 400;
  color: #f90606;
  top: 0;
}

.phone::before{
  content: "\1F4DE";
}

.geo::before{
  content: "\2757";
}

.contact-title{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.cont-list{
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.cont-link{
  font-size: 13px;
  color: #c0c0c0;
  word-wrap: break-word;
}

.cont-link:hover{
  color: #fdd835;
}

.privacyPage{
 word-break: break-word;
 color: var(--white-section);
}

.privacyPage p{
  margin-bottom: 13px;
}

.privacyPage h1{
  font-weight: 400;
  text-align: center;
  margin-bottom:  22px;
}

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

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

.about-bg{
  background-image: url(picgallery/bg-assets/bg-dark-168ff8085c31de.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-content{
  color: var(--white-section);
  font-size: 13px;

  p{
    margin-bottom: 13px;
  }
}

.brand-video{
  display: flex;
  overflow: hidden;
  align-items: center;

  video{
    width: 100%;
    height: 324px;
    object-fit: cover;
    transition: filter 0.5s ease;
  }
}

.align-center{
  align-items: center;
}

.box-flex-col{
  display: flex;
  flex-direction: column-reverse;
}

.about-bg .title-block{
  border-top: 1px solid #daa520;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}

.about-bg .contact-data{
  border-top: transparent;
}

.time-list{
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
  justify-content: center;
}
.time-item{
  margin: 20px;
  flex-basis: var(--flex-basis-1);
}
.single-member{
  display: flex;
  flex-direction: column;
}

.time-item:hover .time-avatar img{
  transform: scale(1.07);
}

.time-avatar{
  width: 100%;
  height: 253px;
  overflow: hidden;

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

.part-text{
  position: relative;
  overflow: hidden;
  text-align: center;
  background: url(picgallery/bg-assets/opacity_bg-068ff8085c324d.png) center center no-repeat;
  background-size: cover;
  padding: 20px 0;
}

.part-text::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8b4513;
  z-index: 1;
  opacity: 0.8;

}
.name{
  font-size: 18px;
  color: #f9e100;
  position: relative;
  z-index: 2;
}
.form-ind{
  height: auto;
   border-radius: 15px;
}
.sticky-box{
  position: sticky;
  top: 53px;
}

.page-contentEG{
  min-height: 324px;
}

.contentEG-img{
  position: relative;
  overflow: hidden;
  max-height: 324px;
  object-fit: contain;    
  border-radius: 6px;
  float: left;
  width: 38%;
  margin: 20px;
  margin-top: 0;
  margin-left: 0;
}


.contentEG{
  font-size: 13px;
  color: var(--white-section);
  p{
    margin-bottom: 13px;
  }
}

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

.page-playing{
  height: 100vh;
  width: 100%;
}

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

.logo-link{
  display: flex; 
  align-items: center;
  justify-content: center;
  height: 140px;
  overflow: hidden;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 5s infinite;
  }
}

@media (max-width: 575px){
 .navOJK-list{
  justify-content: center;
 }

 .game-entry,.game-entry:nth-child(even){
  flex-direction: column;
 }

 .game-picture{
  flex: auto;
  width: 100%;
 }

 .games-listJK{
  padding: 21px 13px;
 }
 .game-title{
  text-align: center;
  font-size: 18px;
 }
 .lider-iner{
  justify-content: center;
 }
 .footer-infa{
  flex-direction: column;
 }
 .form-wrapper{
  padding: 32px 13px;
 }
 .cont-link {
  font-size: 13px;
 }
 .brand-video  video{
  height: 350px;
 }
 .time-item{
    flex-basis: 100%;
 }
 .about-content{
  font-size: 13px;
 }
  .benefit-imgSmoll {
    width: 100%;
  }
  .step-itemKL{
    padding: 56px 20px;
  }

  .benefit-content{
    font-size: 13px;
    padding: 21px 13px;
  }
}

@media (min-width: 575px) and (max-width: 992px){
  .time-item{
    flex-basis: var(--flex-basis-2);
 }
     .benefit-imgSmoll{
      width: 60%;
     } 
}

@media (max-width: 768px){
 .leaderboard-container{
  width: 100%;
 }
 .lider-iner{
  flex-direction: column;
 }
 .input-group {
  flex-direction: column;
 }
 .contentEG-img{
    float: none;
    width:100%;
    margin: 0 0 20px 0;  
  } 
  .page-playing{
    width: 100%;
    height: 100vh;
  }

  .logo-link{
    height: 78px;
  }

  .benefit-slides{
    height: 324px;
  }
  .navOJK-list li a{
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 992px){  
 .leaderboard-container{
  width: 80%;
  margin: 0 auto;
 }
 .lider-iner{
  flex-direction: row;
 }
}

@media (max-width: 992px){ 
 .items-container{
    flex-direction: column-reverse;
 }

 .benefit-imgSmoll{
    height: 350px;
    margin: 0 auto;
  }

 .sticky-box{
    position: unset;  
  }

  .title-block,.blok-title h3{
    font-size: clamp(18px,4vw,33px)
  }   
}


@media (min-width: 1200px){   
  .container-wrapper {
    max-width: 1132px;
  }
}


.map{
  border: 0;
  margin-top: 20px;
}




.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;
    }
  }
}

