@import url('https://fonts.googleapis.com/css2?family=Noticia+Text:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
    --color1: #30e79c;
    --color4: #111;
    --white: #fff;
    --black: #000;

   
    --bg1:  #161829;
    --bg2:  #222434;

    --tr1: .5s ease-in-out;

    --brd1: #303141;
    --brd2: #404250;
    --brd3: #4c4d5a;

    --rgb1: rgb(50 108 126 / 90%);
    --rgb2: rgb(7 8 8 / 90%);


  }

  
body{
    font-family: 'Noticia Text', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    direction: ltr !important;
}


img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

li, p{
  padding: 10px 0;
}

a {
  text-decoration: none;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sptitls{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
  gap: 10px;
}

 .sptitls h5{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: clamp(24px, 5vw, 60px);
  position: relative;
  font-weight: 700;
  color: var(--color1);
}


.sp-hd {
  width: 100%;
  background-color: var(--black);
  padding: 15px 0;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: row-reverse;
  filter: drop-shadow(1px 5px 7px var(--color1));
  -webkit-filter: drop-shadow(1px 5px 7px var(--color1));
}

.sp-logos{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
 flex-wrap: wrap;
  padding: 20px;
}

.footer-logos a img {
  max-height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 576px){
.footer-logos a img {
  height: 30px;
}
}

.sp-logos a{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.sp-logos  img{
  display: flex;
  flex-direction: row-reverse;
  object-fit: contain;
  width:  62px;
  height: 62px;
}

.sp-logos  h2  {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--color1);
  transition: var(--tr1);
  text-transform: inherit;
}

.sp-logos  h2:hover{
  color: var(--white);
}


.nav-toggle {
  display: none;
}

.nav-toggle-label {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-label span {
  background: #ffffff;
  border-radius: 15px;
  height: 5px;
  margin: 2px 0;
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-toggle-label span:nth-of-type(1) {
  width: 50%;
}

.nav-toggle-label span:nth-of-type(2) {
  width: 100%;
}

.nav-toggle-label span:nth-of-type(3) {
  width: 75%;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-of-type(1) {
  width: 15px;
  transform-origin: bottom;
  transform: rotateZ(45deg) translate(7px, 0px);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-of-type(2) {
  width: 19px;
  transform-origin: top;
  transform: rotateZ(-45deg) translate(3px, 3px);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-of-type(3) {
  transform-origin: bottom;
  width: 15px;
  transform: translate(15px, -7px) rotateZ(45deg);
}

.nav-toggle:checked ~ nav {
  transform: scale(1, 1);
  box-shadow: 0  24px 19px rgba(0, 0, 0, 0.2);
  padding-bottom: 19px;
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 0.25s ease-in-out 0.25s;
}

nav {
  width: 100%;
  text-align: left;
  background-color: var(--black);
  position: absolute;
  top: 100%;
  left: 0;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.5s ease-in-out;
}

nav ul {
  list-style: none;
}

nav ul li {
  margin: 0 0 15px 32px;
}

nav ul li a {
  color: var(--white);
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  text-decoration: none;
  text-transform: inherit;
  opacity: 0;
  transition: opacity var(--tr1);
}

nav ul li a:hover {
  color: var(--color1);
}

.sp-secHr {
  position: relative;
  width: 100%;
  background-image: url(imgs/stars.jpg);
  background-repeat: repeat;
  background-color: var(--black);
  background-attachment: fixed;
  overflow: hidden;
  animation: sky 81s linear infinite;
  padding: 102px 19px;
}

@keyframes sky {
  50% {
    background-position: 500px 0px;
  }
  100% {
    background-position: 1100px 0px;
  }
}

.sp-secHr-main{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-direction: row-reverse;
}

.sp-secHr-content{
  flex: 2;
}

.sp-secHr-imgs{
  flex: 1;
}

.sp-secHr-imgs img{
  width: 100%;
  height:  307px;
  object-fit: contain;
  animation: mover 1s infinite  alternate;
}

@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}


.sp-secHr-content h4{
  color: var(--color1);
  text-shadow: 0 0 19px var(--color1);
  font-size: clamp(24px, 5vw, 50px);
  font-weight: 500;
}

.sp-secHr-btn{
  padding-top:  54px;
}



.sp-shg{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-shg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-shg::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}


.sp-shg-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.sp-shg-block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  counter-increment: sp-shg-block;
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
  padding: 19px 32px;
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--white);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  transition: var(--tr1);
}     

.sp-shg-block:hover{
  transform: translateY(-5%);
}

.sp-shg-block::before {
  content: counter(sp-shg-block);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  display: block;
  color: var(--color1);
}     


.sp-shg-block:nth-child(1)::after{
  content: "";
  position: absolute;
  bottom: -19px; 
  left: 50%;
  transform: translateX(-50%);
  width:  50px;
  height:  50px;
  background: url(imagevault/other-dir/astronauts-068518bfc0cd4b.png) no-repeat center;
  background-size: contain;
  animation: moveLeftRight 2s infinite alternate ease-in-out;

}

.sp-shg-block:nth-child(2)::after{
  content: "";
  position: absolute;
  bottom: -19px; 
  left: 50%;
  transform: translateX(-50%);
  width:  50px;
  height:  50px;
  background: url(imagevault/other-dir/astronauts-168518bfc0cdbb.png) no-repeat center;
  background-size: contain;
  animation: moveLeftRight 2s infinite alternate ease-in-out;

}

.sp-shg-block:nth-child(3)::after{
  content: "";
  position: absolute;
  bottom: -19px; 
  left: 50%;
  transform: translateX(-50%);
  width:  50px;
  height:  50px;
  background: url(imagevault/other-dir/astronauts-268518bfc0ce21.png) no-repeat center;
  background-size: contain;
  animation: moveLeftRight 2s infinite alternate ease-in-out;

}

.sp-shg-block:nth-child(4)::after{
  content: "";
  position: absolute;
  bottom: -19px; 
  left: 50%;
  transform: translateX(-50%);
  width:  50px;
  height:  50px;
  background: url(imagevault/other-dir/astronauts-368518bfc0ce7d.png) no-repeat center;
  background-size: contain;
  animation: moveLeftRight 2s infinite alternate ease-in-out;
}


@keyframes moveLeftRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50px);
  }
}


.sp-shg-container {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 122px;
  height: 122px; 
  animation: fly-diagonal 15s linear infinite;
  z-index: -1;
}

@keyframes fly-diagonal {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-165vw, 40vh);
  }
}



.sp-secG{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-secG::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
  z-index: 1;
}



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


.sp-secG-main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


.sp-secG-block {
  position: relative;
  height: 307px;
  overflow: hidden;
  border-radius: 15px;
  filter: drop-shadow(1px 5px 7px var(--color1));
  -webkit-filter: drop-shadow(1px 5px 7px var(--color1));
}

.sp-secG-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-secG-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(359deg, var(--black), transparent);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 19px;
  flex-direction: column-reverse;
  padding-bottom: 41px;
  gap: 24px;
}

.sp-secG-overlay a .sp-secG-title {
  margin: 0;
  text-align: center;
  text-transform: inherit;
  padding:  15px;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 29px);
  color: var(--color1);
  transition: var(--tr1);
}

.sp-secG-overlay a .sp-secG-title:hover {
  color: var(--white);
}


.sp-secGv2-main{
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 19px;
}

.sp-secGv2-block{
  border: 1px solid var(--color1);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  transition: var(--tr1);
}

.sp-secGv2-inner{
  display: flex;
  align-items: center;
}

.sp-secGv2-inner1{
  width: 35%;
}

.sp-secGv2-inner2{
  width: 65%;
  padding: 19px;
}

.sp-secGv2-image{
  position: relative;
  overflow: hidden;
}

.sp-secGv2-inner2 .sp-secGv2-inner2-title h3{
  font-size: clamp(18px, 5vw, 29px);
  margin-bottom: 24px;
  color: var(--color1);
  transition: var(--tr1);
  font-weight: 700;
  text-transform: inherit;
}

.sp-secGv2-inner2 .sp-secGv2-inner2-title h3:hover{
  color: var(--white);
}

.sp-secGv2-inner-text{
  font-size: clamp(16px, 5vw, 19px);
  color: var(--white);
  display: -webkit-box;       
  -webkit-box-orient: vertical; 
  overflow: hidden;           
  text-overflow: ellipsis;   
  -webkit-line-clamp: 3;   
}

.sp-secGv2-single-rating-in{
  display: flex;
  padding: 19px 0;
  gap: 15px;
  flex-direction: row-reverse;
  align-items: center;
}

.sp-secGv2-image a img{
  width: 100%;
  height: 307px;
  object-fit: cover;
  border-radius: 15px;
  transition: var(--tr1);
}

.sp-secGv2-single-rating-in svg{
  fill: var(--color1);
}

.sp-secGv2-single-rating-in h4{
  color: var(--color1);
  font-size: clamp(19px, 2.5vw, 24px);
}

.sp-secGv2-btn{
  padding: 19px 0;
}


.sp-secGv2-block:hover .sp-secGv2-image a img{
  transform: scale(1.05);
}

.sp-secGv2-block:hover{
  background: var(--color4);
}




.sp-sec-prnas{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-sec-prnas::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-sec-prnas::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}

.sp-sec-prnas-main{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-direction: row-reverse;
}

.sp-sec-prnas-block{
  flex: 2;
}


.sp-sec-prnas-text-inner{
  border-left: 15px solid var(--color1);
  padding-left: 19px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--color1);
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--white);
}


.sp-sec-prnas-btn{
  padding-top: 42px; 
}

.sp-sec-prnas-im{
  flex: 1;
}

.sp-sec-prnas-im-inner img {
  width: 100%;
  object-fit: contain;
  height:  307px;
}


.sp-sec-bf{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-sec-bf::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-sec-bf::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb2);
  z-index: -1;
}


.sp-sec-bf-main{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-direction: row-reverse;
}

.sp-sec-bf-block{
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}

.sp-sec-bf-box{
  border-left: 15px solid var(--color1);
  padding-left: 19px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--color1);
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--white);
  transition: var(--tr1);
}


.sp-sec-bf-box:hover {
  transform: translateY(-5%);
}


.sp-sec-bf-imag{
  flex: 1;
}

.sp-sec-bf-imag img {
  width: 100%;
  object-fit: contain;
  height:  307px;
  animation: sp 15s linear infinite;
}

@keyframes sp {
  0% {
    transform: rotate(0deg);
    filter: drop-shadow(1px 5px 7px var(--color1));
    -webkit-filter: drop-shadow(1px 5px 7px var(--color1));
  }
  50% {
    transform: rotate(180deg);
    filter: drop-shadow(1px 5px 19px var(--color1));
    -webkit-filter: drop-shadow(1px 5px 19px var(--color1));
  }

  100% {
    transform: rotate(360deg);
    filter: drop-shadow(1px 5px 28px var(--color1));
    -webkit-filter: drop-shadow(1px 5px 28px var(--color1));
  }
}

.sp-sec-bf-box img{
  margin: 15px 0;
  width:  50px;
  height:  50px;
  object-fit: contain;
  animation: rotateLeftRight 2s infinite ease-in-out;
}

@keyframes rotateLeftRight {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-7deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(7deg); }
  100% { transform: rotate(0deg); }
}


.sp-gals{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-gals::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-gals::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}


.sp-gals-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sp-gals-block img {
  margin: 15px;
  cursor: pointer;
  width: 100%;
  object-fit: cover;
  height: 307px;
  border-radius: 15px;
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
}

#sp-ltB {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  z-index: 9;
}

#sp-ltB-img {
  max-width: 80%;
  max-height: 50vh;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  border-radius: 15px;
}

#close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: clamp(19px,2.5vw,24px);
  color: var(--white);
  cursor: pointer;
  z-index: 2;
}

#thumbnail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.thumbnail {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin-top: 32px;
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid var(--white);
  transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active-thumbnail {
  opacity: 0.7;
}



.sp-tdvs{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-tdvs::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-tdvs::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}

.sp-tdvs-main{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-direction: row-reverse;
}

.sp-tdvs-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
  width: 100%;
}



.sp-tdvs-box-image img{
  width: 122px;
  height: 122px;
  object-fit: cover;
  border-radius: 50%;
  animation: swds 15s linear infinite, rotateLeftRight 5s infinite ease-in-out;
}



@keyframes swds {
  0% {
    filter: drop-shadow(0px 0px 0px var(--color1));
    -webkit-filter: drop-shadow(0px 0px 0px var(--color1));
  }
  50% {
    filter: drop-shadow(1px 5px 15px var(--color1));
    -webkit-filter: drop-shadow(1px 5px 15px var(--color1));
  }

  100% {
    filter: drop-shadow(1px 5px 25px var(--color1));
    -webkit-filter: drop-shadow(1px 5px 25px var(--color1));
  }
}


.sp-tdvs-box{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  background: var(--rgb2);
  border-radius: 15px;
  padding: 19px;
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
  transition: var(--tr1);
}

.sp-tdvs-box:hover {
  transform: translateY(-5%);
}

.sp-tdvs-text{
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--color1);
  text-align: center;
}


.sp-frm2{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-frm2::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-frm2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb2);
  z-index: -1;
}


.sp-frm2-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 42px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.sp-frm2-block .form{
  width: 100%;
}

.sp-frm2-block{
  flex: 2;
  width: 100%;
}

.sp-frm2-imga {
  flex: 1;
}

.sp-frm2-imga img{
  width: 100%;
  height: 307px;
  object-fit: contain;
}


.sp-frm2-block-fields{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sp-frm2-block-fields .input-field_area__item{
  flex: 1;
}

.sp-frm2-block-fields .input-field_area__item::placeholder, .sp-frm2-block-fields .textarea-field_area__item::placeholder{
  color: var(--white);
}

.sp-frm2-block-fields label{
  color: var(--white);
}

.sp-frm2-block-fields .input-field_area__item{
  display: block;
  width: 100%;
  padding: 15px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--color1);
  outline: none;
}

.sp-frm2-block-fields  .textarea-field_area__item{
  display: block;
  width: 100%;
  padding: 15px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--color1);
  outline: none;
}


.sp-frm2-block-check{
  display: flex;
  gap: 15px;
  padding-top: 19px;
  color: var(--white);
} 

.sp-frm2-block-check a{
  text-decoration: underline;
  color: var(--color1);
  padding-left: 15px;
  font-weight: 500;
}

.sp-frm2-block-check-input {
  display: none;
}

.sp-frm2-block-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 67px;
  font-size: 16px;
  color: var(--white);
}

.sp-frm2-block-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #333;
  border-radius: 15px;
  background: var(--white);
  transition: all 0.3s ease;
}

.sp-frm2-block-check-label:hover::before {
  border-color: var(--color1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.sp-frm2-block-check-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 15px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.sp-frm2-block-check-input:checked + .sp-frm2-block-check-label::before {
  background-color: var(--color1);
  border-color: var(--color1);
}

.sp-frm2-block-check-input:checked + .sp-frm2-block-check-label::after {
  transform: translateY(-100%) scale(1) rotate(45deg);
}

.sp-frm2-block-btn{
  display: inline-block;
  padding: 32px 0 19px 0;
}   




.sp-fobtarea{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px 19px;
}

.sp-fobtarea::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-fobtarea::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: -1;
}


.sp-fobtarea-lk{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 24px;  
  text-align: center;
}


.sp-fobtarea-lk a{
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
  text-transform: inherit;
  color: var(--white);
  transition: var(--tr1);
}

.sp-fobtarea-lk a:hover{
  color: var(--color1);
}

.sp-fobtarea-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  grid-area: 19px;
}

.sp-fobtarea .sptitls{
  padding-bottom: 19px !important;
}

.sp-fobtarea-discl {
  padding: 24px 0;
  flex: 2;
}

.sp-fobtarea-text{
  color: var(--black);
  background: var(--color1);
  margin-top: 24px;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 19px;
  padding: 41px;
  border-radius: 15px;
  animation: shd 15s linear infinite;
}



@keyframes shd {
  0% {
    box-shadow: 0px 0px 0px var(--color1);
  }
  50% {
    box-shadow: 1px 5px 15px var(--color1);
  }

  100% {
    box-shadow: 1px 5px 25px var(--color1);
  }
}

.sp-fobtarea-log{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.sp-fobtarea-log a{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 28px 0;
}

.sp-fobtarea-log img{
  object-fit: contain;
  width:  122px;
  height: 99px;
}

.sp-fobtarea-log  h2  {
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--white);
  transition: var(--tr1);
  text-transform: inherit;
}

.sp-fobtarea-log  h2:hover{
  color: var(--color1);
}


.sp-fobtarea-bt{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 42px;
}

.sp-fobtarea-bt-title, .sp-fobtarea-bt-discl-nochild{
  flex: 1;
}

.sp-fobtarea-bt-discl-nochild{
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-fobtarea-bt-discl-nochild img{
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.sp-fobtarea-bt-title{
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--white);
}

.sp-fobtarea-bt-title h2{
  color: var(--color1);
}



.sp-area-pagegame{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-area-pagegame::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-area-pagegame::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}



.sp-area-pagegame-main {
  position: relative;
  z-index: 2;
  box-shadow: 5px 5px 7px var(--black);
  padding: 19px;
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  border-radius: 15px;  
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
}

.sp-area-pagegame-mainv{
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.sp-area-pagegame-inner img{
  width: 100%;
  height: 469px;
  object-fit: contain;
  margin: 19px 0;
  filter: drop-shadow(1px 5px 24px var(--color1));
  -webkit-filter: drop-shadow(1px 5px 24px var(--color1));
}


.sp-area-pagegame-content {
  color: var(--white);
  font-size: clamp(13px,2.5vw,16px);
}

.sp-area-pagegame-ifrm {
  width: 100%;
  border-radius: 15px;
}

.sp-area-pagegame-ifrm iframe{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 469px;
}


.sp-area-contactus{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-area-contactus::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-area-contactus::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}


.sp-area-contactus-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 42px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.sp-area-contactus-block .sp-area-contactus-form{
  width: 100%;
}

.sp-area-contactus-block{
  flex: 2;
  width: 100%;
}

.sp-area-contactus-imgs {
  flex: 1;
}

.sp-area-contactus-imgs img{
  width: 100%;
  height: 307px;
  object-fit: contain;
}


.sp-area-contactus-field{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sp-area-contactus-field input{
  flex: 1;
}

.sp-area-contactus-field input::placeholder, .sp-area-contactus-field textarea::placeholder{
  color: var(--white);
}

.sp-area-contactus-field label{
  color: var(--white);
}

.sp-area-contactus-field input{
  display: block;
  width: 100%;
  padding: 15px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--color1);
  outline: none;
}

.sp-area-contactus-field  textarea{
  display: block;
  width: 100%;
  padding: 15px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--color1);
  outline: none;
}


.sp-area-contactus-check{
  display: flex;
  gap: 15px;
  padding-top: 19px;
  color: var(--white);
} 

.sp-area-contactus-check a{
  text-decoration: underline;
  color: var(--color1);
  padding-left: 15px;
  font-weight: 500;
}

.sp-area-contactus-check-input {
  display: none;
}

.sp-area-contactus-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 67px;
  font-size: 16px;
  color: var(--white);
}

.sp-area-contactus-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #333;
  border-radius: 15px;
  background: var(--white);
  transition: all 0.3s ease;
}

.sp-area-contactus-check-label:hover::before {
  border-color: var(--color1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.sp-area-contactus-check-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 15px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.sp-area-contactus-check-input:checked + .sp-area-contactus-check-label::before {
  background-color: var(--color1);
  border-color: var(--color1);
}

.sp-area-contactus-check-input:checked + .sp-area-contactus-check-label::after {
  transform: translateY(-100%) scale(1) rotate(45deg);
}

.sp-area-contactus-btn{
  display: inline-block;
  padding: 32px 0 19px 0;
}   

.sp-area-contactus-adres-inner{
  padding-top: 41px;
  display: flex;
  text-align: center;
  gap: 19px;
}

.sp-area-contactus-adress {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  counter-increment: sp-shg-block;
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
  padding: 19px;
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--white);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  transition: var(--tr1);
}     

.sp-area-contactus-adress:hover{
  transform: translateY(-5%);
}


.sp-area-contactus-adress a, .sp-area-contactus-adress div{
  font-weight: 500;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--white);
  transition: var(--tr1);
  text-align: center;
}

.sp-area-contactus-adress a:hover{
  color: var(--color1);
}

.sp-area-contactus-adress-svg svg{
  width: 50px;
  height: 50px;
  fill: var(--color1);
}

.sp-allbl{
  display: flex;
  flex-direction: column;
}

.sp-area-rule{
  position: relative;
  z-index: 1;
  background-image: url(imagevault/background/bg-all-068518bfc0c8ef.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 79px 19px;
}

.sp-area-rule::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(imagevault/other-dir/borders_long-068518bfc0ca24.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15px;
}


.sp-area-rule::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rgb1);
  z-index: -1;
}


.sp-area-rule-main{
  word-break: break-all;
  position: relative;
  z-index: 1;
  color: var(--white) !important;
  overflow: hidden;
  padding: 41px;
  box-shadow: 5px 5px 7px var(--black);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  border-radius: 15px;
  border-left: 15px solid var(--color1);
  border-bottom: 1px solid var(--color1);
}

.sp-area-rule-main h1,h2,h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.sp-area-rule-main  a{
    text-decoration: underline;
    color: var(--white) !important;
    word-break: break-all;
}

.sp-area-rule-main ol li {
    color: var(--white) !important;
}

.sp-area-rule-main ol li a{
  color: var(--white) !important;
}


.sp-area-rule-main ul{
    list-style: disc !important;
    text-align: left;
    margin: 15px;
}

.button-1 {
  padding: 19px;
  border: 0;
  border-radius: 15px;
  background-color: var(--color1);
  color: var(--white);
  transition: var(--tr1);
  font-size: 16px;
}

.button-1:hover {
  background-color: var(--color1);
  box-shadow: 0 0 19px var(--black);
  transform: scale(1.1);
  border: 1px solid var(--white);
}

.button-2 {
  border: 1px solid var(--white);
  color: var(--black);
  font-size: 16px;
  background: var(--color1);
  padding: 15px;
  border-radius: 15px;
  transition: var(--tr1);
}
.button-2:hover {
  color: var(--white);
  transition-delay: 0.2s;
  animation: an 0.5s forwards;
  background: radial-gradient(circle, var(--color1) 3.3px, transparent 4.7px) 95px 95px/19px 19px, 
              radial-gradient(circle, var(--black) 3.3px, transparent 4.7px) 0 0/19px 19px;
}

@keyframes an {
  100% {
      background-size: 32px 32px, 1.5px 1.5px;
  }
}


.button-3{
  display: block;
  color: var(--white);
  line-height: 1;
  padding: 15px 19px;
  background: var(--color1); 
  border-radius: 15px;
  width: fit-content;
  transition: var(--tr1);
  font-size: 16px;
}

.button-3:hover{
  color: var(--white);
}

.button-3:hover, 
.button-3:focus {
animation: pulse 1s;
box-shadow: 0 0 0 28px transparent;
}

@keyframes pulse {
  50% { 
    background: linear-gradient(to right, var(--black), var(--color1));
    box-shadow: 0 0 19px 15px var(--color1);
  }
}


.button-4 {
  font-weight: 500;
  background: var(--color1);  
  align-items: center;
  justify-content: center;
  display: inline-flex;
  color: var(--white);
  border: 1px solid;
  padding: 15px 19px;
  position: relative;
  border-radius: 15px;
  font-size: 16px;
  text-transform: inherit;
  margin: 0 auto;
  transition: var(--tr1);
}

.button-4:hover,
.button-4:focus {
  transform: translateY(-5px);
  background: linear-gradient(to right, var(--black),var(--color1)); 
}

.button-5 {   
  display: inline-block;
  padding: 15px 19px;
  background: var(--color1);  
  color: var(--white); 
  text-transform: inherit;
  border: 1px solid var(--white);
  font-size: 16px;
  text-align: center;
  transition: all .3s;
  position: relative; 
  z-index: 1;
  position: relative;
  transform: translateZ(0);
  transition: var(--tr1);
  box-shadow:inset 1px 1px 1px 0px rgba(255,255,255,.5),
  7px 7px 19px 0px rgba(0,0,0,.1),
  5px 5px 5px 0px rgba(0,0,0,.1);
  border: 0;
 
}
.button-5:hover{
  color: var(--black);
}

.button-5:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color1); 
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition: 300ms ease-out;
}
.button-5:hover:before {
  transform: scaleX(1);    
}



@media screen and (min-width: 992px) {

  .nav-toggle-label {
      display: none;
  }

  .nav-toggle:checked ~ nav {
      transform: scale(1, 1);
      box-shadow: none;
      padding-bottom: 0;
  }

  .nav-toggle:checked ~ nav a {
    opacity: 1;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    all: unset;
    flex: 1;
  }

  nav ul {
    display: flex;
    justify-content: center;
  }

  nav ul li {
      margin: 0 0 0 41px;
  }

  nav ul li a {
      opacity: 1;
  }
}

@media (max-width: 992px) {
  .sp-secHr-main{
    flex-direction: column;
  }

  .sp-shg-main {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sp-secG-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sp-secGv2-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sp-sec-prnas-main{
    flex-direction: column;
  }

  .sp-sec-bf-block{
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .sp-sec-bf-main{
    flex-direction: column;
  }

  .sp-tdvs-block{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sp-gals-block{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .sp-frm2-main{
    flex-direction: column;
  }

  .sp-fobtarea-main{
    flex-direction: column;
  }

  nav ul{
    padding-top: 19px;
  }

  .sp-area-contactus-main{
    flex-direction: column;
  }

  .sp-area-contactus-adres-inner{
    flex-direction: column;
  }
  
}



@media (max-width: 768px){
  .sp-shg-main {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .sp-secG-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

   .sp-secGv2-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .sp-sec-bf-block{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .sp-gals-block{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .sp-tdvs-block{
    grid-template-columns: repeat(1, 1fr) !important;
  }

}


@media (max-width: 575px){
          
    button{
        width: 100%;
    }

    .sp-secGv2-inner{
      flex-direction: column;
    }

    .sp-secGv2-inner1, .sp-secGv2-inner2{
      width: 100% !important;
    }

    .sp-frm2-block-check-label, .sp-area-contactus-check-label{
      flex-direction: column;
      text-align: center;
    }

    .sp-fobtarea-bt{
      flex-direction: column;
    }
   
    .sp-area-pagegame-inner img{
      height: auto;
    }

    .sp-area-rule-main{
      padding: 28px;
    }
}




