@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

:root {

  --bq-1: #ff124f; 

  --bq-2: #ff00a0; 

  --bq-3: #fe75fe; 

  --bq-4: #7a04eb; 

  --bq-5: #120458; 

  --bg-1: #990026; 

  --bg-2: #a10066; 

  --bg-3: #910091; 

  --bg-4: #450085; 

  --bg-5: #7054ff; 
}


*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.flex-column{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
}

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

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-main{
  width: auto;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
 flex-wrap: wrap;
  padding: 20px;
}

.footer-logos a img {
  max-height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 576px){
.footer-logos a img {
  height: 30px;
}
}

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

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

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

.page-privacy{
  position: relative;
  z-index: 2;
  padding: 56px 0;
  overflow: hidden;
  width: 100%;
}

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

.page-privacy li{
  list-style: inside;
}

.header{
  padding: 56px 0;
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-direction: row;
}

.header-nav{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.navigation__link{
  flex: 1;
  display: flex;
  align-items: center;
  text-shadow: 4px 4px 30px rgba(238, 244, 246, 0.1);
  border: 1px solid var(--bg-3);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-transform: uppercase;
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
  padding: 11px 19px ;
  color: #fff;
  transition: 0.3s ease;
  font-size: clamp(20px, 4vw, 25px);
}

.navigation__link:nth-child(1){
  background-color: var(--bg-3);
}

.navigation__link:hover{
  background-color: var(--bg-3);
}

.header-hero{
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 25px;
  background-color: var(--bg-3);
  flex: 3;
  position: relative;
}

.hero-img{
  opacity: 0.8;
  filter: drop-shadow(2px 4px 6px black);
  z-index: 1;
  position: absolute;
  min-height: 50vh;
  object-fit: contain;
  top: 45px;
  right: 45px;
}

.header-content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

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

.logo:hover{
  opacity: 0.5;
}

.logo__image {
  object-fit: contain;
  width: 56px;
}

.logo__title {
  text-shadow: 4px 4px 30px rgba(238, 244, 246, 0.1);
  flex: 1;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.header-content h5{
  padding: 0;
  margin: 0;
  text-shadow: 4px 4px 30px rgba(238, 244, 246, 0.1);
  font-weight: normal;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.main-button {
  background-color: #f5f5f5;
  border: 3px solid #060606;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 1.25em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 13px;
}
 
.main-button::before {
content: " ";
width: 1.5625rem;
height: 2px;
background: #060606;
top: 50%;
left: 1.5em;
position: absolute;
transform: translateY(-50%);
transform-origin: center;
transition: background 0.3s linear, width 0.3s linear;
}

.main-button .text {
font-size: 1.125em;
line-height: 1.33333em;
padding-left: 2em;
display: block;
text-align: left;
transition: all 0.3s ease-in-out;
text-transform: uppercase;
text-decoration: none;
color: #060606;
}

.main-button .top-key {
height: 2px;
width: 1.5625rem;
top: -2px;
left: 0.625rem;
position: absolute;
background: #fff;
transition: width 0.5s ease-out, left 0.3s ease-out;
}

.main-button .bottom-key-1 {
height: 2px;
width: 1.5625rem;
right: 1.875rem;
bottom: -2px;
position: absolute;
background: #fff;
transition: width 0.5s ease-out, right 0.3s ease-out;
}

.main-button .bottom-key-2 {
height: 2px;
width: 0.625rem;
right: 0.625rem;
bottom: -2px;
position: absolute;
background: #fff;
transition: width 0.5s ease-out, right 0.3s ease-out;
}

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

.main-button:hover::before {
width: 0.9375rem;
background: white;
}

.main-button:hover .text {
color: white;
padding-left: 1.5em;
}

.main-button:hover .top-key {
left: -2px;
width: 0px;
}

.main-button:hover .bottom-key-1,
.main-button:hover .bottom-key-2 {
right: 0;
width: 0;
}

.aboutus{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 56px;
  padding: 56px 0;
}

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

.aboutus__content{
  text-align: center;
  opacity: 0.7;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.game-block{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 56px 0;
}

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

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

.game-card{
  border: 2px solid var(--bg-3);
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
  padding: 11px;
  position: relative;
}

.games-img{
  position: relative;
}

.games-img img{
  filter: brightness(0.5);
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
  width: 100%;
  object-fit: cover;
  height: 327px;
}

.game-content{
  padding: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

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

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

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

.game-rating svg{
  width: 25px;
  height: 25px;
  fill: gold;
}

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

.catrgory-block{
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: 56px;
  padding: 56px 0;
}

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

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

.category-card{
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: var(--bg-3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.category-img img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 100%;
  height: 243px;
  object-fit: cover;
}

.category-content{
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 11px;
}

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

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

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

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

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

.benefit-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-direction: row;
}

.benefit-images{
  flex: 1;
}

.benefit-images img{
  filter: drop-shadow(2px 4px 6px black);
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 70vh;
}

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

.benefit-card{
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 19px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bg-3);
  border-radius: 19px;
  padding: 25px;
}

.benefit-icon{
  background-color: #06060633;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  padding: 19px;
}

.benefit-icon img{
  filter: drop-shadow(2px 4px 6px black);
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery{
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-direction: column;
  padding: 56px 0;
}

.gallery-box{
  flex: 1;
  display: flex;
  gap: 25px;
  flex-direction: row;
}

.gallery-img{
  flex: 1;
}

.gallery-img img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.3s ease;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-content{
  flex: 1;
  display: flex;
  gap: 25px;
  flex-direction: column-reverse;
}

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

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

.workers-content{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.workers-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background-color: var(--bg-3);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  padding: 28px;
}

.workers-card img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 100%;
  height: 243px;
  object-fit: cover;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.workers-text{
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
}

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

.workers-text p{
  line-height: normal;
  padding: 0;
  opacity: 0.7;
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
}

.form__block{
  display: flex;
  gap: 56px;
  justify-content: space-between;
  flex-direction: row;
  padding: 56px 0;
}

.video-box{
  flex: 1;
}

.video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.form-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

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

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

.input-container .input-group__group_part {
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: 0.3s ease;
  color: #060606;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bg-3);
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-container .textarea-group__group_part {
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: 0.3s ease;
  color: #060606;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bg-3);  
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 38px;
  max-height: 113px;
}

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

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

.input-container .input-group__group_part:hover::placeholder, .input-container .textarea-group__group_part:hover::placeholder{
  color: #060606;
}

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

.input-container .input-group__group_part:focus::placeholder, .input-container .textarea-group__group_part:focus::placeholder{
  color: #060606;
}

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

.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{
  background: var(--bg-3);
}

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

.footer-top{
  display: flex;
  flex-direction: row;
  gap: 38px;
  justify-content: space-between;  
}

.logo-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.logo-footer h5{
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  background-color: #06060633;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  padding: 19px;
  font-weight: normal;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

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

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

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

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

.privacy {
  flex: 1;
}

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

.privacy ul li{
  padding: 0;
}

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

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

.contacts-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contacts-footer h2{
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: bold;
}

.contacts-footer-box{
  display: flex;
  flex-direction: column;
  gap: 19px;
}

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

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

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

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

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

.disclaimer{
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  background-color: red;
  gap: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
}

.disclaimer h2{
  padding: 0;
  margin: 0;
  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;
}

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

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

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

.news-article {
  z-index: 2;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
}

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

.news-article__wrapper {
  display: flex;
  flex-direction: row;
  gap: 38px;
  position: relative;
}

.news-article__image {
  position: relative;
  flex: 1;
}

.news-article__image img {
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  object-fit: contain;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;  
  width: 100%;
  position: sticky;
  top: 29%;
}

.news-article__text {
  color: #fff;
  flex: 2;
  font-size: clamp(16px, 4vw, 18px);
}

.news-article__text ul {
  list-style: inside;
}

.embedded-game {
  height: 100vh;  
  width: 100%;
}

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

.contacts-page{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 56px 0;
}

.kontact-form{
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.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%;
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: 0.3s ease;
  color: #060606;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bg-3);
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: 0.3s ease;
  color: #060606;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bg-3);  
  padding: 19px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 20px; 
  resize: vertical;
  min-height: 38px;
  max-height: 113px;
}

.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: #060606;
}

.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: #060606;
}

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

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

.contacts-card{
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;  
  background-color: var(--bg-3);  
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

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

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

.menu-mobile{
  direction: initial;
  display: none;
  position: fixed;
  z-index: 5;
  top: 25px;
  right: 25px;
}

.menu-toggle {
  border-radius: 50%;
  background-color: #fff;
  padding: 25px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 100;
}

.menu-line {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-3);
  transition: all 0.5s;
}

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

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

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

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

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

.menu-wrapper {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 19px;
  background: var(--bg-3);  
  transform: translateY(-110%);
  transition: transform 0.5s;
}

.menu-wrapper.active {
  transform: translateY(0);
}

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

.menu-wrapper ul {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  padding: 0;
}

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

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

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

@media (max-width: 1199px){
  .workers-content{
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .header-nav{
    display: none;
  }

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

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

  .benefit-box{
    flex-direction: column-reverse;
  }

  .gallery{
    flex-direction: column-reverse;
  }

  .form__block{
    flex-direction: column-reverse;
  }

  .video-box video{
    max-height: 70vh;
  }

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

  .privacy ul{
    align-items: start;
  }

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

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

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

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

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

  .news-article__wrapper{
    flex-direction: column;
  }

  .news-article__image img{
    position: relative;
    top: 0;
  }

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

@media (max-width: 576px){
  .hero-img{
   display: none;
  }

  .gallery-box{
    flex-direction: column-reverse;
  }

  .gallery-img img{
    height: 243px;
  }

  .gallery-box:nth-child(2){
    display: none;
  }
}


