@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*поведение hover эффекта на пк и тач экранах, где нет hover события*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.show {
  display: block;
}

.tdn {
  text-decoration: none;
}

:root {
  --bg-blue: #2D64BC;
  --border-blue: #26477E;
  --bg-dark: #1B1C20;
  --bg-dark-gray: #25262A;
  --bg-gray:#3D3E40;
  --bg-dark-gray:#292A2C;
  /* spion.su  */
  /* GRADO-EXPERT  */
  --bg-light-gray: #F6F6F6;
  --bg-green: #476E5C;
  --bg-light-green: #729887;
  --bg-red: #DD644F;
  --gray-font: #585858;
  --black-font: #333333;
  --radius-20: 20px;
}

body {
  font-family: "Gilroy", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: white;
}

h2 {
  color: white;
  font-size: clamp(22px, 2.3668639053vw, 32px);
  font-weight: 700;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .container {
    padding-inline: 20px !important;
  }
}

section {
  padding-block: 70px;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
}

.btn-fill-blue {
  background-color: #4178D0;
  padding: 20px;
  border-radius: 2px;
  color: #FFF;
  font-size: 14px;
}

.btn-fill-gray {
  background-color: #555555;
  padding: 20px;
  border-radius: 2px;
  color: #FFF;
  font-size: 14px;
}
.btn-fill-gray:hover {
  background-color: #4178D0;
}

.btn-fill-red {
  background-color: var(--bg-red);
  color: white;
  border: none;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
  max-height: max-content;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-border {
  max-height: fit-content;
  color: var(--bg-red);
  border: 1px solid var(--bg-red);
  border-radius: 6px;
  padding-inline: 20px;
  padding-block: 15px;
  text-wrap: nowrap;
}

.d-none {
  display: none !important;
}

.btn-center {
  justify-self: center;
}

.w-100 {
  width: 100%;
}

/*сброс стилей кнопок*/
button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

section {
  padding-bottom: 30px;
}
@media (max-width: 1023px) {
  section {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  section {
    padding-bottom: 2px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  max-width: 92vw;
}

.table-responsive table {
  min-width: 600px; /* или нужная ширина */
  width: 100%;
}

@media (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.pointer {
  cursor: pointer;
}

.keys__title-des {
  text-align: center;
  margin-bottom: 40px;
}
.keys__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .keys__content {
    grid-template-columns: 1fr;
  }
}
.keys__content .left {
  display: grid;
  background-color: var(--bg-dark-gray);
  padding: 15px;
  border-radius: 2px;
}
.keys__content .left p {
  margin-top: 20px;
}
.keys__content .left .expert {
  display: flex;
  gap: 20px;
}
.keys__content .left .expert img {
  border-radius: 5px;
  margin-right: 15px;
}
.keys__content .left .about-expert {
  display: grid;
  align-items: center;
  max-height: fit-content;
}
.keys__content .right {
  background-color: var(--border-blue);
  padding: 15px;
  border-radius: 2px;
}

.first-screen-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.first-screen {
  display: grid;
  align-items: center;
  min-height: 400px;
  padding-inline: 0 !important;
}
@media (max-width: 767px) {
  .first-screen {
    padding-inline: 30px !important;
  }
}
.first-screen__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .first-screen__wrapper {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
}
.first-screen .left {
  display: grid;
  justify-items: left;
  gap: 30px;
}
@media (max-width: 767px) {
  .first-screen .left {
    text-align: center;
  }
}
.first-screen .right {
  display: grid;
  gap: 10px;
  justify-content: right;
  align-items: center;
}
@media (max-width: 767px) {
  .first-screen .right {
    grid-template-columns: 1fr 1fr;
  }
  .first-screen .right a {
    justify-self: center;
  }
}
.first-screen .right .react {
  display: grid;
  align-items: center;
  padding: 20px;
  max-width: 324px;
  background-color: rgba(38, 71, 126, 0.7607843137);
  height: 100px;
  font-size: clamp(12px, 1.0355029586vw, 14px);
}
@media (max-width: 767px) {
  .first-screen .right .react {
    padding: 10px;
    height: auto;
    width: 100%;
  }
}
.first-screen .right .react .first {
  display: flex;
  gap: 12px;
  font-size: clamp(18px, 1.775147929vw, 24px);
}

.mobile-header-btn {
  grid-column: span 2; /* ссылка на всю ширину двух колонок */
  width: 100%;
  text-align: center; /* текст по центру */
  justify-self: center; /* выравнивание самой ячейки по центру */
  display: block; /* гарантия блочного поведения */
}

.working-section {
  background-color: var(--bg-dark);
}

.working__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  background: linear-gradient(180deg, #1E232D 0%, #20324F 100%);
}
@media (max-width: 767px) {
  .working__wrapper {
    grid-template-columns: 1fr;
  }
}
.working__wrapper h2, .working__wrapper h3, .working__wrapper h4, .working__wrapper h5 {
  text-align: left;
  margin-bottom: 20px;
}
.working__wrapper .left {
  padding: 20px;
}
.working__wrapper .left ul {
  padding-left: 20px;
}
.working__wrapper .right {
  background-color: var(--bg-dark);
  padding: 20px;
}
@media (max-width: 767px) {
  .working__wrapper .right a {
    text-align: center;
  }
}

.block-license2 {
  background-color: var(--bg-dark-gray);
}

.trust-section .trust h2 {
  margin-bottom: 20px;
}
.trust-section .trust__wrapper {
  display: grid;
  gap: 15px;
}
.trust-section .trust__item {
  display: grid;
  grid-template-columns: 80px 450px auto;
  padding: 20px;
  gap: 10px;
  background-color: #101317;
}
@media (max-width: 767px) {
  .trust-section .trust__item {
    grid-template-columns: 70px auto;
  }
}
.trust-section .trust__item .icon {
  display: grid;
  align-items: center;
}
.trust-section .trust__item .left {
  display: grid;
  align-items: center;
  width: 494px;
  word-break: normal;
  font-weight: 700;
  font-size: clamp(18px, 1.6272189349vw, 22px);
}
@media (max-width: 767px) {
  .trust-section .trust__item .left {
    width: auto;
  }
}
@media (max-width: 767px) {
  .trust-section .trust__item .right {
    grid-column: span 2;
  }
}

.necessary-section .necessary h2 {
  margin-bottom: 30px;
}
.necessary-section .necessary__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767px) {
  .necessary-section .necessary__wrapper {
    grid-template-columns: 1fr;
  }
}
.necessary-section .necessary__wrapper div, .necessary-section .necessary__wrapper img {
  border-radius: 4px;
}
.necessary-section .necessary__wrapper .text {
  display: grid;
  align-items: center;
  padding: 20px;
  background-color: var(--bg-dark-gray);
}
.necessary-section .necessary__wrapper .text ul {
  padding-left: 20px;
}

.similar-section .similar {
  background: linear-gradient(180deg, #1E232D 0%, #20324F 100%);
  padding: 20px;
}
.similar-section .similar h3 {
  text-align: left;
  margin-bottom: 15px;
}
.similar-section .similar__wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .similar-section .similar__wrapper {
    flex-wrap: wrap;
  }
}
.similar-section .similar__item {
  background-color: #555555;
  padding: 15px;
  font-size: clamp(16px, 1.3313609467vw, 18px);
  cursor: pointer;
}
.similar-section .similar__item:hover {
  background-color: var(--border-blue);
}

.faq-section .faq h2 {
  margin-bottom: 15px;
}
.faq-section .faq__des {
  text-align: center;
  margin-bottom: 15px;
}
.faq-section .faq__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .faq-section .faq__wrapper {
    grid-template-columns: 1fr;
  }
}
.faq-section .faq .left {
  display: grid;
  gap: 10px;
}
.faq-section .faq .faq-item div {
  padding: 10px;
}
.faq-section .faq .faq-item .question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background-color: #25262A;
}
.faq-section .faq .faq-item .answer {
  background-color: #393939;
}

.square-contact {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 30px;
  background-color: rgba(38, 71, 126, 0.5294117647);
}
.square-contact .title {
  font-weight: 700;
  font-size: clamp(20px, 2.0710059172vw, 28px);
}
.square-contact div {
  text-align: center;
}
.square-contact .links__title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: clamp(16px, 1.4792899408vw, 20px);
}
.square-contact .links__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.square-contact .links__wrapper a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.square-contact .links__wrapper a img {
  background-color: #0d95e8;
  padding: 5px;
  height: 24px;
  width: 24px;
  border-radius: 2px;
}

.heder-map {
  text-align: center;
}

.map__contact {
  display: grid;
  gap: 20px;
}
.map__contact .address-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.map__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  cursor: pointer;
}
.map__btn .active {
  background-color: #4178D0;
}
.map__btn div {
  display: grid;
  align-items: center;
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 1.1834319527vw, 16px);
}

.map-section {
  position: relative;
  min-height: 450px;
  padding-top: 10px;
}

.map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .map-wrapper {
    position: relative;
    order: 1;
  }
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  order: 2;
}

.map-section .container.map {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.map__contact {
  background: var(--bg-dark);
  padding: 30px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  width: 100%;
  pointer-events: auto;
  margin-top: 10px; /* Отступ сверху при align-items: flex-start */
}

/* Альтернатива - если плашка должна быть по центру по вертикали */
.map-section .container.map {
  align-items: center; /* Вертикальное выравнивание по центру */
}

/* Или снизу */
.map-section .container.map {
  align-items: flex-start;
  padding-bottom: 30px; /* Отступ снизу */
}

@media (max-width: 768px) {
  .map__contact {
    max-width: calc(100% - 40px);
    margin: 20px;
    padding: 20px;
  }
  .map-section .container.map {
    align-items: center;
  }
}
.formcallback-section {
  background-size: cover;
}

.formcallback .left {
  max-width: 50%;
}
@media (max-width: 767px) {
  .formcallback .left {
    max-width: 100%;
  }
}
.formcallback .left h2 {
  margin-bottom: 30px;
  font-size: clamp(28px, 2.5887573964vw, 35px);
  font-weight: 700;
}
.formcallback .form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767px) {
  .formcallback .form-wrapper {
    grid-template-columns: 1fr;
  }
}
.formcallback .form-wrapper input {
  background-color: var(--bg-dark);
  border: 1px solid white;
  border-radius: 4px;
  padding: 5px;
  color: white;
  padding-block: 10px;
}
.formcallback .form-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.formcallback .form-wrapper .agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: span 2;
}
@media (max-width: 767px) {
  .formcallback .form-wrapper .agreement {
    grid-column: unset;
  }
}
.formcallback .form-wrapper .agreement__checkbox {
  -webkit-appearance: none;
  appearance: none; /* Добавьте эту строку */
  background-color: var(--bg-dark);
  width: 24px; /* Увеличил ширину */
  height: 24px; /* Увеличил высоту */
  min-width: 24px; /* Чтобы не сжимался в flex */
  border: 2px solid white; /* Добавил белую границу */
  border-radius: 6px; /* Закругление */
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px; /* Выравнивание с текстом */
  /* Ховер эффект */
  /* Отмеченное состояние */
  /* Галочка */
  /* Фокус для доступности */
}
.formcallback .form-wrapper .agreement__checkbox:hover {
  background-color: #333;
  transform: scale(1.05);
}
.formcallback .form-wrapper .agreement__checkbox:checked {
  background-color: var(--bg-dark);
  border-color: white;
}
.formcallback .form-wrapper .agreement__checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
}
.formcallback .form-wrapper .agreement__checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.formcallback .form-wrapper button {
  justify-self: center;
  grid-column: span 2;
}
@media (max-width: 767px) {
  .formcallback .form-wrapper button {
    grid-column: unset;
    width: 100%;
    margin-bottom: 30px;
  }
}

.quiz .des {
  text-align: center;
  margin-bottom: 20px;
}
.quiz__wrapper {
  background-color: var(--bg-gray);
  padding-inline: 60px;
  padding-block: 20px;
  border-radius: 10px;
  height: 237px;
  max-width: 830px;
  margin: 0 auto;
}
.quiz__wrapper .screen .title {
  font-weight: 600;
  font-size: clamp(18px, 1.6272189349vw, 22px);
}
.quiz__wrapper .screen button {
  background-color: #555555;
  padding: 20px;
}

/*# sourceMappingURL=style.css.map */
