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


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

:root {


    --color1: #c5b924;
    --color4: #111;
    --white: #fff;
    --black: #000;

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

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

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

    --rgb: rgb(215 127 73 / 50%);


    --rgb1: rgb(211 179 15 / 50%);

    --wave-width:  200px;
    --wave-height: 100px;
    --line-color: #1d1d1e;
    --wave-background: #484d74;
    --line-thickness: 10px;
    --radius: calc((var(--wave-width) + var(--line-thickness) + var(--line-thickness)) / 4);
  }

  
body{
    direction: ltr;
    font-family: 'Cambay', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    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%;
}

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

.sprForAllTitle h5{
  font-size: clamp(22px,5vw,45px);
  line-height: 40px;
  color: var(--white);
  font-weight: 800;
  position: relative;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-in forwards; 
  text-shadow: 1px 2px 2px var(--black), 2px 4px 0 var(--color1);
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.spr-head {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  background: var(--black);
  color: var(--white);
  padding: 21px;
  position: absolute;
  clip-path: polygon(71.99% 96.47%,65.82% 91.62%,53.64% 97.56%,45.45% 92.55%,39.96% 97.44%,29.22% 91.90%,24.69% 97.90%,14.87% 90.73%,10.09% 98.52%,0.00% 91.74%,0.00% 0.00%,100.00% 0.00%,100.00% 90.63%,91.88% 96.01%,85.01% 90.63%);
  z-index: 2;
  width: 100%;
}

.spr-brand{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.spr-brand  img{
  display: flex;
  flex-direction: column;
  object-fit: contain;
  width: 75px;
  height: 75px;
}

.spr-brand  h2  {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--white);
  transition: var(--tr1);
}

.spr-brand  h2:hover{
  color: var(--color1);
}

.spr-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spr-menu li {
  margin: 0 10px;
}

.spr-menu li a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
  font-size: clamp(18px, 2.5vw, 22px);
}

.spr-menu li a:hover {
  color: var(--color1);
}

.spr-menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  background: var(--white);
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: all 0.2s;
}




.spr-hero{
  overflow: hidden;
  background: url(imagevault/bg/bg-dark-06878d0412908d.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 146px 18px;
}



.spr-hero::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(30 29 29 / 90%);
  z-index: -1;
}



.spr-hero-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  padding-top: 112px;
}




.spr-hero-ship{
  flex: 1;
}

.spr-hero-content{
  flex: 2;
}

.spr-hero-ship img{
  width: 100%;
  object-fit: contain;
  height: 250px;
  animation: rotate 7s linear infinite, blame 7s linear infinite;
}


@keyframes rotate{
  0%{
    transform: rotate(365deg);
  }

  50%{
    transform: rotate(355deg);
  }

  100%{
    transform: rotate(360deg);
  }
}

@keyframes blame{
  0%{
    filter: drop-shadow(2px 4px 6px var(--color1));
  }

  25%{
    filter: drop-shadow(2px 4px 10px var(--color1));
  }

  50%{
    filter: drop-shadow(2px 4px 15px var(--color1));
  }

  75%{
    filter: drop-shadow(2px 4px 20px var(--color1));
  }

  100%{
    filter: drop-shadow(0px 0px 0px var(--color1));
  }
}


.spr-hero-content h4{
  font-weight: 400;
  font-size: clamp(25px,5vw,42px);
  text-shadow: 1px 2px 2px var(--black), 2px 4px 0 var(--color1);
  color: var(--white);
}

.spr-hero-btn{
  padding-top: 21px;
}


.spr-posmNas{
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
  padding:  112px 18px;
}


.spr-posmNas-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  border-radius: 35px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}


.spr-posmNas-sec, .spr-posmNas-text{
  flex: 1;
}

.spr-posmNas-sec{
  display: flex;
  flex-direction: column;
}

.spr-posmNas-video-vd-play-btn {
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  margin: 15px auto 20px auto;
  border-radius: 50%;
  padding: 17px 20px 17px 20px;
  transition: background .5s;
}

.spr-posmNas-video-vd-play-btn:before,
.spr-posmNas-video-vd-play-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.spr-posmNas-video-vd-play-btn:before {
  z-index: 0;
  width: 80px;
  height: 80px;
  background: var(--color1);
  animation: pulse-border 1500ms ease-out infinite;
}

.spr-posmNas-video-vd-play-btn:after {
  z-index: 1;
  width: 80px;
  height: 80px;
  background: var(--color1);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.spr-posmNas-video-vd-play-btn img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.spr-posmNas-video-vd-play-btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  transform: scale(0.8);
  border-left: 32px solid var(--white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.spr-posmNas-video-vd-play-btn:hover span {
  border-left: 32px solid var(--bg1);
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.spr-posmNas-video-cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.spr-posmNas-video-cont video {
  max-width: 90%;
  max-height: 80%;
}

.spr-posmNas-video-zakr {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rgb1);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  z-index: 101;
  color: var(--white);
}

.spr-posmNas-video-zakr:hover {
  background: var(--rgb1);
}


.spr-posmNas-img img{
  width: 100%;
  object-fit: contain;
  height: 250px;
}


.spr-posmNa-t{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
}

.spr-posmNa-btn{
  padding-top: 21px;
}


.spr-posmNas-video-spromo{
  padding-top:18px;
  font-weight: 400;
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--color1);
  text-transform: uppercase;
  text-align: center;
}

.spr-dv{
  padding-top: 40px;
} 

.spr-dv-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}


.spr-vd-img, .spr-vd-text{
  flex: 1;
  width: 100%;
  text-align: center;
}

.spr-vd-img img{
  width: 100%;
  object-fit: contain;
  height: 261px;
	animation: shakeChestBottom 1.2s infinite ease, shakeChestTop 1.2s infinite ease, blame 7s linear infinite;
}

@keyframes shakeChestBottom {
	0% { transform: translateY(0) rotate(0deg) }
	15% { transform: translateY(-5px) rotate(-2deg) }
	25% { transform: translateY(-10px) rotate(0deg) }
	60% { transform: translateY(0) rotate(0deg) }
}

@keyframes shakeChestTop {
	0% { transform: translateY(0) rotate(0deg) }
	15% { transform: translateY(-10px) rotate(2deg) }
	25% { transform: translateY(-20px) rotate(-2deg) }
	35% { transform: translateY(-20px) rotate(2deg) }
	60% { transform: translateY(0) rotate(0deg) }
}

.spr-vd-title{
  font-weight: 800;
  font-size: clamp(20px, 5vw, 26px);
  text-shadow: 1px 2px 2px var(--black), 2px 4px 0 var(--color1);
  color: var(--white);
  text-transform: uppercase;
}

.spr-vd-btn{
  padding-top: 21px;
}


.spr-kak-igrat{
  padding-top: 57px;
} 

.spr-kak-igrat-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}

.spr-kak-igrat-gallery, .spr-kak-igrat-block{
  flex: 1;
}

.spr-kak-igrat-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}


.spr-kak-igrat-gallery-block {
  filter: drop-shadow(2px 4px 6px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color1));
  cursor: pointer;
  overflow: hidden;
  height: 250px;
}

.spr-kak-igrat-gallery-block.show {
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

.spr-kak-igrat-gallery-block.hide {
  display: none;
}

.spr-kak-igrat-gallery-block img {
  transition: transform 0.2s ease;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.spr-kak-igrat-gallery-block:hover img {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 995;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}

.lightbox.open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.lightbox_wrapper {
  display: grid;
  place-items: center;
  min-height: calc(100% - 3rem);
  margin: 1.5rem;
}

@media (max-width: 575.98px) {
  .lightbox_wrapper {
      margin: 0.5rem;
      min-height: calc(100% - 1rem);
  }
}

.lightbox_content {
  box-shadow: var(--box-shadow);
  max-width: 700px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.lightbox_content img{
  height: 515px;
  object-fit: cover;
}

.lightbox.open .lightbox_content {
  transform: scale(1);
}

.lightbox_close {
  position: absolute;
  top: 3vh;
  right: 3vw;
  z-index: 999;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.lightbox_close span {
  width: 100%;
  height: 3px;
  margin-top: -1.5px;
  margin-bottom: -1.5px;
  background-color: #ddd;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lightbox_close:hover span {
  opacity: 1;
}

.lightbox_close span:first-child {
  transform: rotate(45deg);
}

.lightbox_close span:last-child {
  transform: rotate(-45deg);
}

.spr-kak-igrat-block-inner{
  display: flex;
  gap: 41px;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

.spr-kak-igrat-icon img{
  width: 53px;
  height: 53px;
  object-fit: contain;
  animation: rotate 7s linear infinite, blame 7s linear infinite;
}

.spr-kak-igrat-block-text{
  width: 70%;
}

.spr-kak-igrat-block-text{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
  font-style: italic;
}


.spr-allGames{
  overflow: hidden;
  background: url(imagevault/bg/bg-dark-06878d0412908d.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding:  112px 18px;
}


.spr-allGames::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(30 29 29 / 90%);
  z-index: -1;
}

.spr-allGames-main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.spr-allGames-block {
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
  padding: 41px 10px;
  background: var(--black);
  overflow: hidden;
}

.spr-allGames-block * {
  transition: 0.2s ease all;
}

.spr-allGames-block img {
  margin: 0;
  width: 100%;
  height: 224px;
  object-fit: cover;
  display: block;
}

.spr-allGames-block .spr-allGames-title h4 {
  margin: 0;
  padding: 10px;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--color1);
  transition: var(--tr1);
}

.spr-allGames-block .spr-allGames-title h4:hover {
  color: var(--white);
}

.spr-allGames-block .spr-allGames-content {
  display: block;
  padding: 8px 12px;
}

.spr-allGames-content div {
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.spr-allGames-block:hover img {
  margin-top: -15px;
}

.spr-allGames-block:hover .spr-allGames-title h4  {
  padding: 4px 6px 0;
}

.spr-allGames-mainv2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.spr-allGamesv2-inner {
  background: var(--black);
  padding: 20px 0 34px 0;
  clip-path: polygon(71.99% 96.47%,64.84% 95.41%,53.64% 97.56%,46.85% 95.34%,39.96% 97.44%,31.04% 94.69%,24.69% 97.90%,15.57% 94.32%,10.09% 98.52%,0.14% 95.93%,0.00% 0.00%,100.00% 0.00%,100.00% 93.62%,92.44% 96.21%,82.63% 96.41%);
}

.spr-allGamesv2-images{
  overflow: hidden;
}


.spr-allGamesv2-images img{
  width: 100%;
  object-fit: cover;
  height: 250px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}

.spr-allGamesv2-inner:hover .spr-allGamesv2-images img {
  transform: scale(1.1);
}

.spr-allGamesv2-inner .spr-allGamesv2-images img {
  transition: 0.2s all linear;
}

.spr-allGamesv2-online{
  margin-bottom: 26px;
}

.spr-allGamesv2-title h3{
  padding: 10px;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color1);
  transition: var(--tr1);
  text-align: center;
}

.spr-allGamesv2-title h3:hover {
  color: var(--white);
}


.spr-allGamesv2-online{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--color1);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;   
}

.spr-allGamesv2-btn{
  padding: 10px 0;
  text-align: center;
} 


.spr-nasspre{
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
  padding:  112px 18px;
}

.spr-nasspre-main{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.spr-nasspre-inner{
  background: rgb(0 0 0 / 50%);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 21px;
  transition: var(--tr1);
}

.spr-nasspre-inner:hover {
  transform: translateY(-5px);
}


.spr-nasspre-img img {
  transition: 0.2s all linear;
}

.spr-nasspre-inner:hover .spr-nasspre-img img {
  transform: rotateX(1turn);
}

.spr-nasspre-img img{
  object-fit: contain;
  width: 86px;
  height: 86px;
}

.spr-nasspre-content div{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
  font-style: italic;
}

.spr-client-say{
  padding:  112px 0;
}


 .spr-client-say-inner {
  padding: 18px 0;
  transition: 0.2s all linear;
}

 .spr-client-say-inner .spr-client-say-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(236, 240, 243, 0.1);
}

.spr-client-say-top{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.spr-client-say-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  background: rgb(0 0 0 / 50%);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}

.spr-client-say-item, .spr-client-say-img{
  flex: 1;
}

.spr-client-say-img img{
  width: 100%;
  object-fit: contain;
  height: 250px;
}



 .spr-client-say-inner .spr-client-say-head .spr-client-say-thumb {
  width:  18px;
  height:  18px;
  border-radius: 100%;
}

.spr-client-say-name{
  padding-left: 18px;
}

.spr-client-say-footer{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.spr-client-say-footer div{
  display: flex;
  flex-wrap: wrap;
}

.spr-client-say-thumb img{
  object-fit: cover;
  width: 75px;
  height: 75px;
}

.spr-client-dopImg img{
  object-fit: contain;
  width: 75px;
  height: 75px;
}

.spr-client-say-body{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
  font-style: italic;
}

.spr-client-say-footer-content svg{
  fill: var(--color1);
}

.spr-client-say-footer h5{
  color: var(--color1);
  font-size: clamp(16px, 2.5vw, 17px);
}

.spr-client-say-name{
  font-weight: 400;
  font-size: clamp(19px, 2.5vw, 22px);
  color: var(--color1);
  font-style: italic;
}

.spr-ofOb{
  background: var(--black);
  padding:  112px 18px;
}

.spr-ofOb-main{
  display: flex;
  flex-direction: row;
  gap: 34px;
  background: var(--color1);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
  transition: 0.2s all linear;
}

.spr-ofOb-main:hover .spr-ofOb-ic img{
  transform: rotateX(1turn);
}


.spr-ofOb-block {
  flex: 2;
  width: 100%;
}

.spr-ofOb-block .form{
  width: 100%;
}

.spr-ofOb-ic{
  flex: 1;
}

.spr-ofOb-ic img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: 0.2s all linear;
}


.spr-ofOb-block{
  padding: 34px 21px;
  width: 100%;
  border-radius: 35px;
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
  justify-content: center;
}

.spr-ofOb-block:hover .spr-ofOb-ic img{
  animation: upDown var(--tr1);
}

.spr-ofOb-block-fields{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spr-ofOb-block-fields .input-main-column__group{
  flex: 1;
}

.spr-ofOb-block-fields .input-main-column__group::placeholder, .spr-ofOb-block-fields .textarea-main-column__group::placeholder{
  color: var(--white);
}

.spr-ofOb-block-fields label{
  color: var(--white);
}

.spr-ofOb-block-fields .input-main-column__group{
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--white);
  border: 0;
  background-color: var(--black);
  border: 2px solid var(--color1);
  outline: none;
}

.spr-ofOb-block-fields  .textarea-main-column__group{
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--white);
  border: 0;
  background-color: var(--black);
  border: 2px solid var(--color1);
  outline: none;
}


.spr-ofOb-block-check{
  display: flex;
  gap: 10px;
  padding-top: 10px;
  color: var(--white);
} 

.spr-ofOb-block-check a{
  text-decoration: underline;
  color: var(--black);
  padding-left: 10px;
  font-weight: 800;
}

.spr-ofOb-block-check-input {
  display: none;
}

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

.spr-ofOb-block-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #333;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
}

.spr-ofOb-block-check-label:hover::before {
  border-color: #555;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

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

.spr-ofOb-block-check-input:checked + .spr-ofOb-block-check-label::before {
  background-color: var(--black);
  border-color: var(--black);
}

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

.spr-ofOb-block-btn{
  display: inline-block;
  padding: 18px 0;
}   

.spr-ofOb-block-btn button{
  background: var(--black) !important;
}


.spr-bottom{
  background: var(--black);
  padding:  26px 18px 18px 18px;
}

.spr-bottom-dis .sprForAllTitle{
  padding-bottom: 0 !important;
}


.spr-bottom-main{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.spr-bottom-logo, .spr-bottom-pol, .spr-bottom-linkM{
  flex: 1;
}

.spr-bottom-logo, .spr-bottom-pol, .spr-bottom-linkM{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.spr-bottom-logo a img{
  width: 117px;
  height: 117px;
  object-fit: contain;
}

.spr-bottom-logo a h2, .spr-bottom-pol a, .spr-bottom-linkM a{
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--tr1);
}

.spr-bottom-logo a h2:hover, .spr-bottom-pol a:hover, .spr-bottom-linkM a:hover {
  color: var(--color1);
}

.spr-bottom-dis{
  margin-top: 35px;
  background: var(--color1);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}

.spr-bottom-text-inner{
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 17px);
  color: var(--white);
}

.spr-bottom-disImg{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 19px 0;
}

.spr-bottom-disImg img{
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.spr-bottom-cop{
  position: relative;
  padding: 10px 0;
}

.spr-bottom-cop-text{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
}

.spr-bottom-cop-text h2{
  color: var(--color1);
}


.spr-our-dev{
  padding:  112px  18px 46px 18px;
}


.spr-our-dev-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.spr-our-dev-box {
  position: relative;
  height: 352px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  clip-path: polygon(
    0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 
    40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 
    80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 
    90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 
    70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 
    50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 
    30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 
    10% 100%, 5% calc(100% - 30px), 0 100%
  );
}

.spr-our-dev-box .spr-our-dev-imgBox {
  position: absolute;
  inset: 0;
}

.spr-our-dev-box .spr-our-dev-imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  clip-path: polygon(
    0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 
    40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 
    80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 
    90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 
    70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 
    50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 
    30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 
    10% 100%, 5% calc(100% - 30px), 0 100%
  );
}

.spr-our-dev-content {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  border-radius: 10px;
  clip-path: polygon(
    0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 
    40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 
    80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 
    90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 
    70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 
    50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 
    30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 
    10% 100%, 5% calc(100% - 30px), 0 100%
  );
  backdrop-filter: blur(15px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 21px;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  opacity: 0;
}

.spr-our-dev-content:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 40px;
}

.spr-our-dev-content h3 {
  color: var(--color1);
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  font-size: clamp(19px, 2.5vw, 22px);
}

.spr-our-dev-content span {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(17px, 2.5vw, 18px);
}

.spr-our-dev-box:hover .spr-our-dev-imgBox img {
  opacity: 0.5;
}

.spr-our-dev-box:hover .spr-our-dev-content {
  transform: scale(1);
  opacity: 1;
}


.spr-allGames-dopPage{
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
  padding:  112px 18px;
}


.spr-tolko-game{
  padding:  112px 18px;
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
}


.spr-tolko-game-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  gap: 49px;
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  border-radius: 35px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}


.spr-tolko-game-inner img{
  width: 100%;
  height: 396px;
  object-fit: contain;
  margin: 19px 0;
}


.spr-tolko-game-content {
  color: var(--white);
  font-size: clamp(16px,2.5vw,18px);
}

.spr-tolko-game-fram {
  width: 100%;
  padding: 27px;
  border-radius: 35px;
}

.spr-tolko-game-fram iframe{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 396px;
}

.spr-gt{
  padding:  112px 18px;
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
}


.spr-gt-main{
  display: flex;
  flex-direction: row;
  gap: 34px;
  background: rgb(0 0 0 / 50%);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
  transition: 0.2s all linear;
}

.spr-gt-main:hover .spr-gt-image img{
  transform: rotateX(1turn);
}


.spr-gt-block {
  flex: 2;
  width: 100%;
}

.spr-gt-block .spr-gt-form{
  width: 100%;
}

.spr-gt-image{
  flex: 1;
}

.spr-gt-image img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: 0.2s all linear;
}


.spr-gt-block{
  padding: 34px 21px;
  width: 100%;
  border-radius: 35px;
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
  justify-content: center;
}

.spr-gt-block:hover .spr-gt-image img{
  animation: upDown var(--tr1);
}

.spr-gt-field{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px 0;
}

.spr-gt-field input{
  flex: 1;
}

.spr-gt-field input::placeholder, .spr-gt-field textarea::placeholder{
  color: var(--white);
}

.spr-gt-field label{
  color: var(--white);
}

.spr-gt-field input{
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--white);
  border: 0;
  background-color: var(--black);
  border: 2px solid var(--color1);
  outline: none;
}

.spr-gt-field  textarea{
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--white);
  border: 0;
  background-color: var(--black);
  border: 2px solid var(--color1);
  outline: none;
}


.spr-gt-check{
  display: flex;
  gap: 10px;
  padding-top: 10px;
  color: var(--white);
} 

.spr-gt-check a{
  text-decoration: underline;
  color: var(--color1);
  padding-left: 10px;
  font-weight: 800;
}

.spr-gt-check-input {
  display: none;
}

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

.spr-gt-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #333;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
}

.spr-gt-check-label:hover::before {
  border-color: #555;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.spr-gt-check-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 14px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform-origin: bottom left;
  transition: transform 0.2s ease;
  border-radius: 1px;
}

.spr-gt-check-input:checked + .spr-gt-check-label::before {
  background-color: var(--black);
  border-color: var(--black);
}

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

.spr-gt-btn{
  display: inline-block;
  padding: 18px 0;
}   


.spr-gt-adres-main{
  padding-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}


.spr-gt-adres-ins-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; 
  background: rgb(0 0 0 / 50%);
 padding: 53px 21px;
  border-radius: 0px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
  transition: 0.2s all linear;
}

.spr-gt-adres-ins-box:hover .spr-gt-adress-svg svg{
  transform: rotateX(1turn);
}


.spr-gt-adress-svg svg{
  fill: var(--color1);
  width: 53px;
  height: 53px;
  transition: 0.2s all linear;
}

.spr-gt-adres-content a, .spr-gt-adres-content div{
  word-break: break-all;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 20px);
  color: var(--white);
  font-style: italic;
  transition: var(--tr1);
}

.spr-gt-adres-content a:hover{
  color: var(--color1);
}




.spr-posmotrite{
  position: relative;
  z-index: 1;
  padding:  112px 18px;
  overflow: hidden;
  background: var(--wave-background);
	background-image:
    radial-gradient(
      circle at center top,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at right bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    ),
    radial-gradient(
      circle at left bottom,
      transparent,
      transparent calc(var(--radius) - var(--line-thickness)),
      var(--line-color) calc(var(--radius) - var(--line-thickness)),
      var(--line-color) var(--radius),
      transparent var(--radius),
      transparent
    );
  background-size: var(--wave-width) var(--wave-height);
}

.spr-posmotrite-main{
  word-break: break-all;
  color: var(--white);
  background: rgb(0 0 0 / 50%);
  padding: 53px;
  border-radius: 35px;
  clip-path: polygon(0 0, 5% 30px, 10% 0, 15% 30px, 20% 0, 25% 30px, 30% 0, 35% 30px, 40% 0, 45% 30px, 50% 0, 55% 30px, 60% 0, 65% 30px, 70% 0, 75% 30px, 80% 0, 85% 30px, 90% 0, 95% 30px, 100% 0, 100% 100%, 95% calc(100% - 30px), 90% 100%, 85% calc(100% - 30px), 80% 100%, 75% calc(100% - 30px), 70% 100%, 65% calc(100% - 30px), 60% 100%, 55% calc(100% - 30px), 50% 100%, 45% calc(100% - 30px), 40% 100%, 35% calc(100% - 30px), 30% 100%, 25% calc(100% - 30px), 20% 100%, 15% calc(100% - 30px), 10% 100%, 5% calc(100% - 30px), 0 100%);
}

.spr-posmotrite h1,h2,h3{
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
}

.spr-posmotrite  a{
    text-decoration: underline;
    color: var(--white) !important;
    word-break: break-all;
}

.spr-posmotrite ol li {
    color: var(--white) !important;
}

.spr-posmotrite ul{
    list-style: disc !important;
    text-align: left;
    margin: 10px;
}


.button-1 {
  padding: 10px 18px;
  border-radius: 35px;
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  color: var(--white);
  text-shadow: none;
  background: transparent;
  cursor: pointer;
  box-shadow: transparent;
  border: 2px solid var(--white);
  transition: 0.5s ease;
  user-select: none;
}

.button-1:hover,
.button-1:focus {
  color: var(--white);
  background: var(--color1);
  border: 2px solid var(--color1);
  text-shadow: 0 0 5px var(--white), 0 0 10px var(--white), 0 0 20px var(--white);
  box-shadow: 0 0 5px var(--color1), 0 0 20px var(--color1), 0 0 50px var(--color1),
    0 0 100px var(--color1);
}


.button-2 {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 35px;
  cursor: pointer;
  border: 0;
  background: var(--color4);
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
  color: var(--white);
}

.button-2:hover {
  letter-spacing: 2px;
  background-color: var(--color4);
  box-shadow: var(--color4) 0px 7px 29px 0px;
}

.button-3 {
  background-color: var(--color4);
  border-radius:  35px;
  color: var(--white);
  border: 2 solid var(--color1);
  line-height: 1;
  font-size: 17px;
  padding: 20px 21px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  text-align: center;
}

.button-3:hover,
.button-3:focus {
  animation-name: wobble;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes wobble {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}


.button-4 {
  position: relative;
  padding: 10px;
  color: var(--white);
  text-shadow: var(--color1) 3px 2px 1px;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  border: 2 solid var(--white);
  transition: color 150ms ease-in-out 150ms, border-color 300ms ease-out, box-shadow 300ms ease-in-out;
  z-index: 1;
  border-radius: 35px;
}



.button-4:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color1); 
  z-index: -1;
  transform: scaleX(0);
  transition: transform 300ms ease-out 200ms;
  border-radius: 35px;
}

.button-4:hover {
  color: var(--white);
  border-color: var(--white); 
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}

.button-4:hover:after {
  transform: scaleX(1);
  transform-origin: 50% 50%;
  transition: transform 300ms ease-out;
}

.button-5 {
  display: inline-block;
  text-align: center;
  padding: 10px 18px;
  font-size: 17px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--color4);
  color: var(--color1);
  box-shadow: 5px 5px 10px var(--white), -5px -5px 10px var(--white);
}

.button-5:focus {
  outline: 3px solid var(--rgb1);
  outline-offset: 2px;
}

.button-5:hover {
  box-shadow: inset 5px 5px 10px var(--white), inset -5px -5px 10px var(--white);
}

@media (max-width: 1200px) {
  .spr-hero-ship:nth-child(1){
    display: none;
  }

}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .spr-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color4);
    width: 100%;
    display: none;
  }

  .spr-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .spr-menu-toggle:checked + .hamburger + .spr-menu {
    display: flex;
  }

  .spr-menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .spr-menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .spr-menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .spr-hero-main{
    flex-direction: column;
  }

  .spr-posmNas-main{
    flex-direction: column;
  }

  .spr-posmNas-main, .spr-kak-igrat-main{
   padding: 53px 21px;
  }

  .spr-kak-igrat-main{
    flex-direction: column;
  }

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

  .spr-allGames-mainv2{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .spr-nasspre-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .spr-client-say-main{
    flex-direction: column;
  }

  .spr-ofOb-main{
    flex-direction: column;
  }

  .spr-bottom-main{
    flex-direction: column;
  }

  .spr-our-dev-box .spr-our-dev-imgBox img {
    opacity: 0.5;
  }

  .spr-our-dev-box .spr-our-dev-content {
    transform: scale(1);
    opacity: 1;
  }

  .spr-our-dev-content{
    backdrop-filter: blur(2px);
  }

  .spr-our-dev-block {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .spr-gt-main{
    flex-direction: column;
  }

  .spr-gt-adres-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}



@media (max-width: 768px){
  .spr-dv-main{
    flex-direction: column;
  }

  .spr-kak-igrat-gallery{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .spr-kak-igrat-block-inner{
    flex-direction: column;
  }

  .spr-kak-igrat-block-text{
    width: 100%;
  }

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

  .spr-allGames-mainv2{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .spr-nasspre-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .spr-our-dev-block {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .spr-tolko-game-main{
   padding: 53px 21px;
  }

  .spr-gt-adres-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

}


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

    .spr-vd-img img{
      height: auto;
    }

    .spr-client-say-img img{
      height: auto;
    }

    .spr-ofOb-ic img{
      height: auto;
    }

    .spr-ofOb-block-check-label, .spr-gt-check-label{
      flex-direction: column;
      text-align: center;
    }

    .spr-bottom-cop-text{
      flex-direction: column;
    }

    .spr-posmotrite-main{
      padding: 35px 27px;
    }

    .spr-tolko-game-inner img{
      height: auto;
    }

}

@media (max-width: 425px){
          
  .spr-client-dopImg img{
    display: none;
  }

}

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