@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root{
  --cb-1: linear-gradient(150deg, #ff6b6b, #f7b32b 80%);
  --cb-2: linear-gradient(150deg, #43cea2, #185a9d 80%);
  --cb-3: linear-gradient(150deg, #8e2de2, #4a00e0 80%);
  --cb-4: linear-gradient(150deg, #ff9966, #ff5e62 80%);
  --cb-5: linear-gradient(150deg, #00c6ff, #0072ff 80%);

  --cq-1: linear-gradient(45deg, #130228 30%, #091e31);
  --cq-2: linear-gradient(135deg, #0d1b0e, #1a3b34);
  --cq-3: linear-gradient(120deg, #0b0f1d, #342353);
  --cq-4: linear-gradient(150deg, #2b0202, #501414);
  --cq-5: linear-gradient(60deg, #1e1e2c, #3a405a);
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #202040;
  direction: ltr;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

.page-privacy a:hover{
  color: #fff;
  opacity: 0.5;
}
.page-privacy ul {
  margin: 0px 22px;
  list-style: square;
}
.header-lay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

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

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

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

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

.logoTitle h2{
  font-size: 18px;
  margin: 0;
}

.logo a:hover{
  opacity: 0.5;
}

.header-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  position: relative; 
}

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

.topmenu-link {
  font-size: 18px;
  color: #fff; 
  text-decoration: none;
  padding: 13px 20px; 
  display: block;
  transition: 0.2s ease;
  position: relative; 
}

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

.submenu {
  position: absolute;
  top: 100%;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;  left: 0;
  background-color: #060606;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.2s ease 0s forwards;
  transition: all 0.2s ease;
}

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

.submenu-a {
  font-size: clamp(14px, 4vw, 16px);
  color: #fff;
  padding: 9px 20px;
  display: block;
  transition: 0.2s ease;
}

.submenu-a:hover {
  color: #009A44;
}

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

.fixed-header {
  background-color: #009A44;
  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.8s ease, background-color 0.8s ease; 
}

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

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

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

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

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

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

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

.navigation-container {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #009A44;
  transform: translateY(-110%);
  transition: transform 0.4s; 
}

.navigation-container.open {
  transform: translateY(0);
}

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

.navigation-container ul {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}

.navigation-container li {
  list-style-type: none;
}

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

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

.main-button{
  border: 2px solid #fff;
  cursor: pointer;
  font-weight: bold;
  border-radius: 20px;
  transition: 0.4s ease;
  padding: 13px 29px;
  font-size: 18px;
  text-align: center;
  background-color: #009A44;
  color: #fff;
}

.main-button:hover{
  border: 2px solid #009A44;
  color: #009A44;
  background-color: #fff;
}

.header-contents-lay{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--cb-1);
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
}

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

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

.header-contents h2{
  font-weight: normal;
  padding: 0;
  color: #fff;
  font-size: 19px;
  
}

.header-contents p{
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
  color: #fff;
  font-size: clamp(22px, 4vw, 34px);
}

.header-contents-stats{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
}

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

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

.stats-card h5{
  font-weight: normal;
  opacity: 0.8;
  color: #fff;
  font-size: 18px;
}

.header-contents-img {
  position: relative;
  flex: 1;
}

.header-contents-img img {
  animation: zoomInOut 4s ease-in-out infinite;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  position: relative; 
  z-index: 1;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.wrapper {
  overflow: hidden;
  position: absolute;
  display: block;
  width: 800px;
  height: 800px;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  transition: 2s ease;
  z-index: 0; 
}

.arc:before, .arc:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid #000;
  top: -4px;
  left: -4px;
  border-color: hsl(160, 70%, 50%) transparent transparent transparent;
  border-radius: 50%;
  z-index: -8;
  content: "";
}

.arc:after {
  border-color: transparent transparent hsl(345, 70%, 50%) transparent;
}

.arc {
  position: absolute;
  display: block;
  width: 85%;
  height: 85%;
  margin: 7.5%;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(810deg);
  }
}

.dev-gembla{
  display: flex;
  flex-direction: column;
  gap: 78px;
  padding: 78px 0;
}

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

.dev-gembla-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.dev-gembla-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dev-gembla-img{
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.dev-gembla-img img{
  border-radius: 30px;
  transform: scale(1);
  transition: 0.4s ease;
  width: 100%;
  min-height: 357px;
  object-fit: cover;
}

.dev-gembla-img img:hover{
  transform: scale(1.1);
}

.dev-gembla-texts{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}

.dev-gembla-texts h5{
  -webkit-text-fill-color: transparent;
  background: var(--cb-1);
  -webkit-background-clip: text;
  display: inline-block;
  font-size: clamp(22px, 4vw, 30px);
}

.dev-gembla-texts p{
  padding: 0;
  color: #fff;
  font-size: 18px;
}

.about-us-lay{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--cq-1);
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 4rem;
  border-top-right-radius: 4rem;
}

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

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

.about-us-img img{
  animation: zoomInOut 4s ease-in-out infinite;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
}

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

.about-us-text h2{
  -webkit-text-fill-color: transparent;
  background: var(--cb-1);
  -webkit-background-clip: text;
  display: inline-block;
  font-size: clamp(22px, 4vw, 50px);
}

.about-us-p{
  font-weight: normal;
  color: #fff;  
  font-size: 18px;
  padding: 0;
}

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

.about-us-gallery img{
  border-radius: 30px;
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.step-game{
  direction: initial;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 91px;
  padding: 91px 0;
}

.step-game-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 34px;
}

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

.step-game-boxs{
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.step-game-boxs::before{
  content: "";
  position: absolute;
  height: 100%;
  border-left: 2px dashed rgba(255, 255, 255, 0.9);
}

.step-game-cards{
  position: relative;
  margin-left: 30px;
  padding: 30px 19px;
  border-radius: 30px;
  background: var(--cb-1);
}

.line{
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.line::after, .line::before{
  content: "";
  position: absolute;
  left: -0.35rem;
  top: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #02c0ca;
}

.line::after{
  top: 100%;
}

.line strong{
  color: #fff;
  position: absolute;
  font-size: 0.6rem;
  left: -4rem;
}

.line strong:first-child{
  top: 0;
}

.line strong:last-child{
  top: 100%;
}

.step-card-txt h5{
  color: #fff;
  font-size: clamp(18px, 4vw, 19px);
}

.games-catalog-lay{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--cq-1);
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 4rem;
  border-top-right-radius: 4rem;
}

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

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

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

.games-catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.games-catalog-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  min-height: 357px;
  object-fit: cover;
  display: block;
}

.games-catalog-text {
  border-radius: 30px;
  border-top-right-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--cb-1);
  color: #fff;
  padding: 20px;
  transition: transform 0.4s ease;
  transform: translateY(0);
  overflow: hidden; 
}

.games-catalog-text a h5 {
  transition: 0.2s ease;
  margin: 0;
  font-size: 18px;
}

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

.games-catalog-text p {
  display: -webkit-box;      
  -webkit-box-orient: vertical; 
  overflow: hidden;           
  text-overflow: ellipsis;    
  -webkit-line-clamp: 3;     
  line-clamp: 3; 
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  font-size: clamp(14px, 4vw, 16px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.4s ease, margin 0.2s ease; 
}

.games-catalog-text:hover p {
  margin: 13px 0 0;
  opacity: 1;
  max-height: 170px; 
}

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

.faq-img{
  flex: 1;
  width: 100%;
  height: 100%;
}

.faq-img img{
  border-radius: 30px;
  animation: zoomInOut 4s ease-in-out infinite;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.faq {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 78px;
}

.faq h2 {
  -webkit-text-fill-color: transparent;
  background: var(--cb-1);
  -webkit-background-clip: text;
  display: inline-block;
  font-size: clamp(22px, 4vw, 50px);
}

.faq-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.faq-block {
  border-bottom: 0.1px solid grey;
}

.faq-block h5 {
  margin: 0;
  cursor: pointer;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  color: #fff;
  transition: color 0.2s ease;
}

.faq-block svg{
  width: 29px;
  height: 29px;
}

.faq-block.open h5 {
  color: #009A44; 
}

.faq-block.open {
  border-bottom: none; 
}

.faq-block.open svg {
  fill: #009A44; 
}

.answer {
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

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

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

.form-block{
  width: 80%;
  margin: 0 auto;
  padding: 78px 0;  
  display: flex;
  flex-direction: column;
  gap: 78px;
}

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

.osn-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-formelement--block, .input-container .textarea-formelement--block {
  outline: none;
  margin: 8px 0;
}

.input-container .input-formelement--block {
  border-radius: 30px;
  color: #060606;
  background-color: #fff;
  border: 2px solid #fff;
  outline-color: transparent;
  padding: 19px;
  font-size: 13px;
  line-height: 1.25rem;
}

.input-container .textarea-formelement--block {
  border-radius: 30px;
  color: #060606;
  background-color: #fff;
  border: 2px solid #fff;
  outline-color: transparent;
  padding: 19px;
  font-size: 13px;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 34px;
  max-height: 117px;
}

.input-container .input-formelement--block::placeholder, .input-container .textarea-formelement--block::placeholder{
  color: #383c4e;
}

.check{
  transition: 0.2s 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: 15px 0;
}

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

.form-button{
  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.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  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.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.4s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.4s 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{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--cq-1);
  background-position: center;
  background-size: cover;
}

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

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

.logo-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 29px;
}

.logo-footer h5{
  font-weight: normal;
  color: #fff;
  font-size: 18px;
}

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

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

.logoTitle-footer h2{
  -webkit-text-fill-color: transparent;
  background: var(--cb-1);
  -webkit-background-clip: text;
  display: inline-block;
  font-size: 19px;
  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: 20px;
}

.privacy ul li{
  padding: 0;
}

.privacy ul li a {
  font-size: 18px;
  transition: 0.2s 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: 29px;
}

.contacts-footer h2{
  -webkit-text-fill-color: transparent;
  background: var(--cb-1);
  -webkit-background-clip: text;
  display: inline-block;
  font-size: 19px;
  font-weight: bold;
}

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

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

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

.contacts-card a h5{
  flex: 1;
  transition: 0.2s ease;
  font-size: 18px;
  color: #fff;
}

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

.contacts-card h5{
  flex: 1;
  font-size: 18px;
  color: #fff;
}

.disclaimer{
  background-color: #971616;
  gap: 29px;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 29px;
}

.disclaimer h2{
  text-transform: uppercase;
  font-size: 19px;
  color: #fff;
}

.disclaimer p{
  padding: 0;
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
}

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

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: 18px;
}

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

.playing-block{
  margin: 0 auto;
  padding: 34px 15px;
  width: 100%;
  max-width: 960px;
  height: 609px;
}

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

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

.art-cont-title {
  margin: 78px 0;
  text-align: center;
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
}
.player-rnd{
  display: flex;
  flex-direction: column;
  gap:30px;
}

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

.art-block-images {
  float: left;
  width: 35%;
  margin: 34px;
  margin-top: 0;
  margin-left: 0;
}

.art-block-content {
  color: #fff;
  font-size: 18px;
}

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

.kontact-form{
  margin: 0 auto;
  padding: 78px 0;
  width: 80%;
  display: flex;
  flex-direction: column;
}

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

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 30px;
  color: #060606;
  background-color: #fff;
  border: 2px solid #fff;
  outline-color: transparent;
  padding: 19px;
  font-size: 13px;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 30px;
  color: #060606;
  background-color: #fff;
  border: 2px solid #fff;
  outline-color: transparent;
  padding: 19px;
  font-size: 13px;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 34px;
  max-height: 117px;
}

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

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  border: 2px solid #fff;
}

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

.contacts-page{
  display: flex;
  flex-direction: column;
  gap: 78px;
  padding: 78px 0;
}

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

.contacts-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.cont-card a h5{
  flex: 1;
  transition: 0.2s ease;
  font-size: 19px;
  color: #fff;
}

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

.cont-card h5{
  flex: 1;
  font-size: 19px;
  color: #fff;
}



@media (max-width: 1199px){
  .wrapper{
    width: 500px;
    height: 500px;
  }
}

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

  .header-nav{
    display: none;
  }

  .header-contents{
    flex-direction: column;
  }

  .header-contents-text{
    text-align: center;
    align-items: center;
  }

  .header-contents-stats{
    justify-content: center;
  }

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

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

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

  .about-us-img{
    display: none;
  }

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

  .step-game-text{
    align-items: stretch;
  }

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

  .faq-wrapper{
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-block{
    width: 100%;
  }

  .kontact-form{
    width: 100%;
  }

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

  .privacy ul{
    padding: 34px 0;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    border-top: 0.1px solid #fff;
    border-bottom: 0.1px solid #fff;
  }

  .about-us-text{
    align-items: stretch;
  }

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

@media (max-width: 850px){
  .line strong{
    left: 0.7rem;
  }
}

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

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

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

  .playing-block{
    height: 100vh;
  }

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

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

  .cont-card{
    text-align: unset;
    flex-direction: row;
  }

  .contacts-page h2{
    text-align: unset;
  }
}

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

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

  .header-contents-img img{
    max-height: 40vh;
  }

  .cont-card svg{
    width: 30px;
    height: 30px;
  }
}
div#cookie-popup-box a {
    color: #2f8fa8;
}
