@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Poppins", sans-serif;
  background: #091923;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.h2 {
  color: #FFF;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: -3.12px;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 40px;
    line-height: normal;
  }
}

.btn {
  display: inline-block;
  color: #373737;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding: 17px 40px;
  border-radius: 52px;
  background: radial-gradient(140% 67% at 4.6% 40.8%, #93EBFA 0%, #3ABCD6 100%);
  box-shadow: 0px -3px 3px 0px #106A7D inset;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: radial-gradient(29.47% 53.61% at 13.52% 10.21%, #055B73 0%, #0A0F17 100%);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #FFF;
  font-family: "Kyiv*Type Serif";
  font-size: 34px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .menu__body {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #030303;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu__list_sub {
  gap: 12px;
}
@media (max-width: 991px) {
  .menu__list_sub {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  display: inline-block;
  color: #93B5B8;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}
.menu__btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
}
.menu__btn_active {
  color: #373737;
  border-radius: 52px;
  background: radial-gradient(140% 67% at 4.6% 40.8%, #93EBFA 0%, #3ABCD6 100%);
  box-shadow: 0px -3px 3px 0px #106A7D inset;
}

.footer {
  background: #000;
  padding: 40px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__text {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.footer__line {
  background: #BBB;
  width: 100%;
  height: 1px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__link {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
.footer__txt {
  color: #9CA3AF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px 20px;
  max-width: 587px;
  width: 100%;
  border-radius: 16px;
  background: radial-gradient(29.47% 53.61% at 13.52% 10.21%, #055B73 0%, #0A0F17 100%), linear-gradient(135deg, #1A1D22 0%, #2D1B69 100%);
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 1.12px;
}
.cookies__text {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
.cookies__btns {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #1D1D1D;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 52px;
  background: radial-gradient(140% 67% at 4.6% 40.8%, #93EBFA 0%, #3ABCD6 100%);
  box-shadow: 0px -3px 3px 0px #106A7D inset;
  padding: 16px 0;
  width: 100%;
}
.cookies__btn-sub {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  padding: 16px 0;
}

.hero {
  margin: 102px 0 0;
  padding: 100px 0;
  background: url(/wp-content/themes/архів/assets/img/bg.webp) no-repeat center/cover;
}
@media (max-width: 991px) {
  .hero {
    margin: 88px 0 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 94px;
  letter-spacing: -2.88px;
}
@media (max-width: 991px) {
  .hero__title {
    line-height: normal;
  }
}
.hero__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.bonus {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .bonus {
    padding: 60px 0;
  }
}
.bonus__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .bonus__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .bonus__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bonus__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  border-radius: 24px;
  background: radial-gradient(29.47% 53.61% at 13.52% 10.21%, #055B73 0%, #0A0F17 100%);
}
.bonus__num {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: -3.12px;
}
.bonus__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.about {
  padding: 60px 0;
}
.about_top {
  margin: 102px 0 0;
}
@media (max-width: 991px) {
  .about_top {
    margin: 88px 0 0;
  }
}
.about__content {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 991px) {
  .about__content {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: 70px;
  }
}
@media (max-width: 767px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__text {
  color: #93B5B8;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.game {
  padding: 60px 0;
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.game__title {
  text-align: center;
}
.game__product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.game__card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  max-width: 325px;
}
@media (max-width: 429px) {
  .game__card {
    max-width: 100%;
  }
}
.game__name {
  color: #FFF;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 133.333% */
}

.players {
  padding: 48px 0;
}
.players__title {
  text-align: center;
  margin-bottom: 16px;
}
.players__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}
.players__link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
.players__column {
  display: flex;
  padding: 24px 12px;
  flex-direction: column;
  gap: 10px;
  border-radius: 24px;
  background: radial-gradient(29.47% 53.61% at 13.52% 10.21%, #055B73 0%, #0A0F17 100%);
}
.players__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(147, 235, 250, 0.1);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #055B73 0%, #05080E 100%);
}
@media (max-width: 575px) {
  .players__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.players__name {
  color: #FFF;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
}
.players__line {
  border-radius: 8px;
  background: linear-gradient(90deg, #545454 0%, #1A203B 0%, #1EB6E0 49%, #1A223B 100%), linear-gradient(90deg, #BFDBFE 0%, #D8B4FE 100%), #FFF;
  height: 12px;
}
.players__line_first {
  width: 100%;
}
.players__line_second {
  width: 70%;
}
@media (max-width: 575px) {
  .players__line_second {
    width: 80%;
  }
}
.players__line_last {
  width: 60%;
}
@media (max-width: 575px) {
  .players__line_last {
    width: 75%;
  }
}
.players__scoore {
  color: #FFF;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .players__scoore {
    margin: 0;
  }
}

.reviews {
  padding: 60px 0;
}
.reviews__title {
  margin-bottom: 24px;
  text-align: center;
}
.reviews__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 64px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
@media (max-width: 575px) {
  .reviews__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 26px;
  border: 1px solid rgba(147, 235, 250, 0.1);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #055B73 0%, #05080E 100%);
  padding: 28px;
}
.reviews__txt {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.reviews__row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews__column {
  display: flex;
  flex-direction: column;
}
.reviews__name {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.reviews__role {
  color: #FFF;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  /* 158.333% */
  letter-spacing: -0.12px;
}

.contact {
  padding: 100px 0;
  background: url(/wp-content/themes/архів/assets/img/bg.webp) no-repeat center/cover;
}
.contact__title {
  text-align: center;
  margin-bottom: 24px;
}
.contact__text {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-bottom: 40px;
}
.contact__form {
  border-radius: 26px;
  border: 1px solid rgba(147, 235, 250, 0.1);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #055B73 0%, #05080E 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 575px) {
  .contact__row {
    flex-direction: column;
  }
}
.contact__inp {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0);
  padding: 14px 16px;
  width: 100%;
  color: #93B5B8;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}
.contact__inp::-moz-placeholder {
  color: #93B5B8;
}
.contact__inp::placeholder {
  color: #93B5B8;
}
.contact__inp_mess {
  resize: none;
  height: 120px;
}
.contact__btn {
  color: #FFF;
}

.hero-game__content {
  display: flex;
  align-items: center;
  gap: 70px;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .hero-game__content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hero-game__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .hero-game__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-game__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 570px;
}
.hero-game__text {
  color: #93B5B8;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.hero-game__link {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .hero-game__link {
    width: 100%;
  }
}

.play {
  padding: 64px 0;
}
.play__content {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 578px;
}
@media (max-width: 767px) {
  .play__content {
    height: 300px;
  }
}

.body {
  background: #fff;
}

.privacy {
  margin: 102px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .privacy {
    margin: 88px 0 0;
  }
}
.privacy__title {
  color: #050810;
  text-align: center;
  font-family: Poppins;
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.privacy__text {
  color: #050810;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}
.privacy__text a {
  color: #050810;
}