@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');

:root {
  --cb-1: #FF5733; 
  --cb-2: #C70039;
  --cb-3: #900C3F; 
  --cb-4: #581845; 
  --cb-5: #FFC300; 

  --cq-1: linear-gradient(45deg, #8B0000 0%, #4B0082 33%, #00008B 66%);
  --cq-2: linear-gradient(45deg, #00008B 0%, #8B0000 33%, #4B0082 66%);
  --cq-3: linear-gradient(45deg, #4B0082 0%, #00008B 33%, #8B0000 66%);
  --cq-4: linear-gradient(45deg, #8B0000 0%, #00008B 33%, #4B0082 66%);
  --cq-5: linear-gradient(45deg, #4B0082 0%, #8B0000 33%, #00008B 66%);
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background: var(--cq-2);
  direction: ltr;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 2;
}

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

p, li{
  padding: 5px 0;
  line-height: 1.5;
}

li{
  margin: 0 8px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

.main-container{
  width: auto;
  padding-right: 19px;
  padding-left: 19px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

.page-privacy{
  padding: 52px 0;
  overflow: hidden;
  width: 100%;
}

.title-politics{
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 27px;
  font-size: clamp(22px, 4vw, 30px);
}

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

.page-privacy a{
  color: #fff;
}

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

.header-lay{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #060606;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  padding: 11px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.logo-image img {
  max-height: 40px;
  object-fit: contain;
  width: 40px;
}

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

.logo-title h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.menu li {
  padding: 11px 7px;
  position: relative;
}

.menu-item {
  text-transform: uppercase;
  position: relative;
  font-size: clamp(14px, 4vw, 18px);
  color: #848484;
  text-decoration: none;
  transition: 0.3s ease;
}

.menu-item-home {
  position: relative;
  color: #fff;
  z-index: 1;
}

.menu-item:hover {
  color: #fff;
}

.submenu {
  border-radius:  7px;
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

@keyframes slideIn {
  0% {
      margin-top: 30px;
      opacity: 0;
  }
  100% {
      margin-top: 0;
      opacity: 1;
  }
}

.submenu li {
  margin: 0;
  padding: 0;
}

.submenu a {
  background-color: transparent;
  font-size: clamp(14px, 4vw, 14px);
  color: #060606;
  padding: 11px;
  display: block;
  transition: 0.3s ease;
}

.submenu a:hover {
  background-color: var(--cb-2);
  color: #fff;
}

.menu li:hover .submenu {
  display: block;
}

.hero-slider {
  direction: initial;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
}

.hero-slide {
  direction: initial;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  direction: initial;
  opacity: 1;
}

.hero-slide img {
  filter: brightness(0.5);
  width: 100%;
  min-height: 90vh;
  object-fit: cover;
}

.hero-content {
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
}

.hero-content p {
  padding: 0;
  font-size: clamp(18px, 4vw, 22px);
}

.main-button {
  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 svg{
  width: 27px;
  fill: #fff;
  transition: 1s ease;
  padding-right: 7px;
}

.main-button:hover svg{
  fill: #060606;
}

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

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

.about-us {
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us__title {
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
  margin-bottom: 52px;
  text-align: center;
}

.about-us__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.about-us__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px;
}

.about-us__images img {
  width: 100%;
  height: 386px;
  border-radius: 27px;
  object-fit: cover;
}
.about-us__images img {
  width: 100%;
  height: 386px;
  border-radius: 27px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us__images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-us__text {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.about-us__description {
  opacity: 0.8;
  font-weight: normal;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.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(creativecove/bg/bg-all-069287bcd1ba92.jpg);
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.benefit{
  padding: 52px 0;  
}

.benefit h2{
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}

.benefit-block{
  display: flex;
  flex-direction: row-reverse;
  gap: 27px;
}

.benefit-card {
  flex: 1;
  min-height: 30vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: end;
  background-position: center;
  background-size: cover;
  padding: 72px 27px 27px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

.benefit-card-one::before {
  background-image: url(creativecove/bg/bg-all-069287bcd1ba92.jpg);
}

.benefit-card-two::before {
  background-image: url(creativecove/bg/bg-all-269287bcd1bac7.jpg);
}

.benefit-card-three::before {
  background-image: url(creativecove/bg/bg-all-369287bcd1baf6.jpg);
}

.benefit-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.benefit-card h5 {
  font-size: clamp(16px, 4vw, 20px);
  color: #fff;
}

.catalog{
  display: none;
  padding: 52px 0;
}

.catalog h2{
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}

.catalog-column{
  display: flex;
  flex-direction: column;
}

.catalog__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.catalog__catal {
  flex: 1;
}

.catalog__box {
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 27px;
}

.catalog__box a h5 {
  text-transform: uppercase;
  transition: 0.3s ease;
  color: #fff;  
  font-size: clamp(22px, 4vw, 30px);
}

.catalog__box a h5:hover {
  opacity: 0.5;
}

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

.catalog__box-button {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}

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

.catalog__box-rating svg {
  fill: gold;
  height: 24px;
  width: 24px;
}

.catalog__img {
  flex: 1;
}

.catalog__img img {
  max-height: 50vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-two-block{
  display: none;
}

.catalog-two{
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

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

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

.catalog-box__card{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  
}

.catalog-card__link img{
  border-top-right-radius: 27px;
  border-top-left-radius: 27px;
  object-fit: cover;
  width: 100%;
  height: 259px;
}

.catalog-card__box{
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-bottom-right-radius: 27px;
  border-bottom-left-radius: 27px;
  gap: 11px;
  padding: 27px;
}

.catalog-card__box a h5{
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 20px);
  color: #060606;  
}

.catalog-card__box a h5:hover{
  opacity: 0.5;
}

.catalog-card__box p{
  flex: 1;
  padding: 0;
  font-size: clamp(14px, 4vw, 16px);
  opacity: 0.8;
  color: #060606; 
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.playering-video{
  position: relative;
  flex: 1;
  width: 100%;
  height: 50vh;
}

.playering-video video {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.playering-video video:hover {
  cursor: pointer;
}

.player-video__button-play{
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.playering-video:hover .player-video__button-play{
  display: none;
}

.player-video__button-play svg{
  width: 117px;
  height: 117px;
  fill: #fff;
}

.step-game{
  padding: 52px 0;
}

.step-game h2{
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}

.step-game__box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px;
}

.step-game__card{
  transition: 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  background-color: #fff;
  border-radius: 27px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.step-game__card:hover{
  transform: scale(1.1);
}

.step-game__card img{
  object-fit: contain;
  height: 40px;
  width: 40px;
}

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

.gallery {
  padding: 52px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-slider {
  direction: initial;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  height: 259px;
  box-sizing: border-box;
  flex: 0 0 calc(100% / 4); 
  padding: 0 11px;
}

.gallery-slide img {
  border-radius: 27px;
  object-fit: cover;
  width: 100%;
  height: 259px;
  display: block;
}

.form-box{
  display: flex;
  align-items: center;
  gap: 52px;
  flex-direction: row;
  padding: 52px 0;  
}

.form-img{
  flex: 1;
}

.form-box img{
  width: 100%;
  height: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.form-block{
  flex: 1;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 27px;
  background-color: #fff;
  padding: 27px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.title-box h2{
  text-align: center;
  text-transform: uppercase;
  color: #060606;  
  font-size: clamp(22px, 4vw, 30px);
}

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

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

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

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

.input-container .input-fieldpanel-block {
  border-radius: 27px;
  border: none;
  border: 2px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  padding: 19px; 
  font-size: 14px; 
  line-height: 19px; 
}

.input-container .textarea-fieldpanel-block {
  border-radius: 27px;
  border: none;
  border: 2px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  padding: 19px; 
  font-size: 14px; 
  line-height: 19px; 
  resize: vertical;
  min-height: 49px;
  max-height: 132px;
}

.input-container .input-fieldpanel-block:focus, .input-container .textarea-fieldpanel-block:focus{
  color: #060606;
}

.input-container .input-fieldpanel-block::placeholder, .input-container .textarea-fieldpanel-block::placeholder{
  color: #060606;
}

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

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

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

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

.form-button{
  border: 3px solid #060606;
  color: #060606;
  margin: 0 auto;
}

.form-button:hover{
  background-color: #060606;
  color: #fff;
}

.form-button:hover svg{
  fill: #fff;
}

.form-button svg{
  fill: #060606;
}

.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(creativecove/bg/bg-all-469287bcd1bb23.jpg);
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

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

.footer-top{
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.logo-footer{
  margin: 0 auto;
}

.logoImg-footer img{
  max-height: 40px;
  object-fit: contain;
  width: 50px;
}

.logo-footer a{
  color: #fff; 
  display: flex; 
  flex-direction: row;
  align-items: center; 
  gap: 11px;
  transition: 0.3s ease;
}

.logo-footer a:hover{
  opacity: 0.5;
}

.logoTitle-footer h2{
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  margin: 0;
}

.disclaimer{
  border-radius: 27px;
  background: var(--cq-2);
  gap: 27px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 27px;
}

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

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

.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{
  border-top: 0.1px solid #f5f5f5;
  padding-top: 27px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}

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

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

.playing-block{
  padding: 49px 0;
  width: 100%;
  height: 100vh;
}

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

.art-cont {
  padding: 52px 0;
}

.art-cont-title {
  margin: 52px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 4vw, 30px);
  color: #fff;
}

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

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

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

.art-block-content ul {
  list-style: inside;
}
.contacts-page{
  display: flex;
  flex-direction: row;
  gap: 52px;
  padding: 52px 0;
}

.kontact-form{
  flex: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 27px;
  background-color: #fff;
  padding: 27px;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  text-transform: uppercase;
  margin-bottom: 27px;
  text-align: center;
  color: #060606;
  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%;
  border-radius: 27px;
  border: none;
  border: 2px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  padding: 19px; 
  font-size: 14px; 
  line-height: 19px;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 27px;
  border: none;
  border: 2px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  padding: 19px; 
  font-size: 14px; 
  line-height: 19px; 
  resize: vertical;
  min-height: 49px;
  max-height: 132px;
}

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

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  color: #060606;
}

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

.contacts-box{
  flex: 1;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 27px;
}

.contacts-box h2{
  text-transform: uppercase;
  color: #fff;  
  font-size: clamp(22px, 4vw, 30px);
}

.contacts-card{
  margin: 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

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

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

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

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

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

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

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

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

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

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

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

.navigation-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding: 15px;
  background: #060606;
  transform: translateX(-110%);
  transition: transform 0.5s;
}

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

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

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

.navigation-panel li {
  padding-bottom: 11px;
  border-bottom: 0.1px solid #2b282e;
  list-style-type: none;
}

.nav-link {
  text-align: center;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

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

.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 1199px){
  .catalog__box{
    padding: 0;
  }

  .catalog__box a h5{
    font-size: clamp(18px, 4vw, 22px);
  }
}

@media (max-width: 991px) {
  .about-us__images{
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us__images img:nth-child(1){
    display: none;
  }

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

  .catalog__block{
    flex-direction: column;
    align-items: stretch;
    gap: 27px;
  }

  .catalog__img-link img{
    border-radius: 27px;
    margin: 0 auto;
    object-fit: cover;
    width: 90%;
    height: 386px;
  }

  .catalog-column{
    gap: 52px;
  }

  .catalog__block:nth-child(1), .catalog__block:nth-child(3), .catalog__block:nth-child(5){
    flex-direction: column-reverse;
  }

  .step-game__empty{
    display: none;
  }

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

  .gallery-slide{
    flex: 0 0 calc(100% / 2);
  }

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

  .form-img{
    display: none;
  }

  .hero-content{
    width: 90%;
  }

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

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

@media (max-width: 767px) {
  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .about-us__images img:nth-child(2){
    display: none;
  }

  .about-us__images{
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

  .gallery-slide{
    flex: 0 0 calc(100% / 1);
  }

  .navigation{
    display: none;
  }

  .burger-toggle{
    display: block;
  }

  .header{
    flex-direction: row;
  }

  .playing-block{
    height: 100vh;
  }
}

@media (max-width: 576px){
  .navigation-panel{
    width: 100%;
  }
}



  .footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
