@charset "UTF-8";

/* SF Pro Display - основные начертания */
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-600.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/sf-pro-800.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* SF Pro Text - текстовые начертания */
@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 1300px) and (min-height: 1050px) {
  section {
    height: 100vh;
  }
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/sf-pro-text-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Использование в body */
body {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

/* Для заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
}

/* Обнуляющие стили - Reset CSS */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Документ */
html {
  font-size: 100%;
  /* 16px по умолчанию */
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
}

body {
  height: 100%;
  min-height: 100%;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

/* Списки */
ol,
ul,
menu {
  list-style: none;
}

/* Элементы форм */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
  color: inherit;
}

/* Подчеркивание текста */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Медиа элементы */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Таблицы */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Отмена стилей для автозаполнения */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Устранение лишних отступов у fieldset */
fieldset {
  min-width: 0;
}

/* Доступность при фокусе */
:focus {
  outline: none;
}

/* Устранение синего выделения на моб. устройствах */
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Скрытие стрелок у number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Улучшенная обработка текста в браузерах */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Улучшение читаемости */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

p,
ul li,
a {
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
  color: #FFFFFF;
}

section {
  padding: 50px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  section {
    padding: 30px 0;
  }
}

._container {
  max-width: 1520px;
  padding: 0 60px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  ._container {
    padding: 0 30px;
  }
}

@media (max-width: 650px) {
  ._container {
    padding: 0 20px;
  }
}

body.lock {
  overflow: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #000000;
}

body main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn a,
.btn-blue a {
  padding: 15px 25px;
  line-height: 1;
  border-radius: 40px;
  white-space: nowrap;
  color: #000000;
  display: block;
  font-family: "SF Pro Text";
  background-color: #fff;
  font-size: clamp(15px, 0.462962963vw + 13.3333333333px, 20px);
}

.header__btn a#loginBtn {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media (hover: hover) {

  .header__btn a#loginBtn:hover,
  .header__btn a#loginBtn:focus-visible {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
}

footer .header__link::after {
  width: 0;
}

.btn-blue a {
  text-align: center;
  background-color: #0000FF;
  color: #fff;
}

h2 {
  font-size: clamp(40px, 1.3888888889vw + 35px, 55px);
}

h3 {
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
}

h1 {
  font-size: clamp(40px, 2.2222222222vw + 32px, 64px);
}

.global {
  position: relative;
  height: 100vh;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .global {
    height: auto;
    padding: 130px 0 30px 0;
  }
}

@media (min-width: 1200px) and (max-height: 850px) {
  .global {
    height: auto;
    padding: 150px 0 70px 0;
  }
}

@media (max-width: 991px) {
  .global {
    padding: 96px 0 30px 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .global {
    height: 100vh;
  }
}

.global::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.92%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 51.92%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.global__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .global__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.global__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.global__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}

@media (max-width: 768px) {
  .global__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.global__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global__title h1 {
  color: #fff;
}

.global__title span {
  width: 280px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
}

@media (max-width: 991px) {
  .global__title span {
    width: 180px;
  }
}

.global .global__opicanie {
  margin-top: 45px;
  max-width: 650px;
}

@media (max-width: 1250px) {
  .global .global__opicanie {
    margin-top: 30px;
  }
}

.global__desp {
  margin-top: 16px;
}

.global__favorits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  margin-top: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 950px;
}

@media (max-width: 1250px) {
  .global__favorits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-top: 30px;
  }
}

.global__text {
  line-height: 1;
  font-size: 32px;
  white-space: nowrap;
  font-family: "SF Pro Text";
  font-weight: 700;
}

.global__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.global__fon video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.global-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global-btn a {
  position: relative;
  width: 246px;
  font-family: "SF Pro Text";
  font-weight: 400;
  height: 246px;
  color: #FFFFFF;
  border-radius: 50%;
  background-color: #0000FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  font-size: clamp(15px, 0.8333333333vw + 12px, 24px);
}




@media (max-width: 881px) {
  .global-btn a {
    height: 190px;
    width: 190px;
  }
}

@media (max-width: 768px) {
  .global-btn a {
    width: 100%;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }

  .global-btn a::before {
    width: 110px !important;
    height: 110px !important;
  }
}

@media (min-width: 1200px) {
  .global-btn a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.global-btn a span {
  position: relative;
  z-index: 2;
}

.global-btn a svg {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .global-btn a svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes pulse-hover {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

.global-btn a::before {
  content: "";
  width: 120%;
  height: 120%;
  background-color: rgba(0, 0, 255, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 3s infinite ease-in-out;
}

.global-btn a:hover::before {
  animation: pulse-hover 3s infinite ease-in-out;
}

@media (max-width: 768px) {

  .global .global-btn a {}

  .global-btn a::before {
    border-radius: 50%;
    width: 200px;
    height: 200px;
  }

  .help-animation-container {
    position: relative;
    top: 400px !important;
    left: 101px !important;

  }
}

.start {
  position: relative;
  height: 100vh;
}

@media (max-width: 1200px) {
  .start {
    height: auto;
    padding: 30px 0;
  }
}

.start::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.92%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 51.92%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.start__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.start__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
}

@media (max-width: 1200px) {
  .start__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.start__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.start__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}

@media (max-width: 1200px) {
  .start__column:last-child {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.start__cont * {
  text-align: left;
}

.start__cont {
  position: relative;
  z-index: 2;
  width: 600px;
}

.start__title {
  max-width: 700px;
}

.start__title h2 {
  color: #FFFFFF;
}

.start__desp {
  margin-top: 40px;
  max-width: 550px;
}

@media (max-width: 1200px) {
  .start__desp {
    margin-top: 15px;
  }
}

.start__list {
  position: relative;
  z-index: 3;
}

.start__list ul {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .start__list ul {
    gap: 20px;
  }
}

.start__list ul li {
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.start__list ul li svg {
  width: 30px;
  height: 30px;
}

.start__btn {
  margin-top: 6%;
  width: 100%;
  position: relative;
  z-index: 3;
}

@media (max-width: 1200px) {
  .start__btn {
    margin-top: 30px;
  }
}

.start__btn a {
  width: 80%;
  font-size: clamp(20px, 1.1111111111vw + 16px, 32px);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media (min-width: 1200px) {
  .start__btn a:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
}

.start__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.start__fon video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.missia {
  overflow: hidden;
}

.video-container {
  position: relative;

  transform: translate(0%, -40%) scale(1);
  z-index: -1;

  /* или нужная высота */
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: revert;
  /* или contain в зависимости от нужд */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* регулируйте прозрачность */
  z-index: 1;
}

.missia__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.missia__content {
  position: relative;
  top: 150px;
  width: 100%;
  display: flex;
}

.missia .missia__item {
  position: relative;
  left: 150px;
}

@media (max-width: 1200px) {
  .missia__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.missia__column {
  padding: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.missia__column:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.missia__title h2 {
  color: #fff;
}

.missia__desp {
  margin-top: 35px;
  max-width: 650px;
}

@media (max-width: 1200px) {
  .missia__desp {
    margin-top: 15px;
  }
}

.missia__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media (max-width: 1200px) {
  .missia__btn a {
    width: 200px;
    height: 200px;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .missia__btn a:hover {
    background-color: #0000FF;
  }
}

.missia__btn a span {
  text-align: center;
  display: block;
  max-width: 180px;
}

.plashka {
  margin-top: 10%;
  background-color: #1E1E32;
  padding: 50px;
  border-radius: 36px;
}

@media (max-width: 1450px) {
  .plashka {
    padding: 20px;
    width: 100%;
  }
}

.plashka__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1300px) {
  .plashka__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media (max-width: 1300px) {
  .plashka__column {
    width: 100%;
  }
}

.plashka .plashka__image {
  margin-bottom: -50px;
  margin-top: -100px;
}

@media (max-width: 1450px) {
  .plashka .plashka__image {
    margin-bottom: -20px;
  }
}

@media (max-width: 1300px) {
  .plashka .plashka__image {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.plashka__title {
  max-width: 500px;
}

@media (max-width: 1300px) {
  .plashka__title {
    max-width: 100%;
  }
}

.plashka__title h2 {
  color: #fff;
  font-size: clamp(40px, -0.3703703704vw + 41.3333333333px, 36px);
}

@media (max-width: 1300px) {
  .plashka__title h2 {
    text-align: center;
  }
}

.plashka__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1300px) {
  .plashka__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .plashka__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.plashka__link {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
  font-family: "SF Pro Text";
  font-weight: 400;
}

@media (max-width: 650px) {
  .plashka__link {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .plashka__link a {
    width: 100%;
  }
}

.plashka__link svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.help__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1200px) {
  .help__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.help__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}

.help__column:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.help .help__btn-two.global-btn.btn-blue {
  margin-top: -100px;
}

@media (max-width: 1200px) {
  .help .help__btn-two.global-btn.btn-blue {
    margin-top: 0px;
  }
}

.help__title h2 {
  color: #fff;
}

.help__desp {
  margin-top: 45px;
  max-width: 650px;
}

@media (max-width: 1200px) {
  .help__desp {
    margin-top: 15px;
  }
}

.help__btn {
  margin-top: 45px;
}

@media (max-width: 1200px) {
  .help__btn {
    margin-top: 30px;
  }
}

.help__btn a {
  display: block;
  padding: 15px 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #fff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border-radius: 40px;
}

@media (max-width: 1200px) {
  .help__btn a {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .help__btn a:hover {
    background-color: #fff;
    color: #000;
  }
}

.help__image {
  border-radius: 0 180px 180px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .help__image {
    display: none;
  }
}

.help__image img {
  width: 100%;
  height: 100%;
}

.why__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.why__top h2 {
  color: #fff;
}

@media (max-width: 1200px) {
  .why__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.why__title {
  max-width: 750px;
}

@media (max-width: 1200px) {
  .why__title {
    max-width: 100%;
  }
}

.why__desp {
  max-width: 500px;
}

@media (max-width: 1200px) {
  .why__desp {
    max-width: 100%;
  }
}

.why__tabs {
  margin-top: 5%;
  background-color: #1E1E32;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 80px;
  overflow: hidden;
}

.why__tabs div svg {
  transform: rotate(-90deg);
}

.svgRotate {
  animation-name: svgRotate;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}

@keyframes svgRotateRevers {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes svgRotate {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 1200px) {
  .why__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 30px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.why__tab {
  padding: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

@media (max-width: 1200px) {
  .why__tab {
    padding: 5px;
  }
}

.why__tab p {
  position: relative;
  font-family: "SF Pro Display";
  font-weight: 700;
  font-size: clamp(24px, 0.7407407407vw + 21.3333333333px, 32px);
  padding: 17px 24px 17px 56px;
  width: 100%;
  color: #75758E;
  background-color: #28293D;
  border-radius: 40px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  text-align: center;
}

.why__tab:not(.active) p::before {
  opacity: 0;
}

.why__tab:not(.active):hover p::before {
  opacity: 0;
  transform: translate(-6px, -50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab.active p::before {
  opacity: 1;
  transform: translate(-6px, -50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab.active p:hover::before {
  opacity: 1;
  transform: translate(6px, 50%) rotate(90deg);
  -webkit-transform: translate(-6px, -50%) rotate(90deg);
}

.why__tab {
  transition: all 0.3s ease;
}

.why__tab:active p::before {
  transform: translate(-6px, -50%) rotate(90deg) scale(0.95);
  -webkit-transform: translate(-6px, -50%) rotate(90deg) scale(0.95);
}

@media (max-width: 1200px) {
  .why__tab p {
    padding: 13px 16px 13px 48px;
  }
}

@media (max-height: 1200px) {
  .why__tab p:hover {
    background-color: #FFFFFF;
    color: #000;
  }
}

.tab-content__conts {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px 0;
}

@media (max-width: 1200px) {
  .tab-content__conts {
    margin-top: 30px;
    gap: 20px;
  }
}

.tab-content__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 max-content;
  flex: 0 1 max-content;
}

@media (max-width: 1200px) {
  .tab-content__column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
}

.tab-content__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .tab-content__rows {
    gap: 20px;
  }
}

.tab-content__icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-family: "SF Pro Text";
  font-weight: 500;
  color: #fff;
  font-size: clamp(16px, 0.7407407407vw + 13.3333333333px, 24px);
}

@media (max-width: 1200px) {
  .tab-content__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}

.tab-content__desp {
  max-width: 480px;
}

@media (max-width: 1200px) {
  .tab-content__desp {
    max-width: 100%;
  }
}

.why__content-tab {
  display: none;
}

.why__content-tab.active {
  display: block;
}


.why__tab p:hover,
.why__tab p:focus-visible {
  background: #28293D;
  color: #75758E;
  transform: scale(0.97);
}

.why__tab {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq {
  height: auto;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .faq {
    padding: 30px 0;
  }
}

.faq__title {
  font-size: clamp(27px, 2.5925925926vw + 17.6666666667px, 55px);
  color: #fff;
}

.faq__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .faq__content {
    margin-top: 20px;
  }
}

.spoller-faq {
  background-color: #1E1E32;
  border-radius: 40px;
  cursor: pointer;
  padding: 20px 25px;
}

@media (max-width: 991px) {
  .spoller-faq {
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .spoller-faq {
    padding: 15px 20px;
  }
}

.spoller-faq .spoller-faq__desp {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.bell {
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.2s ease;
}



.bell.active {
  filter: invert(18%) sepia(99%) saturate(2620%) hue-rotate(320deg) brightness(95%) contrast(91%);
  animation: ring 0.5s ease;
}

/* Анимация звонка */
@keyframes ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(15deg);
  }
}

.spoller-faq .spoller-faq__desp p,
.spoller-faq .spoller-faq__desp li {
  margin-bottom: 10px;
  font-size: clamp(16px, 0.1851851852vw + 15.3333333333px, 18px);
}

.spoller-faq .spoller-faq__desp p:last-child,
.spoller-faq .spoller-faq__desp li:last-child {
  margin-bottom: 0px;
}

.spoller-faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.spoller-faq__title h3 {
  color: #fff;
}

.spoller-faq__title svg {
  min-width: 37px;
  width: 37px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  height: 37px;
}

@media (max-width: 991px) {
  .spoller-faq__title svg {
    width: 27px;
    height: 27px;
    min-width: 27px;
  }
}

.spoller-faq.active .spoller-faq__desp {
  margin-top: 15px;
  max-height: 700px;
}

.spoller-faq.active .spoller-faq__title svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-footer {
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  margin: 0 auto;
}


.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: none;
  /* убираем все фильтры */
  transition: transform 0.3s;
  /* можно оставить плавность при наведении */
}

.social-icons img:hover {
  transform: scale(1.1);
  /* легкий эффект при наведении */
}

.telegram-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
}

.telegram-link img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.telegram-link span {
  font-size: 26px;
  transition: transform 0.3s, color 0.3s;
}

.telegram-link:hover img,
.telegram-link:hover span {
  transform: scale(1.05);
  color: #2ecc71;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 204, 113, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Центрирование содержимого под заголовками на ПК */
.footer-logo,
.footer-download,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* вот это выравнивает по центру */
  text-align: center;
  /* чтобы текст тоже был по центру */
}


/* Адаптив */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-download {
    align-items: center;
  }



  .footer-download {
    flex-direction: row;
    /* элементы в ряд */
    justify-content: center;
    /* по центру */
    gap: 15px;
    /* расстояние между ссылками */
    flex-wrap: wrap;
    /* чтобы переносилось при маленьком экране */
  }

  .footer-download a {
    display: flex;
    flex-direction: row;
    /* иконка + текст в одну линию */
    align-items: center;
    gap: 8px;
  }

  .footer-download a img {
    height: 40px;
    /* чуть меньше на мобильных */
  }

  .footer-download h3 {
    width: 100%;
    /* заголовок остаётся над строкой */
    margin-bottom: 10px;
  }

  /* Навигация футера в ряд */
  .footer-links {
    flex-direction: column;
    /* контейнер вертикально */
    align-items: center;
  }

  .footer-links h3 {
    width: 100%;
    /* заголовок над ссылками */
    margin-bottom: 10px;
  }

  .footer-links a {
    display: inline-block;
    /* чтобы шли в ряд */
    margin: 0 8px 8px 0;
    /* отступ справа и снизу при переносе */
    font-size: 15px;
  }

  .footer-links a:last-child {
    margin-right: 0;
  }

  /* Для автоматического переноса на новую строку при маленьком экране */
  .footer-links {
    text-align: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 375px) {
  .global {
    margin-top: 0px;
  }

  .global__desp {
    display: none !important;
  }

  .help-main__left p {
    width: 85%;
  }
}

/* iPhone SE и другие маленькие экраны */
@media screen and (max-width: 375px) and (max-height: 667px) {
  .global {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 30px 0;
  }

  .global__content {
    min-height: calc(100vh - 110px);
    justify-content: space-between;
  }

  .global__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .global__title span {
    width: 100px;
  }

  .global .global__opicanie {
    margin-top: 20px;
  }

  .global__favorits {
    margin-top: 20px;
    gap: 20px;
  }

  .global__text {
    font-size: 32px;
  }

  .global__desp {
    font-size: 1px !important;
  }

  /* Убедимся, что кнопка всегда видна */
  .global__column:last-child {
    flex: none;
    margin-top: auto;
  }

  .global-btn {
    margin-top: 20px;
  }
}

/* Для очень маленькой высоты */
@media screen and (max-width: 375px) and (max-height: 600px) {
  .global {
    padding: 70px 0 20px 0;
  }

  .global__content {
    min-height: calc(100vh - 90px);
  }

  .global__title h1 {
    font-size: 2rem;
  }

  .global__favorits {
    margin-top: 15px;
  }

  .global__favorit {
    padding: 8px 0;
  }
}

/* Дополнительные исправления для глобального блока */
@media screen and (max-width: 650px) {
  .global {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .global__container {
    height: auto;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
  }

  .global__content {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* Гарантия, что кнопка не обрезается */
@media screen and (max-width: 375px) {
  .global__btn a {
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
  }

  /* Уменьшаем верхний отступ для большего пространства */
  .global {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .global__favorits {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .global__favorit p {
    margin-left: 0 !important;
    text-align: center;
  }

  .global .global__btn {
    margin-top: -302px !important;
  }
}


@media (max-width: 768px) {


  .global__favorits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-left: 10px;
  }

  .global__favorit p {
    margin-left: 0 !important;
    text-align: left !important;
  }
}

/* Added for collapsible steps */
.tab-content__conts {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

@media (min-width: 769px) {
  .why__content-tab.active:hover .tab-content__conts {
    max-height: 2000px;
  }
}

@media (max-width: 768px) {
  .why__content-tab.open .tab-content__conts {
    max-height: 2000px;
  }
}

/* PC hover fix */
@media (min-width: 769px) {
  .why__content-tab.active:hover .tab-content__conts {
    max-height: 2000px !important;
  }
}

/* Remove default white background from tabs */
.why__tab.active {
  background: transparent !important;
}

/* White background only on hover */
@media (min-width: 769px) {
  .why__tab:hover {
    background: #ffffff00 !important;
    transition: 0.3s;
  }
}

/* ====== Adjustment: lift and embolden the global description text ====== */
.global__opicanie {
  margin-top: -100px;
}

.global__opicanie p {
  font-weight: 600;
  line-height: 1.45;
}

/* ====== End patch ====== */


/* Remove spacing from empty title */
.global__title {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/* Lift description text */
.global__opicanie {
  margin-top: -35px !important;
  font-weight: 600 !important;
}


@media (max-width: 768px) {}

/* Adjust text position above */
.global__opicanie {
  margin-top: -20px;
}


/* Align footer store links vertically */
.footer-download .app-links-row {
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
}

/* Mobile spacing tweaks for hero text and feature labels */
@media (max-width: 768px) {
  .global__opicanie {
    margin-top: -5px;
  }

  .global__opicanie {
    margin-top: 40px !important;
  }

  .global__favorits {
    gap: 32px;
  }

  .global__text {
    font-size: 22px;
  }
}