@charset "UTF-8";
html, body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 140%;
}

h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 115%;
  letter-spacing: -0.02em;
  font-feature-settings: "case" on;
}

h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 34px;
  line-height: 115%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

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

/* Убираем стили по-умолчанию для ссылок с type="button" в браузерах Safari, Chrome, Opera, Firefox и Edge */
a, [type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
body {
  background: #fdfdfd;
}

/* Убирает прокрутку по горизонтали, для мобильной версии */
.body-overflow {
  overflow: hidden;
}

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 991.98px) {
  .no-padding-r-lg {
    padding-right: 0 !important;
  }

  .no-padding-lg {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .no-padding-r-md {
    padding-right: 0 !important;
  }

  .no-padding-md {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .no-padding-r-sm {
    padding-right: 0 !important;
  }

  .no-padding-sm {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.overflow-h {
  overflow: hidden;
}

.owl-carousel .owl-stage-outer {
  z-index: 2;
}
.owl-carousel .owl-nav {
  z-index: 1;
}

.nobr {
  white-space: nowrap;
}

.h-black {
  color: #000000;
}

.h-orange {
  color: #f77500;
}

.h-blue {
  color: #00A5FF;
}

.h-hide, .h-hidden {
  display: none !important;
}

/**************************************************   Top-menu   ******************************************************/
.second-menu.maintainOpen {
  display: block !important;
  /* Показываем меню, когда добавлен класс */
  z-index: 100;
}

.top-menu {
  position: sticky;
  padding: 20px 0;
  width: 100%;
  top: 0;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid #F5F5F5;
  flex-grow: 0;
  flex-shrink: 0;
  transform: translateY(0px);
  -webkit-transition: transform 0.27s;
  -moz-transition: transform 0.27s;
  -o-transition: transform 0.27s;
  transition: transform 0.27s;
}
.top-menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-size: cover;
  z-index: 99;
}
.top-menu.top-menu-no-blur {
  border-bottom: 1px solid transparent;
}
.top-menu.top-menu-no-blur:before {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.top-menu.top-menu-up .top-menu__lang__text {
  color: #C2C2C2;
}
.top-menu.top-menu-up .top-menu__lang__icon {
  color: #C2C2C2;
  stroke: #C2C2C2;
}
.top-menu.fullscreen-blur:before {
  height: 100vh;
}
.top-menu.top-menu-hide {
  transform: translateY(-84px);
}
.top-menu__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}
.top-menu__logo {
  display: inline-block;
  width: 196px;
  height: 34.6px;
  margin-right: 10px;
  background-image: url("https://searchinform.com/uploads/sites/2/2025/03/searchinform-logo-color-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
}
.top-menu__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.top-menu__nav.nav-open .top-menu__item {
  display: none;
}
.top-menu__nav.nav-open .top-menu__item:last-of-type {
  display: contents;
}
.top-menu__nav.nav-open .top-menu__burger__button-container {
  width: 122px;
}
.top-menu__nav.nav-open .top-menu__burger__text {
  margin-right: 0;
}
.top-menu__nav.nav-open .top-menu__burger__text:first-of-type {
  display: none;
}
.top-menu__nav.nav-open .top-menu__burger__text:last-of-type {
  display: inline-block;
}
.top-menu__item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 121%;
  text-decoration: none;
  color: #191B26;
}
.top-menu__item:hover a.top-menu__link {
  color: #FF6D00;
}
.top-menu__item:hover a.top-menu__link.top-menu__button:hover {
  color: #FFFFFF;
}
.top-menu__item.active {
  color: #FF6D00;
}
.top-menu__lang {
  position: relative;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.top-menu__lang__block {
  display: none;
  position: absolute;
  width: 112px;
  top: 18px;
  left: calc(50% - 56px);
  background: transparent;
  padding-top: 24px;
  z-index: 22;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.top-menu__lang ul {
  padding: 10px 0;
}
.top-menu__lang__items {
  width: 100%;
  border-radius: 10px;
  background: #F5F5F5;
  border: 1px solid #C2C2C2;
}
.top-menu__lang__items li {
  padding: 2px 14px;
}
.top-menu__lang__items li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.top-menu__lang__items li:first-child {
  padding-top: 14px;
}
.top-menu__lang__items li:last-child {
  padding-bottom: 14px;
}
.top-menu__lang__items li:hover {
  cursor: pointer;
}
.top-menu__lang__items li:hover a {
  color: #FF6D00;
}
.top-menu__lang__item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-menu__lang__item:hover .top-menu__lang__text {
  color: #FF6D00;
}
.top-menu__lang__item:hover .top-menu__lang__icon {
  color: #FF6D00;
  stroke: #FF6D00;
}
.top-menu__lang__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -2%;
  color: #8A8A8A;
}
.top-menu__lang__icon {
  width: 8px;
  height: 5px;
  fill: transparent;
  color: #8A8A8A;
  stroke: #8A8A8A;
}
.top-menu__lang:hover {
  cursor: pointer;
}
.top-menu__lang:hover .top-menu__lang__block {
  display: block;
}
.top-menu__button {
  position: relative;
  height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 51px;
  background: #00B0FF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.top-menu__button span {
  display: inline-block;
  margin-left: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
}
.top-menu__button:hover {
  background: #40C4FF;
  cursor: pointer;
}
.top-menu__button-icon {
  width: 16px;
  height: 16px;
  color: #FFFFFF;
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.top-menu a.top-menu__button {
  color: #FFFFFF;
}
.top-menu__burger {
  position: relative;
  padding: 0;
  -webkit-transition: height 0.27s;
  -moz-transition: height 0.27s;
  -o-transition: height 0.27s;
  transition: height 0.27s;
}
.top-menu__burger__button-container {
  height: 100%;
  width: 72px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-menu__burger__button-container:hover {
  cursor: pointer;
}
.top-menu__burger__button-container:hover .top-menu__burger__text {
  color: #FF6D00;
}
.top-menu__burger__button-container:hover .top-menu__burger__button,
.top-menu__burger__button-container:hover .top-menu__burger__button::before,
.top-menu__burger__button-container:hover .top-menu__burger__button::after {
  background-color: #FF6D00;
}
.top-menu__burger__button-wrapper {
  position: relative;
  height: 100%;
  width: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-menu__burger__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 121%;
  margin-right: 14px;
  color: #191B26;
}
.top-menu__burger__text:last-of-type {
  display: none;
}
.top-menu__burger #top-menu-toggle {
  display: none;
}
.top-menu__burger__button, .top-menu__burger__button::before, .top-menu__burger__button::after {
  display: block;
  position: absolute;
  height: 2px;
  width: 18px;
  background-color: #191B26;
  transition: transform 0.27s cubic-bezier(0.23, 1, 0.32, 1);
}
.top-menu__burger__button::before {
  content: "";
  margin-top: -6px;
}
.top-menu__burger__button::after {
  content: "";
  margin-top: 6px;
  width: 18px;
}
.top-menu__burger #top-menu-toggle:checked + .top-menu__burger__button-container .top-menu__burger__button-wrapper .top-menu__burger__button::before {
  margin-top: 0;
  transform: rotate(405deg);
}
.top-menu__burger #top-menu-toggle:checked + .top-menu__burger__button-container .top-menu__burger__button-wrapper .top-menu__burger__button {
  background: transparent;
}
.top-menu__burger #top-menu-toggle:checked + .top-menu__burger__button-container .top-menu__burger__button-wrapper .top-menu__burger__button::after {
  margin-top: 0;
  transform: rotate(-405deg);
}
.top-menu__burger__container {
  position: fixed;
  top: 84px;
  right: 0;
  width: 100%;
  height: 0;
  z-index: 20;
  overflow: hidden;
  -webkit-transition: height 0.27s ease-in-out;
  -moz-transition: height 0.27s ease-in-out;
  -o-transition: height 0.27s ease-in-out;
  transition: height 0.27s ease-in-out;
}
.top-menu__burger input[type=checkbox]:checked ~ .top-menu__burger__container {
  height: auto;
}

/**************************************************   new-main-menu   *************************************************/
.new-main-menu {
  min-height: calc(100vh - 258px);
  padding-top: 82px;
  padding-bottom: 108px;
  color: #191B26;
  /*---- для пунктов первого уровня с вложенным меню (start) ----*/
  /*---- для пунктов первого уровня с вложенным меню (end) ----*/
  /* second-menu (start) */
  /* second-menu (end) */
  /* secondary-menu (start) */
  /* secondary-menu (end) */
}
.new-main-menu__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 416px;
  position: relative;
}
.new-main-menu__item {
  flex: auto;
  text-align: left;
  width: fit-content;
  display: flex;
}
.new-main-menu__item:last-of-type .new-main-menu__text {
  padding-bottom: 0;
}
.new-main-menu__item.active-item .new-main-menu__text a.new-main-menu__link {
  color: #FF6D00;
}
.new-main-menu__item.active-item .second-menu {
  display: block;
}
.new-main-menu__input {
  display: none;
}
.new-main-menu__icon {
  display: none;
}
.new-main-menu__inner {
  position: absolute;
  top: 0;
  left: 228px;
  width: 350px;
  height: 100%;
}
.new-main-menu__inner-icon {
  width: 28px;
  height: 28px;
  fill: transparent;
  color: #191B26;
  stroke: #191B26;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.new-main-menu__text {
  display: inline-block;
  width: 232px;
  padding-bottom: 34px;
  flex-shrink: 0;
}
.new-main-menu__text a {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  font-size: 30px;
  line-height: 121%;
  color: #191B26;
}
.new-main-menu .second-menu {
  display: none;
  position: relative;
  background: transparent;
  border-left: 1px solid #C2C2C2;
  width: 100%;
  height: 100%;
  left: 0;
  box-shadow: none;
  z-index: 100;
}
.new-main-menu .second-menu:hover .second-menu__item {
  background: transparent;
}
.new-main-menu .second-menu__item {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.new-main-menu .second-menu__item:hover .second-menu__text:after {
  display: none;
}
.new-main-menu .second-menu__item.additional-item .second-menu__text {
  border-top: 1px solid #D6D7DA;
  padding: 20px 20px 30px 54px;
  margin: 0;
}
.new-main-menu .second-menu__item.additional-last-item .second-menu__text {
  padding-bottom: 20px;
}
.new-main-menu .second-menu__item:first-child .second-menu__text-block {
  padding-top: 0;
}
.new-main-menu .second-menu__item:last-child .second-menu__text-block {
  padding-bottom: 0;
}
.new-main-menu .second-menu__text-block {
  width: 100%;
  position: relative;
  background: transparent;
  z-index: 101;
}
.new-main-menu .second-menu__input {
  display: none;
}
.new-main-menu .second-menu__text {
  cursor: pointer;
  position: relative;
  padding: 0 20px 30px 54px;
}
.new-main-menu .second-menu__text a {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}
.new-main-menu .second-menu__text:hover a {
  color: #FF6D00;
}
.new-main-menu .second-menu__text--small {
  font-size: 16px;
}
.new-main-menu .second-menu__text--small:hover {
  color: #FF6D00;
}
.new-main-menu .second-menu__text:after {
  display: none;
}
.new-main-menu .secondary-menu {
  position: relative;
  width: 100%;
  padding-left: 20px;
  /*---- для пунктов первого уровня с вложенным меню (start) ----*/
}
.new-main-menu .secondary-menu__item {
  flex: auto;
  text-align: left;
  width: 100%;
  position: relative;
}
.new-main-menu .secondary-menu__item:last-of-type .secondary-menu__text {
  padding-bottom: 0;
}
.new-main-menu .secondary-menu__input {
  display: none;
}
.new-main-menu .secondary-menu__icon {
  display: none;
}
.new-main-menu .secondary-menu__inner {
  display: none;
  position: relative;
  width: 100%;
}
.new-main-menu .secondary-menu__text {
  display: inline-block;
  width: 100%;
  padding-bottom: 30px;
}
.new-main-menu .secondary-menu__text a {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  line-height: 121%;
  color: #191B26;
}
.new-main-menu .secondary-menu__text:hover a.secondary-menu__link {
  color: #FF6D00;
}

/**************************************************   main-bottom-menu   **********************************************/
.main-bottom-menu {
  height: 174px;
  border-top: 1px solid #C2C2C2;
  color: #191B26;
}
.main-bottom-menu__wrapper {
  display: flex;
  padding: 36px 0 64px;
}
.main-bottom-menu__lang__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 132%;
  margin-bottom: 30px;
  color: #191B26;
}
.main-bottom-menu__lang__icon {
  color: #191B26;
  stroke: #191B26;
}
.main-bottom-menu__lang__items {
  display: flex;
  gap: 18px;
}
.main-bottom-menu__lang__items li:hover a {
  color: #FF6D00;
}
.main-bottom-menu__lang__items li a {
  color: #6C7282;
}
.main-bottom-menu__lang__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 121%;
}
.main-bottom-menu__social {
  margin-left: 620px;
}
.main-bottom-menu__social__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 132%;
  margin-bottom: 25px;
}
.main-bottom-menu__social-wrapper {
  display: flex;
  width: 194px;
  justify-content: space-between;
  align-items: center;
}
.main-bottom-menu__social-wrapper a {
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-bottom-menu .social-img {
  display: block;
  width: 23px;
  height: 19px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.main-bottom-menu .social-img--facebook {
  width: 10.29px;
  height: 20.58px;
  background-image: url("/themes/2024/assets/shared/top-menu/social/light/facebook.svg");
}
.main-bottom-menu .social-img--facebook:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/facebook-hover.svg");
}
.main-bottom-menu .social-img--youtube {
  width: 22.38px;
  height: 15.69px;
  background-image: url("/themes/2024/assets/shared/top-menu/social/light/youtube.svg");
}
.main-bottom-menu .social-img--youtube:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/youtube-hover.svg");
}
.main-bottom-menu .social-img--twitter {
  width: 22px;
  height: 18px;
  background-size: contain;
  background-image: url("/themes/2024/assets/shared/top-menu/social/light/twitter-x.svg");
}
.main-bottom-menu .social-img--twitter:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/twitter-x-hover.svg");
}
.main-bottom-menu .social-img--linkedin {
  width: 20px;
  height: 20px;
  background-size: cover;
  background-image: url("/themes/2024/assets/shared/top-menu/social/light/linkedin.svg");
}
.main-bottom-menu .social-img--linkedin:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/linkedin-hover.svg");
}
.main-bottom-menu__button-block {
  display: none;
}

/******************************************************   темная тема   ***********************************************/
.dark-wrapper {
  /* top-menu (start) */
  /* top-menu (end) */
}
.dark-wrapper .top-menu {
  border-bottom: 1px solid transparent;
  /* new-main-menu (start) */
  /* new-main-menu (end) */
  /* main-bottom-menu (start) */
  /* main-bottom-menu (end) */
}
.dark-wrapper .top-menu:before {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}
.dark-wrapper .top-menu.top-menu-dark-up:before {
  background-color: rgba(175, 175, 175, 0.1);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
}
.dark-wrapper .top-menu__logo {
  background-image: url("https://searchinform.com/uploads/sites/2/2025/03/searchinform-logo-color-black.png");
}
.dark-wrapper .top-menu__item a {
  color: #FFFFFF;
}
.dark-wrapper .top-menu__lang__items {
  background: rgba(21, 21, 38, 0.2);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dark-wrapper .top-menu__lang__items li:hover a {
  color: #FF6D00;
}
.dark-wrapper .top-menu__lang__text {
  color: rgba(255, 255, 255, 0.5);
}
.dark-wrapper .top-menu__lang__icon {
  color: rgba(255, 255, 255, 0.5);
  stroke: rgba(255, 255, 255, 0.5);
}
.dark-wrapper .top-menu__button {
  background: rgba(233, 233, 233, 0.2);
}
.dark-wrapper .top-menu__button:hover {
  background: rgba(255, 255, 255, 0.5);
}
.dark-wrapper .top-menu__burger__text {
  color: #FFFFFF;
}
.dark-wrapper .top-menu__burger__button, .dark-wrapper .top-menu__burger__button::before, .dark-wrapper .top-menu__burger__button::after {
  background-color: #FFFFFF;
}
.dark-wrapper .top-menu .new-main-menu {
  color: #FFFFFF;
  /* new-main-menu (end) */
  /* second-menu (start) */
  /* second-menu (end) */
}
.dark-wrapper .top-menu .new-main-menu__inner-icon {
  color: #FFFFFF;
  stroke: #FFFFFF;
}
.dark-wrapper .top-menu .new-main-menu .second-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.dark-wrapper .top-menu .new-main-menu .second-menu__item.additional-item .second-menu__text {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.dark-wrapper .top-menu .main-bottom-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.dark-wrapper .top-menu .main-bottom-menu__lang__items li:hover a {
  color: #FF6D00;
}
.dark-wrapper .top-menu .main-bottom-menu__lang__items li a {
  color: #FFFFFF;
}
.dark-wrapper .top-menu .main-bottom-menu__lang__text {
  color: #FFFFFF;
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--facebook {
  background-image: url("/themes/2024/assets/shared/top-menu/social/dark/facebook.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--facebook:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/facebook-hover.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--youtube {
  background-image: url("/themes/2024/assets/shared/top-menu/social/dark/youtube.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--youtube:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/youtube-hover.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--twitter {
  background-image: url("/themes/2024/assets/shared/top-menu/social/dark/twitter-x.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--twitter:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/twitter-x-hover.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--linkedin {
  background-image: url("/themes/2024/assets/shared/top-menu/social/dark/linkedin.svg");
}
.dark-wrapper .top-menu .main-bottom-menu .social-img--linkedin:hover {
  background-image: url("/themes/2024/assets/shared/top-menu/social/linkedin-hover.svg");
}

/**********************************************************************************************************************/
/************************************                 Adaptive                 ****************************************/
/**********************************************************************************************************************/
/***************************************   For screens smaller than 1200px   ******************************************/
@media (max-width: 1199.98px) {
  .top-menu:before {
    -webkit-transition: height 0.27s ease-in-out;
    -moz-transition: height 0.27s ease-in-out;
    -o-transition: height 0.27s ease-in-out;
    transition: height 0.27s ease-in-out;
  }
  .top-menu__nav .top-menu__item {
    display: none;
  }
  .top-menu__nav .top-menu__item:last-of-type {
    display: inline-block;
  }
  .top-menu__nav.nav-open .top-menu__burger__button-container {
    width: auto;
  }
  .top-menu__nav.nav-open .top-menu__burger__text:last-of-type {
    display: none;
  }
  .top-menu__burger {
    width: 44px;
    height: 44px;
  }
  .top-menu__burger input[type=checkbox]:checked ~ .top-menu__burger__container {
    width: 100%;
    height: calc(100vh - 84px);
    overflow: auto;
  }
  .top-menu__burger__button-container {
    width: 44px;
  }
  .top-menu__burger__button-container:hover .top-menu__burger__text {
    color: #191B26;
  }
  .top-menu__burger__button-container:hover .top-menu__burger__button,
.top-menu__burger__button-container:hover .top-menu__burger__button::before,
.top-menu__burger__button-container:hover .top-menu__burger__button::after {
    background-color: #191B26;
  }
  .top-menu__burger__button-wrapper {
    padding: 0 22px;
  }
  .top-menu__burger__text:first-of-type, .top-menu__burger__text:last-of-type {
    display: none;
  }
  .top-menu .new-main-menu {
    padding-bottom: 60px;
    /* Скрываем контент по умолчанию */
    /* Плавное раскрытие контента при активном чекбоксе */
    /* secondary-menu (start) */
    /* secondary-menu (end) */
  }
  .top-menu .new-main-menu__inner {
    position: static;
    width: 100%;
  }
  .top-menu .new-main-menu__wrapper {
    min-height: auto;
  }
  .top-menu .new-main-menu__item {
    flex: none;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #C2C2C2;
  }
  .top-menu .new-main-menu__item:first-of-type .new-main-menu__text {
    padding-top: 0;
  }
  .top-menu .new-main-menu__item:last-of-type {
    border-bottom: 1px solid #C2C2C2;
  }
  .top-menu .new-main-menu__item:last-of-type .new-main-menu__text {
    padding-bottom: 20px;
  }
  .top-menu .new-main-menu__item:hover .new-main-menu__text > a {
    color: #191B26;
  }
  .top-menu .new-main-menu__item.active-item .new-main-menu__text a.new-main-menu__link {
    color: #191B26;
  }
  .top-menu .new-main-menu__text {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-right: none;
  }
  .top-menu .new-main-menu__text a {
    font-size: 32px;
    font-weight: 400;
    line-height: 121%;
  }
  .top-menu .new-main-menu__icon {
    display: block;
    width: 14px;
    height: 8.17px;
    fill: transparent;
    color: #191B26;
    stroke: #191B26;
    transform-origin: center;
    -webkit-transition: all 0.27s;
    -moz-transition: all 0.27s;
    -o-transition: all 0.27s;
    transition: all 0.27s;
  }
  .top-menu .new-main-menu__inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }
  .top-menu .new-main-menu .new-main-menu__input:checked + .new-main-menu__text + .new-main-menu__inner {
    max-height: 460px;
  }
  .top-menu .new-main-menu .scroll-item .new-main-menu__input:checked + .new-main-menu__text + .new-main-menu__inner {
    max-height: 900px;
  }
  .top-menu .new-main-menu .new-main-menu__input:checked + .new-main-menu__text .new-main-menu__icon {
    transform: rotate(-180deg);
  }
  .top-menu .new-main-menu .second-menu {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-left: 40px;
    padding-bottom: 5px;
    border-left: none;
  }
  .top-menu .new-main-menu .second-menu__wrapper {
    max-height: fit-content;
    overflow-y: auto;
  }
  .top-menu .new-main-menu .second-menu__item {
    display: block;
  }
  .top-menu .new-main-menu .second-menu__item.additional-item .second-menu__text-block {
    width: 248px;
  }
  .top-menu .new-main-menu .second-menu__item.additional-item .second-menu__text {
    padding: 15px 0;
  }
  .top-menu .new-main-menu .second-menu__item:last-child .second-menu__text-block {
    padding-bottom: 0;
  }
  .top-menu .new-main-menu .second-menu__text-block {
    width: 100%;
  }
  .top-menu .new-main-menu .second-menu__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
  }
  .top-menu .new-main-menu .second-menu__text a {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
  }
  .top-menu .new-main-menu .second-menu__text:hover a {
    color: #191B26;
  }
  .top-menu .new-main-menu .second-menu__text--small {
    font-size: 20px;
  }
  .top-menu .new-main-menu .secondary-menu {
    padding-left: 0;
    /* Скрываем контент по умолчанию */
    /* Плавное раскрытие контента при активном чекбоксе */
  }
  .top-menu .new-main-menu .secondary-menu__item {
    border-bottom: 1px solid #C2C2C2;
  }
  .top-menu .new-main-menu .secondary-menu__item:last-of-type {
    border-bottom: none;
  }
  .top-menu .new-main-menu .secondary-menu__text {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-right: none;
  }
  .top-menu .new-main-menu .secondary-menu__text a {
    font-size: 32px;
    font-weight: 400;
    line-height: 121%;
  }
  .top-menu .new-main-menu .secondary-menu__icon {
    display: block;
    width: 14px;
    height: 8.17px;
    fill: transparent;
    color: #191B26;
    stroke: #191B26;
    transform-origin: center;
    -webkit-transition: all 0.27s;
    -moz-transition: all 0.27s;
    -o-transition: all 0.27s;
    transition: all 0.27s;
  }
  .top-menu .new-main-menu .secondary-menu__inner {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }
  .top-menu .new-main-menu .secondary-menu .secondary-menu__input:checked + .secondary-menu__text + .secondary-menu__inner {
    max-height: 703px;
  }
  .top-menu .new-main-menu .secondary-menu .secondary-menu__input:checked + .secondary-menu__text .secondary-menu__icon {
    transform: rotate(-180deg);
  }
  .top-menu .main-bottom-menu {
    border-top: none;
  }
  .top-menu .main-bottom-menu__wrapper {
    justify-content: space-between;
  }
  .top-menu .main-bottom-menu__social {
    margin-left: 10px;
  }

  /******************************************************   темная тема   *******************************************/
  .dark-wrapper .top-menu__burger__button-container:hover .top-menu__burger__text {
    color: #FFFFFF;
  }
  .dark-wrapper .top-menu__burger__button-container:hover .top-menu__burger__button,
.dark-wrapper .top-menu__burger__button-container:hover .top-menu__burger__button::before,
.dark-wrapper .top-menu__burger__button-container:hover .top-menu__burger__button::after {
    background-color: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu {
    /* secondary-menu (start) */
    /* secondary-menu (end) */
  }
  .dark-wrapper .top-menu .new-main-menu__item {
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .dark-wrapper .top-menu .new-main-menu__item:last-of-type .new-main-menu__text {
    padding-bottom: 20px;
  }
  .dark-wrapper .top-menu .new-main-menu__item:hover .new-main-menu__text > a {
    color: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu__item.active-item .new-main-menu__text a.new-main-menu__link {
    color: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu__text {
    border-right: none;
  }
  .dark-wrapper .top-menu .new-main-menu__icon {
    color: rgba(255, 255, 255, 0.5);
    stroke: rgba(255, 255, 255, 0.5);
  }
  .dark-wrapper .top-menu .new-main-menu .new-main-menu__input:checked + .new-main-menu__text .new-main-menu__icon {
    color: #FFFFFF;
    stroke: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu .second-menu {
    border-left: none;
  }
  .dark-wrapper .top-menu .new-main-menu .second-menu__text:hover a {
    color: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu__item:last-of-type {
    border-bottom: none;
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu__item:hover .secondary-menu__text > a {
    color: #FFFFFF;
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu__text {
    border-right: none;
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu__icon {
    color: rgba(255, 255, 255, 0.5);
    stroke: rgba(255, 255, 255, 0.5);
  }
  .dark-wrapper .top-menu .new-main-menu .secondary-menu .secondary-menu__input:checked + .secondary-menu__text .secondary-menu__icon {
    color: #FFFFFF;
    stroke: #FFFFFF;
  }
  .dark-wrapper .top-menu .main-bottom-menu {
    border-top: none;
  }
}
/****************************************   For screens smaller than 768px   ******************************************/
@media (max-width: 767.98px) {
  .top-menu {
    padding: 10px 0;
    height: 64px;
  }
  .top-menu.top-menu-hide {
    transform: translateY(-64px);
  }
  .top-menu__logo {
    width: 142px;
    height: 25px;
  }
  .top-menu .new-main-menu {
    padding-top: 60px;
    padding-bottom: 24px;
  }
  .top-menu .main-bottom-menu__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 30px;
  }
  .top-menu .main-bottom-menu__lang {
    margin-bottom: 40px;
  }
  .top-menu .main-bottom-menu__lang__text {
    display: none;
  }
  .top-menu .main-bottom-menu__social {
    display: none;
  }
  .top-menu .main-bottom-menu__button-block {
    display: block;
    width: 100%;
  }
  .top-menu .main-bottom-menu__button {
    position: relative;
    height: 44px;
    padding: 10px 20px;
    background: #00B0FF;
    border: 1px solid transparent;
    border-radius: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-menu .main-bottom-menu__button span {
    display: inline-block;
    margin-left: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 100%;
  }
  .top-menu .main-bottom-menu__button:hover {
    background: #40C4FF;
    cursor: pointer;
  }
  .top-menu .main-bottom-menu a.main-bottom-menu__button {
    color: #FFFFFF;
  }
  .top-menu .main-bottom-menu__button-icon {
    width: 16px;
    height: 16px;
    color: #FFFFFF;
    fill: #FFFFFF;
    stroke: #FFFFFF;
  }

  /******************************************************   темная тема   *******************************************/
  .dark-wrapper .top-menu .main-bottom-menu__button {
    background: rgba(233, 233, 233, 0.2);
  }
  .dark-wrapper .top-menu .main-bottom-menu__button:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
/****************************************   For screens smaller than 576px   ******************************************/
@media (max-width: 575.98px) {
  .top-menu {
    padding: 5px 0;
    height: 54px;
  }
  .top-menu.top-menu-hide {
    transform: translateY(-54px);
  }
  .top-menu__logo {
    width: 124px;
    height: 22px;
  }
  .top-menu .new-main-menu {
    padding-top: 56px;
    /* Плавное раскрытие контента при активном чекбоксе */
    /* secondary-menu (start) */
    /* secondary-menu (end) */
  }
  .top-menu .new-main-menu__item :last-of-type .new-main-menu__text {
    padding-bottom: 15px;
  }
  .top-menu .new-main-menu__text {
    padding: 15px 0;
  }
  .top-menu .new-main-menu__text a {
    font-size: 14px;
    font-weight: 600;
  }
  .top-menu .new-main-menu__icon {
    width: 9.23px;
    height: 5.38px;
  }
  .top-menu .new-main-menu .new-main-menu__input:checked + .new-main-menu__text + .new-main-menu__inner {
    max-height: 360px;
  }
  .top-menu .new-main-menu .scroll-item .new-main-menu__input:checked + .new-main-menu__text + .new-main-menu__inner {
    max-height: 650px;
  }
  .top-menu .new-main-menu .second-menu {
    padding-bottom: 0;
  }
  .top-menu .new-main-menu .second-menu__text a {
    font-size: 14px;
  }
  .top-menu .new-main-menu .second-menu__text--small {
    font-size: 14px;
  }
  .top-menu .new-main-menu .secondary-menu {
    /* Плавное раскрытие контента при активном чекбоксе */
  }
  .top-menu .new-main-menu .secondary-menu__text {
    padding: 15px 0;
  }
  .top-menu .new-main-menu .secondary-menu__text a {
    font-size: 14px;
    font-weight: 600;
  }
  .top-menu .new-main-menu .secondary-menu__icon {
    width: 9.23px;
    height: 5.38px;
  }
  .top-menu .new-main-menu .secondary-menu .secondary-menu__input:checked + .secondary-menu__text + .secondary-menu__inner {
    max-height: 114px;
  }
  .top-menu .main-bottom-menu__lang__items {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dark-wrapper .top-menu .new-main-menu__item:last-of-type .new-main-menu__text {
    padding-bottom: 15px;
  }
}
.breadcrumbs {
  color: transparent;
  padding: 26px 0 16px 0;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumbs__wrapper {
  padding: 14px 0;
  color: #00000080;
}
.breadcrumbs__wrapper a {
  color: #00000080;
  text-decoration: none;
}
.breadcrumbs__wrapper a:hover {
  color: #00B0FF;
}
.breadcrumbs__wrapper span {
  color: #000000;
}

.breadcrumbs__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.breadcrumbs__btn a {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  color: #FF6D00;
  padding: 9px 38px;
  border: 1px solid #FF6D00;
  border-radius: 3px;
  margin-left: 30px;
  white-space: nowrap;
}
.breadcrumbs__btn a:hover {
  color: #FFFFFF;
  background-color: #FF6D00;
}

.breadcrumbs-second {
  padding: 3px 0;
  border-top: 1px solid #E0E0E0;
}
.breadcrumbs-second .breadcrumbs__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumbs-second .breadcrumbs-left {
  justify-content: flex-start;
}
.breadcrumbs-second .breadcrumbs-left a {
  margin-left: 0px;
  margin-right: 30px;
}
.breadcrumbs-second .close {
  cursor: pointer;
}

.kib .breadcrumbs,
.profilecenter .breadcrumbs,
.siem .breadcrumbs,
.timeinformer .breadcrumbs,
.outsource-ib .breadcrumbs,
.cloud-dlp .breadcrumbs,
.fileauditor .breadcrumbs {
  background: #FFFFFF;
}

.practice-and-analytics .breadcrumbs {
  padding: 0;
}

.thanks .breadcrumbs {
  background: #FFFFFF;
}

.dark-wrapper .breadcrumbs {
  position: relative;
  z-index: 2;
}
.dark-wrapper .breadcrumbs__wrapper {
  color: #8E9199;
}
.dark-wrapper .breadcrumbs__wrapper a {
  color: #8E9199;
}
.dark-wrapper .breadcrumbs__wrapper a:hover {
  color: #00B0FF;
}
.dark-wrapper .breadcrumbs__wrapper span {
  color: #FFFFFF;
}

/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 992px   ************************************************/
@media (max-width: 991.98px) {
  .breadcrumbs {
    display: none;
  }
  .breadcrumbs__row {
    justify-content: flex-end !important;
  }
  .breadcrumbs__btn {
    margin-left: auto;
  }
  .breadcrumbs__btn span {
    display: none;
  }
}
.btn--orange {
  display: inline-block;
  border-radius: 52px;
  background: #FF6D00;
  padding: 12px 36px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgba(255, 109, 0, 0.2);
}
.btn--orange:hover, .btn--orangeactive, .btn--orange:focus {
  color: #FFFFFF;
  background: #FF862C;
  border: 1px solid rgba(255, 134, 44, 0.2);
  cursor: pointer;
}

.btn--transparent {
  display: inline-block;
  border-radius: 52px;
  background: transparent;
  border: 1px solid rgba(255, 109, 0, 0.2);
  padding: 12px 36px;
  color: #FF6D00;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn--transparent:hover, .btn--transparentactive, .btn--transparent:focus {
  color: #FFFFFF;
  background: #FF862C;
  border: 1px solid rgba(255, 134, 44, 0.2);
  cursor: pointer;
}

.btn--blue {
  display: inline-block;
  border-radius: 52px;
  background: #00B0FF;
  padding: 12px 36px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.btn--blue:hover, .btn--blueactive, .btn--blue:focus {
  color: #FFFFFF;
  background: #40C4FF;
  cursor: pointer;
}

.link-back {
  display: none;
}

@media (max-width: 991.98px) {
  .link-back {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #6C7282;
    background: url("/themes/2024/assets/shared/page-main/cases/arrow-back.svg") no-repeat left;
    padding-left: 18px;
    margin: 20px 0 20px 0;
    text-decoration: none;
  }

  .dark-wrapper .link-back {
    color: rgba(255, 255, 255, 0.5);
    background: url("/themes/2024/assets/shared/page-main/cases/arrow-back2.svg") no-repeat left;
    z-index: 2;
    position: relative;
  }
}
@media (max-width: 575.98px) {
  .link-back {
    font-size: 13px;
  }
}
/* footer (start) */
.new-footer {
  background: #151526;
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
  text-align: left;
  color: #8F8F97;
  padding: 80px 0 0;
}
.new-footer__menu__blocks {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0;
}
.new-footer__menu__blocks:first-of-type {
  padding-bottom: 68px;
}
.new-footer__menu a {
  color: #8F8F97;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.new-footer__menu a:hover {
  color: #FFFFFF;
}
.new-footer__menu__block {
  width: 23%;
}
.new-footer__menu__header, .new-footer__menu__header a {
  color: #FFFFFF;
  font-weight: bold;
  padding: 0;
  margin-bottom: 5px;
  text-decoration: none;
  display: inline-block;
}
.new-footer__menu__header {
  padding-bottom: 4px;
}
.new-footer__menu__header a:hover {
  color: #8F8F97;
}
.new-footer__menu__input {
  display: none;
}
.new-footer__menu__icon {
  display: none;
}
.new-footer__info-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 28px;
}
.new-footer__col span {
  font-size: 14px;
  font-weight: normal;
  line-height: 135%;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 16px;
}
.new-footer__col:last-of-type span {
  margin-bottom: 32px;
}
.new-footer__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-footer__logos__img {
  box-sizing: initial;
  width: 90px;
  height: 21px;
}
.new-footer__logos__img:nth-of-type(2), .new-footer__logos__img:last-of-type {
  width: 212px;
  height: 38px;
  padding: 10px 0 10px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 28px;
}
.new-footer__share {
  display: flex;
  width: 234px;
  justify-content: space-between;
  align-items: center;
}
.new-footer__share-img {
  display: block;
  width: 23px;
  height: 19px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.new-footer .img--facebook {
  width: 10.29px;
  height: 20.58px;
  background-image: url("/themes/2024/assets/shared/footer/facebook.svg");
}
.new-footer .img--facebook:hover {
  background-image: url("/themes/2024/assets/shared/footer/facebook-hover.svg");
}
.new-footer .img--youtube {
  width: 22.38px;
  height: 15.69px;
  background-image: url("/themes/2024/assets/shared/footer/youtube.svg");
}
.new-footer .img--youtube:hover {
  background-image: url("/themes/2024/assets/shared/footer/youtube-hover.svg");
}
.new-footer .img--telegram {
  background-image: url("/themes/2024/assets/shared/footer/telegram.svg");
}
.new-footer .img--telegram:hover {
  background-image: url("/themes/2024/assets/shared/footer/telegram-hover.svg");
}
.new-footer .img--twitter {
  width: 22px;
  height: 18px;
  background-image: url("/themes/2024/assets/shared/footer/twitter-x.svg");
  background-size: contain;
}
.new-footer .img--twitter:hover {
  background-image: url("/themes/2024/assets/shared/footer/twitter-x-hover.svg");
}
.new-footer .img--linkedin {
  width: 20px;
  height: 20px;
  background-image: url("/themes/2024/assets/shared/footer/linkedin.svg");
  background-size: cover;
  margin-bottom: 5px;
}
.new-footer .img--linkedin:hover {
  background-image: url("/themes/2024/assets/shared/footer/linkedin-hover.svg");
}
.new-footer .img--habr {
  width: 52px;
  height: 24px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/themes/2024/assets/shared/footer/habr.svg");
}
.new-footer .img--habr:hover {
  background-image: url("/themes/2024/assets/shared/footer/habr-hover.svg");
}
.new-footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #8E9199;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.new-footer__copyright {
  flex-shrink: 0;
}
.new-footer__bottom-menu {
  display: flex;
  justify-content: space-between;
}
.new-footer__bottom-menu a {
  text-decoration: none;
  color: #8E9199;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.new-footer__bottom-menu a:hover {
  color: #FFFFFF;
}
.new-footer__bottom-menu-item {
  margin-right: 40px;
}
.new-footer__bottom-menu-item:last-child {
  margin-right: 0;
}

/* footer (end) */
/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 992px   ************************************************/
@media (max-width: 991.98px) {
  .new-footer__menu {
    /* Скрываем контент по умолчанию */
    /* Плавное раскрытие контента при активном чекбоксе */
  }
  .new-footer__menu__blocks {
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .new-footer__menu__blocks:first-of-type {
    padding-bottom: 0;
  }
  .new-footer__menu__blocks:first-of-type .new-footer__menu__block:last-of-type {
    border-bottom: none;
  }
  .new-footer__menu__block {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }
  .new-footer__menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .new-footer__menu__icon {
    display: block;
    width: 14px;
    height: 8.17px;
    fill: transparent;
    color: rgba(255, 255, 255, 0.5);
    stroke: rgba(255, 255, 255, 0.5);
    transform-origin: center;
    -webkit-transition: all 0.27s;
    -moz-transition: all 0.27s;
    -o-transition: all 0.27s;
    transition: all 0.27s;
  }
  .new-footer__menu__content .new-footer__menu__item:first-child {
    margin-top: 20px;
  }
  .new-footer__menu__input + .new-footer__menu__header + .new-footer__menu__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.27s ease-out, padding 0.27s ease-out;
  }
  .new-footer__menu__input:checked + .new-footer__menu__header + .new-footer__menu__content {
    max-height: 443px;
    animation: fadeIn 0.3s ease-in-out forwards;
    /* Добавляем анимацию */
  }
  .new-footer__menu__input:checked + .new-footer__menu__header .new-footer__menu__icon {
    transform: rotate(-180deg);
    color: #FFFFFF;
    stroke: #FFFFFF;
  }
  .new-footer__col:last-of-type span {
    margin-bottom: 18px;
  }
  .new-footer__col span {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .new-footer__logos {
    justify-content: flex-start;
  }
  .new-footer__logos__img {
    width: 75px;
    height: 17px;
  }
  .new-footer__logos__img:nth-of-type(2), .new-footer__logos__img:last-of-type {
    width: 132px;
    height: 24px;
    margin-left: 22px;
    border: none;
    padding: 0;
  }
  .new-footer__share {
    width: 182px;
  }
  .new-footer__info-wrapper {
    margin-top: 100px;
  }
  .new-footer__bottom {
    font-size: 13px;
    padding: 30px 0;
  }
  .new-footer__bottom-menu-item {
    margin-right: 20px;
  }
}
/****************************************   Для экранов меньше 768px   ***********************************************/
@media (max-width: 767.98px) {
  .new-footer__info-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 60px 0 40px;
  }
  .new-footer__logos {
    justify-content: center;
  }
  .new-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .new-footer__col span {
    font-size: 12px;
    font-weight: 400;
    line-height: 132%;
    text-align: center;
    margin-bottom: 20px;
  }
  .new-footer__col:last-of-type span {
    margin-bottom: 20px;
  }
  .new-footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    padding: 40px 0 30px;
    font-size: 14px;
  }
  .new-footer__bottom-menu {
    flex-direction: column;
    align-items: center;
  }
  .new-footer__bottom-menu-item {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .new-footer__bottom-menu-item:last-of-type {
    margin-bottom: 0;
  }
  .new-footer__copyright {
    text-align: center;
    margin-top: 40px;
  }
}
/****************************************   For screens smaller than 576px   ******************************************/
@media (max-width: 575.98px) {
  .new-footer__menu__block {
    padding: 16px 0;
  }
  .new-footer__menu__header {
    font-size: 14px;
  }
  .new-footer__menu__item {
    font-size: 14px;
  }
  .new-footer__menu .new-footer__menu__input:checked + .new-footer__menu__header {
    padding-bottom: 5px;
  }
}
/* Анимация для плавного появления контента */
@keyframes fadeIn {
  0% {
    opacity: 0;
    /* Начальная прозрачность */
    transform: translateY(-10px);
    /* Смещение вверх */
  }
  100% {
    opacity: 1;
    /* Конечная прозрачность */
    transform: translateY(0);
    /* Исходное положение */
  }
}
.form-mini {
  background: #252538;
  padding: 148px 0 242px;
}
.form-mini__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.form-mini__text {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 148%;
  font-weight: 400;
  margin-right: 170px;
  max-width: 400px;
  flex-shrink: 0;
}
.form-mini__text img {
  box-sizing: initial;
  padding: 8px 4px;
  margin-bottom: 48px;
}
.form-mini__color-text {
  color: #00B0FF;
}
.form-mini__form {
  width: 100%;
}
.form-mini__inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-mini__input-wrapper {
  position: relative;
  height: 60px;
  width: 100%;
}
.form-mini__input-wrapper:focus-within:after, .form-mini__input-wrapper:valid:after, .form-mini__input-wrapper:invalid:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 95px;
  width: calc(100% - 95px);
  height: 1px;
  background: #00B0FF;
}
.form-mini__input-wrapper:focus-within .form-mini__btn-submit, .form-mini__input-wrapper:valid .form-mini__btn-submit, .form-mini__input-wrapper:invalid .form-mini__btn-submit {
  border-color: rgba(0, 176, 255, 0.1);
}
.form-mini__input-wrapper:focus-within .form-mini__btn-submit:hover, .form-mini__input-wrapper:valid .form-mini__btn-submit:hover, .form-mini__input-wrapper:invalid .form-mini__btn-submit:hover {
  border-color: #00B0FF;
}
.form-mini__input-wrapper.invalid-wrapper:after {
  background: #FF3A3A;
}
.form-mini__input-wrapper.invalid-wrapper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 48px;
  width: 38px;
  height: 38px;
  background-color: transparent;
  background-image: url("/themes/2024/assets/shared/form-mini/input-error-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.form-mini__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #4F4F4F;
  outline: none;
  -webkit-appearance: none;
  height: 100%;
  width: 100%;
  padding: 0 64px 12px 95px;
  font-size: 18px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  color: #FFFFFF;
}
.form-mini__input:focus-visible {
  outline: none;
}
.form-mini__input:-webkit-autofill, .form-mini__input:-webkit-autofill:hover, .form-mini__input:-webkit-autofill:focus, .form-mini__input:-webkit-autofill:active {
  -webkit-text-fill-color: #FFFFFF;
  -webkit-background-clip: text !important;
}
.form-mini__input-label {
  position: absolute;
  bottom: 25px;
  left: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  color: #8F8F97;
}
.form-mini .is-invalid {
  border-bottom: 1px solid #FF3A3A;
}
.form-mini__btn-submit {
  position: absolute;
  top: 0;
  background: transparent;
  border: 1.5px solid #00B0FF;
  right: 2px;
  z-index: 1;
  padding: 6px 16px;
  border-radius: 50px;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.form-mini__btn-submit:hover {
  background: #00B0FF;
}
.form-mini__btn-submit:hover .form-mini__btn-icon {
  fill: transparent;
  color: #FFFFFF;
  stroke: #FFFFFF;
}
.form-mini__btn-icon {
  width: 24px;
  height: 24px;
  color: #00B0FF;
  stroke: #00B0FF;
  fill: transparent;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.form-mini .form__agree .just-validate-error-label {
  display: none !important;
}

/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/***************************************   For screens smaller than 1200px   ******************************************/
@media (max-width: 1199.98px) {
  .form-mini__text {
    margin-right: 64px;
  }
}
/***************************************   For screens smaller than 992px   *******************************************/
@media (max-width: 991.98px) {
  .form-mini {
    padding: 80px 0 102px;
  }
  .form-mini__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-mini__text {
    font-size: 20px;
    margin-bottom: 80px;
    margin-right: 0;
    max-width: 526px;
  }
  .form-mini__text img {
    margin-bottom: 24px;
  }
  .form-mini__form {
    max-width: 406px;
  }
  .form-mini__input-wrapper {
    height: 42px;
  }
  .form-mini__input-wrapper:focus-within:after, .form-mini__input-wrapper:valid:after, .form-mini__input-wrapper:invalid:after {
    left: 0;
    width: 100%;
  }
  .form-mini__input-wrapper.invalid-wrapper:before {
    width: 26px;
    height: 26px;
    top: auto;
    bottom: 54px;
  }
  .form-mini__input {
    padding: 0 38px 12px 0;
    font-size: 16px;
  }
  .form-mini__input-label {
    bottom: 56px;
  }
  .form-mini__btn-submit {
    width: 26px;
    height: 26px;
    padding: 0;
  }
  .form-mini__btn-icon {
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 2.5px);
    width: 5px;
    height: 8px;
  }
}
/****************************************   For screens smaller than 576px   ******************************************/
@media (max-width: 575.98px) {
  .form-mini__text {
    font-size: 14px;
  }
  .form-mini__input {
    font-size: 13px;
  }
  .form-mini__input-label {
    font-size: 12px;
  }
}
.form {
  /* Hover */
  /* Active */
}
.form__agree {
  margin: 26px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form__agree-checkbox {
  display: block;
  cursor: pointer;
  user-select: none;
  position: relative;
  top: -3px;
}
.form__agree-checkbox input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.form__agree-checkbox span {
  display: inline-block;
  position: relative;
  line-height: 22px;
}
.form__agree-checkbox span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #00B0FF;
  border-radius: 4px;
}
.form__agree-checkbox input.is-invalid + span:before {
  border: 1px solid #FF3A3A;
}
.form__agree-checkbox input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #00B0FF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form__agree-checkbox span:hover:after {
  filter: brightness(110%);
}
.form__agree-checkbox span:active:before, .form__agree-checkbox span:active:after {
  filter: brightness(80%);
}
.form__agree-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #151526;
}
.form__agree-text a {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #00B0FF;
  text-decoration: none;
}
.form__agree-text a:hover {
  border-bottom: 1px solid #00B0FF;
}

.dark-wrapper .form__agree-text, .form-mini .form__agree-text {
  color: #FFFFFF;
}
.dark-wrapper .form__agree-checkbox input[type=checkbox]:checked + span:after, .form-mini .form__agree-checkbox input[type=checkbox]:checked + span:after {
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
}

.form-mini .just-validate-error-label {
  padding-top: 0 !important;
}

.products-form .form__agree, .partners-form .form__agree, .papers-form .form__agree, .contacts-form .form__agree {
  margin-left: 2px;
}

.subscribe-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  z-index: 1000001;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  overflow-y: auto;
}
.subscribe-popup.active {
  display: flex;
}
.subscribe-popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}
.subscribe-popup__close {
  position: relative;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  fill: #212529;
  color: #212529;
  flex-shrink: 0;
}
.subscribe-popup__close:hover {
  fill: #000000;
  color: #000000;
}
.subscribe-popup__popup {
  position: relative;
  width: 100%;
  max-width: 450px;
  padding: 25px 35px 55px;
  border-radius: 5px;
  box-sizing: border-box;
  background: #FFFFFF;
}
.subscribe-popup img {
  margin: 0;
  width: 100%;
}
.subscribe-popup__form {
  max-width: 270px;
  margin: 0 auto;
}
.subscribe-popup__form.form {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.subscribe-popup__form.form input {
  color: #212529;
}
.subscribe-popup__form.form input.btn--orange {
  color: #FFFFFF;
}
.subscribe-popup__text {
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;
  font-style: italic;
  text-transform: none;
  text-align: center;
  margin: 10px 0 20px;
  color: #515151;
}
.subscribe-popup label {
  position: relative;
  width: 100%;
  padding: 30px 0 20px;
  cursor: pointer;
  color: #8490A4;
}
.subscribe-popup label input[type=email] {
  width: 100%;
  height: 36px;
  border: 1px solid #cccccc;
  border-radius: 2px;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: normal;
  font-family: inherit;
}
.subscribe-popup label input[type=email] + span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #515151;
}
.subscribe-popup input:focus-visible {
  outline: none;
}
.subscribe-popup input:-webkit-autofill, .subscribe-popup input:-webkit-autofill:hover, .subscribe-popup input:-webkit-autofill:focus, .subscribe-popup input:-webkit-autofill:active, .subscribe-popup input[type=email]:-webkit-autofill, .subscribe-popup input[type=email]:-webkit-autofill:hover, .subscribe-popup input[type=email]:-webkit-autofill:focus, .subscribe-popup input[type=email]:-webkit-autofill:active {
  -webkit-text-fill-color: #212529;
  font-size: 14px;
  font-weight: normal;
  -webkit-background-clip: text !important;
}
.subscribe-popup input.is-invalid, .subscribe-popup input[type=email].is-invalid {
  background-image: url("/images/langing-soc/form/input-error.svg");
  background-repeat: no-repeat;
  background-position: right 8px bottom 8px;
}
.subscribe-popup .personal-data__wrapper {
  padding: 0 0 20px;
}
.subscribe-popup .personal-data {
  display: flex;
  align-items: flex-start;
  padding: 0;
}
.subscribe-popup .personal-data input {
  margin-right: 5px;
  display: inline-block;
}
.subscribe-popup__radio-label {
  font-size: 10px;
  line-height: 120%;
  display: inline-block;
}
.subscribe-popup .recaptcha-wrapper {
  height: 50px;
  width: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}
.subscribe-popup .recaptcha-wrapper .g-recaptcha {
  transform: scale(0.641);
}
.subscribe-popup .btn--orange {
  display: inline-block;
  border-radius: 3px;
  background: #FF6D00;
  padding: 11px 35px;
  color: #FFFFFF;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}
.subscribe-popup .btn--orange:hover, .subscribe-popup .btn--orangeactive, .subscribe-popup .btn--orange:focus {
  color: #FFFFFF;
  background: #FF7B18;
  cursor: pointer;
}
.subscribe-popup__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe-popup__button input {
  font-size: 16px;
}
.subscribe-popup__button-submit {
  border-style: none;
  width: 100%;
  white-space: normal;
}

/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 1200px   ***********************************************/
@media (max-width: 1199.98px) {
  .subscribe-popup .form .recaptcha-wrapper .g-recaptcha {
    transform-origin: initial;
  }
}
/****************************************   Для экранов меньше 768px   ************************************************/
@media (max-width: 767.98px) {
  .form .recaptcha-wrapper .g-recaptcha {
    transform-origin: initial;
  }
}
/****************************************   Для экранов меньше 576px   ***********************************************/
@media (max-width: 575.98px) {
  .subscribe-popup__popup {
    padding: 20px;
  }
}
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: none;
  z-index: 999;
}
.cookie__container {
  margin: 0 20px 20px 20px;
  padding: 50px 50px 50px 60px;
  border-radius: 12px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #F5F5F5;
  box-shadow: 0 11px 34px 0 rgba(0, 0, 0, 0.07);
}
.cookie__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  width: 700px;
}
.cookie__buttons {
  display: flex;
  gap: 10px;
}
.cookie__buttons > div {
  width: 163px;
  height: 44px;
  border-radius: 52px;
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cookie__buttons-ok {
  background: #FF6D00;
  color: #FFFFFF;
}
.cookie__buttons-policy {
  border: 1px solid rgba(255, 109, 0, 0.2);
  background: none;
}
.cookie__buttons-policy a {
  color: #FF6D00;
  text-decoration: none;
  width: 100%;
  line-height: 44px;
  text-align: center;
}

.cookie-settings {
  position: fixed;
  margin: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  background: none;
  z-index: 999;
  /* Checked */
  /* Hover */
  /* Disabled */
}
.cookie-settings__container {
  position: relative;
  padding: 50px;
  border-radius: 12px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #F5F5F5;
  box-shadow: 0 11px 34px 0 rgba(0, 0, 0, 0.07);
}
.cookie-settings__container a {
  text-decoration: none;
  color: #00B0FF;
  height: 24px;
}
.cookie-settings__container a:hover {
  border-bottom: 1px solid #00B0FF;
}
.cookie-settings__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.cookie-settings__head {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 30px;
}
.cookie-settings__body {
  height: 100%;
  overflow-y: auto;
}
.cookie-settings__buttons {
  display: flex;
  justify-content: end;
  padding-top: 45px;
  margin-top: 20px;
  flex-shrink: 0;
  border-top: 1px solid #C2C2C2;
}
.cookie-settings .triple-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.cookie-settings .triple-col__row {
  display: flex;
  gap: 30px;
}
.cookie-settings .triple-col__header {
  font-size: 14px;
  border-bottom: 1px solid #C2C2C2;
  padding-bottom: 10px;
  display: flex;
  gap: 30px;
}
.cookie-settings .triple-col__category {
  width: 25%;
}
.cookie-settings .triple-col__description {
  width: 65%;
}
.cookie-settings .triple-col__status {
  width: 70px;
}
.cookie-settings p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
.cookie-settings h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.cookie-settings__checkbox {
  display: block;
  cursor: pointer;
  user-select: none;
  position: relative;
  width: 70px;
  padding: 0;
  margin: 0;
  line-height: 0;
}
.cookie-settings__checkbox input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.cookie-settings__checkbox span {
  display: inline-block;
  position: relative;
}
.cookie-settings__checkbox span:before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(/themes/2024/assets/shared/cookie/checkbox-unchecked.svg) 0 0 no-repeat;
}
.cookie-settings__checkbox input[type=checkbox]:checked + span:before {
  background-image: url(/themes/2024/assets/shared/cookie/checkbox-checked.svg);
}
.cookie-settings__checkbox span:hover:before {
  filter: brightness(110%);
}
.cookie-settings__checkbox input[type=checkbox]:disabled + span {
  color: #b3b3b3;
  cursor: default;
}
.cookie-settings__checkbox input[type=checkbox]:disabled + span:before {
  filter: grayscale(100%);
  opacity: 0.6;
}
.cookie-settings__buttons > div {
  width: 163px;
  height: 44px;
  border-radius: 52px;
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
}
.cookie-settings__buttons-ok {
  background: #FF6D00;
}
.cookie-settings__buttons-ok:hover {
  filter: brightness(110%);
}

@media (max-width: 991.98px) {
  .cookie__container {
    margin: 0 30px 30px 30px;
    padding: 40px 50px 50px 50px;
    display: block;
  }
  .cookie__text {
    line-height: 22px;
    text-align: left;
    width: 100%;
  }
  .cookie__buttons {
    padding-top: 60px;
    justify-content: center;
  }
  .cookie__buttons > div {
    width: 299px;
  }

  .cookie-settings__container {
    padding: 50px 25px 25px 25px;
  }
  .cookie-settings__body {
    max-height: 500px;
  }
  .cookie-settings__buttons {
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .cookie-settings {
    top: 0;
  }
  .cookie-settings p {
    font-size: 13px;
    line-height: 18px;
  }
  .cookie-settings h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 575.98px) {
  .cookie__container {
    margin: 0 20px 20px 20px;
    padding: 14px 20px 20px 20px;
    display: block;
  }
  .cookie__text {
    text-align: left;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }
  .cookie__buttons {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cookie__buttons > div {
    width: 240px;
  }

  .cookie-settings__container {
    padding: 50px 15px 15px 15px;
  }
  .cookie-settings__body {
    max-height: 400px;
  }
  .cookie-settings .triple-col__row {
    gap: 0;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }
  .cookie-settings .triple-col__header {
    display: none;
  }
  .cookie-settings .triple-col__category {
    grid-area: 1/1;
    width: 100%;
    padding-top: 5px;
  }
  .cookie-settings .triple-col__description {
    grid-area: 2/1/2/3;
    width: 100%;
  }
  .cookie-settings .triple-col__status {
    grid-area: 1/2;
    width: 100%;
    display: flex;
    justify-content: end;
  }
  .cookie-settings__checkbox {
    height: 40px;
  }
}
/************************************************  roots-diagram  *****************************************************/
.roots-diagram__card-container {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 958px;
  margin: 0 auto;
  padding-top: 12px;
}
.roots-diagram__card {
  position: relative;
  width: 160px;
  margin: 12px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  -webkit-transition: all 0.27s;
  -moz-transition: all 0.27s;
  -o-transition: all 0.27s;
  transition: all 0.27s;
}
.roots-diagram__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1px;
  z-index: 0;
}
.roots-diagram__card.card-1:before, .roots-diagram__card.card-4:before, .roots-diagram__card.card-7:before, .roots-diagram__card.card-9:before, .roots-diagram__card.card-12:before {
  background: linear-gradient(48deg, #100026 -5.11%, #9E60BB 51.12%, #DEDEE5 86.29%);
}
.roots-diagram__card.card-2:before, .roots-diagram__card.card-10:before {
  background: linear-gradient(312deg, #100026 -5.11%, #9E60BB 51.12%, #DEDEE5 86.29%);
}
.roots-diagram__card.card-3:before, .roots-diagram__card.card-5:before, .roots-diagram__card.card-6:before, .roots-diagram__card.card-8:before, .roots-diagram__card.card-11:before {
  background: linear-gradient(223deg, #100026 -5.11%, #9E60BB 51.12%, #DEDEE5 86.29%);
}
.roots-diagram__card:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 23px;
  background: #FFFFFF;
  z-index: 1;
}
.roots-diagram__card img {
  position: relative;
  width: 20px;
  height: 20px;
  margin-bottom: 24px;
  z-index: 2;
}
.roots-diagram__card span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
  background: linear-gradient(102.21deg, #100026 27.42%, #9E60BB 56.36%, #6260BB 74.47%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  z-index: 2;
}
.roots-diagram__card:hover {
  box-shadow: 0 11px 34px 0 rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.roots-diagram .anime-wrapper {
  position: absolute;
  top: -72px;
  display: flex;
  justify-content: center;
}
.roots-diagram .anime-wrapper div:first-of-type {
  position: relative;
  right: -1px;
}
.roots-diagram .anime-wrapper div:last-of-type {
  position: relative;
  left: -1px;
}

div.roots-diagram__card:hover {
  cursor: auto;
}

/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 992px   ************************************************/
@media (max-width: 991.98px) {
  .roots-diagram .anime-wrapper svg {
    width: 288px;
  }
}
/****************************************   Для экранов меньше 768px   ***********************************************/
@media (max-width: 767.98px) {
  .roots-diagram .anime-wrapper svg {
    width: 264px;
  }
  .roots-diagram__card-container {
    padding-top: 0;
  }
  .roots-diagram__card {
    margin: 5px;
  }
}
/****************************************   Для экранов меньше 576px   ***********************************************/
@media (max-width: 575.98px) {
  .roots-diagram {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .roots-diagram__card-container {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100vw;
    max-width: none;
  }
  .roots-diagram__card-container::-webkit-scrollbar {
    display: none;
  }
  .roots-diagram__card-container .anime-wrapper {
    display: none;
  }
  .roots-diagram__card {
    width: 130px;
    padding: 12px;
    border-radius: 16px;
  }
  .roots-diagram__card.card-1 {
    margin-left: 12px;
  }
  .roots-diagram__card.card-9 {
    margin-right: 40px;
  }
  .roots-diagram__card img {
    width: 14px;
    height: 14px;
  }
  .roots-diagram__card span {
    font-size: 13px;
  }
  .roots-diagram__card:hover {
    box-shadow: none;
    cursor: pointer;
  }
}
.form {
  /* Скрываем контент по умолчанию */
  /* Плавное раскрытие контента при активном чекбоксе */
  /**********************************************  new-select  ******************************************************/
  /**********************************************  textarea (/contacts/)  *******************************************/
}
.form__input-wrapper {
  width: 100%;
  height: 60px;
  margin-bottom: 14px;
  position: relative;
}
.form__input-wrapper.invalid-wrapper .form__input-container {
  border: 1px solid #FF3A3A;
}
.form__input-wrapper.invalid-wrapper .form__input-container:after {
  background: #FF3A3A;
}
.form__input-wrapper.invalid-wrapper .form__input-container .form__input-invalid {
  display: inline-block;
  position: absolute;
  top: calc(50% - 19px);
  right: 10px;
  width: 38px;
  height: 38px;
  background-color: transparent;
  background-image: url("/themes/2024/assets/shared/form-mini/input-error-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.form__input-wrapper.invalid-wrapper .form__input-container.country-input:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-gray.svg") no-repeat center;
}
.form__input-wrapper.invalid-wrapper .form__input {
  padding-right: 40px;
}
.form__input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  max-height: 60px;
  padding: 18px;
  border: 1px solid transparent;
}
.form__input-container:focus, .form__input-container:focus-visible, .form__input-container:focus-within {
  outline: none;
  border: 1px solid #00B0FF;
}
.form__input-container:focus .form__label, .form__input-container:focus-visible .form__label, .form__input-container:focus-within .form__label {
  color: #151526;
}
.form__input-container:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(21, 21, 38, 0.07);
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  z-index: 0;
}
.form__input-container.country-input {
  flex-direction: row;
  z-index: 2;
  padding: 0;
}
.form__input-container.country-input:after {
  content: "";
  display: block;
  transform-origin: center;
  position: absolute;
  z-index: 0;
  left: 164px;
  top: 18px;
  width: 16px;
  height: 20px;
  background: url("/themes/2024/assets/shared/form/arrow-icon-gray.svg") no-repeat center;
  -webkit-transition: all 0.27s ease-in-out;
  -o-transition: all 0.27s ease-in-out;
  transition: all 0.27s ease-in-out;
}
.form__input-container.country-input #countryCheckbox {
  display: none;
  position: relative;
  z-index: 1;
}
.form__input-container.country-input .form__input {
  order: 3;
  position: absolute;
  padding: 18px 18px 18px 74px;
  width: calc(100% - 120px);
  right: 0;
}
.form__input-container.country-input .form__input-item {
  width: calc(100% - 16px);
  padding: 0 0 0 16px;
}
.form__input-container.country-input .form__label {
  order: 1;
  padding: 18px;
  margin-right: 0;
  min-width: 124px;
}
.form__input-container.country-input.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.form__input-container.country-input.filled:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-dark-gray.svg") no-repeat center;
}
.form__input-container.country-input .just-validate-error-label {
  margin-left: 18px;
}
.form__input-invalid {
  display: none;
}
.form__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  color: #6C7282;
  min-width: 88px;
  margin-right: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.form__input {
  font-size: 18px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  height: 100%;
  width: 100%;
  background: transparent;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  color: #151526;
  position: relative;
  z-index: 1;
}
.form__input::-moz-placeholder {
  color: #6C7282;
}
.form__input::-webkit-input-placeholder {
  color: #6C7282;
}
.form__input:focus-visible {
  outline: none;
}
.form__input:not(:placeholder-shown) {
  background-color: transparent;
  color: #151526;
}
.form__input:-webkit-autofill, .form__input:-webkit-autofill:hover, .form__input:-webkit-autofill:focus, .form__input:-webkit-autofill:active {
  -webkit-text-fill-color: #151526;
  -webkit-background-clip: text !important;
}
.form__input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
}
.form__input-list {
  position: absolute;
  top: 50px;
  left: 124px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: calc(100% - 142px);
  min-width: 186px;
  user-select: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 121%;
  text-align: left;
  z-index: 3;
}
.form__input-list .scroll-content {
  position: relative;
}
.form__input-list .scroll-content:before {
  position: absolute;
  content: "";
  top: -12px;
  left: 0;
  right: 0;
  bottom: -12px;
  background: rgba(21, 21, 38, 0.07);
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  z-index: 3;
}
.form #countryCheckbox + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
  height: fit-content;
  max-height: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  transition: max-height 0.27s ease-out, padding 0.27s ease-out;
}
.form #countryCheckbox:checked + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
  max-height: 330px;
  padding: 12px 0;
  border: 1px solid #C2C2C2;
  -webkit-transition: max-height 0.27s ease-in-out, padding 0.27s ease-in-out;
  -o-transition: max-height 0.27s ease-in-out, padding 0.27s ease-in-out;
  transition: max-height 0.27s ease-in-out, padding 0.27s ease-in-out;
}
.form__input-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 4;
}
.form__input-item span {
  display: block;
  width: 100%;
  padding: 8px 16px;
  color: #6C7282;
}
.form__input-item span:hover {
  color: #151526;
}
.form__input-item.no-results {
  color: #6C7282;
  flex-direction: row;
}
.form__input-item .form__input-flag-wrapper {
  width: 25.6px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
  position: relative;
  z-index: 2;
}
.form__input-item .form__input-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form__input-flag-wrapper {
  width: 32px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  order: 2;
  margin-right: 36px;
  position: relative;
  z-index: 2;
  opacity: 1;
}
.form__input-flag-wrapper.flag-wrapper-hidden {
  opacity: 0;
}
.form__input-flag {
  width: 100%;
  height: 100%;
}
.form__form-agree {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #151526;
  margin: 26px 18px;
}
.form__form-agree a {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #00B0FF;
  text-decoration: none;
}
.form__form-agree a:hover {
  border-bottom: 1px solid #00B0FF;
}
.form__button-wrapper {
  width: 100%;
}
.form__button {
  width: 100%;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #FFFFFF;
  background: #FF6D00;
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 52px;
}
.form__button:hover, .form__button:focus {
  cursor: pointer;
  background: #FF862C;
  border: 1px solid rgba(255, 134, 44, 0.2);
}
.form__button:disabled {
  background: #FF6D00;
  border: 1px solid rgba(255, 109, 0, 0.2);
  opacity: 0.6;
  cursor: not-allowed;
}
.form__select-wrapper {
  width: 100%;
  height: 60px;
  margin-bottom: 14px;
  background: transparent;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.form__select-wrapper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(21, 21, 38, 0.07);
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  z-index: 1;
}
.form__select-wrapper .js-simple-select {
  opacity: 0;
}
.form__select-wrapper.invalid-wrapper .form__input-invalid {
  display: inline-block;
  position: absolute;
  top: calc(50% - 19px);
  right: 10px;
  width: 38px;
  height: 38px;
  background-color: transparent;
  background-image: url("/themes/2024/assets/shared/form-mini/input-error-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.form__select-wrapper.invalid-wrapper .simple-select {
  border: 1px solid #FF3A3A;
  border-radius: 4px;
}
.form__select-wrapper.invalid-wrapper .new-select.on {
  border: none;
}
.form__select-wrapper.invalid-wrapper .new-select__value {
  padding-right: 40px;
}
.form .simple-select {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}
.form .new-select {
  position: relative;
  background: transparent;
  border-radius: 4px;
  border: 1px solid transparent;
  height: 100%;
  padding: 22px 18px;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.form .new-select:focus, .form .new-select:focus-visible, .form .new-select:focus-within {
  outline: none;
  border: 1px solid #00B0FF;
}
.form .new-select:after {
  content: "";
  display: block;
  transform-origin: center;
  position: absolute;
  left: 118px;
  top: 20px;
  width: 18px;
  height: 20px;
  background: url("/themes/2024/assets/shared/form/arrow-icon-gray.svg") no-repeat center;
  -webkit-transition: all 0.27s ease-in-out;
  -o-transition: all 0.27s ease-in-out;
  transition: all 0.27s ease-in-out;
}
.form .new-select.on {
  display: flex;
  border: 1px solid #00B0FF;
}
.form .new-select.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.form .new-select.on .new-select__label {
  color: #151526;
}
.form .new-select.filled:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-dark-gray.svg") no-repeat center;
}
.form .new-select.filled .new-select__value {
  color: #151526;
}
.form .new-select.filled.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
}
.form .new-select__value {
  display: inline-block;
  width: 100%;
  padding-right: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 144%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #6C7282;
}
.form .new-select__label {
  min-width: 88px;
  margin-right: 40px;
  flex-shrink: 0;
  color: #6C7282;
}
.form .new-select__label span {
  font-size: 14px;
  font-weight: 400;
  line-height: 144%;
}
.form .new-select__list {
  position: absolute;
  top: 50px;
  left: 124px;
  border: 1px solid #C2C2C2;
  border-radius: 4px;
  cursor: pointer;
  max-width: calc(100% - 124px);
  min-width: 186px;
  width: fit-content;
  height: 186px;
  z-index: 3;
  user-select: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 121%;
  text-align: left;
  padding: 12px 0;
}
.form .new-select__list.scroll-container {
  height: 186px;
}
.form .new-select__list .scroll-content {
  position: relative;
}
.form .new-select__list .scroll-content:before {
  position: absolute;
  content: "";
  top: -12px;
  left: 0;
  right: 0;
  bottom: -12px;
  background: rgba(21, 21, 38, 0.07);
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  z-index: 3;
}
.form .new-select__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 4;
}
.form .new-select__item span {
  display: block;
  width: 100%;
  padding: 8px 16px 8px 0;
  color: #6C7282;
}
.form .new-select__item span:hover {
  color: #151526;
}
.form .new-select__item-flag-wrapper {
  width: 25.6px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}
.form .new-select__item-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form .new-select__flag-wrapper {
  width: 32px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  order: 2;
  margin-right: 36px;
}
.form .new-select__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form__textarea {
  font-size: 18px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  color: #151526;
  width: 100%;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  border: none !important;
  background: transparent !important;
  position: relative;
  z-index: 1;
}
.form__textarea:not(:placeholder-shown) ~ .form__textarea-placeholder {
  display: none;
}
.form__textarea-wrapper {
  width: 100%;
  height: fit-content;
  margin-bottom: 14px;
  position: relative;
}
.form__textarea-wrapper.invalid-wrapper .form__textarea-container {
  border: 1px solid #FF3A3A;
}
.form__textarea-wrapper.invalid-wrapper .form__textarea-container .form__input-invalid {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background-color: transparent;
  background-image: url("/themes/2024/assets/shared/form-mini/input-error-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.form__textarea-wrapper.invalid-wrapper .form__textarea {
  padding-right: 40px;
}
.form__textarea-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: fit-content;
  border-radius: 4px;
  padding: 18px;
  border: 1px solid transparent;
}
.form__textarea-container:focus, .form__textarea-container:focus-visible, .form__textarea-container:focus-within {
  outline: none;
  border: 1px solid #00B0FF;
}
.form__textarea-container:focus .form__label, .form__textarea-container:focus-visible .form__label, .form__textarea-container:focus-within .form__label {
  color: #151526;
}
.form__textarea-container:focus .form__textarea-placeholder, .form__textarea-container:focus-visible .form__textarea-placeholder, .form__textarea-container:focus-within .form__textarea-placeholder {
  display: none;
}
.form__textarea-container:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(21, 21, 38, 0.07);
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  z-index: 0;
}
.form__textarea-placeholder {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 144%;
  text-align: left;
  color: #6C7282;
  position: absolute;
  left: 125px;
  bottom: 16px;
  z-index: 1;
}

/*************************************************  Темная тема  ******************************************************/
.dark-wrapper .form {
  /* Плавное раскрытие контента при активном чекбоксе */
  /**********************************************  new-select  **************************************************/
}
.dark-wrapper .form__input-container:focus .form__label, .dark-wrapper .form__input-container:focus-visible .form__label, .dark-wrapper .form__input-container:focus-within .form__label {
  color: #FFFFFF;
}
.dark-wrapper .form__input-container:before {
  background: rgba(255, 255, 255, 0.12);
}
.dark-wrapper .form__input-container.country-input:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-gray-ashen.svg") no-repeat center;
}
.dark-wrapper .form__input-container.country-input.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
}
.dark-wrapper .form__input-container.country-input.filled:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-white.svg") no-repeat center;
}
.dark-wrapper .form__input-container.country-input.filled.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
}
.dark-wrapper .form__input-container.country-input .form__input-list {
  border: 1px solid #6C7282;
}
.dark-wrapper .form__input-container.country-input .form__input-list .scroll-content:before {
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  background: rgba(175, 175, 175, 0.1);
}
.dark-wrapper .form__input-container.country-input .form__input-item span {
  color: #C2C2C2;
}
.dark-wrapper .form__input-container.country-input .form__input-item span:hover {
  color: #FFFFFF;
}
.dark-wrapper .form__label {
  color: #8E9199;
}
.dark-wrapper .form__input {
  color: #FFFFFF;
}
.dark-wrapper .form__input::-moz-placeholder {
  color: #8E9199;
}
.dark-wrapper .form__input::-webkit-input-placeholder {
  color: #8E9199;
}
.dark-wrapper .form__input:not(:placeholder-shown) {
  color: #FFFFFF;
}
.dark-wrapper .form__input:-webkit-autofill, .dark-wrapper .form__input:-webkit-autofill:hover, .dark-wrapper .form__input:-webkit-autofill:focus, .dark-wrapper .form__input:-webkit-autofill:active {
  -webkit-text-fill-color: #FFFFFF;
}
.dark-wrapper .form__input-item.no-results {
  color: #FFFFFF;
}
.dark-wrapper .form #countryCheckbox:checked + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
  border: 1px solid #6C7282;
  height: fit-content;
}
.dark-wrapper .form__form-agree {
  color: #FFFFFF;
}
.dark-wrapper .form__form-agree a {
  color: #00B0FF;
}
.dark-wrapper .form__select-wrapper:before {
  background: rgba(255, 255, 255, 0.12);
}
.dark-wrapper .form .new-select:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-gray-ashen.svg") no-repeat center;
}
.dark-wrapper .form .new-select.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
}
.dark-wrapper .form .new-select.on .new-select__label {
  color: #FFFFFF;
}
.dark-wrapper .form .new-select.filled:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-white.svg") no-repeat center;
}
.dark-wrapper .form .new-select.filled .new-select__value {
  color: #FFFFFF;
}
.dark-wrapper .form .new-select.filled.on:after {
  background: url("/themes/2024/assets/shared/form/arrow-icon-blue.svg") no-repeat center;
}
.dark-wrapper .form .new-select__label {
  color: #8E9199;
}
.dark-wrapper .form .new-select__value {
  color: #FFFFFF;
}
.dark-wrapper .form .new-select__list {
  border: 1px solid #6C7282;
}
.dark-wrapper .form .new-select__list .scroll-content:before {
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  background: rgba(175, 175, 175, 0.1);
}
.dark-wrapper .form .new-select__item span {
  color: #C2C2C2;
}
.dark-wrapper .form .new-select__item span:hover {
  color: #FFFFFF;
}

/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 992px   ************************************************/
@media (max-width: 991.98px) {
  .form #countryCheckbox:checked + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
    max-height: 270px;
  }
}
/****************************************   For screens smaller than 576px   ******************************************/
@media (max-width: 575.98px) {
  .form {
    /********************************************** new-select ****************************************************/
    /**********************************************  textarea (/contacts/)  ***************************************/
  }
  .form__input-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px;
  }
  .form__input-container.country-input {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .form__input-container.country-input:after {
    left: 44px;
    top: 28px;
  }
  .form__input-container.country-input .form__label {
    padding: 8px 8px 32px 8px;
    min-width: 68px;
  }
  .form__input-container.country-input .form__input-flag-wrapper {
    position: absolute;
    left: 8px;
    bottom: 8px;
    margin-right: 0;
  }
  .form__input-container.country-input .form__input {
    width: calc(100% - 68px);
    padding: 30px 8px 8px 0;
  }
  .form__input-container.country-input .form__input-list {
    left: 68px;
    width: calc(100% - 78px);
  }
  .form__input-container.country-input .form__input-item .form__input-flag-wrapper {
    margin-right: 10px;
    position: relative;
    left: 0;
    bottom: auto;
  }
  .form__label {
    font-size: 12px;
  }
  .form__input {
    font-size: 16px;
    line-height: 100%;
    height: auto;
  }
  .form .just-validate-error-label {
    padding-left: 0 !important;
  }
  .form #countryCheckbox:checked + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
    max-height: 232px;
  }
  .form .new-select {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px;
  }
  .form .new-select:after {
    top: auto;
    left: 4px;
    bottom: 10px;
  }
  .form .new-select__label span {
    font-size: 12px;
  }
  .form .new-select__value {
    font-size: 16px;
    padding-left: 20px;
  }
  .form .new-select__list {
    left: 28px;
    max-width: calc(100% - 38px);
  }
  .form__textarea-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px;
  }
  .form__textarea-container .form__label {
    padding-bottom: 6px;
  }
  .form__textarea-placeholder {
    font-size: 16px;
    line-height: 100%;
    left: 8px;
    bottom: 8px;
  }
  .form__textarea-wrapper.invalid-wrapper .form__textarea-container .form__input-invalid {
    bottom: 8px;
  }
}
/****************************************   Для экранов меньше 400px   ************************************************/
@media (max-width: 400px) {
  .form__input-item {
    padding: 0 10px;
  }
  .form__input-item span {
    padding: 8px 10px;
  }
  .form #countryCheckbox:checked + .form__label + .form__input-flag-wrapper + .form__input + .form__input-list {
    max-height: 266px;
  }
}
.message-page {
  position: relative;
}
.message-page__header {
  position: relative;
  height: calc(100vh - 180px);
  min-height: 320px;
}
.message-page__header .header-content {
  background: grey no-repeat center top/cover;
  background-image: url(/themes/2024/assets/shared/page-not-found/bg_header.png);
  position: relative;
  height: calc(100vh + 2px);
  min-height: fit-content;
  top: -180px;
  padding-top: 180px;
  padding-bottom: 100px;
}
.message-page__header .header-content .header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100vh - 280px);
  min-height: fit-content;
}
.message-page__header .header-content .header-text h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.message-page__header .header-content .header-text h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
  text-transform: none;
}
.message-page__header .header-content .header-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.message-page__header .header-content .header-text__header {
  padding-bottom: 25px;
}
.message-page__header .header-content .header-text__text {
  width: 260px;
}
.message-page__header .header-content .header-text__button {
  padding-top: 52px;
}
.message-page__header .header-content .header-text__button a.back-home {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 109, 0, 0.2);
  background: #FF6D00;
  padding: 15px 40px;
  border-radius: 52px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  height: 44px;
  z-index: 2;
  position: relative;
}
.message-page__header .header-content .header-text .header-text-col2 {
  display: flex;
  gap: 20px;
}
.message-page__header .header-content .header-text .header-text-col2 div {
  width: 50%;
}
.message-page__header .header-content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 12, 39, 0) 50%, #100C27 100%), linear-gradient(360deg, rgba(16, 12, 39, 0) 60%, #100C27 100%);
}

@media (max-width: 991.98px) {
  .message-page__header {
    height: calc(100vh - 145px);
    min-height: 448px;
  }
  .message-page__header .header-content {
    top: -144px;
    padding-top: 144px;
  }
  .message-page__header .header-content .header-text {
    justify-content: center;
  }
  .message-page__header .header-content .header-text__button {
    padding-top: 40px;
  }
  .message-page__header .header-content .header-text .header-text-col2 {
    display: block;
  }
  .message-page__header .header-content .header-text .header-text-col2 div {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .message-page__header .header-content .header-text__button {
    padding-top: 34px;
  }
}
@media (max-width: 575.98px) {
  .message-page__header .header-content .header-text h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
  }
  .message-page__header .header-content .header-text h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
  }
  .message-page__header .header-content .header-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
  }
}
.page-message {
  position: relative;
}
.page-message__wrapper {
  position: relative;
  padding: 30px 0 140px;
  text-align: center;
}
.page-message__wrapper h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 76px;
  text-align: center;
  padding-bottom: 40px;
}
.page-message__wrapper p.big {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.page-message__wrapper .grey-ashen {
  color: #8E9199;
}
.page-message__wrapper .dbl-col {
  display: flex;
  width: 100%;
  gap: 110px;
  padding-top: 100px;
  text-align: left;
}
.page-message__wrapper .dbl-col div {
  flex: 50%;
}
.page-message__wrapper .dbl-col div .dbl-col-icon {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  align-items: center;
}
.page-message__wrapper .dbl-col div:first-child .dbl-col-icon img:first-child {
  height: 19px;
}
.page-message__wrapper .page-message-buttons {
  display: flex;
  padding-top: 80px;
  justify-content: center;
}
.page-message__wrapper .page-message-buttons > div {
  width: 160px;
  height: 44px;
  border-radius: 52px;
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.page-message__wrapper .page-message-buttons-back {
  border: 1px solid #FF6D00;
  background: none;
}
.page-message__wrapper .page-message-buttons-back a {
  color: #FF6D00;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

@media (max-width: 991.98px) {
  .page-message__wrapper {
    padding: 10px 0 100px 0;
  }
  .page-message__wrapper .dbl-col {
    gap: 100px;
    text-align: center;
    flex-direction: column;
  }
  .page-message__wrapper .dbl-col div {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .page-message__wrapper {
    padding: 10px 0 60px 0;
  }
  .page-message__wrapper h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
    padding-bottom: 30px;
  }
  .page-message__wrapper p.big {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }
  .page-message__wrapper .dbl-col {
    gap: 60px;
    padding-top: 60px;
    text-align: left;
  }
  .page-message__wrapper .dbl-col div {
    justify-content: left;
  }
  .page-message__wrapper .dbl-col div .dbl-col-icon img {
    height: 20px;
  }
  .page-message__wrapper .dbl-col div:first-child .dbl-col-icon img:first-child {
    height: 13px;
  }
  .page-message__wrapper .page-message-buttons {
    padding-top: 60px;
  }
  .page-message__wrapper .page-message-buttons > div {
    width: 280px;
  }
}
.not-found {
  position: relative;
}
.not-found__header {
  position: relative;
  height: calc(100vh - 180px);
  min-height: 320px;
}
.not-found__header .header-content {
  background: grey no-repeat center top/cover;
  background-image: url(/themes/2024/assets/shared/page-not-found/bg_header.png);
  position: relative;
  height: calc(100vh + 2px);
  min-height: fit-content;
  top: -180px;
  padding-top: 180px;
  padding-bottom: 100px;
}
.not-found__header .header-content .header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100vh - 280px);
  min-height: fit-content;
}
.not-found__header .header-content .header-text h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.not-found__header .header-content .header-text h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
  text-transform: none;
}
.not-found__header .header-content .header-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.not-found__header .header-content .header-text__header {
  padding-bottom: 25px;
}
.not-found__header .header-content .header-text__text {
  width: 260px;
}
.not-found__header .header-content .header-text__button {
  padding-top: 52px;
}
.not-found__header .header-content .header-text__button a.back-home {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 109, 0, 0.2);
  background: #FF6D00;
  padding: 15px 40px;
  border-radius: 52px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  height: 44px;
  z-index: 2;
  position: relative;
}
.not-found__header .header-content .header-text .header-text-col2 {
  display: flex;
  gap: 20px;
}
.not-found__header .header-content .header-text .header-text-col2 div {
  width: 50%;
}
.not-found__header .header-content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 12, 39, 0) 50%, #100C27 100%), linear-gradient(360deg, rgba(16, 12, 39, 0) 60%, #100C27 100%);
}

@media (max-width: 991.98px) {
  .not-found__header {
    height: calc(100vh - 145px);
    min-height: 448px;
  }
  .not-found__header .header-content {
    top: -144px;
    padding-top: 144px;
  }
  .not-found__header .header-content .header-text {
    justify-content: center;
  }
  .not-found__header .header-content .header-text__button {
    padding-top: 40px;
  }
  .not-found__header .header-content .header-text .header-text-col2 {
    display: block;
  }
  .not-found__header .header-content .header-text .header-text-col2 div {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .not-found__header .header-content .header-text__button {
    padding-top: 34px;
  }
}
@media (max-width: 575.98px) {
  .not-found__header .header-content .header-text h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
  }
  .not-found__header .header-content .header-text h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
  }
  .not-found__header .header-content .header-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
  }
}
.grecaptcha-badge {
  bottom: 90px !important;
  z-index: 97;
}

@media screen and (max-width: 991px) {
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}
/* Скрытие нативного скроллбара для всех браузеров */
.basic-wrapper .ps .ps__rail-y {
  display: block;
  position: absolute;
  right: 0 !important;
  width: 18px !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: transparent !important;
  opacity: 1 !important;
  /* Устанавливаем видимость полосы прокрутки */
  visibility: visible !important;
  /* Делаем полосу прокрутки видимой */
  filter: alpha(opacity=1);
  margin: 6px 0;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  z-index: 110;
}
.basic-wrapper .ps:hover .ps__rail-y,
.basic-wrapper .ps.hover .ps__rail-y {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.basic-wrapper .ps .ps__rail-y:hover,
.basic-wrapper .ps .ps__rail-y.hover {
  background-color: transparent;
  opacity: 1;
}
.basic-wrapper .ps .ps__rail-y.in-scrolling {
  background-color: #C2C2C2;
  opacity: 1;
}
.basic-wrapper .ps .ps__thumb-y {
  display: block;
  position: absolute;
  right: 6px;
  width: 6px !important;
  background-color: #C2C2C2 !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.basic-wrapper .ps.ie6 .ps__thumb-y {
  font-size: 0;
  /* fixed scrollbar height in xp sp3 ie6 */
}
.basic-wrapper .ps .ps__rail-y:hover .ps__thumb-y,
.basic-wrapper .ps .ps__rail-y.hover .ps__thumb-y {
  background-color: #C2C2C2;
}
.basic-wrapper .ps.ie .ps__thumb-y {
  visibility: hidden;
}
.basic-wrapper .ps.ie:hover .ps__thumb-y,
.basic-wrapper .ps.ie.hover .ps__thumb-y {
  visibility: visible;
}
.basic-wrapper .ps__rail-y:hover > .ps__thumb-y {
  background-color: #C2C2C2;
  width: 6px;
}
.basic-wrapper .scroll-container {
  height: 416px;
  overflow: hidden;
}

/**************************************************** dark-wrapper ****************************************************/
.basic-wrapper.dark-wrapper .ps .ps__rail-y.in-scrolling {
  background-color: #6C7282;
}
.basic-wrapper.dark-wrapper .ps .ps__thumb-y {
  background-color: #6C7282 !important;
}
.basic-wrapper.dark-wrapper .ps .ps__rail-y:hover .ps__thumb-y,
.basic-wrapper.dark-wrapper .ps .ps__rail-y.hover .ps__thumb-y {
  background-color: #6C7282;
}
.basic-wrapper.dark-wrapper .ps__rail-y:hover > .ps__thumb-y {
  background-color: #6C7282;
}

/************************************************** В главном меню ****************************************************/
.basic-wrapper .new-main-menu .ps .ps__rail-y {
  left: 0 !important;
  right: auto !important;
}
.basic-wrapper .new-main-menu .ps .ps__rail-y.in-scrolling {
  background-color: #C2C2C2;
}
.basic-wrapper .new-main-menu .ps .ps__thumb-y {
  background-color: #C2C2C2 !important;
  opacity: 0.7;
}
.basic-wrapper .new-main-menu .ps .ps__rail-y:hover .ps__thumb-y,
.basic-wrapper .new-main-menu .ps .ps__rail-y.hover .ps__thumb-y {
  background-color: #C2C2C2;
}
.basic-wrapper .new-main-menu .ps__rail-y:hover > .ps__thumb-y {
  background-color: #C2C2C2;
}
.basic-wrapper.dark-wrapper .new-main-menu .ps .ps__thumb-y {
  opacity: 0.5;
}

/************************************************** На сео-страницах **************************************************/
.basic-wrapper .seo .ps .ps__rail-y {
  display: block;
  position: absolute;
  right: 0 !important;
  width: 8px !important;
  height: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: transparent !important;
  opacity: 1 !important;
  /* Устанавливаем видимость полосы прокрутки */
  visibility: visible !important;
  /* Делаем полосу прокрутки видимой */
  filter: alpha(opacity=1);
  margin: 10px 0 2px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  z-index: 2;
}
.basic-wrapper .seo .ps .ps__rail-y:before {
  position: absolute;
  content: "";
  width: 8px;
  height: calc(100% + 4px);
  top: -2px;
  bottom: -2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: transparent;
  opacity: 1;
  z-index: 1;
}
.basic-wrapper .seo .ps.ps--active-y:hover .ps__rail-y:before, .basic-wrapper .seo .ps.ps--active-y.hover .ps__rail-y:before {
  opacity: 1;
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background-color: rgba(21, 21, 38, 0.06);
}
.basic-wrapper .seo .ps.ps--active-y .ps__rail-y:before {
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background-color: rgba(21, 21, 38, 0.07);
}
.basic-wrapper .seo .ps.ps--active-y .ps__rail-y:hover:before, .basic-wrapper .seo .ps.ps--active-y .ps__rail-y.hover:before, .basic-wrapper .seo .ps.ps--active-y .ps__rail-y.in-scrolling:before {
  opacity: 1;
  -webkit-backdrop-filter: blur(34px);
  backdrop-filter: blur(34px);
  background-color: rgba(21, 21, 38, 0.06);
}
.basic-wrapper .seo .ps .ps__thumb-y {
  display: block;
  position: absolute;
  right: 2px;
  width: 4px !important;
  background-color: #C2C2C2 !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  z-index: 2;
}
.basic-wrapper .seo .ps.ie6 .ps__thumb-y {
  font-size: 0;
  /* fixed scrollbar height in xp sp3 ie6 */
}
.basic-wrapper .seo .ps .ps__rail-y:hover .ps__thumb-y,
.basic-wrapper .seo .ps .ps__rail-y.hover .ps__thumb-y {
  background-color: #C2C2C2;
}
.basic-wrapper .seo .ps__rail-y:hover > .ps__thumb-y {
  background-color: #C2C2C2;
  width: 6px;
}
.basic-wrapper .seo .scroll-container {
  height: 262px;
  overflow: hidden;
}

/**********************************************************************************************************************/
/************************************                 Adaptive                 ****************************************/
/**********************************************************************************************************************/
/***************************************   For screens smaller than 1200px   ******************************************/
@media (max-width: 1199.98px) {
  .basic-wrapper .scroll-container {
    height: auto;
    overflow: initial;
  }

  /************************************************** На сео-страницах **********************************************/
  .basic-wrapper .seo .ps .ps__rail-y {
    right: 11px !important;
  }
}
.preset-security-policies .breadcrumbs {
  background: transparent;
}
.preset-security-policies .threats-inner {
  padding: 31px 0 120px;
}
.preset-security-policies .threats-inner h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 76px;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 100px;
}
.preset-security-policies .threats-inner .spoilers__accordion input {
  display: none;
}
.preset-security-policies .threats-inner .spoilers__accordion input:checked + label + .spoilers__content {
  max-height: 1000px;
  color: #151526;
  font-size: 16px;
  font-weight: 400;
}
.preset-security-policies .threats-inner .spoilers__accordion input:checked + label {
  color: #00B0FF;
}
.preset-security-policies .threats-inner .spoilers__accordion input:checked + label:before {
  position: absolute;
  right: 6px;
  top: 25px;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("/themes/2024/assets/shared/page-threats/close-icon-hover-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.27s;
  transform: rotate(-180deg);
}
.preset-security-policies .threats-inner .spoilers__header {
  position: relative;
  padding: 20px 0 20px;
  border-top: 1px dashed #C2C2C2;
  cursor: default;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  width: 100%;
  display: block;
}
.preset-security-policies .threats-inner .spoilers__header:before {
  position: absolute;
  right: 6px;
  top: 30px;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("/themes/2024/assets/shared/page-threats/close-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  -webkit-transition: all 0.27s ease-in-out;
  -o-transition: all 0.27s ease-in-out;
  transition: all 0.27s ease-in-out;
}
.preset-security-policies .threats-inner .spoilers__header:hover {
  color: #00B0FF;
}
.preset-security-policies .threats-inner .spoilers__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.27s;
  font-size: 16px;
}
.preset-security-policies .threats-inner .spoilers__content p {
  margin: 0 0 10px 0;
}
.preset-security-policies .threats-inner .spoilers__content ul {
  list-style-type: none;
  padding-left: 0;
}
.preset-security-policies .threats-inner .spoilers__content li {
  position: relative;
  margin: 0 0 10px 0;
  padding-left: 25px;
}
.preset-security-policies .threats-inner .spoilers__content li:before {
  position: absolute;
  left: 9px;
  top: 11px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #000000;
}

@media (max-width: 991.98px) {
  .preset-security-policies .threats-inner {
    padding-bottom: 80px;
  }
  .preset-security-policies .threats-inner h1 {
    margin-bottom: 80px;
  }
}
/**********************************************************************************************************************/
/******************************                 Адаптивная верстка                      *******************************/
/**********************************************************************************************************************/
/****************************************   Для экранов меньше 576px   ************************************************/
@media (max-width: 575.98px) {
  .preset-security-policies .threats-inner {
    padding-bottom: 50px;
  }
  .preset-security-policies .threats-inner h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
    margin-bottom: 30px;
  }
  .preset-security-policies .threats-inner .spoilers__header {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    padding: 10px 0 10px;
  }
  .preset-security-policies .threats-inner .spoilers__content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
  }
}
/* увы, правильно не работает, переделать через js */
.modal.show .modal-dialog iframe {
  min-width: calc(75vw - 50px);
  min-height: calc((75vw - 50px) * 9 / 16);
}

.modal.show .modal-dialog {
  max-width: fit-content;
  height: fit-content;
}

.modal.show .modal-body {
  display: flex;
  padding: 0;
}

.modal.show .close {
  position: absolute;
  top: -30px;
  right: 0;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
  background-color: transparent;
  border: none;
  padding: 0;
  z-index: 1060;
  cursor: pointer;
}
.modal.show .close:hover {
  color: #008ddf;
}

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