@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');

:root {  
  --color-tem-1:#9C0018;
  --color-tem-2:#70009c;
   --color-tem-3:#9c4900; 
  --color-tem-4: #6d4e4e;
  --color-tem-5:#763232;
  --white: #fff;
  --black: #040807;
  --white-section:#fffef8;
  --hover-color:#878787;  
  --hover-tranzitipn: all ease 0.4s;  
}

body{
  
    direction: ltr;
    font-family: 'Advent Pro', sans-serif !important;
    font-size: 15px;
    margin: 0;
    padding: 0px;    
    line-height: 1.2; 
    
}
* {
  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(21px,4vw,36px)!important;
}
.buttunPx-1 {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: #ffcc00; 
  color: #000; 
  padding: 15px 20px;
  border: none;
  border-radius: 10px; 
  font-size: 18px;
  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.4s 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 2px 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.4s ease;
  transform: rotate(45deg);
  z-index: -1;
}

.buttunPx-1:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.2); 
}
.buttunPx-2 {
  padding: 15px 25px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  border: none;
  outline: none;
  color:#000;
  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% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .4s 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;
  background: linear-gradient(90deg, #ffcc00, #ff9900); 
  color: #ffffff;
  font-size: 18px; 
  font-weight: 900; 
  padding: 12px 25px; 
  border: none; 
  display: block;
  border-radius: 8px; 
  cursor: pointer; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase; 
} 
.buttunPx-3:hover{
  transform: scale(1.05); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 

}
.buttunPx-3:active{
  transform: scale(0.98); 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}
.buttunPx-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: linear-gradient(90deg, #ff0000, #ff6600); 
  color: #ffffff;
  font-size: 18px; 
  font-weight: 900; 
  padding: 14px 23px; 
  border: none; 
  border-radius: 10px; 
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
  text-transform: uppercase; 
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
  position: relative; 
  overflow: hidden; 
  
}

.buttunPx-4:hover,
.buttunPx-4:focus {
 transform: scale(1.1); 
  box-shadow: 0 6px 12px 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.4s ease-in-out; 
}
.buttunPx-4:hover:before,.buttunPx-4:focus:before{
  left: 100%;
}
.buttunPx-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background: #000000; 
  color: #00ff99; 
  font-size: 18px; 
  font-weight: 900; 
  padding: 14px 23px; 
  border: 1px solid #00ff99; 
  border-radius: 8px; 
  cursor: pointer; 
  text-transform: uppercase; 
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99, 0 0 15px #00ff99; 
  transition: all 0.4s ease; 
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.5), 0 0 30px rgba(0, 255, 153, 0.4); 
  animation: neonPulse 1.4s infinite alternate; 
}

.buttunPx-5:hover {
  color: #ffffff; 
    border-color:#d4202b; 
    text-shadow: 0 0 5px #d4202b, 0 0 10px #d4202b, 0 0 20px #d4202b; 
    box-shadow: 0 0 25px rgba(212, 32, 43, 0.7), 0 0 35px rgba(212, 32, 43, 0.7); 
    background: #d4202b; 
}
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 153, 0.5), 0 0 30px rgba(0, 255, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 153, 0.7), 0 0 40px rgba(0, 255, 153, 0.6);
    }
}
.top-header{
  position: relative;
  overflow: hidden; 
  background-color: var(--white-section);
}
.containerGame{
  width: 100%;
  padding-left: 14px;
  padding-right: 14px; 
  margin-left: auto;
  margin-right: auto; 
}
.wrapper-headerGame{
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.logo-wrapper{
  position: relative;
  padding-top: 18px;
  padding-inline-end: 42px;
  padding-bottom: 18px;
  padding-inline-start: 0;
 
  background-color: #040807;
}
.logo-wrapper::before{
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 100%;
  inset-inline-start: -3000px;
  content: '';
  background:#040807;
}
.logo-link{
  display: flex;
  align-items: center;
  color:#fff;
  flex-wrap: wrap;
  gap: 10px;
  font-size:18px;
  font-weight:700;
  img{
    height: 55px;
    object-fit: contain;
    width: auto;
  }
}
.navGame{
  width: auto;
  padding: 17px 0;
}
.navGame ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.navGame ul>li>a{
  font-size: 18px;
  color: #040807;
  font-weight: 900;

}
.navGame ul>li:hover a{
  color: var(--hover-color);
}
.top-header_section2{

  position: relative;
  width: 100%;
  height: 534px;
}

.slide.active{
opacity: 1;
 animation: zoomIn 4s linear forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% { 
    transform: scale(1.1);
  }
}
.disclaimer-text{
  font-size: 20px;
}
.slides{
position: relative;
height: 100%;
width: 100%;
overflow: hidden; 
transition: transform 0.4s ease-in-out;
  }

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
   
  transition: opacity 1s ease-in-out;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
.slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color:#97090940;
}
.bottom-header-tex{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 50%;
  bottom: 0;
  max-width: 460px;
  background: rgba(38, 38, 38, .8);
  color: #fff;
  padding: 25px 21px;
  z-index: 1;
}
.bottom-header-tex::before,.bottom-header-tex::after{
  position: absolute;
  content: '';
  background: rgba(38, 38, 38, .5);
  top: 0;
  bottom: 0;
  z-index: -1;
}
.bottom-header-tex::before{
  right: 50%;
  left: -3000px;
}
.bottom-header-tex::after{
  left: 50%;
  right: -3000px;
}
.header-title{
  font-size: 23px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom:  15px;
  font-weight: 900;
}
.header-text{
font-size:18px;
margin-bottom:  15px;
}
.section-white{
  background-color: var(--white-section);
}
.pad-box{
  padding: 51px 0;
}
.benefit-flex{
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
}
.benefit-element{
  flex-grow: 1;
  flex-basis: 270px;
}
.benefit-element:hover .gameStepsComment,.cont-item:hover{
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
}
.one_fourts {
  height: 100%;
  padding: 5px;
  align-items: center;
  text-align: center;
  color: #000;
  font-weight:700;
  transition: var(--hover-tranzitipn);
  justify-content: space-between;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.benefit-icon{
  width: 89px;
  height: 89px;
  border: 1px solid #D4202B;
  background-color: #D4202B;
  border-radius: 100%;
  display: flex;
  transition: var(--hover-tranzitipn);
  align-items: center;
  justify-content: center;
  animation: pulseRotated 4s infinite;
  
  img{ 
   height: 50px;
   width: 50px;
   object-fit: contain;
  }
}

@keyframes  pulseRotated {
  0% {
    transform: scale(1);
}
50% {
    transform: rotate(-25deg) scale(1.1);
    
}
100% {
    transform: scale(1);
}
}
.benefit-element:hover .benefit-icon{
  background-color: #fff;
}
.benefit-element:hover .one_fourts {
  color: #D4202B;
}
.section-black{
  color: #fff;
  background-color: #040807;
  
}
.flex-box{
  display: flex;
}
.flex-row{
  align-items: center;
  flex-direction:  row-reverse;
}
.flex-col{
  flex-direction: column;
}
.gap-n{
  gap: 29px;
}
.flex-element{
  flex: 1;
}
.about-box{
  height: 100%;
  flex-direction: column;
  gap: 20px;
  align-items: center;
 justify-content: center;
}
.title-section,.titleGambla{
  color: #f82f77;
  position: relative;
  display: inline-block;
  padding-inline-end: 25px;
}
.title-section::after,.titleGambla::after{
  position: absolute;
  content: "\2660";
  color: #f82f77;
  inset-inline-end: 0;

}
.titleGambla::after{
 position: absolute;
  content: "\2666";
}
.about-img_big{
  flex: 2;
  overflow: hidden;
  border-radius: 0px 50px 0px 0px;
  height: 413px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-img-group{
 flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 29px;
  max-height: 413px;
}

.about-img_smoll{
  overflow: hidden;
  border-radius: 0px 50% 50% 0px;
  height: 210px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.title-box{
  text-align: center;
  margin-bottom: 30px;
  
}
.subtitleML{
  margin-top: 15px;
  font-weight:700;
}
.title-white{
  color: var(--white-section);
  font-weight:700;
  position: relative;
  text-align: center;
}
.section-aboutPage .titleGambla,.section-aboutPage .title-section,.section-aboutPage .titleGambla::after,.section-aboutPage .title-section::after{
  color: var(--white-section);
}

.ca-menu{
  flex-wrap: wrap;
  justify-content: center;
}
.card-12{
  flex: 0 0 auto;
  width: 100%;
  padding-left: 13px;
  padding-right: 13px;
  margin-top: 26px;
}
.card-box{
  position: relative;
  background-color: #fff;
  color: #000;
  gap: 20px;
  justify-content: space-between;
  border-radius: 0px;
  border: 1px solid #fafafa;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 300ms linear;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 300ms linear;
  height: 100%;
}
.card-img{
  position: relative;
  width: 90%;
  padding-top: 15px;
  img{
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}
.img-link{
  position: absolute;
  inset: 0;
}
.card-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  transition: all 200ms linear;
  em{
    font-size:18px;
  }
}
.btn-game{
  width: 100%;
}
.ca-menu li:hover .card-box{
 color: #fff;
 background-color:  #040807;

}
.ca-menu li:hover .card-img img{
  -webkit-animation: moveFromBottom 300ms ease;
  animation: moveFromBottom 300ms ease;
}
@keyframes moveFromBottom {
  0% {
    transform: translateY(100%);
}
100% {
    transform: translateY(0%);
}
}
.ca-menu li:hover .card-content{
    -webkit-animation: smallToBig 300ms ease;
    animation: smallToBig 300ms ease;
}
@keyframes smallToBig {
  0% {
    -webkit-transform: scale(0.1);
}
100% {
    -webkit-transform: scale(1);
}
}
.card-title{
  font-size: 20px;
  font-weight:700;
  a{
    font-size: inherit;
    font-weight: inherit;
  }
}
.ca-menu li:nth-child(2) .card-box{
color: #fff;
 background-color:  #040807;
}
.footeGame{
  padding: 20px 0;
  border-top: 1px solid #8f0303;
  color: #fff;
  background-color: transparent;
  background-image: radial-gradient(at bottom center, var(--color-tem-1) 0%, #000E35 100%);
}
.footeGame-disclaimer{
   flex: 2;
}
.footeGame_img{
  flex: 1;
}
.footeGame-img_wrapper{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: 100%;
    height: 245px;
    object-fit: contain;
  }
}
.footeGame-content_iner{
  text-align: center;
  height: 100%;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 7px rgba(242.25, 237.04093809073723, 2.6331521739130554, 0.5);
  background-color:#6d0000;  
  h3{
    font-size:25px;
  }
  
}
.footeGame-bottom{
  margin-top: 30px;
  padding-top: 15px;
  border-top:1px solid #8f030329;;
}
.footeGame-copyright{
  display: flex; 
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footeGame-img{
  display: flex;
  align-items: center;
  justify-content: center;
 
  img{
    width: 55px;
    height: 55px;
    object-fit: contain;
  }
}
.footeGame-list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  text-align: center;
}
.footeGame-content{
  gap: 20px;
  flex-direction: column;
}
.footeGame-list li:hover a{
  color: var(--hover-color);
}
.privacyGame{
 word-break: break-word;
 
}
.privacyGame p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacyGame h1{
  font-weight: 700;
  text-align: center;
  margin-bottom:  27px;
}
.privacyGame h2{
  font-weight:700;
  text-align: center;
  margin-bottom:17px ;
}
.privacyGame table,.privacyGame a{
  word-break: break-word;
  color: inherit;
}
.section-aboutPage{
  color: #fff;
  background-color: transparent;
  background-image: radial-gradient(at bottom center, var(--color-tem-1) 0%, #000E35 100%);
}
.aboutPage{
  width: 100%;
  height: 100%;
  background-image: url(galleryarchive/back/opacity_bg-069cd3a236d3a6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
 
}
.content-wrapper{
  min-height: 342px;
}
.page-img{
  max-height: 342px;
  object-fit: contain;    
  border-radius: 4px;
  float: right;
  width: 40%;
  margin: 17px;
  margin-top: 0;
  margin-right: 0;
}
.page-content{
  color: var(--white-section);
 p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
}
.page-content ul,ol{
  list-style: inside;
}
.playing{
  height: 100vh;
  width: 100%;
  margin-bottom: 43px;
  margin-left: auto;
  margin-right: auto;
}
.playing iframe{
  height: 100%;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(245.24999999999997, 239.93006852551986, 0.5331521739130404, 0.5);
}
.page-data-rnd{
  display: flex;
  flex-direction: column;
  gap:20px ;
}
.page-data{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 19px;
}
.data-main{
  position: relative;
  padding-inline-start: 30px;
  display: grid;
  place-items: center;
}
.icon-data{
  position: absolute;
  inset-inline-start: 0;  
  display: flex;
  align-items: center;
  justify-content: center;
  svg{
    width: 20px;
    height: 20px;
    fill: transparent;
    stroke: #48ff00;
  }
}
.data-box{
  display: flex;
  align-items: center;
  gap: 8px;
}
.galleryGame{
  display: grid;
  gap: 10px;
  grid-template-columns:repeat(2,1fr)
}

.gallery_item{
 
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  img{
    width: 100%;
    height: 200px;
    object-fit: cover;
     transition: transform 0.2s ease-in-out;
  }
}

.gallery_item:hover img{
  transform: scale(1.05);
}
.group-box{
  gap: 70px;
  flex-direction: column;
}
.gameStepsComment{
  padding: 5px;
  display: flex;
  gap: 16px;
  height: 100%;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 10px 0px rgba(218.66483223062377, 237.75, 6.719021739130422, 0.5);
  border-radius:  4px;
  background-color: #040807;
  transition: box-shadow 0.2s ease-in-out;
}
.gameStepsComment_tex{
  color: #fff;
  font-size:18px;
  font-weight:700;
  text-align: center;
}
.gameStepsComment_box{
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  span{
    font-size: 20px;
    font-weight:700;
  }
}
.gameStepsComment_img{
  flex: 0 0 auto;
  overflow: hidden;
  width:  51px;
  height:  51px;
  border-radius: 50%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.step-box{
  flex: 0 0 auto; 
  height: 53px;
   img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.step{
  padding: 26px 15px;
}
.section-video{
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  video{
      width: 100%;
      height: auto;
      object-fit: cover;
  }
}
.section-video::before{
  position: absolute;
  inset: 0;
  content: "";
  background-color: #000000;
  opacity: 0.4;
}
.vidio-box{
position: absolute;
inset: 0;
display: grid;
place-items: center start;

}
.vidio-box_iner{
  width: 65%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  padding: 29px;
  font-size: 25px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
}


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

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
}
.cont-img_box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
   
  img{
      width: 100%;
      height: 342px;
      object-fit: contain;
  }
}
.box-form{
  padding: 43px 20px;
  width: 100%; 
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px rgba(229.00409971644606, 242.25, 7.899456521739138, 0.5);
  border-radius: 4px;
  background-color: #040807;

}
.formGame{
  color: var(--white-section);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.input-game,.textarea-game,.input-group--group-input,.textarea-group--group-input{
  width: 100%;
  background-color: var(--white-section);
  color: #000;
  border: 1px solid #69727d;
  padding: 10px 16px;
  border-radius: 6px;
  
}
.textarea-group--group-input,.textarea-game{
  min-height: 75px;
}
.formJok-grup_element{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.formJok-check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
 color: #c5c7ce;
}
.cont-list{
  height: 100%;
  flex-wrap: wrap;
  gap: 16px;

}
.flex-different{
  align-items: center;
  flex-direction: row-reverse;
  
}
.cont-item{
  padding: 15px;
  display: flex;
  flex-grow: 1;
  flex-basis: 300px;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(229.00409971644606, 242.25, 7.899456521739138, 0.5);
  border-radius: 4px;
  background-color: #040807;
  transition: box-shadow 0.2s ease-in-out;
 
  a{
    font-size: 20px;
    color: #fff;
    word-break: break-word;

  }
}
.form-btn{
  margin:  0 auto;
}
.title-form{
   color: #f0e765;
    font-size:25px;
    font-weight:700;
}
.cont-svg{
  display: flex;
  align-items: center;
  justify-content: center;
  svg{
    width: 55px;
    height: 55px;
    fill: transparent;
    stroke: #fff;
  }
}
.bg-form{
  position: relative;
  background-image:url(galleryarchive/back/bg-all-069cd3a236d340.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.bg-form::before{
position: absolute;
content: "";
inset: 0;
background-color: #8f030363;
}
.form-bg{
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(galleryarchive/back/opacity_bg-169cd3a236d3c8.png);
}


@media screen and (min-width: 575px){
 .card-sm-6{
  flex: 0 0 auto;
  width: 50%;    
 }
}

@media (max-width: 575px){
  .header-title{
    font-size: 21px;
  } 
  .card-12{
    padding: 0;
  }
  .box-img{
    width: 100%;
    flex-direction: column;
  }
  .about-img_big{
    height: 210px;
    flex: auto;
  }
  .about-img_smoll{
    border-radius: 0px 50px 0px 0px;
  }
  .galleryGame {
    grid-template-columns: repeat(1, 1fr);
  } 
  .cont-img_box img{
  height: auto;
  }  
  .disclaimer-text{
    font-size: 18px;
  } 
  .footeGame-content_iner h3{
    font-size: 20px;
  }  

}
@media (min-width: 575px) and (max-width: 768px){
  .galleryGame {
    grid-template-columns: repeat(2, 1fr);
  } 
}
@media (min-width: 768px){ 
  .box-form{
    width: 85%;
  }
 
}
@media (max-width: 768px){
 .wrapper-headerGame{
  flex-direction: column;
 }
 .top-header .containerGame{
  padding: 0;
 }
 .header-text{
  font-size: 14px;
 }
 .logo-wrapper{
  width: 100%;
  padding: 18px 42px;
 }
 .logo-link{
  justify-content: center;
 }
 .navGame{
  padding: 18px;
  width: 100%;
 }
 .navGame ul{
  justify-content: center;
 }
 .card-box{
 color: #fff;
 background-color:  #040807;
}
.card-content em{
  font-size: 15px;
}
 .page-img{
  float: none;
  width:100%;
  margin: 0 0 20px 0;  
  } 
 .playing {
  width: 100%;
  height: 100vh;
 } 
 .vidio-box_iner{
  font-size: 20px;
  padding: 29px 15px;
 }
 .title-box{
    text-align: center;
  }
  .titleGambla::after,.title-section::after{
  display: none;
  }
  .title-section, .titleGambla{
  padding: 0;
  }
 
}

@media (min-width: 768px) and (max-width: 992px){  
   .box-img{
    width: 80%;
   }
}

@media (max-width: 992px){ 
  .bottom-header-tex{
   max-width: 100%;
   left: 0;
   right: 0;
 }
 .flex-row{
  flex-direction: column;
 }
 .vidio-box_iner{
  width: 100%;
 }
.flex-different{
  flex-direction: column;
}
   
}
@media (min-width: 992px){ 
  .containerGame{
   max-width: 960px;
  }
  .card-lg-4{
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .card-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}    


@media (min-width: 1200px){   
  .containerGame{
  max-width: 1230px;
  }
}



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