html,
body {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mainsc.mainscV2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.mainsc.mainscV2 img {
  width: 100%;
  border-radius: 20px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

strong {
  font-weight: 700 !important;
}

section {
  padding: 75px 0;
}
@media (max-width: 768px) {
  section {
    padding: 45px 0;
  }
}

.title {
  text-align: center;
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  color: #000;
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
}

.header {
  padding: 15px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
}

.h-logo img {
  width: clamp(60px, 9.333vw, 80px);
  border-radius: 10px;
}

.header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-menu .btnmnu-m {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 20;
}
.header-menu .btnmnu-m span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}
.header-menu .btnmnu-m span:nth-child(1) {
  top: 10px;
}
.header-menu .btnmnu-m span:nth-child(2) {
  top: 18px;
}
.header-menu .btnmnu-m span:nth-child(3) {
  top: 26px;
}
.header-menu .btnmnu-m.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 18px;
}
.header-menu .btnmnu-m.active span:nth-child(2) {
  opacity: 0;
}
.header-menu .btnmnu-m.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
}
@media (max-width: 768px) {
  .header-menu .btnmnu-m {
    display: block;
  }
}
.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header-menu ul li a {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.header-menu ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header-menu nav {
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    padding-top: 120px;
    -webkit-transition: 0.23s;
    transition: 0.23s;
    opacity: 0;
    visibility: hidden;
  }
  .header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-menu nav ul li a {
    color: #000;
  }
  .header-menu nav.active {
    opacity: 1;
    visibility: visible;
  }
}

.txt {
  padding: clamp(45px, 7.333vw, 75px) 0;
}
.txt__box {
  border-radius: 24px;
}
.txt__box div {
  padding: 24px;
  border-radius: 24px;
  color: #000;
}
.txt h1 {
  margin-bottom: 40px;
}
.txt h3 {
  font-size: clamp(22px, 3.333vw, 28px);
  font-weight: 700;
  line-height: 125%;
  margin-top: clamp(30px, 5.333vw, 50px);
  margin-bottom: 30px;
}
.txt p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.txt ul {
  list-style-type: disc;
  padding-left: 30px;
  max-width: 700px;
}
.txt ol {
  list-style-type: decimal;
  padding-left: 30px;
  max-width: 700px;
}

.btnt {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btnt img {
  width: clamp(180px, 29.333vw, 240px) !important;
}
.btnt:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mainhero {
  min-height: 700px;
  background-image: url(../img/mainimage.png);
  background-position: center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mainhero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
}
.mainhero .hercontent {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 100%;
}
.mainhero .hercontent img {
  width: clamp(100px, 20vw, 200px);
  border-radius: 20px;
}
.mainhero .hercontent .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
.mainhero .hercontent h1 {
  font-size: clamp(30px, 4.667vw, 40px);
  line-height: 130%;
  font-weight: 800;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}
.mainhero .hercontent p {
  font-size: clamp(20px, 2.933vw, 24px);
  font-weight: 600;
  line-height: 130%;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.title {
  font-weight: 700;
  font-size: clamp(30px, 4.667vw, 40px);
  line-height: 130%;
}

.aboutgame {
  margin-top: clamp(70px, 13.333vw, 140px);
  background-color: #f0cb36;
  border-radius: clamp(40px, 8vw, 80px);
}
.aboutgame .title {
  text-align: left;
  margin-bottom: 50px;
}
.aboutgame__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .aboutgame__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.aboutgame__txt {
  font-size: clamp(20px, 2.8vw, 22px);
  font-weight: 600;
  line-height: 140%;
}
.aboutgame__img {
  min-width: 500px;
  max-width: 500px;
}
.aboutgame__img img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .aboutgame__img {
    min-width: 300px;
    max-width: 300px;
  }
}

.howtoplay__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(60px, 9.333vw, 80px);
}
.howtoplay .howtoplay-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 40px);
  background-color: #F0CB35;
  padding: 40px;
  border-radius: 24px;
}
.howtoplay .howtoplay-item span {
  font-size: 40px;
  font-weight: 900;
  display: block;
  margin-bottom: 40px;
}
.howtoplay .howtoplay-item p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .howtoplay__box {
    gap: 20px;
  }
  .howtoplay .howtoplay-item {
    width: 100%;
  }
}

.gamegallery {
  margin-top: clamp(60px, 12vw, 140px);
  background-color: #f0cb36;
  border-radius: clamp(40px, 8vw, 80px);
}
.gamegallery__block {
  margin-top: clamp(40px, 8vw, 80px);
}

.gamegallery__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .gamegallery__block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gamegallery__block {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gamegallery .gamegallery-item img {
  width: 100%;
  border-radius: 20px;
}

.playbtplace .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vidioblock .title {
  margin-bottom: clamp(30px, 6vw, 60px);
}
.vidioblock .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vidioblock .container video {
  width: 100%;
  max-width: 500px;
  height: 700px;
  background: #000;
}
@media (max-width: 768px) {
  .vidioblock .container video {
    height: 400px;
  }
}

.footer {
  padding: 50px 0;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #000;
  padding-top: 60px;
}
.footer .fttl {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.footer .fmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.footer .fmenu a {
  font-size: 16px;
  color: #000;
  text-align: center;
}
.footer .fcprt {
  margin-top: 80px;
  color: #000;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .f-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }
}

.section-contactv {
  margin-top: clamp(30px, 6vw, 60px);
  background-color: #f0cb36;
  border-radius: clamp(40px, 8vw, 80px);
}
.section-contactv .form {
  margin-top: clamp(30px, 6vw, 60px);
  background-color: #000;
  width: 100%;
  display: -ms-grid;
  display: grid;
  padding: 40px clamp(20px, 4vw, 40px);
  border-radius: 24px;
  gap: 30px;
}
.section-contactv input,
.section-contactv textarea {
  background-color: #fff;
  width: 100%;
  height: 60px;
  border-radius: 20px;
  padding: 0 20px;
  color: #000;
  border: none;
}
.section-contactv input::-webkit-input-placeholder, .section-contactv textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 0.6;
}
.section-contactv input::-moz-placeholder, .section-contactv textarea::-moz-placeholder {
  color: #000;
  opacity: 0.6;
}
.section-contactv input:-ms-input-placeholder, .section-contactv textarea:-ms-input-placeholder {
  color: #000;
  opacity: 0.6;
}
.section-contactv input::-ms-input-placeholder, .section-contactv textarea::-ms-input-placeholder {
  color: #000;
  opacity: 0.6;
}
.section-contactv input::placeholder,
.section-contactv textarea::placeholder {
  color: #000;
  opacity: 0.6;
}
.section-contactv textarea {
  height: 300px;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}
.section-contactv button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f0cb36;
  height: 60px;
  border-radius: 20px;
  border: 3px solid #fff;
  font-weight: 700;
  font-size: 20px;
}

.cookibanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: clamp(35px, 7.333vw, 70px) clamp(20px, 4.667vw, 50px);
  background: #000;
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  border-top: 3px solid #F0CB35;
}
.cookibanner a {
  color: #fff;
}
.cookibanner__btns {
  margin-top: clamp(25px, 4.933vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 2.667vw, 24px);
}
.cookibanner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F0CB35;
  border: none;
  padding: clamp(16px, 2.533vw, 24px) 20px;
  border-radius: 10px;
  font-weight: 600;
}

.about-additional__box {
  margin: 0 auto;
  margin-top: 50px;
  max-width: 800px;
}
.about-additional p {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}