@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #060606;
  direction: ltr;
  font-family: 'Cairo', 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;
}

.wrapper-container{
  width: auto;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

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

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}
.page-privacy ul {
  list-style: square !important;
}
.header-content {
  flex-wrap: wrap;
  position: relative;
  display: flex;
  align-items: center;
}

.static-text {
  padding: 0 70px;
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 25px;
  position: absolute;
  z-index: 2;
}

.static-text h2{
  font-weight: 700;
  color: #fff;
  font-size: clamp(22px, 4vw, 60px);
  text-transform: uppercase;
}

.static-text p{
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: 18px;
}

.main-button {
  direction: initial;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.main-button svg{
  width: 25px;
  fill: #fff;
  transition: 1s ease;
  padding-right: 10px;
}

.main-button:hover svg{
  fill: #060606;
}

.main-button:hover {
  color: #060606;
}

.main-button::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  transition: all 1s;
}

.main-button:hover::before {
  width: 160%;
}

.slider {
  min-height: 100vh;
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}
.slide1 {
 background-image: url('galleryarchive/dir-bg/bg-all-06891ce36adfcd.jpg');
}
.slide2 {
  background-image: url('galleryarchive/dir-bg/bg-all-16891ce36ae000.jpg');
 }
 .slide3 {
  background-image: url('galleryarchive/dir-bg/bg-all-26891ce36ae02f.jpg');
 }
 .slide4 {
  background-image: url('galleryarchive/dir-bg/bg-all-36891ce36ae05c.jpg');
 }
.thumbnails {
  position: absolute;
  bottom: 38px;
  right: 70px;
  display: flex;
  gap: 11px;
}

.thumbnail {
  border: 1px solid transparent;
  width: 88px;
  height: 88px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.thumbnail:hover, .thumbnail.active {
  opacity: 1;
  border: 1px solid #fff;
}

.header-lay{
  padding: 18px 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: 55px;
  object-fit: contain;
  width: 55px;
}

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

.logo a:hover{
  opacity: 0.5;
}

.logoTitle h2{
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

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

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

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

.submenu-link:hover {
  color: #ACA22E;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.5s ease 0s forwards;
  transition: all 0.5s ease;
}

@keyframes slideIn {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu li{
  padding: 0;
  border-bottom: 1px solid rgb(245, 244, 255);
}

.submenu a {
  font-size: clamp(14px, 4vw, 14px);
  color: #060606;
  padding: 11px;
  display: block;
  transition: 0.5s ease;
}

.submenu a:hover {
  margin-left: 10px;
}

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

.fixed-header {
  background-color: #060606;
  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.5s ease;
}

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

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

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

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

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

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

.menu-toggle.active span: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: #060606;
  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: 11px;
  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.5;
}

.about-us-lay{
  position: relative;
  z-index: 1;
  background-color: #321D2F;
}

.about-us{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}

.section-title{
  position: relative;
  margin-bottom: 70px;
}

.text-centre{
  text-align: center !important;
}

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

.section-title h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

.about-us-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-direction: row;
}

.about-us-img{
  flex: 1;
  display: flex;
  gap: 11px;
  flex-direction: row;
}

.about-img-ones{
  flex: 1;
  display: flex;
  gap: 11px;
  flex-direction: column-reverse;
}

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

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

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

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

.about-us-p{
  opacity: 0.8;
  font-weight: normal;
  color: #fff;  
  font-size: 18px;
}

.game-block{
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.game-catal{
  flex: 1;
}

.game-boxs{
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

.game-boxs a h5{
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.5s ease;
  color: #fff;  
  font-size: clamp(19px, 4vw, 28px);
}

.game-boxs a h5:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

.game-boxs a h5:hover{
  opacity: 0.5;
}

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

.game-boxs-button{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.game-boxs-rating{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

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

.game-img{
  flex: 1;
}

.catalog-game img{
  max-height: 50vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-game{
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.player-video{
  position: relative;
  flex: 1;
  height: 100vh;
}

.player-video video {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.player-video video:hover {
  cursor: pointer;
}

.button-play{
  transition: 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.player-video:hover .button-play{
  display: none;
}

.button-play svg{
  width: 114px;
  height: 114px;
  fill: #fff;
}

.top-games{
  flex: 1.5;
}

.top-games-block{
  align-items: start;
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.top-games-block h2{
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;  
  font-size: clamp(19px, 4vw, 28px);
}

.top-games-block h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

.top-games-boxs{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.top-games-card{
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
}

.catalog-game-img{
  filter: brightness(0.5);
  position: relative;
}

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

.catalog-game-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  left: 0;
  padding: 18px;
  position: absolute;
  bottom: 0;
}

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

.catalog-game-text a h5:hover{
  color: #ACA22E;
}

.comments-lay{
  position: relative;
  z-index: 1;
  background-color: #321D2F;
}

.comments{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}

.comments h2{
  margin-bottom: 38px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;  
  font-size: clamp(19px, 4vw, 28px);
}

.comments h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

.comments-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.comments-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.comments-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}

.comments-card-text {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 38px;
}

.comments-card-text-img{
  flex: 1;
}

.comments-card-text-img img{
  width: 100%;
  height: 326px;
  object-fit: cover;
}

.comments-card-text-box{
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comments-card-text-box h1{
  font-size: clamp(18px, 4vw, 19px);
  color: #fff;
  margin: 0;
}

.comments-card-text-box p {
  padding: 0;
  font-size: clamp(18px, 4vw, 19px);
  color: #fff;
  margin: 0;
  opacity: 0.7;
}

.comments-card-text-box h5 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.comments-card.active {
  opacity: 1;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  border: 1px solid transparent;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #fff; 
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dot.active {
  border: 1px solid #fff;
  background-color: #321D2F; 
}

.gambla-benefit{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}

.gambla-benefit h2{
  margin-bottom: 38px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;  
  font-size: clamp(19px, 4vw, 28px);
}

.gambla-benefit h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

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

.gambla-benefit-card{
  display: flex;
  flex-direction: column;
}

.gambla-benefit-img{
  width: 100%;
  height: 268px;
}

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

.gambla-benefit-text{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #321D2F;
  padding: 18px;
}

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

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

.form-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(galleryarchive/dir-bg/bg-all-36891ce36ae05c.jpg);
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

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

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

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

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

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

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

.input-container .input-form-boxinput {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-form-boxinput {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 38px;
  max-height: 127px;
}

.input-container .input-form-boxinput::placeholder, .input-container .textarea-form-boxinput::placeholder{
  color: #fff;
}

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

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

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: flex-start;
  padding: 16px 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.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  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.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.3s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.3s 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;
}

.footer-lay{
  background-color: #321D2F;
}

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

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

.logo-footer{
  margin: 0 auto;
}

.logoImg-footer img{
  max-height: 55px;
  object-fit: contain;
  width: 55px;
}

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

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

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

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

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

.disclaimer p{
  padding: 0;
  font-size: 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: 18px;
}

.privacy ul li a {
  font-size: 18px;
  transition: 0.5s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.footer-bottom{
  border-top: 0.1px solid #f5f5f5;
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: 18px;
}

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

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

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

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

.art-cont-title {
  margin: 70px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(19px, 4vw, 28px);
  color: #fff;
}
.games-rand-dr{
  display: flex;
  flex-direction: column;
}
.art-block {
  overflow: hidden;
  position: relative;
}

.art-block-images {
  float: right;
  width: 38%;
  margin: 38px;
  margin-top: 0;
  margin-right: 0;
}

.art-block-content {
  color: #fff;
  font-size: 18px;
}

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

.contacts-page{
  display: flex;
  flex-direction: row;
  gap: 70px;
  padding: 70px 0;
}

.kontact-form{
  position: relative;
  z-index: 1;
  background-color: #321D2F;
  padding: 18px;
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

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

.input-kontact-form .textarea-kontact{
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 38px;
  max-height: 127px;
}

.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;
  align-items: start;
  flex-direction: column;
  gap: 25px;
}

.contacts-box h2{
  margin-bottom: 38px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;  
  font-size: clamp(19px, 4vw, 28px);
}

.contacts-box h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 11px;
  bottom: 0;
  left: 0;
  background: #ACA22E;
  opacity: 0.9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

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

.contacts-card svg{
  fill: #ACA22E;
  width: 28px;
  height: 28px;
}

.contacts-card a h5{
  flex: 1;
  transition: 0.5s ease;
  font-size: 18px;
  color: #fff;
}

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

.contacts-card h5{
  flex: 1;
  font-size: 18px;
  color: #fff;
}

.catalog-img img {
  height: 504px;
  object-fit: contain;
}

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

  .header-nav{
    display: none;
  }

  .static-text{
    width: 100%;
  }

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

  .more-game{
    flex-direction: column-reverse;
  }

  .top-games-block{
    padding: 70px 0;
  }

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

  .form-block{
    width: 100%;
  }

  .game-boxs{
    padding: 70px 0;
  }

  .game-block{
    flex-direction: column-reverse;
  }

  .game-img{
    max-width: 730px;
    width: auto;
    padding-right: 25px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
  }

  .contacts-page{
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .top-games-boxs{
    grid-template-columns: repeat(1, 1fr);
  }

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

  .thumbnails{
    display: none !important;
  }
  
  .game-img{
    max-width: 540px;
  }

  .comments-card-text{
    flex-direction: column;
  }

  .comments-card-text-box{
    text-align: center;
  }

  .slide{
    width: 100%;
  }

  .more-game{
    padding: 0;
  }

  .art-block-images{
    width: 100%;
    margin: 0 0 38px 0;
  }

  .playing-block{
    height: 100vh;
  }

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

@media (max-width: 576px){
  .catalog-img img {
    height: auto;
  }
  .game-img{
    max-width: 450px;
  }

  .game-boxs-button{
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .static-text{
    padding: 0 25px;
  }
}

.a1b5c-container {
            background-color: #fff;
            border: 1px solid #38d009;
            border-radius: 15px;
            padding: 10px;
            width: 400px;
            max-width: calc(100% - 40px);
            text-align: center;
            position: fixed;
            bottom: 15px;
            left: 50%;
            margin: 0 30px;
            transform: translateX(calc(-50% - 30px));
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
        }

        .a1b5c-message {
            font-size: 14px;
            color: #000;
            margin: 0 auto 20px;
            line-height: 1.5;
            text-align: center;
            max-width: 90%;
        }

        .a1b5c-button {
            background-color: transparent;
            color: #fff;
            border: none;
            padding: 12px 24px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
            color: #ACA22E;
            outline: 1px solid #ACA22E;
        }

        .a1b5c-button:hover {
            background-color: #ACA22E;
            color: #fff;
        }

        .no-outline {
            outline: none;
            background: #ACA22E !important;
            color: #fff;
        }

        .no-outline:hover {
            background: transparent !important;
            outline: 1px solid #ACA22E;
            color: #ACA22E !important;
        }

        .a1b5c-container > div {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .a1b5c-container h1 {
            line-height: 1;
            font-family: Avenir;
            margin-block-start: 0;
            margin-block-end: 0;
            margin: 15px 0;
        }

        .btn-thx{
          margin-top: 50px;
        }

        .btn-thx a:hover{
          color: #fff !important;
        }

        .stop-height{
          min-height: 70vh !important;
        }

        @media(max-width: 992px){
          .stop-height{
            min-height: 100vh !important;
          }
        }