@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

:root{
  --cb-1: #222833;
  --cb-2: #222833b3;
  --cb-3: #222833e6;
  --cb-4: #222833cc;
  --cb-5: #22283399;

  --bg-1: #283449;
  --bg-2: #283449b3;
  --bg-3: #283449e6;
  --bg-4: #283449cc;
  --bg-5: #28344999;

  --er-1: #30405f;
  --er-2: #30405fb3;
  --er-3: #30405fe6;
  --er-4: #30405fcc;
  --er-5: #30405f99;
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #040807;
  direction: ltr;
  font-family: 'PT Sans Narrow', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}

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

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

li{
  margin: 0 8px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

.my-container{
  width: auto;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

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

.page-privacy a:hover{
  color: #fff;
  opacity: 0.4;
}
.page-privacy ul {
  list-style: square;
  margin: 0 26px;
}
.header-lay{
  position: absolute;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 17px 0;
}

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

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

.logoImg img{
  max-height: 58px;
  object-fit: contain;
  width: 40px;
}

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

.logo a:hover{
  opacity: 0.4;
}

.logoTitle h2{
  font-size: 17px;
  margin: 0;
}

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

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

.submenu-link {
  color: #fff; 
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 14px; 
  transition: 0.3s ease;
}

.submenu-link-home{
  color: #009A44;
}

.submenu-link:hover {
  color: #009A44;
}

.submenu {
  border-radius: 8px;
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #2C061F;
  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 {
  font-size: 13px;
  color: #fff;
  padding: 14px;
  display: block;
  transition: 0.3s ease;
}

.submenu a:hover {
  color: #009A44;
}

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

.fixed-header {
  background-color: #2C061F;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.static-content {
  padding: 73px;
  position: absolute;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.static-content h1 {
  font-weight:800;
  color: #fff;
  font-size: clamp(22px, 4vw, 73px);
  text-transform: uppercase;
}

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

.main-button {
  direction: initial;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #009A44;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  gap: 14px;
  font-weight:800;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 17px;
}

.main-button .icon {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
}

.main-button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.main-button:hover .icon {
  transform: translate(4px);
}

.main-button:hover::before {
  animation: shine 1.4s ease-out infinite;
}

.main-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.slide {
  filter: brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}
.slide1{
  background-image: url('imagevault/bg/bg-all-069f0d9ce5e3c4.jpg');
}
.slide2{
  background-image: url('imagevault/bg/bg-all-169f0d9ce5e3ed.jpg');
}
.slide3{
  background-image: url('imagevault/bg/bg-all-269f0d9ce5e413.jpg');
}
.slide4{
  background-image: url('imagevault/bg/bg-all-369f0d9ce5e438.jpg');
}
.slide.active {
  opacity: 1;
}

.static-content-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.button-video {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #009A44;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  gap: 14px;
  font-weight:800;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 17px;
}

.button-video svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

.button-video:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button-video:hover::before {
  animation: shine 1.4s ease-out infinite;
}

.button-video::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

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

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

.closes {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.gambla-benefit{
  padding: 73px 0;
}

.gambla-benefit h2{
  margin-bottom: 73px;
  text-align: center;
  color: #fff;  
  font-size: clamp(22px, 4vw, 50px);
}

.gambla-benefit-block{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 73px;
}

.gambla-benefit-imga{
  flex: 1;
}

.gambla-benefit-imga img{
  max-height: 70vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gambla-benefic-box{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  flex: 1;
}

.gambla-benefit-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
}

.gambla-benefit-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #009A4433;
  padding: 14px;
}

.gambla-benefit-icon svg{
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill: #009A44;
}

.gambla-benefit-card h5{
  font-weight: normal;
  flex: 1;
  color: #fff;  
  font-size: clamp(16px, 4vw, 18px);
}

.menu-game-lay{
  background-color: var(--cb-4);
}

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

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

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

.menu-games-cards{
  border-radius: 17px; 
  background-color: var(--bg-4);
  border: 1px solid #556f9c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.game-card-imges{
  padding: 30px;
  width: 100%;
  height: 253px;
}

.game-card-imges img{
  border-radius: 17px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-text{
  background-color: var(--er-4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

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

.game-card-text a h5:hover{
  opacity: 0.4;
}

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

.game-card-link{
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 30px;
}

.about-us{
  display: flex;
  flex-direction: column;
  gap: 73px;
  padding: 73px 0;
}

.about-us h2{
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.about-us-box{
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.about-us-text{
  text-align: center;
  opacity: 0.8;
  font-weight: normal;
  color: #fff;  
  font-size: clamp(16px, 4vw, 18px);
}

.about-us-link{
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.about-stats-card{
  text-align: center;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border-radius: 30px;
  background-color: rgba(48, 64, 95, 0);
  border: 1px solid rgba(85, 111, 156, 0.4);
}

.about-stats-card h5{
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.about-stats-card p{
  color: #009A44;
  font-size: clamp(16px, 4vw, 18px);
  padding: 0;
}

.gallery-lay{
  background-color: var(--cb-4);
}

.gallery-block{
  display: flex;
  flex-direction: column;
  gap: 73px;
  padding: 73px 0;
}

.gallery-title{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 17px;
}

.gallery-title h2{
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.gallery {
  width: 100%;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  grid-template-rows: 1fr 50vh;
  gap: 17px;

  & .item {
    margin: 0;
    background-size: cover;
    background-position: center;

    &:nth-of-type(1) { background-image: url(imagevault/bg/gallery-069f0d9ce5e4a8.jpg); }
    &:nth-of-type(2) { background-image: url(imagevault/bg/gallery-169f0d9ce5e4c7.jpg); }
    &:nth-of-type(3) { background-image: url(imagevault/bg/gallery-269f0d9ce5e4e3.jpg); }
    &:nth-of-type(4) { background-image: url(imagevault/bg/gallery-369f0d9ce5e500.jpg); }
    &:nth-of-type(5) { background-image: url(imagevault/bg/gallery-469f0d9ce5e51c.jpg); }
    &:nth-of-type(6) { background-image: url(imagevault/bg/gallery-569f0d9ce5e539.jpg); }

    &:hover:not(li[data-pos="1"]) {
      cursor: pointer; 
      opacity: 0.8;
      filter: brightness(0.5);
      height: 152px;
    }

    &:not(li[data-pos="1"]) {
      transition: 0.3s ease;
      height: 152px;
    }
  }
}

li[data-pos='1'] {
  grid-column: 1/6;
  grid-row: 1/6;
}

::view-transition-group(*) { 
  animation-duration: 0.4s; 
  animation-timing-function: ease-in-out; 
}

.wrapper-img{
  direction: initial;
  margin: 73px 0;
  padding: 73px 0;
  min-height: 40vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

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

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

.comments{
  display: flex;
  flex-direction: column;
  gap: 73px;
  padding: 73px 0;
}

.comments h2{
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

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

.coment-card{
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: var(--bg-4);
  padding: 22px;
  border-radius: 22px;
  gap: 22px;
}

.rating-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.rating-box svg{
  fill: gold;
  width: 22px;
  height: 22px;
}

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

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

.avatar-comments img{
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-comment-box{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.avatar-comment-box h4{
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.avatar-comment-box p{
  padding: 0;
  color: #009A44;
  font-size: clamp(14px, 4vw, 16px);
}

.footer-lay{
  position: relative;
}

.footer-lay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  left: 0;
  bottom: 0;
  background-color: var(--bg-4);
  z-index: -1;
}

.footer{
  padding: 73px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.logo-footer{
  margin: 0 auto;
}

.logophoto-footer img{
  max-height: 58px;
  object-fit: contain;
  width: 40px;
}

.logo-footer a{
  color: #fff; 
  display: flex; 
  flex-direction: row;
  align-items: center; 
  gap: 14px;
  transition: 0.3s ease;
}

.logo-footer a:hover{
  opacity: 0.4;
}

.logoTitle-footer h2{
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  margin: 0;
}

.disclaimer{
  background-color: #009A44;
  gap: 30px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.disclaimer h2{
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  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: 17px;
}

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

.footer-bottom-lay{
  background-color: #1b222e;
}

.footer-bottom{
  flex-wrap: wrap;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

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

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

.form-subscribe{
  margin: 0 auto;
  margin-top: 73px;
  width: 80%;
  background-color: #30405f;
  flex-direction: row;
  align-items: center;
  border-radius: 17px;
  padding: 44px;
  display: flex;
  gap: 44px;
}

.form-subscribe h5{
  flex: 1;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  font-weight:800;
}

.footer-input{
  flex: 1;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 17px;
  background-color: #425374;
  outline: 1px solid #556f9c;
  flex-direction: row;
}

.form-subscribe input{
  border: none;
  outline: none;
  transition: 0.3s ease;
  color: #fff;
  background-color: transparent;
  padding: 1.2rem;
  font-size: 1rem;
  line-height: 1.25rem;
  width: 100%;
}

.form-subscribe input::placeholder{
  color: #fff;
}

.button-subscribe{
  padding: 14px;
  margin: 5px;
  background: #009A44;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-subscribe svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}

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

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

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

.art-cont-title {
  margin: 73px 0;
  text-align: center;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
}

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

.art-block-images {
  float: left;
  width: 40%;
  margin: 44px;
  margin-top: 0;
  margin-left: 0;
}

.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;
  gap: 73px;
  padding: 73px 0;
}

.kontact-form{
  position: relative;
  z-index: 1;
  background-color: var(--er-4);
  border-radius: 30px;
  padding: 30px;
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kontact-form h2{
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 14px;
  color: #fff;
  background-color: #425374;
  border: 1px solid #556f9c;
  outline-color: transparent;
  padding: 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 14px;
  color: #fff;
  background-color: #425374;
  border: 1px solid #556f9c;
  outline-color: transparent;
  padding: 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 44px;
  max-height: 104px;
}

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

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  border: 1px solid #009A44;
}

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

.contacts-box{
  flex: 1;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px;
}

.contacts-card{
  margin: 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.contacts-card svg{
  fill: #fff;
  width: 30px;
  height: 30px;
}

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

.contacts-card a h5:hover{
  opacity: 0.4;
}

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

.form-block-lay{
  padding: 73px 0;
  background-color: var(--cb-4);
}

.form-block{
  width: 80%;
  margin: 0 auto;
  background-color: var(--er-4);
  border-radius: 30px;
  padding: 30px;  
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

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

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

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

.input-container .input-main--elementsection {
  border-radius: 14px;
  color: #fff;
  background-color: #425374;
  border: 1px solid #556f9c;
  outline-color: transparent;
  padding: 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-main--elementsection {
  border-radius: 14px;
  color: #fff;
  background-color: #425374;
  border: 1px solid #556f9c;
  outline-color: transparent;
  padding: 17px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 44px;
  max-height: 104px;
}

.input-container .input-main--elementsection::placeholder, .input-container .textarea-main--elementsection::placeholder{
  color: #fff;
}

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

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

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 17px 0;
}

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

.form-button{
  margin: 0 auto;
}

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

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

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

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.4s 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.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  -o-transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
}

.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.2s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
}

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

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

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

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

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

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

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

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

.nav-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #2C061F;
  transform: translateY(-110%);
  transition: transform 0.4s; 
}

.nav-panel.active {
  transform: translateY(0);
}

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

.nav-panel ul {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

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

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

.nav-link:hover {
  opacity: 0.4;
}

.about-us-dev{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.about-dev-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-dev-card img{
  border: 1px solid rgba(85, 111, 156, 0.4);
  border-radius: 50%;
  object-fit: cover;
  height: 149px;
  width: 149px;
}

.about-dev-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.about-dev-text h5{
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
}

.about-dev-text p{
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 16px);
  color: #fff;
}


@media (max-width: 1199px){

}

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

  .header-nav{
    display: none;
  }

  .gambla-benefit-block{
    flex-direction: column-reverse;
  }

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

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

  .form-block{
    width: 100%;
  }

  .form-subscribe{
    width: 100%;
  }

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

  .about-dev-card{
    flex-direction: column;
  }

  .about-dev-text{
    align-items: center;
    text-align: center;
  }
}
.rand-direct{
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .art-block-images{
    width: 100%;
    margin: 0 0 44px 0;
  }

  .playing-block{
    height: 100vh;
  }

  .about-us-stats{
    grid-template-columns: repeat(1, 1fr);
  }

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

  .form-subscribe{
    flex-direction: column;
  }

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

  .static-content{
    padding: 73px 30px;
  }

  .gallery {
    & .item {
        &:not(li[data-pos="1"]) {
            transition: 0.3s ease;
            height: 73px;
        }
    }
  }
}

@media (max-width: 576px){
  .static-content{
    padding: 73px 14px;
  }

  .gambla-benefit-card{
    flex-direction: column;
    text-align: center;
  }

  .game-card-link{
    height: auto;
  }
}

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

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