@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
  --cb-1: #7a4e2d;
  --cb-2: #538d22; 
  --cb-3: #d9a441;
  --cb-4: #a62f1f;
  --cb-5: #1b3b4f;
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #060606;
  direction: ltr;
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(12px, 4vw, 16px);
  margin: 0;
  padding: 0px;
  line-height: 1.2;
}


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

p, li{
  padding: 10px 0;
  line-height:1.2;
}

li{
  margin: 0  10px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

.wrap-container{
  width: auto;
  padding-right: 23px;
  padding-left: 23px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

.page-privacy{
  padding: 75px 0;
  color: #fff;
  overflow: hidden;
  text-align: justify;
  width: 100%;
}

.title-politics{
  text-align: center;
  color: #fff;
  margin-bottom: 26px;
  font-size: clamp(19px, 4vw, 50px);
}

.page-privacy a{
  color: #fff;
}

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}
.policy-block{
word-break: break-word;
}
.policy-block ul li,
.policy-block ol li {
  margin-bottom: 5px;
}
.policy-block ul,
.policy-block ol {
  margin-bottom: 15px;
  padding-left:  20px;
  list-style: inside;
}
.policy-block a,.policy-block table{
color: inherit;
}
.policy-block p{
margin-bottom:  10px;
text-indent: 2ch;
}
.section-groupJK{
  display: flex;
  flex-direction: column-reverse;
}
.pad-n{
  padding-bottom: 0;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.sticky-header {
  background-color: #060606;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.8s ease, background-color 0.8s ease;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 14px 0;
}

.logo-block {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 21px;
}

.logo-icon img {
  object-fit: contain;
  width: 42px;
  max-height:42px;
}

.logo-text h2 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: clamp(12px, 4vw, 16px);
  margin: 0;
}

.logo-block a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 19px;
  transition: 0.3s ease;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 21px;
}

.topmenu li {
  margin: 0;
  padding: 0;
  position: relative;
}

.submenu-link {
  font-size: clamp(12px, 4vw, 16px);
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 0;
  transition: 0.3s ease;
  position: relative; 
}

.submenu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px; 
  background-color: #fff; 
  transition: width 0.3s ease;
}

.submenu-link:hover::after {
  width: 100%; 
}

.submenu-link-home::after {
  width: 100%;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px  26px 0px;
  left: 0;
  background-color: var(--cb-1);
  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;
  }
}

.submenu li{
  padding: 0;
}

.submenu a {
  text-transform: uppercase;
  font-size: clamp(12px, 4vw, 12px);
  color: #fff;
  padding:  14px;
  display: block;
  transition: 0.3s ease;
}

.submenu a:hover {
  opacity: 0.5;
}

.topmenu li:hover .submenu {
  display: block;
}

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

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

.header-content{
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  justify-content: center;
  padding: 75px 0;
}

.header-content-page{
  display: flex;
  text-align: center;
}
.header-content-page h1{
  border-bottom: 4px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp( 19px, 4vw, 80px);
}

.header-content h2{
  color: #fff;  
  font-size: clamp(19px, 4vw, 50px);
}

.header-content h1{
  border-bottom: 4px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp( 19px, 4vw, 80px);
}

.page-but{
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: 0.5s ease;
  padding: 14px 26px;
  font-size: clamp(16px, 4vw, 18px);
  text-align: center;
  background-color: var(--cb-1);
  color: #fff;
}

.page-but:hover{
  opacity: 0.5;
}

.catalog-one{
  display: block;
}

.catalog-game{
  padding-bottom: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card{
  border: 1px solid #2b282e;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.game-catalog-img{
  width: 100%;
  height: 212px;
}

.game-catalog-img img{
  transition: 0.8s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-catalog-img img:hover{
  transform: rotateY(360deg);
}

.game-catalog-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}

.game-catalog-text a h5{
  text-transform: uppercase;
  transition: 0.3s ease;
  color: var(--cb-1);
  font-size: clamp( 16px, 4vw, 19px);
}

.game-catalog-text a h5:hover{
  opacity:0.6;
}

.game-catalog-text p{
  display: -webkit-box;      
  -webkit-box-orient: vertical; 
  overflow: hidden;         
  text-overflow: ellipsis;   
  -webkit-line-clamp: 3;   
  line-clamp: 3;  
  padding: 0;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(12px, 4vw, 16px);
}

.catalog-two{
  display: none;
}

.catalog-game-two{
  padding: 26px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card-two{
  transition: 0.5s ease;
  overflow: hidden;
  position: relative;
}

.game-catalog-img-two{
  position: relative;
  width: 100%;
  height: 394px;
}

.game-catalog-img-two img{
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-two:hover .game-catalog-img-two img{
  transform: scale(1.1);
  filter: brightness(0.5);
}

.game-catalog-text-two{
  position: absolute;
  transition: 0.5s ease;
  bottom: 0;
  left: 0;
  transform: translateY(100%) scale(1.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}

.catalog-card-two:hover .game-catalog-text-two{
  transform: translateY(0) scale(1);
}

.game-catalog-text-two a h5{
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(16px, 4vw, 19px);
}

.game-catalog-text-two a h5:hover{
  opacity: 0.5;
}

.gambla-benefit{
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 75px 0;
}

.gambla-benefit h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(19px, 4vw, 50px);
}

.gambla-benefit-box{
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
}

.gambla-benefit-card{
  overflow: hidden;
  position: relative;
  transition: 0.5s ease;
}

.gambla-benefit-card img{
  transition: 0.5s ease;
  position: relative;
  width: 100%;
  height: 574px;
  object-fit: cover;
}

.gambla-benefit-card:hover img{
  transform: scale(1.1);
}

.gambla-benefit-text{
  position: absolute;
  background-color: #060606;
  padding: 10px;
  width: 90%;
  right: 0;
  bottom: 14px;
} 

.gambla-benefit-text p{
  color: #fff;
  font-size: clamp(12px, 4vw, 16px);
}

.about-us-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 75px 0;
}

.about-us-box{
  display: flex;
  align-items: center;
  background-color: #000;
  flex: 1;
  padding: 75px;
}

.about-us{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 21px;
}

.about-us h5{
  text-transform: uppercase;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(19px, 4vw, 50px);
}

.about-us-p{
  font-weight: normal;
  color: #fff;  
  font-size: clamp(16px, 4vw, 18px);
  padding: 0;
}

.about-us-img{
  flex: 1;
}

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

.feedback-back{
  margin: 75px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

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

.feedback {
  padding: 75px 0;
}

.feedback-container {
  background-color: #060606;
  direction: initial;
  width: 50%; 
  height: 100%; 
  overflow: hidden; 
  position: relative;
}

.feedback-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; 
}

.feedback-item {
  padding: 75px;
  min-width:100%;
  height: 100%; 
  display: flex;
  flex-direction: column;
  gap: 19px;
  justify-content: center;
}

.feedback-item h5 {
  color: #fff;
  font-size: clamp(16px, 4vw, 25px);
}

.feedback-item span svg{
  width: 42px;
  height: 42px;
  fill: var(--cb-1);
}

.feedback-item p {
  opacity: 0.8;
  font-size: clamp(16px, 4vw, 16px);
  padding: 0;
  color: #fff;
}

.step-game{
  border-bottom: 1px solid #2b282e;
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 75px 0;
}

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

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

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

.step-game-card span{
  font-size: clamp(19px, 4vw, 50px);
  color: var(--cb-1);
}

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

.dev-gembla{
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 75px 0;
}

.dev-gembla h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(19px, 4vw, 50px);
}

.dev-gembla-box{
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
}

.dev-gembla-card{
  transition: 1s ease;
  overflow: hidden;
  position: relative;
}

.dev-gembla-card img{
  filter: brightness(0.8);
  transition: 1s ease;
  object-fit: cover;
  width: 100%;
  height: 394px;
  position: relative;
}

.dev-gembla-card:hover img{
  filter: brightness(0.5);
  transform: scale(1.1);
}

.dev-gembla-card h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 19px);
  transition: 1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 19px;
}

.dev-gembla-card:hover h5{
  opacity: 0;
  transform: translateX(-100%) scale(1.5);
}

.promo-video-back{
  margin: 75px 0;
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-position: center;
  background-size: cover;
}

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

.promo-video{
  direction: initial;
  float: right;
  justify-content: center;
  min-height: 80vh;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 75px 0;
}

.promo-video h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(25px, 4vw, 80px);
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow: auto;
}

.fullscreen-overlay video {
  width: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.interactive-btn {
  transition: 1s ease;
  cursor: pointer;
}

.interactive-btn svg {
  animation: pulseZoom 3s ease-in-out infinite;
  transition: 1s ease;
  width: 80px;
  height: 80px;
  fill: var(--cb-1);
}

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

.rating-back{
  margin: 75px 0;
  min-height:  30vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

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

.rating{
  min-height:  30vh;
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  padding: 75px 0;
}

.rating-card{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.rating-card h1{
  color: #fff;
  font-size: clamp( 19px, 4vw, 50px);
}

.rating-card h5{
  font-weight: normal;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.gallery-box{
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 75px 0;
}

.gallery-box h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(19px, 4vw, 50px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 211px;
  gap: 14px;
  width: 100%;
  padding: 14px;
}

.gallery img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  grid-column: span 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

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

.footer-top{
  align-items: center;
  justify-content: center;
  padding: 75px 0;
  display: flex;
  flex-direction: row;
  gap: 26px;
}

.disclaimer{
  border-radius: 26px;
  background-color: var(--cb-1);
  gap: 26px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px;
}

.disclaimer h2{
  text-transform: uppercase;
  font-size: clamp(19px, 4vw, 50px);
  color: #fff;
}

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

.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: 19px;
}

.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{
  justify-content: center;
  border-top: 1px solid #fff;
  padding: 26px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

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

.footer-bottom img{
  max-width:  55px;
}

.form-block{
  width: 70%;
  margin: 0 auto;
  padding: 75px 0;  
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.form-block h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: clamp(19px, 4vw, 50px);
}

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

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

.input-container label{
  color: #fff;
}

.input-container .input-groupcolumn-component, .input-container .textarea-groupcolumn-component {
  outline: none;
  margin: 10px 0;
}

.input-container .input-groupcolumn-component {
  color: #fff;
  background-color: transparent;
  border: 1px solid #2b282e;
  outline-color: transparent;
  padding: 17px;
  font-size: 17px;
  line-height: 1.25rem;
}

.input-container .textarea-groupcolumn-component {
  color: #fff;
  background-color: transparent;
  border: 1px solid #2b282e;
  outline-color: transparent;
  padding: 17px;
  font-size: 17px;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 34px;
  max-height: 126px;
}

.input-container .input-groupcolumn-component::placeholder, .input-container .textarea-groupcolumn-component::placeholder{
  color: #fff;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 19px 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: 4px;
  --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;
}

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

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

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

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

.art-block-images {
  border-radius: 26px;
  border: 1px solid #fff;
  width: 70%;
  margin-inline: auto;
  object-fit: contain;
  height:  394px;
  margin-bottom: 34px;
}

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

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

.contacts-page{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 75px;
  padding: 75px 0;
}

.kontact-form{  
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  text-transform: uppercase;
  text-align: center;
  color: #fff;  
  font-size: clamp( 19px, 4vw, 50px);
  margin-bottom: 26px;
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: 1px solid #2b282e;
  outline-color: transparent;
  padding: 16px;
  font-size: 16px;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: 1px solid #2b282e;
  outline-color: transparent;
  padding: 16px;
  font-size: 16px;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 34px;
  max-height: 126px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #fff;
}

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

.contacts-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.cont-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.cont-card svg{
  width: 35px;
  height: 35px;
  fill: #fff;
}

.cont-card a{
  flex: 1;
}

.cont-card a h5{
  transition: 0.3s ease;
  font-size: clamp( 16px, 4vw, 22px);
  color: #fff;
}

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

.cont-card h5{
  flex: 1;
  font-size: clamp( 16px, 4vw, 22px);
  color: #fff;
}

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

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

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

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

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

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

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

.navigation-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding: 15px;
  background: #060606;
  transform: translateX(-110%);
  transition: transform 0.5s;
}

.navigation-panel.active {
  transform: translateX(0);
}

.navigation-panel nav {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100vh;
}

.navigation-panel ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.navigation-panel li {
  padding-bottom: 14px;
  border-bottom: 0.1px solid #2b282e;
  list-style-type: none;
}

.nav-link {
  text-align: center;
  font-size: clamp(16px, 4vw, 19px);
  color: #fff;
}

.nav-link:hover {
  opacity: 0.5;
}
.header-priv{
  min-height: 30vh;
 
}

@media (max-width: 1199px){
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: unset;
  }

  .gallery img{
    height: 212px;
  }
  
  .gallery img:nth-child(1) {
    grid-column: unset;
    grid-row: unset;
  }
  
  .gallery img:nth-child(2) {
    grid-column: unset;
    grid-row: unset;
  }
  
  .gallery img:nth-child(4) {
    grid-column: unset;
  }

  .gallery img:nth-child(7), .gallery img:nth-child(8){
    display: none;
  }
}

@media (max-width: 991px) {
  .burger-toggle{
    display: block;
  }

  .topmenu{
    display: none;
  }

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

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

  .about-us-block{
    flex-direction: column-reverse;
  }

  .about-us-images{
    display: none;
  }

  .about-us-img{
    max-height: 70vh;
  }

  .about-us-box{
    padding: 75px 0;
  }

  .about-us-boxing{
    padding: 0 !important;
  }

  .feedback-container{
    width: 100%;
  }

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

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

  .form-block{
    width: 100%;
  }

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

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

  .game-catalog-img-two img{
    transform: scale(1.1);
    filter: brightness(0.5);
  }

  .game-catalog-text-two{
    transform: translateY(0) scale(1);
  }

  .contacts-page{
    flex-direction: column;
    align-items: stretch;
  }

  .contacts-box{
    padding-top: 75px;
    border-top: 1px solid #2b282e;
  }

  .footer-top{
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .navigation-panel{
    width: 100%;
  }

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

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

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

  .feedback-item{
    padding: 26px;
  }

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

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

  .promo-video{
    width: 100%;
    align-items: center;
    text-align: center;
  }

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

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

  .art-block-images{
    width: 100%;
    height: 100%;
  }

  .playing-block{
    height: 100vh;
  }

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

@media (max-width: 576px){
  .catalog-card{
    padding: 26px;
  }
}

.pt-70{
  padding-top: 70px;
}