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

:root {
  --bq-1: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  --bq-2: linear-gradient(135deg, #1f1c2c, #928DAB);
  --bq-3: linear-gradient(135deg, #000000, #434343);
  --bq-4: linear-gradient(135deg, #2c3e50, #4ca1af);
  --bq-5: linear-gradient(135deg, #200122, #6f0000);
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  min-height: 100vh;
  background: var(--bq-2);
  direction: ltr;
  font-family: 'Overpass', sans-serif !important;
  font-size: clamp(14px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.3;
}

p, li{
  line-height: 1.3;
}

li{
  margin: 0 6px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

.container-wrapper{
  width: auto;
  padding-right: 23px;
  padding-left: 23px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

.page-privacy__block{
  padding: 76px 0;
  overflow: hidden;
  width: 100%;
}

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

.content-politic li{
  list-style: inside;
}

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

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

.site-header {
  padding: 26px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-logo {
  transition: 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}

.site-logo-img img {
  max-height: 45px;
  object-fit: contain;
  width: 100%;
}

.site-logo-title h2 {
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
  margin: 0;
}

.site-logo:hover {
  opacity: 0.5;
}

.nav-toggle {
  cursor: pointer;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 4;
}

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

.nav-toggle span:nth-of-type(1){
  left: unset;
  right: 0;
  width: 11px;
}

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

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

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

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

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

.nav-panel {
  padding: 76px 0;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bq-2);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.nav-panel.open {
  transform: translateX(0);
}

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

.nav-panel ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: center;
  padding: 0;
}

.nav-panel li {
  list-style-type: none;
}

.nav-panel li a {
  transition: 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
}

.nav-panel li a:hover {
  opacity: 0.5;
  color: #fff;
}

.header-content{
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 76px;
  padding: 76px 0;
}

.header-content::before {
  opacity: 0.7;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(artisticstorage/other/cyborg-animals-0689388774f1c1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.header__logo{
  line-height: normal;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(50px, 15vw, 70px);
  padding: 0;
  margin: 0;
}

.header-box{
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 76px;
  position: relative;
}

.header-content__card{
  width: 33.33%;
  flex: 1;
  position: relative;
  z-index: 2;
}

.header-content__card h2{
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: normal;
  font-size: clamp(30px, 10vw, 50px);
}

.game {
  direction: initial;
}

.game-box {
  direction: initial;
  background: #ffffff33;
  border-radius: 19px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.game-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.step {
  padding: 39px;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  justify-content: center;
}

.step h5 {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: normal;
}

.step span {
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

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

.main-button {
  border-radius: 26px;
  direction: initial;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.main-button:hover {
  color: #212121;
}

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

.main-button:hover::before {
  width: 160%;
}

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

.aboutus h2{
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

.aboutus-subtitle{
  opacity: 0.7;
  color: #fff;
  font-size: clamp(16px, 10vw, 18px);
  margin: 0;
  padding: 0;
}

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

.benefit-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(artisticstorage/bg/bg-all-0689388774efc6.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  background-attachment: fixed;
  z-index: -1;
}

.benefit{
  padding: 76px 0;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.benefit h2{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

.benefit-content{
  display: flex;
  flex-direction: row;
  gap: 76px;
}

.benefit-box{
  justify-content: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.benefit-card{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #ffffff33;
  border-radius: 26px;
  padding: 26px;
}

.benefit-card h5{
  font-weight: normal;
  color: #fff;
  font-size: clamp(18px, 4vw, 20px);
  margin: 0;
  padding: 0;
}

.benefit-img{
  flex: 1;
}

.benefit-img img{
  width: 100%;
  max-height: 70vh;
  height: 100%;
  object-fit: contain;
}

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

.games h2{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

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

.games-card{
  overflow: hidden;
  position: relative;
  transition: 0.5s ease;
  background-color: #ffffff33;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-radius: 26px;
  padding: 26px;
}

.games-card:hover{
  padding: 0;
  background-color: unset;
}

.games-img{
  transition: 0.5s ease;
  height: 374px;
}

.games-img img{
  transition: 0.5s ease;
  position: relative;
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games-card:hover .games-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.games-card:hover .games-img img{
  filter: brightness(0.5);
}

.games-card:hover .games-img{
  height: 100%;
}

.games-title{
  transition: 0.5s ease;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.games-title:hover{
  opacity: 0.5;
}

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

.catalog h2{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

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

.catalog-card{
  overflow: hidden;
  position: relative;
}

.catalog-img img{
  filter: brightness(0.5);
  width: 100%;
  height: 574px;
  object-fit: cover;
  border-radius: 26px;
}

.catalog-box{
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px;
  gap: 26px;
}

.catalog-title{
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  transition: 0.5s ease;
}

.catalog-title:hover{
  opacity: 0.5;
}

.catalog-box p{
  line-height: normal;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
  text-align: center;
  margin: 0;
  padding: 0;
}

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

.faq-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(artisticstorage/bg/bg-all-1689388774eff7.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  background-attachment: fixed;
  z-index: -1;
}

.faq{
  padding: 76px 0;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.faq h2{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

.faq-content{
  display: flex;
  justify-content: space-between;
  gap: 76px;
  flex-direction: row;
}

.faq-video{
  flex: 1;
}

.faq-video video{
  border-radius: 26px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-section {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 19px;
}

.accordion-item {
  border-bottom: 0.1px solid grey;
}

.accordion-item h5 {
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 22px);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  color: #fff;
  transition: 0.3s ease;
}

.accordion-item svg {
  width: 26px;
  height: 26px;
}

.accordion-item.open h5 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 6px;
  background-color: #ffffff33;
  padding: 6px;
}

.accordion-item.open {
  border-bottom: none;
}

.accordion-content {
  margin-top: 19px;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.banner{
  min-height: 40vh;
  margin: 76px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 76px;
  justify-content: center;
  border-radius: 26px;
  padding: 76px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 26px;
  height: 100%;
  background-image: url(artisticstorage/bg/bg-all-2689388774f024.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  z-index: -1;
}

.banner h2{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 10vw, 50px);
  margin: 0;
  padding: 0;
}

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

.gallery{
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

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

.form-main{
  position: relative;
  z-index: 1;
  flex: 1;
  background-color: #ffffff33;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: space-around;
}

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

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

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

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

.input-container .input-input__component_part, .input-container .textarea-input__component_part {
  outline: none;
  margin: 6px 0;
}

.input-container .input-input__component_part {
  color: #fff;
  border-radius: 26px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-container .textarea-input__component_part {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 26px;
  background-color: transparent; 
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 49px;
  max-height: 145px;
}

.input-container .input-input__component_part::placeholder, .input-container .textarea-input__component_part::placeholder{
  color: #fff;
}

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

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

.footer-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.footer-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(artisticstorage/bg/bg-all-3689388774f04d.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

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

.footer-top{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 76px;
}

.disclaimer{
  animation: ScaleText 8s infinite ease-in-out;
  border: 2px solid #fff;
  border-radius: 11px;
  flex: 1;
  gap: 26px;
  background: var(--bq-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px;
}

.disclaimer h2{
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

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

.privacy{
  flex: 1;
}

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

.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-bottom{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  gap: 19px;
}

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

.footer-bottom img{
  max-width: 85px;
}

@keyframes ScaleTextMedia {
  0%, 100%{
    transform: scale(1);
  }

  50%{
    transform: scale(0.8);
  }
}

@keyframes ScaleText {
  0%, 100%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.1);
  }
}

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

.playing-block{
  width: 100%;
  height: 100vh;
  padding-top: 50px;
}

.playing-block iframe{
  border: none;
  width: 100%;
  height: 100%;
}

.art-cont-title {
  padding: 0;
  margin: 0;
  margin-top: 76px;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

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

.art-block-images {
  border-radius: 26px;
  float: right;
  width: 39%;
  margin: 49px;
  margin-top: 0;
  margin-right: 0;
}

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

.art-block-content ul {
  list-style: inside;
}

.contacts-box{
  margin: 76px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.cont-card{
  border: 2px solid #fff;
  border-radius: 19px;
  padding: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.cont-card svg{
  width: 39px;
  height: 39px;
  fill: #fff;
}

.cont-card a{
  flex: 1;
}

.cont-card a h5{
  padding: 0;
  font-weight: normal;
  margin: 0;
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

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

.cont-card h5{
  font-weight: normal;
  padding: 0;
  margin: 0;
  flex: 1;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

.kontact-form{  
  margin: 76px 0;
  background-color: #ffffff33;
  border-radius: 26px;
  padding: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

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

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  outline: none;
  margin: 6px 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-radius: 26px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 26px;
  background-color: transparent; 
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 49px;
  max-height: 145px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
}

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

@media (max-width: 1199px) {
  .disclaimer{
    animation: ScaleTextMedia 8s infinite ease-in-out;
  }
}

@media (max-width: 991px) {
  .header__logo{
    position: relative;
    z-index: 1;
  }

  .header-content__card:nth-child(2){
    display: none;
  }

  .header-content__card{
    width: 50%;
  }

  .benefit-content{
    flex-direction: column;
  }

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

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

  .faq-content{
    flex-direction: column;
  }

  .faq-video video{
    max-height: 60vh;
  }

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

  .gallery img{
    height: 258px;
  }

  .footer-top{
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .header-box{
    flex-direction: column;
  }

  .header__logo{
    display: none;
  }

  .header-content__card{
    width: 100%;
  }

  .header-content__card h2{
    text-align: center;
  }

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

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

  .art-block-images {
    width: 100%;
    margin: 0;
    margin-bottom: 49px;
  }

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

  .navigation-box .main-button{
    display: none;
  }
}

@media (max-width: 576px){
  .banner{
    padding: 76px 26px;
  }
}


