@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #020c15;
  direction: ltr;
  font-family: 'Teachers', sans-serif !important;
  font-size: clamp(12px, 4vw, 16px);
  margin: 0;
  padding: 0px;
  line-height: 1.4;
}

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

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

li{
  margin: 0 8px;


}

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

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

ul{
  list-style: auto;
  margin: 0;
  padding: 0;
}

.container-box{
  width: 100%;
  padding-right: 23px;
  padding-left: 23px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

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

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

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

.header-content-lay{
  position: relative;
  min-height: 80vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

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

.header-lay{
  padding: 17px 0;
}

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

.logo{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 22px;
}

.logoImg img{
  width: 55px;
}

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

.logoTitle h2{
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
}

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

.topmenu li {
  padding: 0;
  position: relative;
}

.submenu-link {
  color: #fff; 
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 12px; 
  transition: 0.3s ease;
}

.submenu-link:hover {
  color: #fff;
  opacity: 0.5;
}

.submenu {
  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: 25px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu li{
  padding: 0;
  border-bottom: 5px solid rgb(245, 244, 255);
}

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

.submenu a:hover {
  margin-left: 9px;
}

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

.fixed-header {
  background-color: #060606;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: top 0.3s ease;
}

.header-content{
  min-height: 80vh;
  display: flex;
  flex-direction:  row;
  align-items: center;
  gap: 71px;
  justify-content: space-between;
  padding: 71px 0;
}

.header-content-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 27px;
  flex: 1;
}

.header-content-text h2{
  text-transform: uppercase;
  color: #f6f7d4;
  font-size: clamp(22px, 4vw, 40px);
}

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

.link-button{
  cursor: pointer;
  position: relative;
  padding: 10px 22px;
  font-size: 16px;
  color: #f6f7d4;
  border: 2px solid #f6f7d4;
  border-radius: 33px;
  background-color: transparent;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.link-button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #f6f7d4b3;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.link-button:hover::before {
  scale: 3;
}

.link-button:hover {
  color: #060606;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

.link-button:active {
  scale: 1;
}

.header-content-img{
  flex: 1;
}

.header-content-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-to-top {
  position: fixed;
  bottom: 17px;
  right: 17px;
  display: none;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.scroll-to-top svg{
  transition: 0.3s ease;
  width: 55px;
  height: 55px;
  fill: #fff;
}

.scroll-to-top svg:hover {
  fill: #f6f7d4;
}

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

.about-us-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-169b13573ecaaa.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.3);
  z-index: -1;
}

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

.about-us-img{
  flex: 1;
}

.about-us-img img{
  max-height: 80vh;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-us-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 27px;
  flex: 1;
}

.about-us-text h2{
  text-transform: uppercase;
  color: #f6f7d4;
  font-size: clamp(22px, 4vw, 40px);
}

.about-us-box{
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: clamp(13px, 4vw, 16px);
}

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

.stats-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-269b13573ecada.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.5);
  z-index: -1;
}

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

.stats-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
}

.stats-card h1{
  text-transform: uppercase;
  color: #f6f7d4;
  font-size: clamp(22px, 4vw, 40px);
}

.stats-card h5{
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  color: #fff;
  font-size: clamp(13px, 4vw, 16px);
}

.game-catalog{
  padding: 71px 0;
}

.game-catalog-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 71px;
}

.game-catalog-title h2{
  color: #f6f7d4;
  font-size: clamp(22px, 4vw, 40px);
  text-transform: uppercase;
}

.game-catalog-title p{
  padding: 0;
  color: #fff;
  font-size: clamp(13px, 4vw, 16px);
}

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

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

.catalog-card-img img {
  width: 100%;
  height: 317px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.catalog-card-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

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

.catalog-card-description a h5:hover{
  color: #f6f7d4;
}

.game-catalog-card:hover .catalog-card-description {
  opacity: 1;
}

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

.button-catalog{
  cursor: pointer;
  position: relative;
  padding: 10px 25px;
  font-size: clamp(16px, 4vw, 16px);  
  color: #f6f7d4;
  border: 2px solid #f6f7d4;
  border-radius: 33px;
  background-color: transparent;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button-catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #f6f7d4b3;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-catalog:hover::before {
  scale: 3;
}

.button-catalog:hover {
  color: #060606;
  scale: 1.1;
  box-shadow: 0 0px 19px rgba(193, 163, 98,0.4);
}

.button-catalog:active {
  scale: 1;
}

.background-wrapper{
  height:30vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.background-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-369b13573ecb08.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.step-game{
  display: flex;
  flex-direction:row;
  align-items: center;
  gap: 71px;
  justify-content: space-between;
  padding: 71px 0;
}

.step-game-box{
  flex: 1;
}

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

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

.step-game-card{
  border: 2px solid #f6f7d4;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 17px;
}

.step-game-card svg{
  width: 50px;
  height: 50px;
  fill: #f6f7d4;
}

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

.step-game-img{
  flex: 1;
}

.step-game-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.comments-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-469b13573ecb35.jpg);
  background-position: center;
  filter: brightness(0.3);
  background-size: cover;
  z-index: -1;
}

.comments{
  padding: 71px 0;
}

.comments h2{
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 4vw, 40px);
  color: #f6f7d4;
}

.comments-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.comments-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments-card {
  background-color: #0C1924;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}

.comments-card-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 17px;
}

.comments-card-text svg{
  width: 71px;
  height: 71px;
  fill: #f6f7d4;
}

.comments-card-text p {
  font-size: clamp(13px, 4vw, 16px);
  color: #fff;
  margin: 0;
}

.comments-card-text h5 {
  font-size: clamp(16px, 4vw, 22px);
  color: #fff;
  opacity: 0.8;
  margin: 0;
}

.comments-card.active {
  opacity: 1;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.dots {
  text-align: center;
  margin-top: 19px;
}

.dot {
  border: 2px solid transparent;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #f6f7d4; 
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.dot.active {
  border: 2px solid #f6f7d4;
  background-color: #0C1924; 
}

.video-block{
  padding: 71px 0;
}

.video-block h2{
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 4vw, 40px);
  color: #f6f7d4;
}

.video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 71px 0;
}

.form-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-569b13573ecb63.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.osn-form {
  background-color: #0C1924;
  margin: 0 auto;
  padding: 50px;
  width: 60%;
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 50px;
}

.title-container h2{
  text-align: center;
  font-size: clamp(22px, 4vw, 33px);
  color: #f6f7d4;
}

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

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

.input-container .input-group--panel_element, .input-container .textarea-group--panel_element, .form button {
  outline: none;
  margin: 8px 0;
}

.input-container .input-group--panel_element {
  transition: 0.3s ease;
  color: #fff;
  background-color: transparent;
  padding: 17px;
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-group--panel_element {
  transition: 0.3s ease;
  color: #fff;
  background-color: transparent;  
  padding: 17px;
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 50px;
  max-height: 102px;
}

.input-container .input-group--panel_element:focus, .input-container .textarea-group--panel_element:focus, .input-container .input-group--panel_element:hover, .input-container .textarea-group--panel_element:hover{
  border: 2px solid #f6f7d4;
}

.input-container .input-group--panel_element::placeholder, .input-container .textarea-group--panel_element::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: 12px;
  justify-content: flex-start;
  padding: 13px 0;
}

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

.submit-form{
  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.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  -o-transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
  transition: all 0.2s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.2s;
}

.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.2s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.2s;
}

.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{
  background-color: #0C1924;
}

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

.disclaimers{
  gap: 27px;
  background-color: darkred;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 27px;
}

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

.disclaimers p{
  padding: 0;
  font-size: clamp(13px, 4vw, 16px);
  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: space-between;
  flex-direction: row;
  gap: 17px;
}

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

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

.footer-bottom-lay{
  background-color: #020c15;
}

.footer-bottom{
  flex-wrap: wrap;
  padding:  17px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
}

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

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

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

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

.page-privacy-lay{
  position: relative;
  word-break: break-all;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 71px 0;
}

.page-privacy-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-669b13573ecb90.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

.page-privacy{
  color: #fff;
  overflow: hidden;
  text-align: justify;
  width: 100%;
}

.title-politics{
  margin-bottom: 27px;
  font-size: clamp(22px, 4vw, 25px);
}

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

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

.art-cont-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap:19px ;
}

.art-cont-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-769b13573ecbbd.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-attachment: fixed;
  background-size: cover;
  z-index: -1;
}

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

.art-cont-title {
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 4vw, 25px);
  color: #f6f7d4;
}

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

.art-block-images {
  float: right;
  width: 40%;
  margin: 50px;
  margin-top: 0;
  margin-right: 0;
}

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

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

.contacts-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  padding: 82px 0;
}

.kontact-form{
  flex: 2;
  height: 100%;
  background-color: #131222;
  padding: 17px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kontact-form-title{
  margin-bottom: 27px;
}

.kontact-form-title h2{
  font-size: clamp(22px, 4vw, 33px);
  color: #f6f7d4;
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: #171627;
  padding: 17px;
  border: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: #171627;  
  padding: 17px;
  border: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 50px;
  max-height: 102px;
}

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

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

.contacts{
  flex: 1;
}

.contacts-box{
  background-color: #131222;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.contacts-card{
  background-color: #171627;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 17px;
}

.contacts-card svg{
  width: 27px;
  height: 27px;
  fill: #f6f7d4;
}

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

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

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

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

.menu-toggle span {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  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); 
}

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

.nav-panel.active {
  transform: translateY(0);
}

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

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

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

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

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


@media (max-width: 991px) {
  .header-nav{
    display: none;
  }

  .menu-toggle{
    display: block;
  }

  .header-content-img{
    display: none;
  }

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

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

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

  .step-game{
    flex-direction: column;
  }

  .comments-card{
    width: 100%;
  }

  .osn-form{
    width: 100%;
  }

  .privacy ul{
    justify-content: center;
  }

  .stats-lay::before{
    background-attachment: unset;
  }

  .form-lay::before{
    background-attachment: unset;
  }

  .page-privacy-lay::before{
    background-attachment: unset;
  }

  .art-cont-lay::before{
    background-attachment: unset;
  }

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


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

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

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

  .footer-bottom{
    text-align: center;
    flex-direction: column;
  }

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

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

  .playing-block{
    height: 100vh;
  }

  .catalog-card-description{
    opacity: 1;
  }
}

@media (max-width: 576px){
  .osn-form{
    padding: 17px;
  }
}



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