@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 #005cbf;
  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: #005cbf;
}
.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: #005cbf;
}
.header__lang-switch .lang-btn:hover {
  color: #005cbf;
}
@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;
  }
}

:root {
  --primary: #0F5E9C;
  --secondary: #FFD700;
  --accent: #E74C3C;
  --light: #F8F9FA;
  --dark: #2C3E50;
  --text: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
  margin-left: 0.5rem;
}

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

.header__menu {
  display: flex;
  list-style: none;
}

.header__menu li {
  margin-left: 2rem;
}

.header__menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.header__menu a:hover {
  color: var(--primary);
}

.header__menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.header__menu a:hover:after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  margin-left: 2rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-weight: 500;
  color: var(--dark);
  opacity: 0.6;
  transition: all 0.3s;
}

.lang-btn.active {
  opacity: 1;
  color: var(--primary);
  text-decoration: underline;
}

.header__burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.header__burger span {
  width: 100%;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(15, 94, 156, 0.7), rgba(15, 94, 156, 0.7)), url("https://images.unsplash.com/photo-1554469384-e58fac16e23a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1347&q=80") no-repeat center/cover;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: white;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section__title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card__img {
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card__img img {
  transform: scale(1.1);
}

.service-card__content {
  padding: 1.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about {
  background: var(--primary);
  color: white;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  margin-bottom: 2rem;
}

.about__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about__img img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials {
  background: var(--light);
}

.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(15, 94, 156, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card__text {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
}

.testimonial-card__author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-card__author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__author-name {
  font-weight: 600;
  color: var(--primary);
}

.contact {
  background: white;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__info {
  margin-bottom: 2rem;
}

.contact__info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 992px) {
  .about__content,
  .contact__container {
    grid-template-columns: 1fr;
  }
  .about__img {
    order: -1;
  }
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
  }
  .header__menu.active {
    left: 0;
  }
  .header__menu li {
    margin: 1rem 0;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.2rem;
  }
  .section__title {
    font-size: 2rem;
  }
}
.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: #005cbf;
}
.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;
}

:root {
  --primary: #0F5E9C;
  --secondary: #FFD700;
  --accent: #E74C3C;
  --light: #F8F9FA;
  --dark: #2C3E50;
  --text: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.about-hero {
  height: 60vh;
  background: linear-gradient(rgba(15, 94, 156, 0.7), rgba(15, 94, 156, 0.7)), url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center/cover;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: white;
  text-align: center;
}

.about-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.about-hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section__title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.values {
  background: var(--primary);
  color: white;
  padding: 6rem 2rem;
}

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

.values__title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.values__title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.value-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card__img {
  height: 300px;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-card__img img {
  transform: scale(1.05);
}

.team-card__content {
  padding: 1.5rem;
}

.team-card__name {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-card__position {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn--primary {
  background: var(--primary);
  color: white;
}

.cta {
  background: linear-gradient(rgba(15, 94, 156, 0.8), rgba(15, 94, 156, 0.8)), url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.cta__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-img {
    order: -1;
  }
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s;
  }
  .header__menu.active {
    left: 0;
  }
  .header__menu li {
    margin: 1rem 0;
  }
  .about-hero__title {
    font-size: 2.5rem;
  }
  .section__title {
    font-size: 2rem;
  }
  .values__title,
  .cta__title {
    font-size: 2rem;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #f8f8f8;
  padding: 2rem;
  border-left: 4px solid #005cbf;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
}
.service-card:hover {
  background: #f1f1f1;
}
.service-card__icon {
  font-size: 2.5rem;
  color: #005cbf;
}
.service-card h3 {
  font-size: 1.3rem;
  color: #222;
}
.service-card p {
  color: #555;
  font-size: 1rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #444;
}
.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #005cbf;
}

.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 #005cbf;
  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 {
  background-color: #f5f5f5;
  padding: 100px 20px;
}
.contact__wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.contact__title {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 40px;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__field {
  display: flex;
  flex-direction: column;
}
.contact__field label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1c1c;
}
.contact__field input,
.contact__field textarea {
  font-size: 16px;
  padding: 12px;
  border: 2px solid #1c1c1c;
  background: #fff;
  outline: none;
}
.contact__field input:invalid,
.contact__field textarea:invalid {
  border-color: #e63946;
}
.contact__field textarea {
  resize: vertical;
}
.contact__submit {
  align-self: flex-start;
  background-color: #1c1c1c;
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
.contact__submit:hover {
  background-color: #000;
}
.contact__popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.contact__popup.active {
  display: flex;
}
.contact__popup-content {
  background: #fff;
  padding: 30px;
  box-shadow: 8px 8px 0 #1c1c1c;
  max-width: 400px;
  text-align: center;
}
.contact__popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1c1c1c;
}
.contact__popup-content button {
  background-color: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.contact__popup-content button:hover {
  background-color: #000;
}
@media (max-width: 480px) {
  .contact {
    padding: 60px 20px;
  }
  .contact__title {
    font-size: 28px;
  }
  .contact input,
  .contact textarea {
    font-size: 15px;
  }
}

@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 */
