@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
  --cb-1: #D6EAF8; 
  --cb-2: #AED6F1; 
  --cb-3: #85C1E9; 
  --cb-4: #5DADE2; 
  --cb-5: #34495E; 

  --cq-1: #2A3A4E; 
  --cq-2: #1F2B38; 
  --cq-3: #1A252E; 
  --cq-4: #162026; 
  --cq-5: #EAF2F8;
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: var(--cb-5);
  direction: ltr;
  font-family: 'K2D', 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;
}

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

@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{
  padding: 56px 0;
  color: var(--cq-5);
  overflow: hidden;
  text-align: justify;
  width: 100%;
}

.title-politics{
  text-align: center;
  color: var(--cq-5);
  margin-bottom: 25px;
  font-size: clamp(22px, 4vw, 50px);
}

.page-privacy a{
  color: var(--cq-5);
}

.page-privacy a:hover{
  color: var(--cq-5);
  opacity: 0.5;
}

.header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: var(--cb-5);
}

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

.header__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}

.logo__image img {
  max-height: 50px;
  object-fit: contain;
  width: 40px;
}

.logo__title h2 {
  color: var(--cq-5);
  font-size: 18px;
  margin: 0;
}

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

.menu__item {
  padding: 25px 10px;
  position: relative;
}

.menu__link {
  font-size: clamp(14px, 4vw, 18px);
  color: var(--cq-5);
  text-decoration: none;
  transition: 0.3s ease;
}

.menu__item--has-submenu:hover .menu__submenu {
  display: block;
}

.menu__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--cb-5);
  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__item {
  padding: 0;
  margin: 0;
}

.submenu__link {
  padding: 10px;
  display: block;
  font-size: clamp(14px, 4vw, 14px);
  color: var(--cq-5);
  transition: 0.3s ease;
}

.submenu__link:hover {
  color: var(--cb-5);
  background-color: var(--cq-5);
}

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

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

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

.header-banner__title{
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  color:#fff;
  font-size: clamp(22px, 4vw, 50px);
}

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

.cta {
  text-align: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #040807;
  cursor: pointer;
  position: relative;
  padding: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: clamp(16px, 4vw, 18px);
  transition: all .15s ease;
}

.cta::before,
.cta::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .15s ease;
}

.cta::before {
  top: 0;
  border-bottom-width: 0;
}

.cta::after {
  bottom: 0;
  border-top-width: 0;
}

.cta:active,
.cta:focus {
  outline: none;
}

.cta:active::before,
.cta:active::after {
  right: 3px;
  left: 3px;
}

.cta:active::before {
  top: 3px;
}

.cta:active::after {
  bottom: 3px;
}

.cta__lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #040807;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;}

.cta__lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #040807;
}

.cta__lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #040807;
  transition: all .2s ease;
}

.cta__sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: var(--cb-5);
  transform: skew(-15deg);
  transition: all .2s ease;
}

.cta__text {
  position: relative;
}

.cta:hover .cta__text {
  color: var(--cq-5);
}

.cta:hover .cta__sl {
  width: calc(100% + 15px);
}

.cta:hover .cta__lg::after {
  background-color: #fff;
}

.snowflake {
  position: fixed;
  top: -50px;
  color: white;
  font-size: 1em;
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
      transform: translateX(var(--horizontal-drift)) translateY(100vh) rotate(var(--rotation));
  }
}

.flare {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.blurred {
  filter: blur(2px);
  opacity: 0.5;
}

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

.about__image{
  flex: 1;
}

.about__image img{
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 100%);
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}

.about__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  position: relative;
}

.about__content h2{
  text-transform: uppercase;
  color: var(--cq-5);  
  font-size: clamp(18px, 4vw, 22px);
}

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

.about__content-back{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.about__content-back img{
  object-fit: contain;
  width: 226px;
  filter: blur(4px);
}

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

.gambla__benefit-title{
  text-align: center;
  text-transform: uppercase;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
}

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

.gambla__benefit-img{
  flex: 1;
}

.gambla__benefit-img img{
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 100%);
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}

.gambla__benefit-content{
  position: relative;
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.benefit__img-back{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.benefit__img-back img{
  object-fit: contain;
  width: 226px;
  filter: blur(4px);
}

.gambla__benefit-card{
  transition: 0.3s ease;
  border: 2px solid var(--cq-5);
  border-radius: 25px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.gambla__benefit-card:hover{
  background-color: var(--cq-5);
}

.gambla__benefit-card:hover svg{
  fill: var(--cb-5);
}

.gambla__benefit-card:hover h5{
  color: var(--cb-5);
}

.gambla__benefit-card svg{
  transition: 0.3s ease;
  width: 50px;
  height: 50px;
  fill: var(--cq-5);
}

.gambla__benefit-card h5{
  transition: 0.3s ease;
  opacity: 0.8;
  font-weight: normal;
  color: var(--cq-5); 
  font-size: clamp(16px, 4vw, 18px);
  padding: 0;
}

.step__game{
  padding: 56px 0;
}

.step__game-title{
  text-transform: uppercase;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
}

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

.step__game-img{
  flex: 1;
}

.step__game-img img{
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 100%);
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}

.step__game-box{
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.step__game-card{
  transition: 0.3s ease;
  border: 2px solid var(--cq-5);
  border-radius: 25px;
  padding: 25px;
}

.step__game-card h5 span{
  font-size: clamp(18px, 4vw, 22px);
  font-weight: bold;
  margin-right: 10px;
}

.step__game-card:hover{
  background-color: var(--cq-5);
}

.step__game-card:hover h5{
  color: var(--cb-5);
}

.step__game-card h5{
  transition: 0.3s ease;
  opacity: 0.8;
  font-weight: normal;
  color: var(--cq-5); 
  font-size: clamp(16px, 4vw, 16px);
  padding: 0;
}

.step__img-back{
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.step__img-back img{
  object-fit: contain;
  width: 226px;
  filter: blur(4px);
}

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

.game__catalog-title{
  text-transform: uppercase;
  text-align: center;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
}

.game__catalog-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.game__catalog-card{
  position: relative;
}

.game__catalog-img{
  width: 100%;
  position: relative;
}

.game__catalog-img img{
  filter: brightness(0.8);
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 100%);
  width: 100%;
  height: 299px;
  object-fit: cover;
}

.game__catalog-link{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 21px;
}

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

.game__catalog-link h5:hover{
  opacity: 0.5;
}

.game__catal-one{
  display: none;
}

.game__catal-two{
  display: none;
}

.game__catal-card{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game__catal-img{
  width: 100%;
}

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

.game__catal-box{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game__catal-box a h5{
  color: var(--cq-5);  
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
}

.game__catal-box a h5:hover{
  opacity: 0.5;
}

.game__catal-box p{
  padding: 0;
  display: -webkit-box; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  -webkit-line-clamp: 3;
  opacity: 0.8;
  color: var(--cq-5);  
  transition: 0.3s ease;
  font-size: clamp(16px, 4vw, 16px);
}

.rating{
  padding: 56px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.rating-card{
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--cq-5);
  text-align: center;
  border-radius: 25px;
  padding: 25px;
}

.rating-card h1{
  color: var(--cb-5);
  font-size: clamp(30px, 4vw, 80px);
}

.rating-card h5{
  font-weight: normal;
  opacity: 0.8;
  color: var(--cb-5);
  font-size: clamp(16px, 4vw, 18px);
}

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

.dev__gembla_title{
  text-transform: uppercase;
  text-align: center;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
}

.dev__content{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

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

.dev__content-card img{
  height: 214px;
  width: 214px;
  object-fit: cover;
  border-radius: 50%;
}

.dev__content-card h5{
  font-weight: bold;
  color: var(--cq-5);  
  font-size: clamp(18px, 4vw, 22px);
}

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

.form-block h2{
  text-transform: uppercase;
  text-align: center;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
}

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

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

.input-container label{
  color: var(--cq-5);
}

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

.input-container .input-formcontainer__input {
  border-radius: 1.5rem;
  color: #040807;
  background-color: #fff;
  border: 1px solid #fff;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-formcontainer__input {
  border-radius: 1.5rem;
  color: #040807;
  background-color: #fff;
  border: 1px solid #fff;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 35px;
  max-height: 135px;
}

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

.check{
  transition: 0.3s ease;
  color: var(--cq-5);
}

.check:hover{
  opacity: 0.5;
  color: var(--cq-5);
}

.form-check {
  color: var(--cq-5);
  display: flex;
  align-items: center;
  gap: 14px;
  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{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--cq-5);
  background-position: center;
  background-size: cover;
}

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

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

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

.logo-footer h5{
  font-weight: normal;
  color: var(--cb-5);
  font-size: clamp(16px, 4vw, 18px);
}

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

.logo-footer a{
  color: var(--cb-5); 
  display: flex; 
  align-items: center; 
  gap: 16px;
  transition: 0.3s ease;
}

.logoTitle-footer h2{
  color: var(--cb-5);
  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: 16px;
}

.privacy ul li{
  padding: 0;
}

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

.privacy ul li a:hover{
  color: var(--cb-5);
  opacity: 0.5;
}

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

.contacts-footer h2{
  color: var(--cb-5);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: bold;
}

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

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

.contacts-card svg{
  fill: var(--cb-5);
  width: 21px;
  height: 21px;
}

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

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

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

.disclaimer{
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 100%);
  background-color: #971616;
  gap: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 50px;
}

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

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

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

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

.art-content{
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}

.art-content h1{
  text-align: center;
  color: var(--cq-5);
  font-size: clamp(22px, 4vw, 30px);
}

.art-block{
  display: flex;
  flex-direction: row;
  gap: 35px;
  position: relative;
}

.art-block-img{
  position: relative;
  flex: 1;
}

.art-block-img img{
  object-fit: contain;
  clip-path: polygon(31% 100%, 29% 97%, 47% 100%, 85% 97%, 100% 100%, 97% 81%, 100% 84%, 96% 56%, 100% 39%, 98% 18%, 100% 0%, 77% 3%, 83% 0%, 63% 4%, 52% 0%, 43% 3%, 20% 0%, 9% 4%, 0% 0%, 2% 14%, 0% 13%, 0% 39%, 3% 66%, 0% 86%, 0% 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;
  width: 100%;
  position: sticky;
  top: 142px;
}

.art-block-content {
  color: var(--cq-5);
  flex: 1;
  font-size: clamp(16px, 4vw, 18px);
}

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

.playing-block{
  padding: 35px 0;
  width: 100%;
  height: 576px;
}

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

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

.kontact-form h2{
  text-align: center;
  color: var(--cq-5);  
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 56px;
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 1.5rem;
  color: #040807;
  background-color: #fff;
  border: 1px solid #fff;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 1.5rem;
  color: #040807;
  background-color: #fff;
  border: 1px solid #fff;
  outline-color: transparent;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 35px;
  max-height: 135px;
}

.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: 1px solid #fff;
}

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

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

.contacts-page h2{
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
  color: var(--cq-5);
}

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

.cont-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--cq-5);
  text-align: center;
  border-radius: 25px;
  padding: 25px;
  gap: 14px;
}

.cont-card svg{
  width: 40px;
  height: 40px;
  fill: var(--cb-5);
}

.cont-card a h5{
  flex: 1;
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--cb-5);
}

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

.cont-card h5{
  flex: 1;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--cb-5);
}

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

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

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

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

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

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

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

.menu-overlay {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--cb-5);
  transform: translateY(-110%);
  transition: transform 0.5s; 
}

.menu-overlay.open {
  transform: translateY(0);
}

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

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

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

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

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

.column-cont{
  display: flex;
  flex-direction: column-reverse;
}


@media (max-width: 991px) {
  .gambla__benefit-img img{
    max-height: 70vh;
  }

  .step__game-img img{
    max-height: 70vh;
  }

  .about__image img{
    max-height: 70vh;
  }

  .menu-button{
    display: block;
  }

  .header__navigation{
    display: none;
  }

  .header{
    padding: 14px 0;
  }

  .header-banner__content{
    width: 100%;
  }

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

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

  .step__game-content{
    flex-direction: column-reverse;
  }

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

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

  .form-block{
    width: 100%;
  }

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

  .privacy{
    border-bottom: 0.1px solid #f5f5f5;
    border-top: 0.1px solid #f5f5f5;
    padding: 35px 0;
  }

  .privacy ul{
    align-items: stretch;
    text-align: unset;
  }

  .logo-footer h5{
    display: none;
  }



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

  .kontact-form{
    width: 100%;
  }
}

@media (max-width: 767px) {
  .art-block{
    flex-direction: column;
  }
  .contacts-box{
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

@media (max-width: 576px){

}

