@import url('https://fonts.googleapis.com/css2?family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {
  --bq-1: #2E4600; 
  --bq-2: #486B00; 
  --bq-3: #A2C523; 
  --bq-4: #2C7873; 
  --bq-5: #6FB98F; 
}


*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  min-height: 100vh;
  background-color: var(--bq-1);
  direction: ltr;
  font-family: 'Rokkitt', sans-serif !important;
  font-size: clamp(12px, 4vw, 16px);
  margin: 0;
  padding: 0;
  line-height: 1.4;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/background/opacity_bg-0686ffba666089.png);
  background-position: center;
  background-size: cover;
  filter: drop-shadow(2px 4px 6px #040807);
  background-attachment: fixed;
  z-index: -1;
}

p, li{
  line-height: 1.4;
}

li{
  margin: 0 5px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

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

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

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

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

.page-privacy{
  padding: 74px 0;
  overflow: hidden;
  width: 100%;
}
.page-privacy li {
  list-style: disc;
}

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

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

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

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

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

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

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

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

.menu-toggle {
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 3;
}

.menu-toggle span {
  width: 21px;
  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);
}

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

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

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

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

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

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

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

.main-button {
  direction: initial;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 5px;
  padding-inline: 21px;
  background-color: #fff;
  border-radius: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bq-1);
  gap: 13px;
  font-weight: bold;
  border: 2px solid rgba(200, 200, 200, 0.8);
  outline: none;
  overflow: hidden;
  font-size: clamp(16px, 4vw, 18px);
}

.main-button .icon {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}

.main-button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.main-button:hover .icon {
  transform: translate(4px);
}

.main-button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.main-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(200, 200, 200, 0) 30%,
    rgba(200, 200, 200, 0.8),
    rgba(200, 200, 200, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.header-hero{
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-direction: row;
  padding-bottom: 74px;
  padding-top: 28px;
}

.header-box{
  flex: 2;
  display: flex;
  gap: 28px;
  flex-direction: column;
}

.header-content{
  line-height: normal;
  background-color: #04080733;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}

.header-content h2{
  padding: 0;
  margin: 0;
  font-size: clamp(44px, 4vw, 53px);
  color: #fff;
}

.header-content p{
  padding: 0;
  margin: 0;
  font-size: clamp(18px, 4vw, 19px);
  color: #fff;
  opacity: 0.7;
}

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

.header-img{
  flex: 1;
}

.header-img img{
  width: 100%;
  height: 100%;
  filter: brightness(0.8);
  object-fit: cover;
  border-radius: 28px;
}

.header-images{
  flex: 1;
  position: relative;
}

.header-images img{
  filter: brightness(0.8);
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.play-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 28px;
  transition: 1s ease;
  cursor: pointer;
}

.play-btn svg {
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 5px;
  transition: 1s ease;
  width: 74px;
  height: 74px;
  fill: #fff;
}

.play-btn:hover svg{
  opacity: 0.5;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow: auto;
}

.overlay video {
  border-radius: 15px;
  width: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-btn {
  transition: 0.3s ease;
  position: absolute;
  top: 28px;
  right: 28px;
  color: #fff;
  cursor: pointer;
}

.close-btn svg {
  transition: 0.3s ease;
  width: 28px;
  height: 28px;
  fill: #fff;
}

.close-btn:hover svg{
  opacity: 0.5;
}

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

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

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

.aboutus__title{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

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

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

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

.aboutus-rating{
  flex: 1;
  display: flex;
  gap: 28px;
  flex-direction: column;
}

.rating-card{
  transition: 0.5s ease;
  background-color: #040807b3;
  padding: 28px;
  border-radius: 28px;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
}

.rating-card:hover{
  background-color: var(--bq-1);
}

.rating-card_bg{
  background-color: var(--bq-1) !important;
}

.rating-card h5{
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

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

.rating-box{
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-direction: row;
}

.aboutus-box{
  background-color: #040807b3;
  padding: 28px;
  border-radius: 28px;
  flex: 1;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-direction: row;
}

.aboutus-text{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}

.aboutus__subtitle{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.7;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}
.aboutus__subtitle2 {
  display: block;
}
.aboutus-img{
  flex: 1;
}

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

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

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

.benefit-content{
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.benefit-box{
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-direction: row;
}

.benefit-img{
  flex: 1;
}

.benefit-img img{
  width: 100%;
  filter: brightness(0.8);
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.benefit-card{
  flex: 2;
  display: flex;
  gap: 28px;
  flex-direction: column;
}

.benefit-card h5{
  font-weight: normal;
  flex: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 4vw, 28px);
  background-color: #04080733;
  padding: 28px;
  border-radius: 28px;
}

.benefit-images{
  flex: 1;
}

.benefit-images img{
  max-height: 30vh;
  width: 100%;
  filter: brightness(0.8);
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.step-game__back{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.step-game__back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/background/bg-all-1686ffba666002.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.step-game{
  display: flex;
  flex-direction: row;
  gap: 74px;
  padding: 74px 0;
}

.step-game__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.step-game__content h2{
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.step-game__box{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-game__card{
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 2px solid #ffffff33;
  padding-bottom: 15px;
  gap: 13px;
}

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

.step-game__card p{
  line-height: normal;
  text-align: center;
  flex: 1;
  color: #fff;
  font-size: clamp(18px, 4vw, 19px);
  padding: 0;
  margin: 0;
}

.step-game__img{
  flex: 1;
}

.step-game__img img{
  width: 100%;
  filter: brightness(0.8);
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

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

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

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

.games-item{
  border-radius: 28px;
  transition: 0.5s ease;
  overflow: hidden;
  position: relative;
}

.games-img{
  position: relative;
}

.games-img img{
  border-radius: 28px;
  transition: 0.5s ease;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  height: 368px;
}

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

.games-box{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
}

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

.games-title:hover{
  color: var(--bq-1);
}

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

.menu-game{
  padding: 74px 0;
  display: none;
  flex-direction: column;
  gap: 74px;
}

.menu-game h2{
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.menu-game__content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu-game__card{
  transition: 0.5s ease;
  background-color: #04080733;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-direction: row;
}

.menu-game__card:hover{
  transform: scale(1.05);
}

.menu-game__img{
  flex: 1;
}

.menu-game__img img{
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  height: 253px;
}

.menu-game__box{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}

.menu-game__title{
  line-height: normal;
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

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

.menu-game__box p{
  opacity: 0.7;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.gallery-block{
  padding: 74px 0;
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.gallery-block h2{
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
}

.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.gallery-img{
  transition: 0.5s ease;
}

.gallery-img img{
  transition: 0.5s ease;
  width: 100%;
  height: 397px;
  object-fit: cover;
  border-radius: 28px;
  filter: grayscale(1);
}

.gallery-img:hover img{
  transform: scale(1.1);
  filter: grayscale(0);
}

.form__lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 74px 0;
}

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

.form-main{
  width: 50%;
  background-color: var(--bq-1);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

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

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

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

.input-container .input-main__element--element, .input-container .textarea-main__element--element {
  outline: none;
  margin: 5px 0;
}

.input-container .input-main__element--element {
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.21);
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-container .textarea-main__element--element {
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.21);  
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 44px;
  max-height: 111px;
}

.input-container .input-main__element--element::placeholder, .input-container .textarea-main__element--element::placeholder{
  color: #fff;
  transition: 0.3s ease;
}

.input-container .input-main__element--element:hover, .input-container .textarea-main__element--element:hover{
  background-color: #fff;
}

.input-container .input-main__element--element:hover::placeholder, .input-container .textarea-main__element--element:hover::placeholder{
  color: #040807;
}

.input-container .input-main__element--element:focus, .input-container .textarea-main__element--element:focus{
  background-color: #fff;
}

.input-container .input-main__element--element:focus::placeholder, .input-container .textarea-main__element--element:focus::placeholder{
  color: #040807;
}

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

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

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
  padding: 13px 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-back{
  background-color: #04080733;
}

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

.footer-top{
  border-bottom: 2px dashed #fff;
  align-items: center;
  justify-content: center;
  padding: 74px 0;
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.disclaimer{
  background: radial-gradient(
    circle,
    rgba(255, 223, 100, 0.9) 0%,  
    rgba(255, 183, 0, 0.8) 30%,   
    rgba(34, 139, 34, 0.7) 60%,  
    rgba(0, 100, 0, 0.9) 100%    
);
  border: 2px solid rgba(255, 255, 255, 0.5); 
  border-radius: 15px;
  gap: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px;
}

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

.disclaimer p{
  margin: 0;
  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: 15px;
}

.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{
  justify-content: center;
  padding: 28px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

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

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

.flex-column{
  display: flex;
  margin-bottom: 21px;
  gap: 74px;
  flex-direction: column;
}

.playing-block{
  width: 100%;
  height: 503px;
}

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

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

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

.art-block-images {
  border-radius: 28px;
  float: right;
  width: 40%;
  margin: 44px;
  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-page{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 74px;
  padding: 74px 0;
}

.kontact-form{
  position: relative;
  z-index: 1;
  background-color: #04080733;  
  border-radius: 28px;
  padding: 28px;
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.21);
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.21);  
  padding: 15px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 44px;
  max-height: 111px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #fff;
  transition: 0.3s ease;
}

.input-kontact-form .inputs-kontact:hover, .input-kontact-form .textarea-kontact:hover{
  background-color: #fff;
}

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

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

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

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

.contacts-card{
  transition: 0.5s ease;
  padding: 21px;
  background-color: #04080733;
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
}

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

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

.contacts-card a{
  flex: 1;
}

.contacts-card a h5{
  padding: 0;
  margin: 0;
  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{
  padding: 0;
  margin: 0;
  word-break: break-all;
  flex: 1;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

@media (max-width: 1199px){
  .aboutus-content{
    flex-direction: column;
  }
}

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

  .benefit-img{
    display: none;
  }

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

  .step-game__img img{
    max-height: 60vh;
  }

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

  .menu-game__content{
    grid-template-columns: repeat(1, 1fr);
  }

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

  .form-main{
    width: 100%;
  }

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

  .benefit-images img{
    max-height: 50vh;
  }

  .benefit-content{
    gap: 28px;
  }

  .contacts-page{
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .header-images img{
    max-height: 60vh;
  }

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

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

  .menu-game__card{
    flex-direction: column;
  }
  
  .aboutus__title{
    align-items: start;
    flex-direction: column;
  }

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

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

  .step-game__card{
    align-items: start;
    flex-direction: column;
  }

  .step-game__card p{
    text-align: unset;
  }

  .playing-block{
    height: 100vh;
  }

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

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

@media (max-width: 576px){

}


