/* Белый */
/* Оранжевый */
/* Светло-оранжевый */
/* Темно-оранжевый */
/* Черный */
/* Серый */
/* Темно-оранжевый для hover */
@font-face {
  font-family: "Dosis";
  src: url("../fonts/Dosis-VariableFont_wght.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Dosis";
  background-color: #6a7182;
  background-image: url("../images/c1d12ad198d19686a88ae904b926d7c94a0bc069.svg");
}
body h1 {
  font-weight: 900;
  font-size: 51px;
  line-height: 68px;
  color: #ffffff;
}
@media (max-width: 768px) {
  body h1 {
    font-weight: 900;
    font-size: 46px;
    line-height: 52px;
  }
}
body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  color: #ffffff;
}
@media (max-width: 768px) {
  body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
  }
}
body h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 52px;
  color: #ff6f00;
}
@media (max-width: 768px) {
  body h2 {
    font-weight: 900;
    font-size: 28px;
    line-height: 52px;
  }
}
body h3 {
  font-weight: 700;
  font-size: 23px;
  line-height: 31px;
  color: #ffffff
}
@media (max-width: 768px) {
  body h3 {
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
  }
}
body a {
  text-decoration: none;
  color: #ff6f00;
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
}
body ul {
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
  color: #ffffff;
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 50px 0;
  overflow: hidden;
}
.btn {
  padding: 15px 40px;
  background-color: #ff6f00;
  border-radius: 36px;
  color: #ffffff;
  transition: 0.5s ease-in;
}
.btn:hover {
  background-color: #bf5700;
  color: #ffffff;
}
.orange {
  color: #e5e1e4;
}
.site-header-flex {
  /* width: 1400px; */
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
@media (max-width: 768px) {
  .site-header-flex {
    overflow: hidden;
    padding: 20px;
    justify-content: space-between;
    gap: 20px;
  }
  .site-header-flex img {
    max-width: 300px;
  }
}
.site-logo img {
  max-width: 284px;
}
.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .desktop-navigation {
    display: none;
  }
}
.desktop-navigation ul {
  margin-right: 60px;
  display: flex;
  gap: 60px;
  max-width: 100%;
}
.desktop-navigation ul a {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  /* Белый цвет текста */
}
.desktop-navigation ul a:hover {
  color: #ff6f00;
  /* Оранжевый цвет при наведении */
}
.menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu-toggle img {
    max-width: 50px;
    display: block;
  }
}
.mobile-navigation {
  position: fixed;
  top: 0;
  left: -100%;
  /* Скрыть меню за экраном */
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  z-index: 1001;
  transition: left 0.3s ease-in-out;
  background-color: #6a7182;
  /* Темно-оранжевый фон */
}
.mobile-navigation.open {
  left: 0;
  /* Показать меню */
  width: 100%;
  height: 50%;
}
.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-navigation ul li {
  margin-bottom: 25px;
}
.mobile-navigation ul li a {
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  /* Белый цвет текста */
}
.mobile-navigation ul li a:hover {
  color: #ff6f00;
  /* Оранжевый цвет при наведении */
}
.close-btn {
  font-size: 50px;
  align-self: flex-start;
  cursor: pointer;
  color: #ffffff;
  /* Белый цвет кнопки закрытия */
}
.btn-mobile {
  margin: 0 auto;
  text-align: center;
  max-width: 213px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 111, 0, 0.6);
  /* Оранжевый полупрозрачный фон */
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
.hidden {
  display: none;
}
.home {
  /* Градиентный фон */
  background: linear-gradient(180deg, #6a7182 0%, #635d8f 100%);
  /* Градиентный фон */
  background-position: center;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Затемнение фона */
  z-index: 1;
}
@media (max-width: 768px) {
  .home {
    padding: 50px 0;
  }
}
.home .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.home-text {
  max-width: 850px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.home-text h1 {
  color: #ffffff;
  /* Белый цвет заголовка */
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}
.home-text h1 span {
  color: #ff6f00;
  /* Оранжевый выделенный текст */
}
@media (max-width: 768px) {
  .home-text h1 {
    font-size: 36px;
  }
}
.home .btn {
  background: #ff6f00;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 5px 15px rgba(255, 102, 0, 0.3);
}
.home .btn:hover {
  background: #635d8f;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(255, 102, 0, 0.5);
}
@media (max-width: 768px) {
  .home .btn {
    font-size: 18px;
    padding: 12px 35px;
  }
}
.how {
  padding: 50px 0;
}
.how .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .how .container {
    flex-direction: column;
  }
}
.how-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 500px;
}
.how-text-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.how-text-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.how-text-item img {
  max-width: 100px;
}
.how-text-item p {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff
  /* Светло-оранжевый цвет текста в пунктах */
}
.how-img img {
  max-width: 450px;
}
@media (max-width: 768px) {
  .how-img {
    order: 2;
  }
  .how-img img {
    max-width: 380px;
  }
}
.play {
  padding: 90px 0 40px 0;
  background: linear-gradient(180deg, #6a7182 0%, #635d8f 100%);
  /* Градиентный фон */
}
@media (max-width: 768px) {
  .play {
    padding: 40px 0;
  }
}
.play h2 {
  max-width: 700px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  /* Белый текст заголовка */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}
.play h2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .play h2 {
    font-size: 32px;
  }
}
.play .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.play-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .play-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.play-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 16px;
  padding: 40px 30px;
  background: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .play-card {
    flex-direction: column;
  }
}
.play-card img {
  max-width: 80px;
  transition: transform 0.3s ease-in-out;
}
.play-card h3 {
  color: #6a7182;
  /* Темно-оранжевый заголовок */
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.play-card p {
  color: #121212;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  text-align: start;
}
.play-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}
.play-card:hover img {
  transform: scale(1.1);
}
.play-card:hover h3 {
  color: #ff6f00;
}
.why {
  padding: 30px;
  background-color: #6a7182;
  /* Темно-оранжевый фон */
}
.why .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .why .container {
    flex-direction: column;
  }
}
.why-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.why-text h2 {
  color: #ffffff
  /* Светло-оранжевый заголовок */
}
.why-text p {
  color: #ffffff;
  /* Белый текст */
}
@media (max-width: 768px) {
  .why-img img {
    max-width: 360px;
  }
}
.faq {
  margin: 50px auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .faq {
    margin: 0px auto;
  }
}
.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff
  /* Светло-оранжевый цвет заголовка */
}
.faq-sect {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .faq-sect {
    flex-direction: column;
  }
}
.faq-img img {
  max-width: 500px;
}
@media (max-width: 768px) {
  .faq-img img {
    max-width: 300px;
  }
}
.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
  color: #ffffff;
  /* Белый текст */
  display: flex;
  flex-direction: column;
  width: 522px;
}
@media (max-width: 768px) {
  .faq-item {
    width: 100%;
  }
}
.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in;
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  color: #ffffff;
  /* Белый цвет текста вопроса */
}
.faq-question:hover {
  color: #ffffff
  /* Светло-оранжевый цвет текста при наведении */
  border-left: 5px solid #ff6f00;
  /* Левый бордер при наведении */
}
.faq-question span {
  font-weight: bold;
}
.faq-answer {
  padding: 15px;
  display: none;
  color: #ffffff;
  /* Белый цвет текста ответа */
}
.faq-answer p {
  margin: 0;
}
.toggle-icon {
  margin-left: 30px;
  font-size: 35px;
}
.reviews-section {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 30px 20px;
  }
}
.reviews-section h2 {
  color: #ffffff
  /* Светло-оранжевый заголовок */
  margin-bottom: 25px;
}
.reviews-section p {
  max-width: 720px;
  color: #ffffff;
  /* Белый цвет текста */
}
.reviews-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
}
.review-card {
  background-color: #6a7182;
  /* Темно-оранжевый фон карточки */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 360px;
  padding: 40px 30px;
  text-align: start;
  transition: 0.3s ease-in-out;
}
.review-card:hover {
  background-color: #635d8f;
  /* Светло-оранжевый фон при наведении */
}
.review-card img {
  border-radius: 10%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.review-card h3 {
  color: #ffffff;
  /* Белый цвет имени пользователя */
  margin: 10px 0;
}
.review-card p {
  color: #ffffff;
  /* Белый цвет текста отзыва */
}
.review-card .stars {
  color: #ffffff
  /* Светло-оранжевые звезды */
  font-size: 35px;
}
@media (max-width: 768px) {
  .review-card {
    width: 100%;
  }
}
.stat {
  background: linear-gradient(180deg, #6a7182 0%, #635d8f 100%);
  /* Градиентный фон */
  padding: 80px 0;
}
.stat .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.stat h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  /* Белый заголовок */
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}
.stat h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .stat h2 {
    font-size: 32px;
  }
}
.stat_block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .stat_block {
    grid-template-columns: 1fr;
  }
}
.stat_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  /* Полупрозрачный фон */
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.stat_list h3 {
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  color: #ffffff;
  /* Белый заголовок */
}
.stat_list p {
  font-size: 18px;
  color: #ffffff;
}
.stat_list:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}
.submission-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .submission-section .container {
    flex-direction: column;
  }
}
.submission-section-text {
  max-width: 704px;
}
.submission-section h2 {
  margin-bottom: 20px;
  color: #ffffff;
  /* Белый текст */
}
.submission-section h2 span {
  color: #ffffff;
  /* Темно-оранжевый цвет для выделенных частей */
}
.submission-section p {
  color: #e5e1e4;
  margin-bottom: 20px;
  line-height: 1.6;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 478px;
}
@media (max-width: 768px) {
  .form {
    width: 100%;
  }
}
.form input {
  flex: 1;
  padding: 15px 30px;
  border: 3px solid #ffffff
  /* Светло-оранжевая рамка для инпутов */
  border-radius: 36px;
  outline: none;
  font-size: 16px;
  background-color: #121212;
  color: #ffffff;
}
.form input::placeholder {
  color: #e5e1e4;
}
.form button {
  padding: 15px 30px;
  border: none;
  border-radius: 36px;
  background-color: #635d8f;
  /* Светло-оранжевая кнопка */
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #ffffff;
}
.form button:hover {
  background-color: #6a7182;
  /* Темно-оранжевый при наведении */
}
.success-message {
  display: none;
  margin: 0 auto;
  margin-top: 20px;
  padding: 10px;
  background-color: #a0e6a0;
  /* Зеленый фон */
  color: #2d7a2d;
  /* Темно-зеленый текст */
  border: 1px solid #2d7a2d;
  border-radius: 5px;
  max-width: 500px;
}
.error-message {
  display: none;
  margin-top: 20px;
  padding: 10px;
  background-color: #ff6b6b;
  /* Красный фон */
  color: #8b0000;
  /* Темно-красный текст */
  border: 1px solid #8b0000;
  border-radius: 5px;
}
footer {
  background-color: #6a7182;
  /* Темно-оранжевый фон футера */
  padding: 40px 0;
}
footer .logo img {
  width: 300px;
}
footer p {
  color: #ffffff;
  /* Белый текст */
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 75px;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}
.footer-content-nav {
  max-width: 295px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer-content-nav a {
  color: #ffffff;
  /* Белые ссылки */
  font-size: 18px;
}
.footer-content-text {
  max-width: 606px;
  color: #ffffff;
  /* Белый текст */
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-content-text .email .orange {
  color: #ffffff
  /* Светло-оранжевый цвет для email */
}
.footer-content .img {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-content .img {
    flex-direction: column;
  }
}
.footer-content .img img {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  width: 200px;
}
.site-logo {
  font-size: 20px;
  color: #ffffff;
  /* Белый текст логотипа */
  text-transform: uppercase;
}
.logo {
  font-size: 20px;
  color: #ffffff;
  /* Белый текст логотипа */
  text-transform: uppercase;
}
.main-header {
  margin: 0 auto;
  color: #ffffff;
  /* Белый цвет заголовка */
  max-width: 700px;
  text-align: center;
  margin-bottom: 40px;
}
.main-text h2 {
  color: #ffffff
  /* Светло-оранжевый цвет заголовка */
  margin-bottom: 20px;
}
.main-text p {
  color: #ffffff;
  /* Белый цвет для параграфа */
  margin-bottom: 40px;
}
.main-text ul li {
  color: #ffffff;
  /* Белый цвет для списка */
  margin-bottom: 20px;
}
.main-text .white {
  color: #ffffff;
  /* Белый цвет для определенных элементов */
}
@media (max-width: 768px) {
  .main-text .white {
    color: #ffffff;
    /* Белый цвет для мобильных устройств */
  }
}
