<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&amp;display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  direction: ltr;
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}

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

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

li{
  margin: 0 8px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.title-politics{
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px #080101;
  margin-bottom: 25px;
  font-size: clamp(22px, 4vw, 50px);
}
.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;
}

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

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

.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: 15px 0;
}

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

.logoImg img{
  width: 50px;
}

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

.logoTitle h2{
  font-size: clamp(16px, 4vw, 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: clamp(16px, 4vw, 18px);
  color: #fff; 
  text-decoration: none;
  padding: 15px 20px; 
  display: block;
  transition: color 0.5s ease;
  position: relative; 
}

.topmenu-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px; 
  background-color: #fff; 
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.5s ease;
}

.topmenu-link:hover::after {
  width: 100%;
}

.submenu {
  border-radius: 15px;
  position: absolute;
  top: 100%;
  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: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.3s ease 0s forwards;
  transition: all 0.3s ease;
}

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

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

.submenu-a:hover {
  color: #fff;
  background-color: #EF2143;
}

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

.fixed-header {
  background-color: #EF2143;
  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; 
}

.fixed-header .logo a{
  color: #fff !important; 
}

.fixed-header .topmenu-link{
  color: #fff !important; 
}

.fixed-header .menu__btn&gt;span, .fixed-header .menu__btn&gt;span::before, .fixed-header .menu__btn&gt;span::after{
  background-color: #fff !important;
}

.hamburger-menu{
  display: none;
}

#menu__toggle {
  opacity: 0;
}

.menu__btn {
  z-index: 12;
  display: flex;
  align-items: center;
  position: relative;
  top: -10px;
  right: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.menu__btn&gt;span,
.menu__btn&gt;span::before,
.menu__btn&gt;span::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu__btn&gt;span::before {
  content: '';
  top: -10px;
}

.menu__btn&gt;span::after {
  content: '';
  top: 8px;
}

.menu__box {
  overflow: auto;
  display: block;
  position: absolute;
  visibility: hidden;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: #fff;
}

.menu__item {
  text-align: start;
  display: block;
  padding: 12px 24px;
  color: #080101;
  text-decoration: none;
}

.menu__item-color{
  color: #fff !important;
  background-color: #EF2143 !important;
}

.submenu__item {
  padding: 0 15px;
  margin: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.submenu__link {
  text-align: start;
  display: block;
  padding: 10px 0;
  color: #200F21;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

#submenu-toggle.active + #submenu {
  max-height: 500px; 
}

.menu__item:hover {
  color: #fff;
  background-color: #EF2143;
}

#menu__toggle:checked~.menu__btn&gt;span {
  top: 0;
  transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn&gt;span::before {
  background-color: #080101 !important;
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked~.menu__btn&gt;span::after {
  background-color: #080101 !important;
  top: -2px;
  transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
  visibility: visible;
  right: 0;
}

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

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

.header-content{
  min-height: 100vh;
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 25px;
  padding: 163px 0;
}

.header-content h2{
  padding: 0;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-size: clamp(22px, 4vw, 50px);
  text-transform: uppercase;
}

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

.main-button {
  direction: initial;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  background: #EF2143;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 4vw, 18px);
}

.main-button:hover {
  background: #EF2143b3;
}

.main-button &gt; svg {
  fill: #fff;
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.main-button:hover svg {
  transform: translateX(5px);
}

.main-button:active {
  transform: scale(0.95);
}

.partners{
  padding: 77px 0;
}

.partners-box{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 77px;
}

.partners-img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

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

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

.content-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(content/background/opacity_bg-067daaaa9e45d8.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.about{
  direction: initial;
  display: flex;
  align-items: center;
  gap: 77px;
  flex-direction: row;
  padding: 77px 0;
}

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

.title-box{
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}

.title-box h2{
  color: transparent;
  -webkit-text-stroke: 1px #080101;
  font-size: clamp(22px, 4vw, 30px);
}

.title-box img{
  width: 128px;
  height: 100%;
  object-fit: contain;
}

.about-us-p{
  opacity: 0.8;
  font-weight: normal;
  color: #080101;  
  font-size: clamp(14px, 4vw, 16px);
}

.about-img{
  flex: 1;
}

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

.player-block{
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 77px 0;
}

.player{
  padding: 0 77px;
  flex: 1;
}

.player-box{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

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

.step-game-card{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.step-game-card svg{
  fill: #EF2143;
  width: 47px;
  height: 47px;
}

.step-game-card h5{
  flex: 1;
  font-weight: normal;
  opacity: 0.8;
  color: #080101;
  font-size: clamp(14px, 4vw, 16px);
}

.player-video-box{
  flex: 1;
  display: flex;
  flex-direction: row;
}

.player-video{
  flex: 1;
  height: 591px;
}

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

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

.wrapper-img{
  direction: initial;
  margin: 47px 0;
  padding: 47px 0;
  min-height: 50vh;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

.wrapper-img h2{
  text-align: center;
  padding: 0;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-size: clamp(22px, 4vw, 50px);
  text-transform: uppercase;
}

.catalog-game{
  display: flex;
  flex-direction: column;
  gap: 47px;
  padding: 47px 0;
}

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

.catalog-game-card{
  transition: 0.5s ease;
  overflow: hidden;
  position: relative;
}

.catalog-game-img{
  filter: brightness(0.5);
  position: relative;
}

.catalog-game-img img{
  transform: scale(1);
  filter: blur(0);
  transition: 0.5s ease;
  width: 100%;
  height: 346px;
  object-fit: cover;
}

.catalog-game-card:hover .catalog-game-img img{
  transform: scale(1.05);
  filter: blur(7px);
}

.catalog-game-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  left: 0;
  padding: 20px;
  position: absolute;
  bottom: 0;
}

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

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

.catalog-game-text p{
  padding: 0;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  overflow: hidden;
  color: #fff;
  font-size: clamp(15px, 4vw, 16px);
}

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

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

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

.gallery-box-one img, .gallery-box-two img{
  transition: 0.5s ease;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.5);
  height: 389px;
}

.gallery-box-one img:hover, .gallery-box-two img:hover{
  filter: brightness(1);
}

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

.form-page{
  padding: 77px 0;
}

.form-block{
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

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

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

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

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

.input-container .input-custom--field_element, .input-container .textarea-custom--field_element {
  outline: none;
  margin: 8px 0;
}

.input-container .input-custom--field_element {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-custom--field_element {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 47px;
  max-height: 112px;
}

.input-container .input-custom--field_element::placeholder, .input-container .textarea-custom--field_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: 15px;
  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.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-color: #EF2143;
}

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

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

.footer-box{
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

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

.logoImg-footer img{
  width: 50px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom{
  border-top: 0.1px solid #f5f5f5;
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

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

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

.playing-block{
  padding: 47px 0;
  width: 100%;
  height: 591px;
}

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

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

.art-cont-title {
  color: transparent;
  -webkit-text-stroke: 1px #080101;
  padding: 77px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(22px, 4vw, 30px);
}

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

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

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

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

.contacts-page{
  display: flex;
  flex-direction: row;
  gap: 77px;
  padding: 77px 0;
}

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

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

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  border: none;
  border-bottom: 1px solid #080101;
  color: #080101;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border: none;
  border-bottom: 1px solid #080101;
  color: #080101;
  background-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 47px;
  max-height: 112px;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px){

}

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

  .hamburger-menu{
    display: block;
  }

  .header-content{
    width: 100%;
  }

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

  .about{
    flex-direction: column;
  }

  .gallery-box-one img, .gallery-box-two img{
    height: 164px;
  }

  .player-block{
    flex-direction: column-reverse;
  }

  .player{
    padding: 77px 0;
  }

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

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

  .player-video{
    height: auto;
  }

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

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

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

  .player-video-box{
    flex-direction: column;
  }

  .player-video:first-child{
    display: none;
  }

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

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

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

@media (max-width: 576px){

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

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

  .step-game-card{
    flex-direction: column;
    text-align: center;
  }

  .form-block{
    padding: 15px;
  }
}
</pre></body></html>