@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #160017;
  direction: ltr;
  font-family: 'Anuphan', 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-block{
  width: auto;
  padding-right: 23px;
  padding-left: 23px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

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

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

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

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

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

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

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

.header-lay{
  z-index: 3;
  background-color: #180707;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

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

.logoImg img{
  width: 40px;
}

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

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

.header-nav{
  flex: 1;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

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

.submenu-link {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 11px;
  transition: 0.3s ease;
  position: relative; 
}

.submenu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px; 
  background-color: #009500; 
  transition: width 0.3s ease;
}

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

.submenu-link:hover {
  color: #009500;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  left: 0;
  background-color: #009500;
  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 li{
  padding: 0;
}

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

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

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

.header-contact{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.header-contact a h5{
  padding: 11px; 
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.header-contact a h5:hover{
  opacity: 0.5;
}

.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(visualtreasure/bg-assets/bg-all-06733105cd20bc.jpg);
  background-position: center;
  filter: brightness(0.4);
  background-size: cover;
  z-index: -1;
}

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

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

.header-content p{
  padding: 0;
  font-weight: bold;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

.header-button {
  cursor: pointer;
  color: #009500;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #009500;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.header-button:hover {
  color: white;
}

.header-button::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #009500;
  z-index: -1;
  transition: all 1s;
}

.header-button:hover::before {
  width: 160%;
}

.gambla-benefit{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 39px;
  padding: 76px 0;
}

.gambla-benefit-img{
  flex: 1;
}

.gambla-benefit-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gambla-benefit-text{
  flex: 1;
  justify-content: center;
  padding: 39px 0;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

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

.gambla-benefit-box{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.gambla-benefit-card{
  direction: initial;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

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

.gambla-benefit-card svg{
  width: 50px;
  height: 50px;
  fill: #009500;
}

.step-game-lay{
  background-color: #1f0021;
}

.step-game{
  padding: 76px 0;
}

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

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

.step-game-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.step-game-card svg{
  width: 50px;
  height: 50px;
  fill: #009500;
}

.step-game-card h5{
  font-weight: normal;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.about-us-block{
  display: flex;
  flex-direction: row;
}

.about-us-box{
  flex: 1;
  display: flex;
  align-items: center;
  padding: 76px 0;
}

.about-us-text{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  padding: 0 39px;
}

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

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

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

.about-us-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper-block{
  padding: 76px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 76px;
}

.wrapper-block-img{
  flex: 1;
}

.wrapper-block-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.wrapper-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper-box-text{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wrapper-box-text h5{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  font-size: clamp(22px, 4vw, 50px);
}

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

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

.comments-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(visualtreasure/bg-assets/bg-all-16733105cd2113.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.comments{
  padding: 94px 0;
}

.comments-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.comments-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments-card {
  background-color: #160017;
  padding: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 1s;
}

.comments-card-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 15px;
}

.comments-card-text svg{
  width: 76px;
  height: 76px;
  fill: #009500;
}

.comments-card-text p {
  font-size: clamp(22px, 4vw, 26px);
  color: #fff;
  margin: 0;
}

.comments-card-text h5 {
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  opacity: 0.8;
  margin: 0;
}

.comments-card.active {
  opacity: 1;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
}

.dots {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.dot {
  border: 1px solid transparent;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #c0b9b9; 
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dot.active {
  border: 1px solid #c0b9b9;
  background-color: #0C1924; 
}

.catalog-game{
  padding: 76px 0;
}

.catalog-game-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  margin-bottom: 76px;
}

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

.catalog-game-title p{
  padding: 0;
  color: #009500;
  font-size: clamp(16px, 4vw, 18px);
}

.game-box-catalog{
  display: flex;
  justify-content: center;
}

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

.catalog-card-img{
  position: relative;
  overflow: hidden;
}

.catalog-card-img img{
  width: 100%;
  height: 294px;
  object-fit: cover;
  transition: 1s ease;
}

.game-card-catalog:hover .catalog-card-img img{
  filter: brightness(0.5);
}

.catalog-card-text{
  width: 100%;
  transform: translateY(100%);
  padding: 15px;
  transition: 1s ease;
  position: absolute;
  bottom: 0;
  text-align: center;
}

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

.catalog-card-text a h5:hover{
  color: #009500;
}

.game-card-catalog:hover .catalog-card-text{
  transform: translateY(0);
}

.faq {
  padding: 76px 0;
}

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

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

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

.faq-block h5 {
  margin: 0;
  cursor: pointer;
  font-size: clamp(22px, 4vw, 30px);
  display: flex;
  align-items: center;
  gap: 23px;
  justify-content: space-between;
  color: #fff;
  transition: color 0.3s ease;
}

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

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

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

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

.answer {
  margin-top: 15px;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.footer-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(service-images/casino-games-marketing.webp);
  background-position: center;
  filter: brightness(0.3);
  background-size: cover;
  z-index: -1;
}

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

.footer-top{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.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{
  flex: 1;
}

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

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

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

.footer-bottom{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

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

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

.fixed-form{
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009500;
  border-radius: 50%;
  z-index: 2;
  position: fixed;
  bottom: 11px;
  right: 11px;
}

.fixed-form svg{
  fill: #fff;
  width: 30px;
  height: 30px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 99;
}

.form-container {
  display: none;
  max-height: 90%;
  overflow: auto;
  width: 80%;
  padding: 20px;
  background-color: #1f0021;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.close {
  color: #fff;
  position: fixed;
  top: 0;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

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

.title-container{
  margin-bottom: 26px;
  text-align: center;
}

.title-container h3{
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  margin: 0;
  font-weight: bold;
}

.input-container {
  position: relative;
}

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

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

.input-container .input-user_panel_section {
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-container .textarea-user_panel_section {
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;  
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 39px;
  max-height: 146px;
}

.input-container .input-user_panel_section::placeholder, .input-container .textarea-user_panel_section::placeholder{
  color: #ffffffb3;
}

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

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

.submit-form{
  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;
}

.playing-block{
  padding: 39px 0;
  width: 100%;
  height: 567px;
}

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

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

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

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

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

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

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

.contacts-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 76px;
  padding: 76px 0;
}

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

.kontact-form-title{
  margin-bottom: 26px;
}

.kontact-form-title h2{
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  transition: 0.3s ease;
  color: #ffffffb3;
  background-color: transparent;  
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  resize: vertical;
  min-height: 39px;
  max-height: 146px;
}

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

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

.contacts{
  flex: 1;
}

.contacts h2{
  margin-bottom: 39px;
  font-size: clamp(22px, 4vw, 50px);
  color: #009500;
}

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

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

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

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

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

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

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

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

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

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

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

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

.menu-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding: 15px;
  background: #009500;
  transform: translateX(-110%);
  transition: transform 0.5s; 
}

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

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

.menu-panel ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
}

.menu-panel li {
  padding-bottom: 11px;
  border-bottom: 0.1px solid #f5f5f5;
  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){
  .header-contact{
    display: none;
  }
}

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

  .topmenu{
    display: none;
  }

  .logo a{
    flex-direction: row;
    gap: 11px;
  }

  .logoImg img{
    width: 35px;
  }

  .logoTitle h2{
    text-transform: none;
  }

  .header-content{
    padding: 94px 0;
    width: 100%;
  }

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

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

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

  .about-us-img img{
    max-height: 70vh;
  }

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

  .wrapper-box img{
    max-height: 70vh;
  }

  .wrapper-block-img img{
    max-height: 70vh;
  }

  .comments-card-text{
    width: 100%;
  }

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

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

  .privacy ul{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-nav{
    flex: unset;
  }

  .about-us-text{
    padding: 0;
  }

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


@media (max-width: 767px) {
  .menu-panel{
    width: 100%;
  }

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

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

  .comments-card{
    padding: 15px;
  }

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

  .playing-block{
    height: 100vh;
  }

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

  .catalog-card-text{
    transform: translateY(0);
  }

  .catalog-card-img img{
    filter: brightness(0.5);
  }
}

@media (max-width: 576px){
  
}
