@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

:root{
  --bg-1: linear-gradient(180deg, #04fafd, 5%, #119dff, 50%, #030423);
  --bg-2: linear-gradient(180deg, #05f7d7 5%, #0b74d4 50%, #021a3b);
  --bg-3: linear-gradient(180deg, #06cfff 5%, #1478c3 50%, #01132e);
  --bg-4: linear-gradient(180deg, #00e4ff 5%, #0066cc 50%, #020b26);
  --bg-5: linear-gradient(180deg, #03d1fc 5%, #0c5fb7 50%, #000a1c);
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background: var(--bg-5);
  background-attachment: fixed;
  direction: ltr;
  font-family: 'Figtree', sans-serif !important;
  font-size: clamp(13px, 4vw, 18px);
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  
  padding: 7px 0;
  line-height: 1.3;
}

li{
  margin: 0 7px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  margin: 0;
  padding: 0;
}

.my-container{
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 480px) {
  .my-container{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .my-container{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .my-container{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .my-container{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .my-container{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .my-container{
    max-width: 1274px;
  }
}

.page-privacy__box{
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
}

.content-politics{
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  text-align: justify;
}

.page-privacy__box a{
  transition: 0.3s ease;
  color: #fff;
}

.page-privacy__box a:hover{
  color: #fff;
  opacity: 0.5;
}

.page-privacy__box li{
  opacity: 0.9;
  list-style: inside;
}

.header{
  margin: 26px 0;
  background-color: #ffffffb3;
  border-radius: 26px;
  padding: 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 11px;
}

.logo:hover{
  opacity: 0.5;
}

.logo__image img {
  max-height: 50px;
  object-fit: contain;
  width: 55px;
}

.logo a {
  color: #060606;
  display: flex;
  align-items: center;
  gap: 17px;
  transition: color 0.3s ease;
}

.logo__title h2 {
  font-size: 18px;
  margin: 0;
}

.navigation{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

.navigation__link {
  transition: 0.5s ease;
  color: #060606;
  font-size: clamp(16px, 4vw, 18px);
  text-decoration: none;
}

.navigation__link:hover{
  opacity: 0.5;
}

.navigation__link:first-child{
  font-weight: bold;
}

.video-section {
  flex: 4;
  border-radius: 26px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#bg-video {
  filter: brightness(0.5);
  border-radius: 26px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-block {
  border-radius: 26px;
  text-align: center;
  background-color: #06060633;
  width: 80%;
  filter: drop-shadow(2px 4px 6px black);
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
  padding: 26px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.video-block h1{
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.video-block p{
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
}

.btn-link {
  border-radius: 20px;
  direction: initial;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 11px 17px;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.btn-link svg{
  width: 26px;
  fill: #fff;
  transition: 1s ease;
  padding-right: 7px;
}

.btn-link:hover svg{
  fill: #060606;
}

.btn-link:hover {
  color: #060606;
}

.btn-link::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  transition: all 1s;
}

.btn-link:hover::before {
  width: 160%;
}

.hero-header{
  display: flex;
  justify-content: space-between;
  gap: 26px;
  flex-direction: row;
}

.hero-image{
  display: none;
  border-radius: 26px;
  border: 2px solid #fff;
  overflow: hidden;
  flex: 1;
}

.hero-image img{
  animation: scaleAnimation 8s infinite ease-in-out;
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scaleAnimation {
  0%, 100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}

.fish-block {
  padding: 50px 0; 
  position: relative;
  overflow: hidden;
  width: 100%; 
  height: 251px; 
}

.fish {
  position: absolute;
  width: 132px; 
  right: 0; 
  animation: swim 15s linear infinite alternate, upDown 1.5s ease-in-out infinite alternate;
}

.fish-two{
  position: absolute;
  width: 132px; 
  right: 0; 
  animation: swim 30s linear infinite alternate, upDown 3s ease-in-out infinite alternate;
}

@keyframes swim {
  0%, 100% {
    right: 0;
  }
  50% {
    right: calc(100% - 110px); 
  }
}

@keyframes upDown {
  0% {
    transform: translateY(-11px);
  }
  100% {
    transform: translateY(11px);
  }
}

.about-us{
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-direction: row;
  padding: 60px 0;
}

.about-us__text{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 26px;
}

.about-us__text h2{
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.about-us__subtitle{
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 16px);
  color: #fff;
}
 


.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.stats-card{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.stats-card h5{
  line-height: normal;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.stats-card p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.about-us__img{
  flex: 1;
  position: relative;
}

.about-us__img img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-game{
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0;
}

.step-game h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.step-box{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.step-block{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.step-card{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9) blur(1px);
  background-size: contain;
  z-index: -1;
}

.step-card-one::before{
  background-image: url(pixelpantry/other-dir/tematik-big-0687d021175da3.png);
}

.step-card-two::before{
  background-image: url(pixelpantry/other-dir/tematik-big-1687d021175dbd.png);

}

.step-card-three::before{
  background-image: url(pixelpantry/other-dir/tematik-big-2687d021175dd5.png);

}

.step-card-four::before{
  background-image: url(pixelpantry/other-dir/tematik-big-3687d021175dec.png);

}

.step-card svg{
  width: 42px;
  height: 42px;
  fill: #fff;
}

.step-card h5{
  font-weight: normal;
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
}

.games{
  display: none;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0;
}

.games h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.games-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.games-card{
  transition: 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.games-card__img{
  transition: 0.5s ease;
  position: relative;
}

.games-card__img img{
  transition: 0.5s ease;
  filter: brightness(0.8);
  border-radius: 26px;
  width: 100%;
  height: 251px;
  object-fit: cover;
}

.games-card:hover .games-card__img img{
  transform: scale(1.1);
}

.games-card__content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 17px;
}

.rating-games{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
} 

.rating-games svg{
  width: 26px;
  height: 26px;
  fill: gold;
}

.rating-games span{
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.games-card__content a{
  font-size: clamp(18px, 4vw, 22px);
  transition: 0.3s ease;
  color: #fff;
}

.games-card__content a:hover{
  opacity: 0.5;
}

.catalog{
  display: none;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0;
}

.catalog h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.catalog-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalog-card{
  border-radius: 26px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.5s ease;
  position: relative;
  padding: 17px;
}

.catalog-card:hover{
  transform: scale(1.1);
}

.catalog-box a{
  height: 100%;
  border-radius: 26px;
  border: 2px solid #fff;
  padding: 17px;
  display: flex;
  justify-content: space-between;
  gap: 17px;
  flex-direction: row;
}

.catalog-card__img{
  height: 251px;
  flex: 1;
}

.catalog-card__img img{
  object-fit: cover;
  border-radius: 26px;
  width: 100%;
  height: 100%;
}

.catalog-card__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 17px;

}

.catalog-card__content h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 20px);
}

.table-lider{
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0;
}

.table-lider h2{
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.table-lider__content{
  display: flex;
  flex-direction: column;
}

.table-card{
  overflow: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 11px 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.table-card:nth-child(2), .table-card:nth-child(4){
  background-color: rgba(255, 255, 255, 0.2);
}

.card-table__img{
  flex: 1;
}

.card-table__img img{
  height: 50px;
  object-fit: contain;
}

.table-card h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  flex: 1;
}

.table-card span{
  text-align: end;
  flex: 1;
  font-weight: bold;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.form-box{
  padding: 60px 0;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  flex-direction: row;
}

.form-img{
  height:  623px;
  border-radius: 26px;
  overflow: hidden;
  flex: 1;
}

.form-img img{
  animation: scaleAnimation 8s infinite ease-in-out;
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-container{
  flex: 1;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 26px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-container h2{
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  text-align: center;
}

.block-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.input-container label{
  color: #fff;
}

.input-container .input-userboxpart, .input-container .textarea-userboxpart {
  outline: none;
  margin: 7px 0;
}

.input-container .input-userboxpart {
  color: #fff;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  padding: 17px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-container .textarea-userboxpart {
  color: #fff;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  padding: 17px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 30px;
  max-height: 110px;
}

.input-container .input-userboxpart::placeholder, .input-container .textarea-userboxpart::placeholder{
  color: #ffffffb3;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: flex-start;
  padding: 11px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.block-form button{
  margin: 0 auto;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.gallery{
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}

.gallery-top, .gallery-bottom{
  display: flex;
  flex-direction: row;
}

.gallery-img{
  flex: 1;
}

.gallery-img img{
  width: 100%;
  height: 349px;
  object-fit: cover;
}

.gallery-top .gallery-img:nth-child(1), .gallery-bottom .gallery-img:nth-child(1){
  display: none;
}

.footer-back{
  background-color: rgba(255, 255, 255, 0.2);
}

.disclaimer-back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.disclaimer-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(pixelpantry/dir-bg/bg-all-0687d021175be1.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.disclaimer{
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.disclaimer h2{
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.disclaimer p{
  padding: 0;
  opacity: 0.8;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.disclaimer h2{
  background-image: var(--bg-5);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientFlow 3s infinite linear alternate;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.footer{
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row;
  gap: 17px;
}

.privacy ul li{
  margin: 0;
  padding: 0;
}

.privacy ul li a {
  font-size: clamp(16px, 4vw, 18px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.footer-coop{
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

.footer-coop p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.footer-coop img{
  max-width: 60px;
}

.layout-column {
  padding: 60px 0;
  display: flex;
  gap: 60px;
  flex-direction: column;
}

.game-wrapper {
  width: 100%;
  height: 532px;
}

.game-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.content-title {
  margin-top: 60px;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.content-block {
  overflow: hidden;
  position: relative;
}

.content-image {
  object-fit: contain;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 26px;
  float: right;
  width: 40%;
  margin: 30px;
  margin-top: 0;
  margin-right: 0;
}

.content-text {
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.content-text ul {
  list-style: inside;
}

.content-text li{
  opacity: 0.9;
}

.contacts-page{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 60px;
  padding: 60px 0;
}

.kontact-form{
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;  
  border-radius: 20px;  
  padding: 26px;
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kontact-form h2{
  margin-bottom: 26px;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  outline: none;
  margin: 7px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
  width: 100%;
  color: #fff;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  padding: 17px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  color: #fff;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  padding: 17px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 30px;
  max-height: 110px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #ffffffb3;
}

.kontact-form button{
  margin: 0 auto;
}

.contacts-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contacts-card{
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;  
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.contacts-card svg{
  fill: #fff;
  width: 35px;
  height: 35px;
}

.contacts-card a{
  flex: 1;
}

.contacts-card a h5{
  word-break: break-all;
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

.contacts-card a h5:hover{
  opacity: 0.5;
}

.contacts-card h5{
  word-break: break-all;
  flex: 1;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #060606;
  transition: all 0.5s;
}

.menu-toggle span:nth-of-type(2) {
  top: calc(50% - 7px);
}

.menu-toggle span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.menu-toggle.active span:nth-of-type(1) {
  display: none;
}

.menu-toggle.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-toggle.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.menu-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 17px 30px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-110%);
  transition: transform 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.menu-panel.active {
  transform: translateX(0);
}

.menu-panel nav {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100vh;
}

.menu-panel ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 0;
}

.menu-panel li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu-link {
  transition: 0.3s ease;
  font-weight: bold;
  text-align: center;
  font-size: clamp(18px, 4vw, 22px);
  color: #060606;
}

.menu-link:hover {
  opacity: 0.5;
}


@media (max-width: 1199px){
  .catalog-box a{
    flex-direction: column;
  }

  .hero-image{
    display: none;
  }
}

@media (max-width: 991px) {
  .menu-toggle{
    display: block;
  }

  .navigation{
    display: none;
  }

  .about-us{
    flex-direction: column;
  }

  .about-us__img img{
    max-height: 50vh;
  }

  .step-null{
    display: none;
  }

  .step-block{
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .games-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-top .gallery-img:nth-child(1), .gallery-bottom .gallery-img:nth-child(1){
    display: none;
  }

  .form-box{
    flex-direction: column;
  }

  .form-img img{
    max-height: 50vh;
  }

  .video-block{
    margin: 0;
    width: 100%;
    min-height: 50vh;
    justify-content: center;
  }

  .contacts-page{
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .step-block{
    grid-template-columns: repeat(1, 1fr);
  }

  .catalog-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .games-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-top .gallery-img:nth-child(2), .gallery-bottom .gallery-img:nth-child(2){
    display: none;
  }

  .content-image {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }

  .game-wrapper{
    height: 100vh;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 576px){
  .gallery-bottom .gallery-img:nth-child(3), .gallery-bottom .gallery-img:nth-child(4){
    display: none;
  }

  .form-img{
    display: none;
  }
  .table-card{
    justify-content: unset;
  }

  .table-card span{
    display: none;
  }

  .card-table__img{
    flex: none;
  }

  .table-card h5{
    flex: none;
  }

  .stats{
    grid-template-columns: repeat(2, 1fr);
  }

  .fish-two{
    display: none;
  }
}

