@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@400..800&display=swap');


:root {   
  --colorWhite: #faf3e0;
  --colorDark: #060606;
  --white:#fff;
 
 
  
}

body{  
  direction: ltr;
  font-family: 'Eczar', sans-serif !important;
  font-size: 18px !important;
  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(22px,4vw,35px)
}
.btn-starburst-1 {
  display: block;
  width: fit-content;
  cursor: pointer;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 14px  18px;
  font-size: 15px;
  text-transform:uppercase;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  
}
.btn-starburst-1:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: rotate(45deg);
}

.btn-starburst-1:hover:before {
  opacity: 0.6;
}

.btn-starburst-2 {
  cursor: pointer;
  display: block;
  width: fit-content;
  text-align: center;
  background: linear-gradient(145deg, #3a0ca3, #7209b7);
  border: none;
  color: #ffffff;
  padding: 15px 18px;
  font-size:  15px;  
  border-radius: 0px;
  box-shadow: 0 0  18px rgba(0, 255, 255, 0.5);
  transition: box-shadow 0.3s;
}

.btn-starburst-2:hover {
  box-shadow: 0 0  18px rgba(30, 144, 255, 0.5), 0 0 35px rgba(75, 0, 130, 0.4), 0 0 60px rgba(255, 255, 255, 0.7);
}


.btn-starburst-3{
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: linear-gradient(90deg, #ff7f50, #ff1b6b);
  color: white;
  padding: 12px 25px;
  font-size: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  text-transform: uppercase;
} 
.btn-starburst-3::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transform: rotate(45deg);
  transition: all 0.6s;
}

.btn-starburst-3:hover::after {
  top: 0;
  left: 0;
  opacity: 0.7;
}
.btn-starburst-4 {
  display: block;
  text-align: center;
  cursor: pointer;
  width: fit-content;
  background: linear-gradient(to right, #2a2a72, #009ffd);
  color: #ffffff;
  border: none;
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.btn-starburst-4::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: linear-gradient(white, transparent);
  opacity: 0.3;
  transform: rotate(45deg);
  transition: all 0.7s;
}

.btn-starburst-4:hover:before {
  top: 100%;
}
.btn-starburst-5 {
  width: fit-content;
  display: block;
  cursor: pointer;
  text-align: center;
  background: #0a0a23;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  text-transform: uppercase;
  border:  2px solid #0dcaf0;
  border-radius: 0px;
  box-shadow: 0 0 6px #0dcaf0, 0 0 20px #0dcaf0 inset;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.3s;
}

.btn-starburst-5:hover {
 transform: translateY(-5px);
  box-shadow: 0 0 17px #0dcaf0, 0 0 20px #0dcaf0 inset;
}


.top-sectionSc-pad{
  padding: 139px 0  93px;
}
.top-sectionSc{
  background-color: var(--colorDark);
  background-image: url(picgallery/dir-bg/opacity_bg-068a58661bdd98.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  width: 100%;
  overflow: hidden;
  position: relative;
}
.solar-system {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inline-size: 100%;
  block-size: 100%; 
  border-radius: 50%;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  top: -15%;
  left: 0;
  width: 38%;
  z-index: 0;
}

.solar-system__sun {
  position: absolute;
  aspect-ratio: 1;
  inline-size: 84px;
  background: linear-gradient(135deg, #ee1011 20%, transparent);
  border-radius: 50%;
  filter: drop-shadow(0px 0px 2px #ee1011) blur(1px)
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
}

.solar-system__mercury-trajectory {
  inline-size:148px; 
  -webkit-animation:revolution 43.9845s linear infinite;
  animation: revolution 43.9845s linear infinite;
}
.solar-system__venus-trajectory{
  inline-size: 271px;
  -webkit-animation:revolution 112.3335s linear infinite;
  animation: revolution 112.3335s linear infinite;
}
.solar-system__orbit{
  position: absolute;
  aspect-ratio: 1;
  border: 2px solid #ff00007a;
  border-radius: 50%;
}

.solar-system__planet {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  aspect-ratio: 1;
  background: transparent;
  border: 0px solid red; 
  border-radius: 50%;
  inline-size: 20%;
  left: 68%;
}
.solar-system__planet::after{
  content: "";
  aspect-ratio: 1;
  inline-size: 40%;
  border-radius: 50%;
  background: #ee1011;
  -webkit-filter: drop-shadow(0px 0px 4.8px #ee101180) blur(0.5px);
  filter: drop-shadow(0px 0px 4.8px #ee101180) blur(0.5px);
}

@keyframes  revolution {
  100%{
    transform: rotateZ(1turn);
  }
     
}
.wrapper-boxKL{
  width: 100%;
  margin: 0 auto;
  max-width:  1270px;
  padding-right:14px;
  padding-left: 14px;
  
}
.title-top{ 
  color:#bababa;
  font-size: calc(1.2rem + 3vw);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  gap: 14px;
}
.top-text{ 
  text-indent: 2ch; 
  width: 100%;
  margin-right: auto;
}
.flex-colJK{  
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.top-contetn{
  color: #fff;
}
.astronavt{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  animation: sway 4s ease-in-out infinite;
  -webkit-animation:sway 4s ease-in-out infinite;
  
  img{
    width: auto;
    height: 100%;
    object-fit: contain;
    
  }
}
@keyframes sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform:  rotate(4deg);
  }
}
.pozJK{
  position: relative;
  z-index: 1;
  
}
.header-bgCos{
  background-color: var(--colorDark);
  padding: 12px 0;

}
.nav-wrapper{  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: row;
}

.nav-list{
  position: relative;  
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 6px;
  flex-wrap: wrap;
  gap: 16px;
}
.nav-list::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -3px;
  background: linear-gradient(to right, transparent 0, #720909 8%, #21726d 92%, transparent 100%);
}
.nav-link-cos{
  color: #ffc12b;
  transition:  color .3s ease;
}
.nav-list li:hover a{
  color: #fff;
}
.box-col-rev{
  display: flex;
  flex-direction: column;
}
.pad-section-main{
  padding: 58px 0;
}
.box-flex-rowRev{
  display: flex;
  flex-direction: row;
}
.gap-box{
  gap: 28px;
}
.box-item{
  flex: 1;
}
.title-box{
  text-align: center;
  font-weight:400;
  color: #ffc12b; 
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1.2px;
  text-shadow: rgba(255, 204, 0, 0.9) 0px 0px 18px;
 
 
}
.step-number{
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 0;
  font-size: 10vw;
  font-weight: 700;
  line-height: 0.5em;
  color: #fcfcfc26;
  transform: translateX(-50%);
}
.gap-box-big{
  gap: 44px;
}
.step-element{
  position: relative;
  z-index: 1;
  padding-top: 44px;
}
.text-about{
  color: #bababa;
  p{
  margin-bottom: 14px;
  text-indent: 2ch;
  }
}
.bg-section{
  background-color: var(--colorDark);
}
.step-wrapper{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step-box_galery{
  display: flex;
  height: 100%;
  flex-direction:  row;
}
.step-box_galery-min{
  width: 30%;
}
.step-box_galery-max{
  width: 70%;
}
.img-end{
  display: flex;
  align-items: end;
  height: 100%;
}
.header-subtetle{
  font-weight: 400;
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.5);
}
.frame{
  border: 12px solid #ffffff24;
  transition: all 0.3s ease;
}
.galery-min_img{
  width: 100%;
  
  object-fit: cover;
  height:  333px;
}
.galery-max_img{
  width: 100%;
  height: 356px;
  object-fit: cover;
}
.step-content-box{
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-direction: column;
}
.step-content-box:hover .frame,.benefit-item:hover .frame,.contact-item:hover{
  border-color: #4bc0e454;
}
.p-l{
  padding-left: 14px;
}
.p-r{
  padding-right: 14px;
}
.step-text{
  color: var(--colorWhite);
}
.space-section {
   position: relative;
    width: 100%;
    padding:  58px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 100% 30% at center, 
                rgba(255, 255, 255, 0.3) 0%, 
                var(--colorDark) 80%);
}
.benefit-grid{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
.benefit-item{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-direction: column;
  p{
    color: var(--colorWhite);
    text-align: center;
  }
}
.diamond-frame{  
  padding: 18px;
  
}
.diamond_boxImg{
  margin: 0 auto;
  width: 148px;
  height: 148px;
  transform: rotate(+45deg);
  transition: transform 0.8s ease-in-out;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }
}
.benefit-item:hover .diamond_boxImg{
  transform: rotate(0deg);
}


.space-card-wrapper {
  position: relative;
  display: grid;  
  gap: 35px;
  grid-template-columns: repeat(2, 1fr);
 
}

.space-card {
  position: relative;
}

.space-card .space-face {
  width: 100%;
  height: 208px;
  transition: 0.4s;
}

.space-card .space-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card .space-face.space-front {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border: 12px solid #ffffff24;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(139px);
}

.space-card:hover .space-face.space-front {
  transform: translateY(0);
 box-shadow: 
  inset 0 0 30px rgba(255, 255, 255, 0.5), 
  inset 10px 0 50px #4b0082, 
  inset -10px 0 50px rgb(30, 144, 255), 
  inset 15px 0 150px #4b0082, 
  inset -15px 0 150px #1e90ff, 
  0 0 30px rgba(255, 255, 255, 0.8), 
  -5px 0 50px #4b0082, 
  5px 0 50px #1e90ff;
}

.space-card .space-face.space-front .space-content {
  opacity: 1;
  
  transition: 0.5s;
  text-align: center;
  width: 100%;
  position: absolute;
  padding:  6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.space-card:hover .space-face.space-front .space-content {
  opacity: 1;
}

.space-content h3 {
  font-size: 18px;
  
}
.space-back .space-content{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.space-card .space-face.space-back {
  position: relative;
  background: #101820;  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px; 
  box-shadow: 0  18px 41px rgba(0, 0, 0, 0.8);
  transform: translateY(calc(-100% + 139px));
}

.space-card:hover .space-face.space-back {
  transform: translateY(0);
}

.space-content p{
  
  font-size: 18px; 
  color: var(--colorWhite);
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;  
}
.btn-center{
  margin: 0 auto;
}

.space-card .space-face.space-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.section-iner-flex{
  display: flex;  
  flex-direction: column;
}
.section-iner_gap{
  gap: 58px;
}
.about-flex{
  display: flex;
  align-items: center;
  flex-direction: row;
}
.about-content-box{
  flex: 2;
}
.about-content-wrapper{
  height: 100%;
  padding: 14px;
  background: #101820;
  box-shadow: 0  18px 41px rgba(0, 0, 0, 0.8);
}

.text-content{
  color: var(--colorWhite);
  font-size:  18px;
  p{
  margin-bottom: 6px;
  text-indent: 2ch;
  }
}
.text-content ul,ol{
  list-style: inside;
}
.about-imgBox{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  img{
    -webkit-animation:sway 4s ease-in-out infinite;
    animation: sway 4s ease-in-out infinite;
    width: 100%;
    height: 100%;
    max-height: 516px;
    object-fit: contain;
  }
}
.section-footer{
   background-image:  linear-gradient(to bottom, #060606d1, #1c1c1e),url(picgallery/dir-bg/bg-all-068a58661bdd1c.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;  
  padding: 84px 0 26px;
}
.footer_box-bottom{
  display: flex;
  border-top: 1px solid #b3b3b336;
  color: var(--colorWhite);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row;
  margin-top: 24px;
  padding: 20px 0 14px;
}
.box-bottom_copyright{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;  
  justify-content:  flex-end;
}
.box-bottom_ageImg{
  display: flex;
  align-items: center;
  justify-content: center; 
  width:   56px; 
  height:   56px;   
  border-radius: 50%; 
  box-shadow: 0 0  2px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4); 
  
  img{
    width: auto;
    height: 100%;
  object-fit: contain;
  }
 
}



.footer-listCos{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link{
  font-size:  15px;
  color: var(--colorWhite);
  transition: color .3s ease;
  padding: 6px 20px;
}
.footer-link:hover{
  color: #ffc12b;
} 
.footer-logo{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  align-items: center;
  color: #bababa;
  font-size:  18px;
  font-weight:  400;
  img{
    width: auto;
    object-fit: contain;
    height: 45px;
  }
}



.disclaimer-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:  16px;
  justify-content: center;
  height: 100%;
  padding: 25px 30px;
  background: linear-gradient(135deg,#141431, #060606);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0px;
  text-align: center;
  color: #fff;   
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
 -webkit-animation:glow 2s infinite alternate;
  animation: glow 2s infinite alternate;
  
}


.disclaimer-text {
  font-size: 17px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}


.disclaimer-bg {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.planet {
  position: absolute;
  bottom: -18px;
  right: -28px;
  width: 100px;
  opacity: 0.3;
  animation: planetSpin 10s linear infinite;
  -webkit-animation:planetSpin 10s linear infinite;
}
.spaceship {
  position: absolute;
  top: -28px;
  left: -41px; 
  opacity: 0.3;
  right: unset;
  
}
.section-footer .about-flex{
  align-items: unset;
}


@keyframes glow {
  0% {
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.8);
  }
}



@keyframes planetSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}

.games-section{
  position: relative;
  padding: 58px 0;
  background: linear-gradient(135deg, #10101a, #08080c);
  overflow: hidden;
}

.star {
  position: absolute;
  z-index: 0;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-animation:twinkle 3s infinite ease-in-out;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 0.3; transform: scale(1); }
}
.privacyStil{
 word-break: break-word;
 color: var(--colorWhite);
}
.privacyStil p{
  margin-bottom: 6px;
  text-indent: 2ch;
}
.privacyStil h1{
  font-weight: 400;
  text-align: center;
  margin-bottom:  20px;
}
.privacyStil h2{
  font-weight: 400;
  text-align: center;
  margin-bottom:20px ;
}
.privacyStil table,.privacyStil a{
  word-break: break-word;
  color: inherit;
}
.contact-details {
 display: flex;
 flex-wrap: wrap;
}

.contact-item {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--colorWhite);
  flex-basis: 296px;
  background: linear-gradient(#1b1b1b, #111);
  padding: 16px;
  border-radius: 0px;
  backdrop-filter: blur(7px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  a{
    word-wrap: break-word;
  }
}
.contact-item_content{
  display: flex;
  flex-direction: column;
  gap: 14px;
  strong{
    color: #ffc12b;
  }
}


.contact-form {
  padding: 16px;
  width: 100%;
  color: var(--colorWhite);
  max-width: 798px;
  margin:0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(#1b1b1b, #111);
}
.check{
  display: flex;
  flex-direction: row;
  gap:6px;
  align-items: center;
  font-size: 14px;
 
}

.cont-inputVB,
.cont-textaresVB,
.input-field_box-control,
.textarea-field_box-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #444; 
  border-radius: 0px;
  background: linear-gradient(#333, #222);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 2px 0 #000;
  outline: none;
}

.cont-inputVB::placeholder, .cont-textaresVB::placeholder{
  color: #fff !important;
}

.cont-inputVB:focus,.cont-textaresVB:focus,
.input-field_box-control:focus,.textarea-field_box-control:focus{
  background: linear-gradient(#333933, #222922);
  border-color: rgb(6, 236, 6);
  box-shadow: 0 0 0px rgba(0, 255, 0, .2), inset 0 0 0px rgba(0, 255, 0, .1), 0 2px 0 #000;
  color: #efe;
  -webkit-animation:glow 800ms ease-out infinite alternate;
  animation: glow 800ms ease-out infinite alternate;
}
@keyframes glow {
	0%,100% {
		box-shadow: 0px 0px #1D8758, 0 0 9px 4px #8FFFCF, inset 1px 1px #D3FFEC;
	}
	50% {
		box-shadow: 0px 0px #1D8758, 0 0 8px 5px #8FFFCF, inset 1px 1px #D3FFEC;
	}
}

.cont-textaresVB {
  height:  141px;
}

.floating{
  position: relative;
}

.floating-astronaut {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 333px;
  height: 333px;
  background: url(picgallery/tematik-assets/astronauts-068a58661bdee8.png) no-repeat center/contain;
  animation: float 6s ease-in-out infinite;
  -webkit-animation:float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.game-play{
  width: 100%;
  height: 100vh;  
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  iframe{
    height: 100%;
    width: 100%;
    border: none;
  }
}
.page-img-main{
  position: relative;
  overflow: hidden;
  max-height: 356px;
  object-fit: contain;    
  border-radius: 8px;
  float: right;
  width: 38%;
  margin: 20px;
  margin-top: 0;
  margin-right: 0;
}
.faq-wrapper {
position: relative;
z-index: 1;
max-width: 798px;;
margin: 0 auto;
}
.faq-box {
color: #bababa;
background: rgba(255, 255, 255, 0.20);
padding:  18px;
border-radius: 0px;
box-shadow: 0 0  5px rgba(255, 255, 255, 0.2);
cursor: pointer;
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
transition: transform 0.3s ease;
}
.faq-box:not(:last-child) {
margin-bottom: 30px;
}
  
.faq-toggle {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.8), 0 0 28px rgba(0, 212, 255, 0.5);
}
.faq-content {    
  font-size:  17px;
  display: none;
  margin-top: 16px;
}
.faq-box.active .faq-content {
  display: block;
  color: #fff !important;
}
.faq-bg-elements .faq-nebula {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 208px;
  height: 208px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}
.faq-bg-elements .faq-meteor {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 141px;
  height: 141px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.space-gallery {
  display: grid;
  gap: 21px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 0  18px rgba(0, 255, 255, 0.5);
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.03);
 box-shadow: 0 0  18px rgba(30, 144, 255, 0.5), 
            0 0 35px rgba(75, 0, 130, 0.4), 
            0 0 44px rgba(255, 255, 255, 0.7);
}

.gallery-item img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease-in-out;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0%;
  background: radial-gradient(circle, rgba(0,0,0,0.36) 20%, rgba(255,255,255,0.53) 100%);
  opacity: 0.3;
  transition: opacity 0.4s ease-in-out;
}

.gallery-item:hover::before {
  opacity: 0.8;
}

.stardust{
  position: relative;
}
.stardust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('stardust.png');
  animation: stars 60s linear infinite;
  -webkit-animation:stars 60s linear infinite;
  opacity: 0.3;
  pointer-events: none;
}

@keyframes stars {
  from { background-position: 0 0; }
  to { background-position: 1000px 1000px; }
}

.video-box{
  padding: 12px;
  margin: 0 auto;
  position: relative;
  height:100%;
  width:100%;
  max-width: 80%;
  video{
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
   height: calc(100% - 12px * 2);
    object-fit: cover;
    position: absolute;
    width: calc(100% - 12px * 2);
    z-index: 2;
  }
  
}
.video-box::after{
  content: "";
  display: block;
  padding-bottom: 100%;
}
.video-box::before{
  background: #ffffff24;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.hiddenBlock{
  display: none;
}
.visibleBlock{
  display: none;
}



@media (max-width: 575px){
  .p-r,.p-l {
    padding: 0;
  } 
  
  .nav-list{
      padding: 0 0 6px;
  }
  .title-top{
    justify-content: center;
  }
  .header-subtetle,.top-text{
    text-align: center;
  }
 .nav-list{
  justify-content: center;
 }
 .benefit-grid,
 .space-gallery{
    grid-template-columns: repeat(1, 1fr);
  }
  .space-card .space-face.space-back{
    padding: 18px  6px;
  }
  .footer_box-bottom{
    flex-direction: column;
    justify-content: center;
  }
  .contact-form{
    padding: 16px 6px;
  }
  .faq-box{
    padding:  18px 6px;
  }
  .video-box::before,.video-box video{
    clip-path:none;
  }
  .cont-inputVB::placeholder,.input-field_box-control::placeholder,.textarea-field_box-control::placeholder,.cont-textaresVB::placeholder{
   font-size: 12px;
  }
  .box-bottom_copyright{
    justify-content: center;
  }
  .disclaimer-block{
    padding: 25px 10px;
  }
  .faq-toggle{
    font-size: 19px;
  }
 
}
@media (min-width: 575px) and (max-width: 992px){
  .benefit-grid,
  .space-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px){
.faq-box:hover {
    transform: scale(1.01);
  }
}
@media (max-width: 768px){
.top-sectionSc-pad{
  padding: 84px 0;
}
.box-flex-rowRev,.step-content-box{
  flex-direction: column;
}
.galery-min_img,.galery-max_img {
  height: 208px;
 }
 .fl-min-colR{
  flex-direction: column-reverse;
 }
 .space-card-wrapper {
    grid-template-columns: repeat(1, 1fr);
 }
 .space-card .space-face.space-front{
    transform: translateY(0);
    border: none;
    
 }
 .space-card .space-face.space-back{
    transform: translateY(0);
    box-shadow:none;
 }
 .space-card{
  border: 12px solid #ffffff24;
 }
 .page-img-main{
  float: none;
  width:100%;
  margin: 0 0 20px 0;  
  }
  .video-box{
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 992px){
 .space-card-wrapper {
      grid-template-columns: repeat(2, 1fr);
 }
}
@media (min-width: 992px){
  .section-footer .about-flex{
    flex-direction:  row-reverse;
  }
}
@media (max-width: 992px){ 
.top-text{
  width: 100%;
}
.step-box_galery-max{
  width: 100%;
}
.step-box_galery-min{
  display: none;
}
.about-flex{
  align-items: unset;
  flex-direction: column;
}
.about-imgBox{
  height: 208px;
}
.box-none{
  display: none;
}
.contact-form,.faq-wrapper{
  max-width: 100%;
}
.video-box {
  height: 333px;
}
  
}

.footer-logos {
    display: flex;
    justify-content: center; 
    align-items: center;
   flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-logos a img {
    max-height: 50px;
    width: auto;
    display: block;
  }


