@charset "UTF-8";
:root {
  --white-color: #ffffff;
  --gray-100: #f1f1f1;
  --gray-200: #d6d6d6;
  --gray-400: #717171;
  --gray-500: #202020;
  --gray-600: #282829;
  --gray-800: #222222;
  --pink: #7e0081;
  --blue: #3dcbff;
  --bg-color: black;
  --text-color: var(--white-color);
  --border-color: var(--gray-100);
  --input-border-color: var(--gray-200);
  --primary-color: var(--pink);
  --text-secondary: var(--gray-400);
  --header-bg: var(--bg-color);
  --border-radius: 4px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  /* buttons */
  --btn-border-radius: var(--border-radius-lg);
  --btn-font-size: 20px;
}

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

@font-face {
  font-family: "Alexandria";
  src: local("Alexandria");
  src: url(assets/font/Alexandria/Alexandria-VariableFont_wght.ttf);
}
h1,
h2,
h3 {
  text-wrap: balance;
  font-family: "Alexandria", serif;
}

@font-face {
  font-family: "Inter";
  src: local("Inter");
  src: url(assets/font/Inter/Inter-VariableFont_opsz,wght.ttf);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  /* header */
  --header-h: 50px;
  --header-padding: 10px;
}
@media (min-width: 992px) {
  body {
    --header-h: 70px;
  }
}

.hidden {
  overflow: hidden;
}

section:first-child {
  padding-top: calc(var(--header-h) + 50px);
}
@media (min-width: 768px) {
  section:first-child {
    padding-top: calc(var(--header-h) + 60px);
  }
}

button {
  outline: none;
  border: none;
}

li {
  list-style: none;
}

.list {
  margin-bottom: 20px;
}

.list li::before {
  content: "•";
  color: var(--primary-color);
  margin-right: 10px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
}

.container {
  --container-padding: 20px;
  max-width: calc(1060px + 3 * var(--container-padding));
  padding: 0 var(--container-padding);
  margin: auto;
}

.section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.section_gray {
  background: var(--gray-500);
}

h1,
.h1 {
  font-size: 38px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 56px;
  }
}

h2,
.h2 {
  font-size: 26px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}

h3 {
  margin-bottom: 12px;
}

p,
a {
  font-size: 16px;
}
@media (min-width: 768px) {
  p,
  a {
    font-size: 18px;
  }
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 49%;
}

.mw-600 {
  max-width: 600px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-24 {
  margin-top: 24px;
}

p {
  margin-bottom: 8px;
}

.subtitle {
  font-size: 24px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 32px;
  }
}

.title-wrap {
  margin-bottom: 32px;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--text-secondary);
}

.fw-600 {
  font-weight: 600;
}

.gap-8-to-20 {
  --gap: 8px;
}
@media (min-width: 768px) {
  .gap-8-to-20 {
    --gap: 20px;
  }
}

.grid {
  display: grid;
  grid-gap: var(--gap, 20px);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .img-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .img-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.img-fill, .card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.br {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.br-md, .card__img-wrap {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.br-lg {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.pattern, .section:nth-child(3n+2), .section:nth-child(3n+3) {
  position: relative;
}
.pattern .container, .section:nth-child(3n+2) .container, .section:nth-child(3n+3) .container {
  position: relative;
  z-index: 2;
}
.pattern:before, .section:nth-child(3n+2):before, .section:nth-child(3n+3):before {
  content: "";
  position: absolute;
  --width: 100px;
  width: var(--width);
  height: var(--width);
  z-index: -1;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 50% 50%, var(--blue) 0%, var(--pink) 100%);
  filter: blur(40px);
}
@media (min-width: 768px) {
  .pattern:before, .section:nth-child(3n+2):before, .section:nth-child(3n+3):before {
    --width: 200px;
  }
}

.pattern-1:before, .section:nth-child(3n+3):before {
  top: 0;
  left: 0;
}
@media (min-width: 1200px) {
  .pattern-1:before, .section:nth-child(3n+3):before {
    left: calc(50vw - 600px);
  }
}

.pattern-2:before, .section:nth-child(3n+2):before {
  top: 0;
  right: 0;
}
@media (min-width: 1200px) {
  .pattern-2:before, .section:nth-child(3n+2):before {
    right: calc(50vw - 600px);
  }
}

.button {
  cursor: pointer;
  line-height: 1;
  font-size: var(--btn-font-size);
  border-radius: var(--btn-border-radius);
  font-weight: 600;
  color: white;
  padding: 16px 32px;
  margin: 6px 0;
  text-align: center;
  max-width: 100%;
}
.button:hover {
  opacity: 0.9;
  transition: opacity 0.3s;
}
.button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}

.button-primary {
  background-color: var(--primary-color);
  box-shadow: 6px 8px 40px 0 rgba(181, 0, 185, 0.7);
}

.button-secondary {
  background-color: var(--text-secondary);
  box-shadow: 6px 8px 40px 0 #717171;
}

.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: var(--header-padding) 0;
  background: var(--header-bg);
  border-bottom: 1px solid var(--primary-color);
}

.logo {
  height: calc(var(--header-h) - 2 * var(--header-padding));
}
@media (min-width: 769px) {
  .logo {
    width: 60px;
    height: auto;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  --padding-link: 5px;
  display: flex;
  gap: calc(30px - 2 * var(--padding-link));
}

.nav-menu__link {
  padding: var(--padding-link);
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.nav-menu__link:hover {
  color: var(--primary-color);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.form__input {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border-width: 1px;
}

.footer {
  padding: 60px 0;
  background: var(--header-bg);
  border-top: 1px solid var(--primary-color);
}
.footer__contacts-wrap {
  margin-bottom: 32px;
  text-align: center;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-link {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-link:hover {
  color: var(--primary-color);
}

.burger {
  --burger-color: var(--primary-color);
  cursor: pointer;
  transform: translateY(-2px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }
}
.burger::before,
.burger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--burger-color);
  display: block;
  margin: 5px 0;
  transition: all 0.2s;
}

.burger.burger-rotate .burger-span {
  opacity: 0;
}

.burger.burger-rotate::before {
  transform: translateY(9px) rotate(45deg);
}

.burger.burger-rotate::after {
  transform: translateY(-9px) rotate(-45deg);
}

.burger-span {
  width: 24px;
  height: 2px;
  background: var(--burger-color);
}

@media (max-width: 768px) {
  .header__nav-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    padding: var(--container-padding);
    overflow: auto;
    position: fixed;
    top: calc(var(--header-h) - 2px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h) + 4px);
    background: var(--header-bg);
    z-index: 40;
    flex-direction: column;
    align-items: center;
  }
  .header__nav-menu.nav-hidden {
    opacity: 1;
    visibility: visible;
  }
}
.fade {
  animation: fadeScale 0.5s ease-out;
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.tabs-wrap {
  --active-bg-color: white;
  --tab-text-color: #000;
}
@media (min-width: 576px) {
  .tabs-wrap {
    grid-template-columns: 1fr 2fr;
  }
}

.tabs {
  display: flex;
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 576px) {
  .tabs {
    flex-direction: column;
    position: sticky;
    top: calc(var(--header-h) + 10px);
  }
}

.tab {
  max-width: 100%;
  text-align: center;
  display: block;
  padding: 10px 20px;
  cursor: pointer;
}
.tab.active {
  background: var(--active-bg-color);
  color: #000;
}

.tab-main-box {
  margin-top: -2px;
  padding: 10px 30px;
  background: var(--active-bg-color);
  color: var(--tab-text-color);
}

.tab-box {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  transition: 0.5s opacity;
}
.tab-box.visible {
  max-height: 10000px;
  visibility: visible;
  opacity: 1;
}

.review-card {
  border-radius: 12px;
  padding: 16px;
}
.review-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 12px;
}
.review-card__info {
  display: flex;
  flex-direction: column;
}
.review-card__name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.review-card__rating {
  font-size: 1.1rem;
  color: #f5b50a;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.adv-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s;
}
.adv-card:hover {
  transform: translateY(-4px);
}
.adv-card__title {
  font-size: 1.25rem;
  margin: 12px 0;
}
.adv-card__text {
  font-size: 0.875rem;
}

.icon {
  margin-bottom: 24px;
  width: 64px;
}

.img-wrap .img {
  border-radius: var(--border-radius-md);
}
.img-wrap .img:nth-child(1) {
  margin-bottom: 50px;
}
.img-wrap .img:nth-child(2) {
  margin-top: 50px;
}

.link {
  color: var(--blue);
  text-decoration: underline;
}

.card {
  transition: opacity 0.6s ease;
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}
.card.hidden {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  max-height: 0;
}

.card__img-wrap {
  aspect-ratio: 4/3;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
.card__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: scale 0.6s ease;
}
.card__title {
  transition: color 0.6s ease;
}
.card:hover .card__img {
  scale: 1.05;
}
.card:hover .card__title {
  color: var(--blue);
}
.card__players {
  font-size: 14px;
  font-weight: 600;
}
.card__button {
  width: 100%;
  font-size: 16px;
}

.section-terms {
  counter-reset: num;
}
.section-terms__title {
  margin-bottom: 6px;
  margin-top: 16px;
}
.section-terms__title:before {
  counter-increment: num;
  content: counter(num) ". ";
}

.section-thanks {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */