@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: #f5f5f5;
  border-bottom: 3px solid #e2f7da;
  padding: 20px 40px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header__logo {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
}
.header__nav .header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.header__nav .header__menu li {
  position: relative;
}
.header__nav .header__menu li a {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
}
.header__nav .header__menu li a[hidden] {
  display: none;
}
.header__nav .header__menu li a:not([hidden]) {
  position: static;
}
.header__nav .header__menu li a:hover {
  color: #e2f7da;
}
.header__lang-switch {
  display: flex;
  gap: 10px;
}
.header__lang-switch .lang-btn {
  border: none;
  background: transparent;
  font-size: 14px;
  padding: 5px 10px;
  cursor: pointer;
  color: #888;
  border-bottom: 2px solid transparent;
}
.header__lang-switch .lang-btn.active {
  color: #000;
  border-color: #e2f7da;
}
.header__lang-switch .lang-btn:hover {
  color: #e2f7da;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    width: 100%;
    margin-top: 10px;
  }
  .header__nav .header__menu {
    flex-direction: column;
    gap: 10px;
    display: none;
    margin-top: 10px;
  }
  .header__nav .header__menu.active {
    display: flex;
  }
  .header__lang-switch {
    margin-top: 10px;
    width: 100%;
    justify-content: flex-end;
  }
}

.hero {
  position: relative;
  height: 700px;
  background: linear-gradient(135deg, #f2f5f1, #e8f0e2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
}
@media (max-width: 740px) {
  .hero {
    height: 500px;
  }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  z-index: 1;
}
@media (max-width: 740px) {
  .hero__bg-overlay {
    background-image: none;
  }
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  z-index: 2;
}
.hero__text {
  max-width: 600px;
}
.hero__slogan {
  display: inline-block;
  font-size: 18px;
  color: #a6a99e;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__title {
  font-size: 48px;
  color: #2e2e2e;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5b5b5b;
  margin-bottom: 36px;
}
.hero__btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #96b38a;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}
.hero__btn:hover {
  background-color: #7da46f;
}
.hero__visual {
  position: relative;
  max-width: 500px;
}
.hero__visual img {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
}
.hero__decor-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #cce3c3 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
}

.features {
  background: #f6f7f3;
  padding: 120px 8%;
}
.features__title-wrapper {
  text-align: center;
  margin-bottom: 80px;
}
.features__title-wrapper .features__title {
  font-size: 42px;
  color: #2d2d2d;
  font-weight: 600;
  margin-bottom: 16px;
}
.features__title-wrapper .features__subtitle {
  font-size: 18px;
  color: #7a7a7a;
}
.features__columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}
.features__columns--bottom {
  justify-content: flex-start;
}
.features__column {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}
.features__column--center {
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features__column .features__decor {
  width: 200px;
  opacity: 0.15;
}
.features__number {
  font-size: 24px;
  color: #a8c686;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.features__heading {
  font-size: 20px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 10px;
}
.features__text {
  font-size: 16px;
  line-height: 1.6;
  color: #5f5f5f;
}

.about {
  background-color: #fefdfb;
  padding: 100px 8%;
}
.about__container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.about__image {
  position: relative;
  flex: 1;
}
.about__image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about__image .about__decor-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #cde4cb 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.about__content {
  flex: 1.2;
}
.about__title {
  font-size: 38px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 24px;
}
.about__text {
  font-size: 17px;
  line-height: 1.7;
  color: #585858;
  margin-bottom: 20px;
}

.services {
  background-color: #f8f9f4;
  padding: 100px 8%;
}
.services__container {
  max-width: 1300px;
  margin: 0 auto;
}
.services__title {
  font-size: 40px;
  text-align: center;
  color: #2e2e2e;
  font-weight: 600;
  margin-bottom: 80px;
}
.services__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a8c686;
  margin: 16px auto 0;
}
.services__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.service__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.service__item .service__icon {
  width: 80px;
  flex-shrink: 0;
}
.service__item .service__icon img {
  width: 100%;
  height: auto;
}
.service__item .service__content .service__name {
  font-size: 22px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 10px;
}
.service__item .service__content .service__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 60px 40px 30px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer__slogan {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}
.footer__col {
  font-size: 14px;
}
.footer__col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 0px;
}
.footer__col p {
  margin: 4px 0;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 6px;
}
.footer__col ul li a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.3s;
}
.footer__col ul li a:hover {
  color: #e2f7da;
}
.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

.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 Page Section */
.aboutpage {
  padding: 120px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.aboutpage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.aboutpage__header {
  text-align: center;
  margin-bottom: 80px;
}

.aboutpage__header h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.aboutpage__header h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.aboutpage__header p {
  font-size: 22px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.aboutpage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.aboutpage__textblock {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aboutpage__textblock:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.aboutpage__textblock h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.aboutpage__textblock h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
}

.aboutpage__textblock p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.aboutpage__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.aboutpage__facts .fact__item {
  background: white;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.aboutpage__facts .fact__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.aboutpage__facts .fact__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.aboutpage__facts .fact__item:hover:before {
  transform: scaleX(1);
}

.aboutpage__facts .fact__number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.aboutpage__facts .fact__label {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.aboutpage__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.aboutpage__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.aboutpage__image:hover img {
  transform: scale(1.05);
}

.aboutpage__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 95, 115, 0.1) 0%, rgba(0, 95, 115, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.aboutpage__image:hover:after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutpage {
    padding: 100px 0;
  }
  .aboutpage__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aboutpage__textblock {
    padding: 35px;
  }
  .aboutpage__header h1 {
    font-size: 48px;
  }
  .aboutpage__header p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aboutpage__facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aboutpage__header h1 {
    font-size: 42px;
  }
  .aboutpage__header p {
    font-size: 18px;
  }
  .aboutpage__textblock h2 {
    font-size: 24px;
  }
  .aboutpage__facts .fact__item {
    padding: 40px 25px;
  }
  .aboutpage__facts .fact__number {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .aboutpage {
    padding: 80px 0;
  }
  .aboutpage__container {
    padding: 0 25px;
  }
  .aboutpage__header h1 {
    font-size: 36px;
  }
  .aboutpage__textblock {
    padding: 30px 25px;
  }
}
.services-page {
  background-color: #fefdfb;
  padding: 100px 8%;
}
.services-page__container {
  max-width: 1300px;
  margin: 0 auto;
}
.services-page__title {
  font-size: 42px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: center;
}
.services-page__intro {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}
.services-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.services-page__card {
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.services-page__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.services-page__card .card__title {
  font-size: 20px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 20px 0 10px;
}
.services-page__card .card__text {
  font-size: 16px;
  color: #555;
  padding: 0 20px;
  line-height: 1.6;
}

.privacy {
  padding: 100px 40px;
  background: #ffffff;
}
.privacy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy__container__title {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 40px 0 16px;
  border-left: 4px solid #e2f7da;
  padding-left: 14px;
}
.privacy__container__title:first-of-type {
  font-size: 36px;
  margin-top: 0;
  border: none;
  padding-left: 0;
}
.privacy__container__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.contact-page {
  padding: 100px 8%;
  background: #f9f9f4;
}
.contact-page__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-page__title {
  font-size: 40px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 20px;
}
.contact-page__desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}
.contact-page__details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.contact-page__details li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}
.contact-page__details li strong {
  margin-right: 6px;
}
.contact-page__map {
  margin-top: 20px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.contact-page__form {
  background: #fff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.contact-page__form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-page__form form label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #333;
}
.contact-page__form form label input,
.contact-page__form form label textarea {
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 0;
  resize: vertical;
}
.contact-page__form form label input:focus,
.contact-page__form form label textarea:focus {
  outline: none;
  border-color: #a8c686;
}
.contact-page__form form label textarea {
  min-height: 120px;
}
.contact-page__form form .submit-btn {
  padding: 14px 28px;
  background-color: #a8c686;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-page__form form .submit-btn:hover {
  background-color: #91b26b;
}
.contact-page__form .contact-page__popup {
  display: none;
  margin-top: 20px;
  background: #e2f7da;
  color: #305830;
  font-weight: 500;
  padding: 16px;
  border-left: 4px solid #a8c686;
}
.contact-page__form .contact-page__popup.visible {
  display: block;
}

.faq {
  background-color: #ffffff;
  padding: 100px 8%;
}
.faq__container {
  max-width: 900px;
  margin: 0 auto;
}
.faq__title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #2e2e2e;
  margin-bottom: 60px;
}
.faq__item {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
.faq__item:last-child {
  border-bottom: 1px solid #ddd;
}
.faq__question {
  background: none;
  border: none;
  font-size: 18px;
  color: #3a3a3a;
  font-weight: 500;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}
.faq__question.active::after {
  transform: rotate(45deg);
}
.faq__answer {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
  display: none;
}
.faq__answer.visible {
  display: block;
}

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

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  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 */
