@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.header {
  background: #ffffff;
  padding: 20px 5vw;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.header__logo {
  font-size: 28px;
  font-weight: 800;
  color: #273DA4;
}

.header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: #273DA4;
}

.header__lang {
  display: flex;
  gap: 12px;
}

.lang-btn {
  background: none;
  border: 1.5px solid #273DA4;
  color: #273DA4;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-btn:hover,
.lang-btn--active {
  background: #273DA4;
  color: #fff;
}

/* Бургер-иконка */
.burger-toggle {
  width: 28px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger-toggle span {
  display: block;
  height: 3px;
  background: #273DA4;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Адаптив */
@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
    gap: 16px;
  }
  .header__nav.active {
    display: flex;
  }
  .header__lang {
    align-self: stretch;
    justify-content: flex-end;
  }
  .header__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.hero {
  background-color: #273DA4;
  color: #ffffff;
  padding: 100px 5vw;
  overflow: hidden;
}

.hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero__text {
  flex: 1 1 500px;
}

.hero__text h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__text p {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__btn {
  background-color: #D45500;
  color: #ffffff;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero__btn:hover {
  background-color: #BB4400;
}

.hero__link {
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.9;
}

.hero__visual {
  flex: 1 1 400px;
  text-align: center;
}

.hero__visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
}

/* Адаптив */
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .hero__actions {
    justify-content: center;
  }
}
.steps {
  background-color: #f8f9ff;
  padding: 100px 5vw;
}

.steps__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.steps__head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.steps__head p {
  font-size: clamp(16px, 2vw, 18px);
  color: #444;
  line-height: 1.6;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.step__img {
  margin-bottom: 24px;
}

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

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.step p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 24px;
}

.step__btn {
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border: 1.5px solid #273DA4;
  color: #273DA4;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.step__btn:hover {
  background: #273DA4;
  color: #fff;
}

.facts {
  background-color: #f7f7fc;
  padding: 100px 5vw;
}

.facts__container {
  max-width: 1200px;
  margin: 0 auto;
}

.facts__container h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.facts__container p {
  text-align: center;
  font-size: 18px;
  color: #444;
  max-width: 650px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px 32px;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fact__icon {
  background-color: var(--bg);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact__icon img {
  width: 28px;
  height: 28px;
}

.fact__value {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.fact__text {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}

.roles {
  background: #f7f7fc;
  padding: 100px 5vw;
}

.roles__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.roles__container h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.roles__container p {
  font-size: 18px;
  color: #444;
  max-width: 650px;
  margin: 0 auto 64px;
  line-height: 1.5;
}

.roles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.role {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.role h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.role img {
  width: 270px;
  height: auto;
  margin-bottom: 20px;
}

.role p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.fit-block {
  background: #f7f7fc;
  padding: 100px 5vw;
}

.fit-block__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.fit-block__container h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.fit-block__container p {
  font-size: 18px;
  color: #444;
  max-width: 750px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* Прогресс-бар */
.fit-block__bar {
  height: 24px;
  width: 100%;
  background: #fff;
  border-radius: 999px;
  display: flex;
  overflow: hidden;
  margin: 0 auto 64px;
}

.fit-bar__segment {
  height: 100%;
}

.yellow {
  background: #f2c94c;
}

.blue {
  background: #4f88f0;
}

.green {
  background: #27ae60;
}

/* Подписи под прогрессом */
.fit-block__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  text-align: left;
}

.fit-part {
  max-width: 240px;
}

.fit-part__icon {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  border-radius: 999px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.fit-part__label {
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.fit-part ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-part li {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 6px;
}

/* Цветные круги */
.fit-part .yellow {
  background: #f2c94c;
}

.fit-part .blue {
  background: #4f88f0;
}

.fit-part .green {
  background: #27ae60;
}

.footer {
  background-color: #1a1f52;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer__inner {
  max-width: 1240px;
  margin: auto;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer__block {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer__block h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__block h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #b0b3ff;
}

.footer__block p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.footer__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__block li {
  margin-bottom: 10px;
}

.footer__block a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.footer__block a:hover {
  color: #ffffff;
}

.footer__socials a {
  display: inline-block;
}

.footer__bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer__grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__block {
    margin-bottom: 30px;
  }
}
.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about-hero-light {
  background: #f8faff;
  padding: 100px 20px 60px;
  text-align: center;
}

.about-hero-light h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #273DA4;
}

.about-hero-light p {
  font-size: 20px;
  max-width: 680px;
  margin: 0 auto;
  color: #333;
}

.about-pillars {
  padding: 80px 20px;
  background: #ffffff;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-item {
  flex: 1 1 300px;
  text-align: center;
  padding: 30px;
  background: #f4f6fc;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.about-item img {
  width: 80px;
  margin-bottom: 20px;
}

.about-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #273DA4;
}

.about-item p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.about-cta-light {
  padding: 80px 20px;
  background: #eef2ff;
  text-align: center;
}

.about-cta-light h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #273DA4;
}

.btn-primary {
  background: #ffaa3c;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #ff9100;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-hero-light h1 {
    font-size: 42px;
  }
  .about-cta-light h2 {
    font-size: 24px;
  }
}
.whyus {
  background: #f9f4ec;
  width: 100vw;
  padding: 3.8em 0 4.2em 0;
}
.whyus__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.whyus__title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #16160e;
  margin-bottom: 0.82em;
  letter-spacing: -1px;
}
.whyus__desc {
  font-size: 1.17rem;
  color: #2c2c2c;
  margin-bottom: 2.6em;
  max-width: 650px;
  font-weight: 500;
  line-height: 1.56;
}
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.1em 2.3em;
  width: 100%;
}
.whyus__item {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 2px 18px rgba(255, 224, 68, 0.1333333333);
  padding: 2.1em 1.6em 1.5em 1.6em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
}
.whyus__icon {
  font-size: 2.15em;
  margin-bottom: 0.43em;
  color: #ffe044;
  filter: drop-shadow(0 1px 6px rgba(255, 224, 68, 0.337254902));
}
.whyus__item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 0.51em;
}
.whyus__item-text {
  font-size: 1.01rem;
  color: #444;
  line-height: 1.57;
  font-weight: 400;
}
@media (max-width: 700px) {
  .whyus {
    padding: 2.3em 0 2.3em 0;
  }
  .whyus__container {
    padding: 0 0.3em;
  }
  .whyus__title {
    font-size: 1.2rem;
  }
  .whyus__desc {
    font-size: 0.99rem;
  }
  .whyus__item-title {
    font-size: 0.99rem;
  }
  .whyus__grid {
    gap: 1.2em 0.6em;
  }
  .whyus__item {
    padding: 1.3em 1em 1em 1em;
  }
}

.privacy-page {
  padding: 80px 20px;
  background: #fff;
  color: #222;
  line-height: 1.7;
}

.privacy-page h1 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 40px;
  color: #273DA4;
  font-weight: 700;
}

.privacy-page h2 {
  font-size: 28px;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 600;
}

.privacy-page p {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 800px;
}

.privacy-page ul {
  padding-left: 20px;
  max-width: 800px;
}

.privacy-page ul li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
}

.privacy-page ul li::before {
  content: "•";
  color: #ffaa3c;
  font-size: 22px;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media (max-width: 768px) {
  .privacy-page h1 {
    font-size: 40px;
  }
  .privacy-page h2 {
    font-size: 22px;
  }
  .privacy-page p,
  .privacy-page ul li {
    font-size: 15px;
  }
}
.privacy-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: #f8faff;
}

.contact-hero h1 {
  font-size: 48px;
  color: #273DA4;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 18px;
  color: #333;
  max-width: 640px;
  margin: auto;
}

.contact-main {
  padding: 60px 20px;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 16px;
  color: #333;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label span {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  height: 140px;
}

.btn-primary {
  background: #ffaa3c;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ff9100;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  max-width: 360px;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffaa3c;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }
  .contact-hero h1 {
    font-size: 36px;
  }
}
.faq {
  background: #f7f7fc;
  padding: 100px 5vw;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__container h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: #111;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 24px;
  top: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

@font-face {
  font-family: "Raleway";
  src: url("/Raleway-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Raleway";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  scroll-behavior: smooth;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

/*# sourceMappingURL=main.css.map */
