@import url('https://fonts.cdnfonts.com/css/roboto'); body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('../assets/bg.png');
  background-size: cover;
  color: white;
}

.burger {
  cursor: pointer;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 15px;
}

.line {
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s;
}

.nav {
  opacity: 0;
  /* Начальная непрозрачность */
  transform: translateY(-20px);
  /* Начальное смещение вверх */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* Плавная анимация */
  pointer-events: none;
  /* Отключаем взаимодействие, когда меню скрыто */
  position: absolute;
  top: 100px;
  left: 0;
  width: 50%;
  background-color: #1e416d;
  border-radius: 10px;
}

.nav.show {
  opacity: 1;
  /* Полная непрозрачность */
  transform: translateY(0);
  /* Восстанавливаем положение */
  pointer-events: auto;
  /* Включаем взаимодействие */
  ; }

.nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav li {
  text-align: center;
  padding: 15px 0;
}

.nav a {
  text-decoration: none;
  color: #00BFFF;
}

.accordion {
  width: 100%;
  /* Максимальная ширина аккордеона */
  margin: auto;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #1f3451;
  border-radius: 5px;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background-color: #081425;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #0e1e34;
  /* Эффект при наведении */
  ; }

.icon {
  margin-right: 10px;
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  /* Скрываем содержимое по умолчанию */
  opacity: 0;
  /* Начальная непрозрачность */
  transition: max-height 0.5s ease, opacity 0.5s ease;
  /* Плавная анимация */
  padding: 0 15px;
  /* Отступы для содержимого */
  ; }

.accordion-body.open {
  max-height: 200px;
  /* Увеличиваем значение, чтобы было достаточно */
  opacity: 1;
  /* Полная непрозрачность */
  padding: 15px;
  /* Полные отступы при открытии */
  ; }

main {
  background: #000714d9;
}

header {
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #020f22;
  position: fixed;
  width: 100%;
}

footer {
  background: #020f22;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_block {
}

.logo {
  width: 65px;
}

.main_block {
  display: flex;
  flex-direction: column;
  max-width: 1490px;
  width: 100%;
  margin: auto;
}

.main_block > .title {
  margin: 200px 0 50px;
}

.title {
  text-align: center;
  color: #00BFFF;
}

.golos_block {
  display: flex;
  flex-direction: row;
  background: #081425;
  border-radius: 15px;
  justify-content: space-around;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.girl_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 27%; */
  margin: 20px 0;
  flex-basis: 30.33%;
}

.girl_img {
  width: 300px;
  border-radius: 50%;
}

.none {
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn {
  height: 50px;
  border-radius: 50px;
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(147,125,226,1) 18%, rgba(117,92,171,1) 53%, rgba(141,129,165,1) 100%);
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  cursor: pointer;
  max-width: 350px;
}

.info_block {
  margin: 50px 0;
}

.info_block_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.content_block {
  background: #1e416d;
  width: 400px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
}

.our_block {
  margin: 40px 0;
}

.our_block_content {
  background: #081425;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.faq_block {
  margin: 30px 0;
}

.girl_img > img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.girl_title > .title {
  font-size: 29px;
}

.girl_golos > span {
  color: #F0F8FF
}

.content_block > span {
  font-size: 29px;
  font-weight: 600;
  color: #c0efff;
}

.content_block > p {
  font-size: 14px;
  color: #F0F8FF;
  text-align: center;
}

.our_block_content > .content_block {
  background: none;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.our_block_content > .none {
  width: 300px;
  margin: auto;
}

@media screen and (max-width: 620px) {
  .burger {
      cursor: pointer;
      width: 30px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin: 15px;
  }

  .line {
      height: 3px;
      background-color: #ffffff;
      transition: all 0.3s;
  }

  .nav {
      opacity: 0;
      /* Начальная непрозрачность */
      transform: translateY(-20px);
      /* Начальное смещение вверх */
      transition: opacity 0.5s ease, transform 0.5s ease;
      /* Плавная анимация */
      pointer-events: none;
      /* Отключаем взаимодействие, когда меню скрыто */
      position: absolute;
      top: 100px;
      left: 0;
      width: 100%;
      background-color: #1e416d;
      border-radius: 10px;
  }

  .nav.show {
      opacity: 1;
      /* Полная непрозрачность */
      transform: translateY(0);
      /* Восстанавливаем положение */
      pointer-events: auto;
      /* Включаем взаимодействие */
      ; }

  .nav ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
  }

  .nav li {
      text-align: center;
      padding: 15px 0;
  }

  .nav a {
      text-decoration: none;
      color: #00BFFF;
  }

  .accordion {
      width: 100%;
      /* Максимальная ширина аккордеона */
      margin: auto;
  }

  .accordion-item {
      margin-bottom: 10px;
      border: 1px solid #1f3451;
      border-radius: 5px;
  }

  .accordion-header {
      display: flex;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #081425;
      border-radius: 5px;
      transition: background-color 0.3s;
  }

  .accordion-header:hover {
      background-color: #e6e6e6;
      /* Эффект при наведении */
      ; }

  .icon {
      margin-right: 10px;
      transition: transform 0.3s;
  }

  .accordion-body {
      max-height: 0;
      overflow: hidden;
      /* Скрываем содержимое по умолчанию */
      opacity: 0;
      /* Начальная непрозрачность */
      transition: max-height 0.5s ease, opacity 0.5s ease;
      /* Плавная анимация */
      padding: 0 15px;
      /* Отступы для содержимого */
      ; }

  .accordion-body.open {
      max-height: 200px;
      /* Увеличиваем значение, чтобы было достаточно */
      opacity: 1;
      /* Полная непрозрачность */
      padding: 15px;
      /* Полные отступы при открытии */
      ; }

  main {
      background: #000714d9;
  }

  header {
      height: 100px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background: #020f22;
  }

  footer {
      background: #020f22;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .logo_block {
  }

  .logo {
      width: 65px;
  }

  .main_block {
      display: flex;
      flex-direction: column;
      max-width: 1490px;
      width: 100%;
      margin: auto;
  }

  .title {
      text-align: center;
      color: #00BFFF;
  }

  .golos_block {
      display: flex;
      flex-direction: column;
      background: #081425;
      border-radius: 15px;
      padding: 0px10px;
      justify-content: space-around;
  }

  .girl_block {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin: 60px 0;
  }

  .girl_img {
      width: 300px;
      border-radius: 50%;
  }

  .none {
      text-decoration: none;
      width: 100%;
  }

  .btn {
      height: 50px;
      border-radius: 50px;
      width: 100%;
      margin-top: 20px;
      background: #937de2;
      color: white;
      font-family: 'Roboto', sans-serif;
      font-size: 19px;
      cursor: pointer;
  }

  .info_block {
      margin: 50px 0;
  }

  .info_block_content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .content_block {
      background: #1e416d;
      padding: 10px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 15px;
      max-width: 400px;
      width: 95%;
      margin: 20px auto;
  }

  .our_block {
      margin: 40px 0;
  }

  .our_block_content {
      background: #081425;
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 0;
  }

  .faq_block {
      margin: 30px 0;
  }

  .girl_img > img {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
  }

  .girl_title > .title {
      font-size: 29px;
  }

  .girl_golos > span {
      color: #F0F8FF
  }

  .content_block > span {
      font-size: 29px;
      font-weight: 600;
      color: #c0efff;
  }

  .content_block > p {
      font-size: 14px;
      color: #F0F8FF;
  }

  .our_block_content > .content_block {
      background: none;
      display: flex;
      flex-direction: column;
      margin: auto;
  }

  .our_block_content > .none {
      width: 300px;
      margin: auto;
  }
}

.counter {
  font-size: 2em;
  font-weight: bold;
  color: #007ACC;
}

.girl_bio {
  text-align: center;
}

.text {
  font-size: 20px;
  width: 350px;
  display: block;
  margin-bottom: 20px;
}


.modal {
  display: none; /* Скрываем модальное окно по умолчанию */
  position: fixed; /* Остается на месте */
  z-index: 1; /* Ставим на верхний уровень */
  left: 0;
  top: 0;
  width: 100%; /* Полная ширина */
  height: 100%; /* Полная высота */
  overflow: auto; /* Возможность прокрутки при необходимости */
  background-color: rgb(0,0,0); /* Цвет фона */
  background-color: rgba(0,0,0,0.4); /* Полупрозрачный черный фон */
}

.modal-content {
  background-color: #112845e6;
  border: 1px solid #888;
  max-width: 500px; /* Ширина модального окна */
  width: 85%;
  margin: auto; /* Авто-отступы для выравнивания по центру */
  position: absolute; /* Изменение позиции */
  top: 50%; /* Вертикальное выравнивание */
  left: 50%; /* Горизонтальное выравнивание */
  transform: translate(-50%, -50%); /* Центрирование по обеим осям */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Немного тени для эффекта */
  text-align: center;
}


.input_form_block {
  position: relative;
  margin: 20px 0;
  width: 100%;
}

.input_form {
  padding-left: 10px;
  /* Отступы: слева, справа, сверху, снизу */
  border: 2px solid #192f52;
  border-radius: 5px;
  font-size: 16px;
  background: #000815;
  height: 45px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 600;
  width: 90%;
}
.input_form_block label {
  position: absolute;
  top: -9px;
  /* Поднимаем label вверх при фокусе или вводе */
  left: 30px;
  font-size: 13px;
  /* Уменьшение размера шрифта */
  color: #ffffff;
  /* Цвет текста при фокусе */
  background-color: #112844;
  /* Задает цвет фона */
  padding: 0 5px;
  /* Внутренние отступы */
  border-radius: 5px;
}
.btn {
  height: 50px;
  border-radius: 50px;
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(147,125,226,1) 18%, rgba(117,92,171,1) 53%, rgba(141,129,165,1) 100%);
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  cursor: pointer;
  border: none;
  margin: 20px 0;
}

.input_block > span {
  text-align: center;
  color: #999999;
  font-size: 15px;
}

.input_form::placeholder {
  -webkit-text-fill-color: #717171;
}