@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');


*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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


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

li{
  margin: 0 5px;
}

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

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

ul{
  margin: 0;
  padding: 0;
}

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

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

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

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

.page-privacy{
  padding: 66px 0;
  overflow: hidden;
  width: 100%;
}

.content-politics{
  font-size: clamp(16px, 4vw, 18px);
  color: #040807;
  text-align: justify;
}

.page-privacy a{
  transition: 0.3s ease;
  color: #040807;
}

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

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

.header-lay{
  background-color: #fff;
}

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

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

.logo:hover{
  transform: scale(1.1);
}

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

.logo__title {
  flex: 1;
  color: #040807;
  font-size: clamp(18px, 4vw, 22px);
}

.nav{
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.nav__link{
  transition: 0.5s ease;
  font-size: clamp(16px, 4vw, 18px);
  color: #040807;
}

.nav__link:hover{
  transform: scale(1.1);
}

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

.header-content__lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-068b994f8e1d17.jpg);
  filter: brightness(0.4);
  background-position: center;
  background-size: cover;
  animation: scaleAnimation 15s infinite ease-in-out;
  z-index: -1;
}

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

.header-content{
  min-height: 100vh;
  display: flex;
  padding: 66px 0;
  justify-content: space-between;
  gap: 66px;
  flex-direction: row;
}

.header-content__text{
  direction: initial;
  flex: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 29px;
}

.header-content__text h5{
  margin: 0;
  font-weight: normal;
  opacity: 0.7;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typing-text {
  margin: 0;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  font-size: clamp(50px, 4vw, 80px);
  text-transform: uppercase;
  color: #fff;
  animation: typing 3s steps(12, end) forwards, blink 0.6s infinite;
}

.header-content__img {
  flex: 1;
}

.header-content__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

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

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

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

.btn-game:active,
.btn-game:focus {
  outline: none;
}

.btn-game:active::before,
.btn-game:active::after {
  right: 3px;
  left: 3px;
}

.btn-game:active::before {
  top: 3px;
}

.btn-game:active::after {
  bottom: 3px;
}

.btn__lg {
  border: 1px solid #040807;
  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;}

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

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

.btn__sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -7px;
  width: 0;
  background-color: #fff;
  transform: skew(-15deg);
  transition: all .2s ease;
}

.btn__text {
  position: relative;
}

.btn-game:hover .btn__text {
  color: #040807;
}

.btn-game:hover .btn__sl {
  width: calc(100% + 10px);
}

.btn-game:hover .btn__lg::after {
  background-color: #fff;
}

.step-game{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 66px 0;
}

.step-game__card{
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-game__card h5{
  opacity: 0.7;
  font-weight: normal;
  font-size: clamp(16px, 4vw, 16px);
  color: #17B794;
}

.step-game__icon{
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 10px;
  transition: 0.5s ease;
}

.step-game__icon svg{
  width: 59px;
  height: 59px;
  fill: #17B794;
}

.step-game__card:hover  .step-game__icon{
  transform: scale(1.1);
}

.step-game__card span{
  opacity: 0.7;
  background-color: #040807;
  width: 66px;
  height: 1px;
}

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

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

.benefit-title h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #040807;
}

.benefit-title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

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

.benefit-img{
  flex: 1;
}

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

.benefit-box{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: 42px;
}

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

.benefit-card svg{
  height: 42px;
  width: 42px;
  fill: #17B794;
}

.benefit-card h5{
  margin: 0;
  flex: 1;
  opacity: 0.7;
  font-size: clamp(18px, 4vw, 20px);
  color: #040807;
}

.wrapper-line{
  padding: 66px 0;
  background-color: #f5f5f5;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 100% 0%);
}

.caregory-lay{
  background-color: #f5f5f5;
}

.category{
  display: flex;
  flex-direction: column;
  gap: 66px;
  padding: 66px 0;
}

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

.category-title h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #040807;
}

.category-title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

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

.category-card {
  transition: 0.5s ease;
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}


.category-card__img{
  position: relative;
}

.category-card__img img{
  transition: 0.5s ease;
  border-radius: 28px;
  width: 100%;
  height: 311px;
  object-fit: cover;
}

.category-card:hover .category-card__img img{
  filter: blur(4px);
}

.category-card-link{
  transition: 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.category-card-link:hover{
  opacity: 0.5;
}

.games{
  display: none;
  flex-direction: column;
  gap: 66px;
  padding: 66px 0;
}

.games-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 41px;
}

.games-card{
  transition: 0.5s ease;
  border: 1px solid #17B794;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-direction: row;
}

.games-card__img{
  overflow: hidden;
  flex: 1;
}

.games-card__img img{
  transition: 0.5s ease;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 259px;
}

.games-card:hover .games-card__img img{
  transform: scale(1.05);
}

.games-card__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.games-content__title{
  color: #040807;
  font-size: clamp(18px, 4vw, 22px);
}

.games-content__title:hover{
  color: #17B794;
}

.play-now__lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 40vh;
}

.play-now__lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-168b994f8e1d54.jpg);
  filter: brightness(0.4);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.play-now{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  min-height: 40vh;
  padding: 66px 0;
}

.play-now h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.play-line{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

.about-us__lay{
  background-color: #17B794;
}

.about-us{
  display: flex;
  gap: 66px;
  flex-direction: column;
  padding: 66px 0;
}

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

.about-us__img{
  flex: 1;
}

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

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

.about-us__content h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.about-us__text{
  color: #fff;
  opacity: 0.7;
  font-size: clamp(16px, 4vw, 18px);
}

.about-us__stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stats-card{
  background-color: #04080733;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  border-radius: 16px;
  padding: 16px;
}

.stats-card h5{
  margin: 0;
  line-height: normal;
  color: #fff;
  font-size: clamp(42px, 4vw, 66px);
}

.stats-card p{
  padding: 0;
  opacity: 0.7;
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
}

.about-line{
  width: 66px;
  height: 3px;
  background-color: #fff;
}

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

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

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

.subscribe h2{
  margin: 0;
  line-height: normal;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  flex: 2;
}

.form-subscribe{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-subscribe input{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 100%;
  color: #040807;
  border-radius: 10px;
  padding: 16px;
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0.21);
  font-size: clamp(16px, 4vw, 18px);
}

.form-subscribe input::placeholder{
  transition: 0.3s ease;
  color: #fff;
}

.form-subscribe input:hover{
  background-color: #fff;
}

.form-subscribe input:focus{
  background-color: #fff;
}

.form-subscribe input:hover::placeholder{
  color: #040807;
}

.form-subscribe input:focus::placeholder{
  color: #040807;
}

.accordion{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 66px;
  padding: 66px 0;
}

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

.accordion-title h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #040807;
}

.accordion-title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

.accordion-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 28px;
}

.accordion-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.accordion-item {
  border-bottom: 0.1px solid grey;
}

.accordion-item h5 {
  margin: 0;
  cursor: pointer;
  font-size: clamp(18px, 4vw, 22px);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  color: #040807;
  transition: color 0.3s ease;
}

.icon-toggle {
  width: 33px;
  height: 33px;
}

.accordion-item.active h5 {
  color: #17B794;
}

.accordion-item.active {
  border-bottom: none;
}

.accordion-item.active .icon-toggle {
  fill: #17B794;
}

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

.comments-line{
  padding: 66px 0;
  background-color: #f5f5f5;
  clip-path: polygon(0% 100%, 100% 0%, 100% 0%, 0% 0%);
}

.comments-lay{
  background-color: #f5f5f5;
}

.comments{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 66px;
  padding: 66px 0;
}

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

.comments-title h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #040807;
}

.comments-title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

.review-slider {
  direction: initial;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.review-slider__wrapper {
  overflow: hidden;
  width: 100%;
}

.review-slider__track {
  display: flex;
  transition: transform 0.3s ease;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 0 100%;
  text-align: center;
}

.review-card img{
  object-fit: cover;
  border: 1px solid #17B794;
  border-radius: 50%;
  height: 259px;
  width: 259px;
}

.review-card__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.review-card__content h5{
  margin: 0;
  font-weight: normal;
  color: #040807;
  font-size: clamp(20px, 4vw, 25px);
}

.review-card__content p{
  opacity: 0.7;
  color: #040807;
  font-size: clamp(18px, 4vw, 20px);
  padding: 0;
}

.review-slider__button {
  transition: 0.3s ease;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(22px, 4vw, 30px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 10px;
}

.review-slider__button:hover{
  background-color: #17B794;
}

.review-slider__button--prev {
  left: 10px;
}

.review-slider__button--next {
  right: 10px;
}

.form__lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 66px 0;
}

.form__lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(mediamansion/bg/bg-all-368b994f8e1dc4.jpg);
  filter: brightness(0.4);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.form-main{
  width: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 66px;
}

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

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

.form-main__title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

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

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

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

.input-container .input-control--block-input, .input-container .textarea-control--block-input {
  outline: none;
  margin: 5px 0;
}

.input-container .input-control--block-input {
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.21);
  padding: 16px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-container .textarea-control--block-input {
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.21);  
  padding: 16px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 42px;
  max-height: 148px;
}

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

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

.input-container .input-control--block-input:hover::placeholder, .input-container .textarea-control--block-input:hover::placeholder{
  color: #040807;
}

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

.input-container .input-control--block-input:focus::placeholder, .input-container .textarea-control--block-input:focus::placeholder{
  color: #040807;
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 0;
}

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

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.disclaimer__lay{
  overflow: hidden;
  padding: 66px 0;
  background-color: #17B794;
}

.disclaimer{
  border: 1px solid #fff;
  border-radius: 28px;
  padding: 28px;
  background-color: #04080733;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  animation: shake 1s ease-in-out infinite;
  animation-duration: 6s;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-3deg);
  }
  40% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.disclaimer h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
}

.disclaimer span{
  width: 66px;
  height: 3px;
  background-color: #fff;
}

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

.disclaimer img{
  max-width: 93px;
}

.legal-links{
  padding: 28px 0;
}

.legal-links 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: 16px;
}

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

.legal-links ul li a:hover {
  color: #040807;
  opacity: 0.5;
}

.created__lay{
  background-color: #f5f5f5;
}

.created{
  padding: 28px 0;
}

.created h5{
  color: #040807;
  font-size: clamp(16px, 4vw, 18px);
  text-align: center;
}

.article__lay{
  background-color: #f5f5f5;
}

.article-layout {
  padding: 66px 0;
  display: flex;
  gap: 66px;
  flex-direction: column;
}

.article-media {
  width: 100%;
  height: 100vh;
  margin-bottom: 30px;
  padding-top: 20px;
}

.article-media iframe {
  border: none;
  width: 100%;
  height: 100vh;
}

.article-title {
  margin: 0;
  padding-top: 66px;
  color: #040807;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
}

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

.article-image {
  object-fit: contain;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 28px;
  float: right;
  width: 40%;
  margin: 42px;
  margin-top: 0;
  margin-right: 0;
}

.article-text {
  color: #040807;
  font-size: clamp(16px, 4vw, 18px);
}

.article-text ul {
  list-style: inside;
}

.article-text li {
  opacity: 0.9;
}

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

.kontact-form{
  flex: 2;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.kontact-form__title{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 66px;
}

.kontact-form__title h2{
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
}

.kontact-form__title span{
  width: 66px;
  height: 3px;
  background-color: #17B794;
}

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

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

.input-kontact-form .inputs-kontact {
  width: 100%;
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.21);
  padding: 16px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  transition: 0.3s ease;
  color: #040807;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.21);  
  padding: 16px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 42px;
  max-height: 148px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #fff;
  transition: 0.3s ease;
}

.input-kontact-form .inputs-kontact:hover, .input-kontact-form .textarea-kontact:hover{
  background-color: #fff;
}

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

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  background-color: #fff;
}

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

.contacts-box{
  flex: 1;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 28px;
}

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

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

.contacts-card svg{
  fill: #040807;
  width: 33px;
  height: 33px;
}

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

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

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

.contacts__lay{
  background-color: #f5f5f5;
}

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

.nav-toggle span {
  width: 16px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #040807;
  transition: all 0.5s;
}

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

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

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

.nav-toggle.active span:nth-of-type(2) {
  background-color: #fff !important;
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.nav-toggle.active span:nth-of-type(3) {
  background-color: #fff !important;
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.nav-panel {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px 42px;
  background: #17B794;
  transform: translateX(-110%);
  transition: transform 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

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

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

.nav-panel ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.nav-panel li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.nav-item {
  transition: 0.3s ease;
  font-weight: bold;
  text-align: center;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

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


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

  .nav{
    display: none;
  }

  .header-content__img{
    display: none;
  }

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

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

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

  .games-card__content{
    flex: none;
  }

  .about-us__box{
    flex-direction: column;
  }

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

  .accordion-container{
    flex-direction: column;
  }

  .form-main{
    width: 100%;
  }

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

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

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

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

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

  .games-card{
    flex-direction: row;
  }

  .about-us__stats{
    grid-template-columns: repeat(1, 1fr);

  }

  .games-card__content{
    flex: 1;
  }

  .typing-text{
    border-right: none;
    white-space: unset;
    animation: none;
  }

  .article-image{
    width: 100%;
    margin: 0;
    margin-bottom: 42px;
  }

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

@media (max-width: 576px){
  .games-card{
    flex-direction: column;
  }
  
  .games-card__content{
    flex: none;
  }
}



.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
