@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: 'Fira Sans Extra Condensed', sans-serif !important;
    font-size: 17px;
    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: flex-start;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  gap: 10px;
}

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


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

.sp-logos{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

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

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

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

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


.nav-toggle {
  display: none;
}

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

.nav-toggle-label span {
  background: #ffffff;
  border-radius: 5px;
  height: 4px;
  margin: 2px 0;
  transition: 0.4s 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: 14px;
  transform-origin: bottom;
  transform: rotateZ(44deg) translate(9px, 0px);
}

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

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

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

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

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.4s ease-in-out;
}

nav ul {
  list-style: none;
}

nav ul li {
  margin: 0 0 14px 38px;
}

nav ul li a {
  color: var(--white);
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 800;
  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 82s linear infinite;
  padding: 98px 19px;
}

@keyframes sky {
  50% {
    background-position: 600px 0px;
  }
  100% {
    background-position: 1200px 0px;
  }
}

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

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

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

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

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


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

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



.sp-shg{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-shg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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(4, 1fr);
  gap: 19px;
}

.sp-shg-block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  counter-increment: sp-shg-block;
  border-left: 14px solid var(--color1);
  border-bottom: 2px solid var(--color1);
  padding: 19px 38px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--white);
  backdrop-filter: brightness(0.4);
  -webkit-backdrop-filter: brightness(0.4);
  transition: var(--tr1);
}     

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

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


.sp-shg-block:nth-child(1)::after{
  content: "";
  position: absolute;
  bottom: -19px; 
  left: 50%;
  transform: translateX(-50%);
  width:  55px;
  height:  55px;
  background: url(artisticstorage/assets/astronauts-068a5aca006574.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:  55px;
  height:  55px;
  background: url(artisticstorage/assets/astronauts-168a5aca0065a3.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:  55px;
  height:  55px;
  background: url(artisticstorage/assets/astronauts-268a5aca0065d1.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:  55px;
  height:  55px;
  background: url(artisticstorage/assets/astronauts-368a5aca0065ff.png) no-repeat center;
  background-size: contain;
  animation: moveLeftRight 2s infinite alternate ease-in-out;
}


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


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

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



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

.sp-secG::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
  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: 30px;
}


.sp-secG-block {
  position: relative;
  height: 276px;
  overflow: hidden;
  border-radius: 5px;
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px 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: 50px;
  gap: 22px;
}

.sp-secG-overlay a .sp-secG-title {
  margin: 0;
  text-align: center;
  text-transform: inherit;
  padding:  14px;
  font-weight: 400;
  font-size: clamp(21px, 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(2, 1fr);
  gap: 19px;
}

.sp-secGv2-block{
  border: 2px solid var(--color1);
  background: rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  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(21px, 5vw, 29px);
  margin-bottom: 22px;
  color: var(--color1);
  transition: var(--tr1);
  font-weight: 800;
  text-transform: inherit;
}

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

.sp-secGv2-inner-text{
  font-size: clamp(17px, 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: 14px;
  flex-direction: row-reverse;
  align-items: center;
}

.sp-secGv2-image a img{
  width: 100%;
  height: 276px;
  object-fit: cover;
  border-radius: 5px;
  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, 23px);
}

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


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

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




.sp-sec-prnas{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-sec-prnas::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 30px;
  flex-direction: row;
}

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


.sp-sec-prnas-text-inner{
  border-left: 14px solid var(--color1);
  padding-left: 19px;
  padding-bottom: 19px;
  border-bottom: 2px solid var(--color1);
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--white);
}


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

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

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


.sp-sec-bf{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-sec-bf::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 30px;
  flex-direction: row;
}

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

.sp-sec-bf-box{
  border-left: 14px solid var(--color1);
  padding-left: 19px;
  padding-bottom: 19px;
  border-bottom: 2px solid var(--color1);
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--white);
  transition: var(--tr1);
}


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


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

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

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

  100% {
    transform: rotate(360deg);
    filter: drop-shadow(2px 4px 30px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 30px var(--color1));
  }
}

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

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


.sp-gals{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-gals::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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(4, 1fr);
  gap: 30px;
}

.sp-gals-block img {
  margin: 14px;
  cursor: pointer;
  width: 100%;
  object-fit: cover;
  height: 276px;
  border-radius: 5px;
  border-left: 14px solid var(--color1);
  border-bottom: 2px 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: 60vh;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}

#close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: clamp(19px,2.5vw,23px);
  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: 38px;
  margin-left: 4px;
  margin-right: 4px;
  border: 2px 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(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-tdvs::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 30px;
  flex-direction: row;
}

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



.sp-tdvs-box-image img{
  width: 131px;
  height: 131px;
  object-fit: cover;
  border-radius: 0%;
  animation: swds 14s linear infinite, rotateLeftRight 4s 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(2px 4px 14px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 14px var(--color1));
  }

  100% {
    filter: drop-shadow(2px 4px 24px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 24px var(--color1));
  }
}


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

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

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


.sp-frm2{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-frm2::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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-reverse;
  gap: 50px;
  border-radius: 5px;
  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: 276px;
  object-fit: contain;
}


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

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

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

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

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

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


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

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

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

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

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

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

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

.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(44deg);
}

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




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

.sp-fobtarea::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 22px;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 22px;  
  text-align: center;
}


.sp-fobtarea-lk a{
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 400;
  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-reverse;
  grid-area: 19px;
}

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

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

.sp-fobtarea-text{
  color: var(--black);
  background: var(--color1);
  margin-top: 22px;
  font-weight: 800;
  font-size: clamp(17px, 2.5vw, 21px);
  margin-bottom: 19px;
  padding: 50px;
  border-radius: 5px;
  animation: shd 14s linear infinite;
}



@keyframes shd {
  0% {
    box-shadow: 0px 0px 0px var(--color1);
  }
  50% {
    box-shadow: 2px 4px 14px var(--color1);
  }

  100% {
    box-shadow: 2px 4px 24px var(--color1);
  }
}

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

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

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

.sp-fobtarea-log  h2  {
  font-weight: 800;
  font-size: clamp(17px, 2.5vw, 21px);
  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-reverse;
  gap: 50px;
}

.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: 65px;
  height: 65px;
  object-fit: contain;
}

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

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



.sp-area-pagegame{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-area-pagegame::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 4px 4px 8px var(--black);
  padding: 19px;
  backdrop-filter: brightness(0.4);
  -webkit-backdrop-filter: brightness(0.4);
  border-radius: 5px;  
  border-left: 14px solid var(--color1);
  border-bottom: 2px solid var(--color1);
}

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

.sp-area-pagegame-inner img{
  width: 100%;
  height: 398px;
  object-fit: contain;
  margin: 19px 0;
  filter: drop-shadow(2px 4px 22px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 22px var(--color1));
}


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

.sp-area-pagegame-ifrm {
  width: 100%;
  height: 100vh;
}

.sp-area-pagegame-ifrm iframe{
  
  width: 100%;
  height: 100%;
}


.sp-area-contactus{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-area-contactus::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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-reverse;
  gap: 50px;
  border-radius: 5px;
  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: 276px;
  object-fit: contain;
}


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

.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: 14px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border-bottom: 2px solid var(--color1);
  outline: none;
}

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


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

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

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

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

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

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

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

.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(44deg);
}

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

.sp-area-contactus-adres-inner{
  padding-top: 50px;
  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: 14px solid var(--color1);
  border-bottom: 2px solid var(--color1);
  padding: 19px;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--white);
  backdrop-filter: brightness(0.4);
  -webkit-backdrop-filter: brightness(0.4);
  transition: var(--tr1);
}     

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


.sp-area-contactus-adress a, .sp-area-contactus-adress div{
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 17px);
  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: 55px;
  height: 55px;
  fill: var(--color1);
}

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

.sp-area-rule{
  position: relative;
  z-index: 1;
  background-image: url(artisticstorage/bg-assets/bg-all-068a5aca006280.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 76px 19px;
}

.sp-area-rule::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(artisticstorage/assets/borders_long-068a5aca006357.png);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 14px;
}


.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: 50px;
  box-shadow: 4px 4px 8px var(--black);
  backdrop-filter: brightness(0.4);
  -webkit-backdrop-filter: brightness(0.4);
  border-radius: 5px;
  border-left: 14px solid var(--color1);
  border-bottom: 2px solid var(--color1);
}

.sp-area-rule-main h1,h2,h3{
    font-size: 17px;
    font-weight: 800;
    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: 14px;
}

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

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

.button-2 {
  border: 2px solid var(--white);
  color: var(--black);
  font-size: 17px;
  background: var(--color1);
  padding: 14px;
  border-radius: 5px;
  transition: var(--tr1);
}
.button-2:hover {
  color: var(--white);
  transition-delay: 0.2s;
  animation: an 0.6s forwards;
  background: radial-gradient(circle, var(--color1) 3.3px, transparent 4.9px) 96px 96px/19px 19px, 
              radial-gradient(circle, var(--black) 3.3px, transparent 4.9px) 0 0/19px 19px;
}

@keyframes an {
  100% {
      background-size: 38px 38px, 1.6px 1.6px;
  }
}


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

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

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

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


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

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

.button-5 {   
  display: inline-block;
  padding: 14px 19px;
  background: var(--color1);  
  color: var(--white); 
  text-transform: inherit;
  border: 2px solid var(--white);
  font-size: 17px;
  text-align: center;
  transition: all .3s;
  position: relative; 
  z-index: 1;
  position: relative;
  transform: translateZ(0);
  transition: var(--tr1);
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
  7px 7px 19px 0px rgba(0,0,0,.1),
  4px 4px 4px 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 50px;
  }

  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: 30px;
    }
}




