@charset "UTF-8";
:root {
  --font-family: 'Roboto', Arial, sans-serif;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-2: rgba(0, 0, 0, 0.5);
  --color-primery: #29a59b;
  --color-blue: #3492c7;
  --color-green: #96b522;
  --color-green-dark: #00929e;
  --color-green-2: #00a7b5;
  --color-green-3: rgba(41, 165, 155, 0.05);
  --color-biruza: #2db8c5;
  --color-infotecs: #245b8f;
  --color-gray-50: #f9f9fa;
  --color-gray-100: #f0f0f6;
  --color-gray-150: #bfc3ce;
  --color-gray-200: #e5e6ef;
  --color-gray-300: #dae0e8;
  --color-gray-800: #5c6071;
  --color-gray-750: #c5c4c4;
  --color-gray-900: #243254;
  --color-gray-950: #ccd1d8;
  --color-text: #30344e;
  --color-text-light: var(--color-white);
  --color-button: #29a59b;
  --color-button-hover: var(--color-green-dark);
  --color-button-active: #1f707a;
  --gradient-bg: linear-gradient(99.14deg, #96B522 0.22%, #29A59B 23.46%, #2DB8C5 51.15%, #3AA7DF 77.84%, #3492C7 99.1%);
  --color-link: var(--color-text);
  --color-link-hover: var(--color-blue);
  --color-link-active: var(--color-infotecs);
  --color-important: #c04c36;
  --color-bg-gray: #f9f9fa;
  --color-bg-main: rgba(212, 212, 212, 0.2);
  --color-dark-gray: #707070;
  --color-gray: #F8F8F8;
  --border-1: var(--border-width-s) solid;
  --border-2: var(--border-width-m) solid;
  --border-width-l: 4px;
  --border-width-m: 2px;
  --border-width-s: 1px;
  --b-radius-m: 12px;
  --b-radius-s: 10px;
  --b-radius: 50%;
  --border-radius-l: 12px;
  --border-radius-m: 10px;
  --border-radius-s: 8px;
  --border-radius-xs: 6px;
  --border-radius-xxs: 5px;
  --border-radius-xxxs: 4px;
  --container-width: 1320px;
  --container-padding-x-tablet: 2.25rem;
  --container-padding-x: 12px;
  --container-padding-x-mobile: 0.75rem;
  --w-100: 100%;
  --w-50: 50%;
  --w-48: 48%;
  --w-45: 45%;
  --w-32: 32%;
  --h-100: 100%;
  --rotate-positive: 45deg;
  --rotate-negative: -45deg;
  --transition-duration: 0.4s;
  --transition-duration-fast: 0.2s;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-italic {
  font-style: italic !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
}

body {
  scrollbar-gutter: stable;
}

@media (max-width: 768px) {
  html {
    scrollbar-gutter: stable;
  }
}
/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.ttf") format("truetype"), url("../fonts/Roboto-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.svg") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html {
  width: 100vw;
}
html.is-lock, html.is-lock-menu {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 82px;
    scroll-behavior: smooth;
  }
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  body {
    display: block;
  }
}

.body--transparent header {
  background: transparent;
}
.body--transparent main {
  margin-top: -92px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-family);
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 2.5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 2.25rem;
    line-height: 1.17;
  }
}

h2, .h2 {
  font-size: 2rem;
  line-height: 1.25;
  text-transform: none;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

h3, .h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

h4, .h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  text-transform: none;
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

h5, .h5 {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: none;
}
@media (max-width: 767px) {
  h5, .h5 {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: var(--color-link);
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover, a:focus {
    color: var(--color-link-hover);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-link-active);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 2px dashed var(--color-dark-gray);
  outline-offset: 2px;
  transition-duration: 0s !important;
}

svg {
  vertical-align: middle;
}

main {
  overflow: hidden;
}

html {
  width: 100%;
}

#panel {
  position: absolute;
}

#panel:has(#bx-panel) {
  position: relative;
}

.main {
  flex-grow: 1;
  max-width: 100vw;
  width: 100vw;
}

.container {
  padding: 0 12px;
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-width);
  height: 100%;
}
@media (max-width: 1295px) {
  .container {
    max-width: calc(var(--container-width) + var(--container-padding-x-tablet) * 2);
    padding: 0 var(--container-padding-x);
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 var(--container-padding-x-mobile);
  }
}

.logo {
  width: 170px;
  height: 72px;
}

.button {
  background-color: var(--color-button);
  border: 1px solid var(--color-button);
  border-radius: 10px;
  padding: 10px 32px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: all var(--transition-duration);
  height: 44px;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-white);
}
.button:hover {
  background-color: var(--color-button-hover);
  border: 1px solid var(--color-button);
}
.button:active {
  background-color: var(--color-button-active);
}
.button[disabled] {
  color: var(--color-gray-150);
  border: 1px solid var(--color-gray-950);
  background-color: var(--color-gray-50);
  pointer-events: none;
  cursor: auto;
}

.section {
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .section--p-60 {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.section__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .section__title {
    margin-bottom: 1.5rem;
  }
}

.margit-top-32-24 {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .margit-top-32-24 {
    margin-top: 24px;
  }
}

.modal-scene {
  position: fixed;
  top: 0;
  width: 100%;
  bottom: 0;
}
.modal-scene__curtain {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  background: #13203f;
  opacity: 80%;
  z-index: 1;
}
.modal-scene__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.modal-scene .s-form {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .modal-scene .s-form {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.modal-scene--hidden {
  display: none;
}

body.open-modal {
  overflow-y: hidden;
}

/* Start section s-header */
.s-header {
  background: url(/local/templates/landing-page/assets/images/main/hero-bg.png), var(--gradient-bg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--w-100);
  position: relative;
}
.s-header__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .s-header {
    background: transparent;
    position: relative;
    height: auto;
  }
  .s-header__fixed {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
  }
}
.s-header__burger {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.s-header .container {
  padding: 0;
}
@media (max-width: 1295px) {
  .s-header .container {
    padding: 0 var(--container-padding-x);
  }
}
@media (max-width: 767px) {
  .s-header .container {
    padding: 0 var(--container-padding-x-mobile);
  }
}
.s-header-wrap {
  display: grid;
  grid-template-areas: "menu";
  height: 5.5rem;
}
.s-header__logo {
  display: flex;
  flex-direction: column;
  max-width: 43.75rem;
}
.s-header__menu {
  position: relative;
  grid-area: menu;
  display: flex;
  justify-content: flex-end;
  width: var(--w-100);
  min-height: 5.75rem;
}
@media (max-width: 767px) {
  .s-header__menu {
    min-height: 4.25rem;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-white);
    width: auto;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}
.s-header__menu-wrap {
  cursor: pointer;
  position: relative;
  top: 0;
  right: -12px;
  width: 48px;
  height: 44px;
  padding: 12px;
}
.s-header__menu-list {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.56;
  display: flex;
  gap: 3.3rem;
  margin-right: 0.813rem;
}
@media (max-width: 1295px) {
  .s-header__menu-list {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .s-header__menu-list {
    position: absolute;
    display: block;
    z-index: 1;
    width: var(--w-100);
    height: auto;
    top: 5.5rem;
    padding-bottom: 4px;
    background-color: var(--color-white);
    border-radius: 0 0 0.75rem 0.75rem;
  }
}
.s-header__menu-item:last-child .s-header__menu-link::after {
  width: 0rem;
}
@media (max-width: 767px) {
  .s-header__menu-item:last-child .s-header__menu-link {
    border-radius: 0 0 0.75rem 0.75rem;
  }
}
.s-header__menu-link {
  font-size: 1.125rem;
  line-height: 1.56;
  transition: all var(--transition-duration);
  width: var(--w-100);
  height: var(--h-100);
  padding: 1.313rem 0rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-white);
  font-weight: 400;
}
@media (max-width: 767px) {
  .s-header__menu-link {
    color: var(--color-text);
    background-color: var(--color-white);
    padding: 1.313rem 1.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.33;
  }
  .s-header__menu-link:hover {
    color: var(--color-primery);
  }
  .s-header__menu-link:hover::after {
    background: var(--color-primery);
  }
  .s-header__menu-link:hover::before {
    display: block;
  }
  .s-header__menu-link::before {
    position: absolute;
    display: none;
    content: "";
    width: calc(100% - 48px);
    height: 1px;
    top: -1px;
    left: 24px;
    background: var(--color-primery);
  }
  .s-header__menu-link::after {
    position: absolute;
    content: "";
    width: calc(100% - 48px);
    height: 1px;
    bottom: 0;
    left: 24px;
    background: var(--color-gray-200);
  }
}
.s-header__menu-link--active {
  cursor: pointer;
}
@media (max-width: 767px) {
  .s-header__menu-link--active {
    color: var(--color-primery);
  }
  .s-header__menu-link--active::before {
    position: absolute;
    content: "";
    width: var(--w-100);
    height: 0.063rem;
    top: -0.063rem;
    left: 0rem;
    background: var(--gradient-bg);
    z-index: 2;
  }
  .s-header__menu-link--active::after {
    background: var(--gradient-bg);
  }
}
@media (any-hover: hover) {
  .s-header__menu-link:hover, .s-header__menu-link:focus {
    color: var(--color-white);
    text-shadow: 0 0 0.5rem var(--color-infotecs);
  }
}
@media (any-hover: none) {
  .s-header__menu-link:active {
    color: var(--color-white);
    text-shadow: 0 0 0.5rem var(--color-blue);
  }
}
.s-header__menu-head {
  display: none;
  z-index: 2;
}
@media (max-width: 767px) {
  .s-header__menu-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0.75rem 1.5rem;
  }
}
.s-header__menu--nojs .c-burger, .s-header__menu--opened .c-burger {
  height: 1.5rem;
  width: 1.5rem;
  margin-top: -0.5rem;
  padding: 0;
}
.s-header__menu--nojs .s-header__menu-toggle, .s-header__menu--opened .s-header__menu-toggle {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  cursor: pointer;
  border: none;
  margin-right: -0.938rem;
}
.s-header__menu--nojs .s-header__menu-toggle::before, .s-header__menu--nojs .s-header__menu-toggle::after, .s-header__menu--opened .s-header__menu-toggle::before, .s-header__menu--opened .s-header__menu-toggle::after {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 0.75rem;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--color-primery);
}
.s-header__menu--nojs .s-header__menu-toggle:disabled::before, .s-header__menu--nojs .s-header__menu-toggle:disabled::after, .s-header__menu--opened .s-header__menu-toggle:disabled::before, .s-header__menu--opened .s-header__menu-toggle:disabled::after {
  background-color: var(--color-gray-150);
}
.s-header__menu--nojs .s-header__menu-toggle::before, .s-header__menu--opened .s-header__menu-toggle::before {
  transform: rotate(var(--rotate-positive));
}
.s-header__menu--nojs .s-header__menu-toggle::after, .s-header__menu--opened .s-header__menu-toggle::after {
  transform: rotate(var(--rotate-negative));
}
.s-header__menu--nojs .s-header__menu-item::after, .s-header__menu--opened .s-header__menu-item::after {
  opacity: 0;
  background: transparent;
  transition: opacity 0.3s;
}
.s-header__menu--nojs .s-header__menu-item:not(:last-child)::before, .s-header__menu--opened .s-header__menu-item:not(:last-child)::before {
  opacity: 0;
  background: transparent;
  transition: opacity 0.3s;
}
.s-header__menu--nojs .s-header__menu-item, .s-header__menu--opened .s-header__menu-item {
  position: relative;
}
@media (any-hover: hover) {
  .s-header__menu--nojs .s-header__menu-item:hover::after, .s-header__menu--nojs .s-header__menu-item:focus::after, .s-header__menu--nojs .s-header__menu-item:active::after, .s-header__menu--opened .s-header__menu-item:hover::after, .s-header__menu--opened .s-header__menu-item:focus::after, .s-header__menu--opened .s-header__menu-item:active::after {
    transition: opacity 0.3s;
    opacity: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    display: block;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(99deg, #96B522 0.22%, #29A59B 23.46%, #2DB8C5 51.15%, #3AA7DF 77.84%, #3492C7 99.1%);
    z-index: 2;
  }
  .s-header__menu--nojs .s-header__menu-item:hover:not(:last-child)::before, .s-header__menu--nojs .s-header__menu-item:focus:not(:last-child)::before, .s-header__menu--nojs .s-header__menu-item:active:not(:last-child)::before, .s-header__menu--opened .s-header__menu-item:hover:not(:last-child)::before, .s-header__menu--opened .s-header__menu-item:focus:not(:last-child)::before, .s-header__menu--opened .s-header__menu-item:active:not(:last-child)::before {
    transition: all 0.3s;
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    display: block;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(99deg, #96B522 0.22%, #29A59B 23.46%, #2DB8C5 51.15%, #3AA7DF 77.84%, #3492C7 99.1%);
    z-index: 2;
  }
}
@media (any-hover: none) {
  .s-header__menu--nojs .s-header__menu-item:active::after, .s-header__menu--opened .s-header__menu-item:active::after {
    opacity: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    display: block;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(99deg, #96B522 0.22%, #29A59B 23.46%, #2DB8C5 51.15%, #3AA7DF 77.84%, #3492C7 99.1%);
    z-index: 2;
  }
  .s-header__menu--nojs .s-header__menu-item:active:not(:last-child)::before, .s-header__menu--opened .s-header__menu-item:active:not(:last-child)::before {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    display: block;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(99deg, #96B522 0.22%, #29A59B 23.46%, #2DB8C5 51.15%, #3AA7DF 77.84%, #3492C7 99.1%);
    z-index: 2;
  }
}
@media (any-hover: hover) {
  .s-header__menu--nojs .s-header__menu-link:hover, .s-header__menu--nojs .s-header__menu-link:focus, .s-header__menu--nojs .s-header__menu-link:active, .s-header__menu--opened .s-header__menu-link:hover, .s-header__menu--opened .s-header__menu-link:focus, .s-header__menu--opened .s-header__menu-link:active {
    color: var(--color-button);
    text-shadow: unset;
  }
}
@media (any-hover: none) {
  .s-header__menu--nojs .s-header__menu-link:active, .s-header__menu--opened .s-header__menu-link:active {
    color: var(--color-button);
    text-shadow: unset;
  }
}
@media (any-hover: hover) {
  .s-header__menu--nojs .s-header__menu-link .s-header__menu-link:hover::after, .s-header__menu--nojs .s-header__menu-link .s-header__menu-link:focus::after, .s-header__menu--opened .s-header__menu-link .s-header__menu-link:hover::after, .s-header__menu--opened .s-header__menu-link .s-header__menu-link:focus::after {
    background: red;
    height: 3px;
  }
}
@media (any-hover: none) {
  .s-header__menu--nojs .s-header__menu-link .s-header__menu-link:active::after, .s-header__menu--opened .s-header__menu-link .s-header__menu-link:active::after {
    background: red;
    height: 3px;
  }
}
.s-header__menu--nojs .c-burger__line, .s-header__menu--opened .c-burger__line {
  background-color: var(--color-green-dark);
}
.s-header__menu--nojs .c-burger__line:nth-child(2), .s-header__menu--opened .c-burger__line:nth-child(2) {
  transform: rotate(-45deg);
  width: 27px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.s-header__menu--nojs .c-burger__line:nth-child(3), .s-header__menu--opened .c-burger__line:nth-child(3) {
  transform: rotate(45deg);
  width: 27px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.s-header__menu--nojs .c-burger__line:nth-child(1), .s-header__menu--nojs .c-burger__line:nth-child(4), .s-header__menu--opened .c-burger__line:nth-child(1), .s-header__menu--opened .c-burger__line:nth-child(4) {
  opacity: 0;
}
.s-header__menu--nojs .s-header__menu-head, .s-header__menu--opened .s-header__menu-head {
  background-color: var(--color-white);
  border-radius: 0 0 0.75rem 0.75rem;
  padding-top: 24px;
  position: relative;
  top: -6px;
}
.s-header__menu--nojs .s-header__menu-list, .s-header__menu--opened .s-header__menu-list {
  transform: translateY(0%);
  transition: transform 0.4s ease;
}
@media (max-width: 767px) {
  .s-header__menu {
    background-color: var(--color-white);
  }
  .s-header__menu--closed {
    display: block;
    background-color: transparent;
  }
  .s-header__menu--closed .s-header__menu-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
  }
  .s-header__menu--closed .s-header__logo {
    display: none;
  }
  .s-header__menu--closed .s-header__menu-toggle {
    position: absolute;
    bottom: 21px;
    right: 12px;
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    margin-top: -1.5rem;
    background-color: var(--color-white);
    cursor: pointer;
    border: none;
    z-index: 1;
  }
  .s-header__menu--closed .s-header__menu-toggle::before, .s-header__menu--closed .s-header__menu-toggle::after {
    content: "";
    position: absolute;
    right: 0rem;
    width: 1.688rem;
    height: 0.125rem;
    background-color: var(--color-white);
  }
  .s-header__menu--closed .s-header__menu-toggle::before {
    top: -0.625rem;
  }
  .s-header__menu--closed .s-header__menu-toggle::after {
    bottom: -0.625rem;
  }
  .s-header__menu--closed .s-header__menu-list {
    transform: translateY(-135%);
    transition: transform 0.4s ease;
  }
}
.s-header.s-header--scroll {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.s-header.s-header--scroll .s-header__menu--closed .s-header__menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}
.s-header.s-header--scroll .s-header__menu--closed .s-header__logo {
  display: flex;
}
.s-header.s-header--scroll .s-header__menu--closed .s-header__menu-toggle, .s-header.s-header--scroll .s-header__menu-toggle:hover::before, .s-header.s-header--scroll .s-header__menu--closed .s-header__menu-toggle::before, .s-header.s-header--scroll .s-header__menu-toggle:hover::after, .s-header.s-header--scroll .s-header__menu--closed .s-header__menu-toggle::after {
  background-color: var(--color-green-dark);
}
.s-header.s-header--scroll .c-burger__line {
  background-color: var(--color-green-dark);
}
.s-header.s-header--scroll .s-header__menu-head {
  background-color: var(--color-white);
  border-radius: 0 0 0.75rem 0.75rem;
}

.is-lock-menu .s-header:before {
  content: "";
  display: block;
  backdrop-filter: blur(4px);
  background-color: rgba(48, 52, 78, 0.6);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
}

/* Start section s-footer */
.s-footer {
  min-height: 18rem;
  background-color: var(--color-bg-main);
  padding: 4.5rem 0;
}
.s-footer__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .s-footer {
    padding: 1.5rem 0;
    background-color: var(--color-white);
  }
}
.s-footer__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8.375rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-footer__wrap {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.s-footer__logo {
  width: 12.25rem;
}
@media (max-width: 767px) {
  .s-footer__logo {
    width: 15.063rem;
  }
}
.s-footer__logo-items {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (max-width: 767px) {
  .s-footer__logo-items {
    gap: 1.938rem;
  }
}
.s-footer__content {
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10.25rem;
}
@media (max-width: 1295px) {
  .s-footer__content {
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .s-footer__content {
    flex-direction: column;
    gap: 2.5rem;
    align-self: flex-start;
  }
}
.s-footer__contacts-item {
  position: relative;
  padding-left: 2rem;
}
.s-footer__contacts-item:first-child {
  padding-left: 0;
}
.s-footer__contacts-item:not(:last-child) {
  margin-bottom: 1rem;
}
.s-footer__contacts-item::before {
  position: absolute;
  content: "";
  left: 0rem;
  top: 0rem;
  width: 1.5rem;
  height: 1.5rem;
  background-size: var(--w-100);
}
.s-footer__contacts-item--location::before {
  background: url(/local/templates/landing-page/assets/images/icons/location.svg) no-repeat center;
}
.s-footer__contacts-item--phone::before {
  background: url(/local/templates/landing-page/assets/images/icons/phone.svg) no-repeat center;
}
.s-footer__contacts-item--email::before {
  background: url(/local/templates/landing-page/assets/images/icons/email.svg) no-repeat center;
}
.s-footer__contacts-item--complex::before {
  background: url(/local/templates/landing-page/assets/images/icons/complex.svg) no-repeat center;
}
.s-footer__contacts-item--rutube {
  padding-left: 2rem !important;
}
.s-footer__contacts-item--rutube .s-footer__contacts-link {
  color: #29a59b;
}
.s-footer__contacts-item--rutube::before {
  background: url(/local/templates/landing-page/assets/images/icons/rutube.svg) no-repeat center;
}
.s-footer__cookie-notice {
  font-size: 0.875rem;
  line-height: 1.43;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 22rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.75rem;
  background: #fff;
}
@media (max-width: 767px) {
  .s-footer__cookie-notice {
    bottom: 1rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }
}
.s-footer__cookie-notice-btn {
  font-size: 0.875rem;
  line-height: 1.43;
  width: max-content;
  padding: 0.375rem 1.938rem;
  height: 2.25rem;
}
.s-footer__cookie-notice-text {
  padding: 0.313rem 0;
}

/* End section s-footer */
.s-form {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .s-form {
    max-height: calc(100% - 6.5rem);
    overflow-y: auto;
    scrollbar-width: none;
  }
}
.s-form__title {
  font-size: 2rem;
  line-height: 1.25;
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .s-form__title {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}
.s-form__wrap {
  max-width: 53.5rem;
  background-color: var(--color-gray-50);
  margin: 0;
  padding: 2.5rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .s-form__wrap {
    padding: 2.5rem 0.75rem;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
    border-radius: 0.75rem 0.75rem 0 0;
  }
}

/* Start section s-hero */
.s-hero {
  height: 25.75rem;
  background: var(--gradient-bg);
  background-image: url(/local/templates/landing-page/assets/images/main/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  padding: 0;
  overflow: hidden;
}
.s-hero__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .s-hero {
    height: 23.438rem;
    background-position-y: 0;
  }
}
.s-hero__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-left: 0;
  height: 5.125rem;
  margin-top: 11.875rem;
}
@media (max-width: 767px) {
  .s-hero__wrap {
    padding-top: 0;
    margin-top: 6rem;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
  }
}
.s-hero__logo, .s-hero__title {
  color: var(--color-white);
  margin: 0;
  max-height: 100%;
}
@media (max-width: 767px) {
  .s-hero__logo, .s-hero__title {
    max-width: var(--w-100);
    margin-top: 0.063rem;
  }
}
@media (max-width: 767px) {
  .s-hero__logo {
    width: 14.125rem;
    height: 3.75rem;
  }
}
.s-hero__title {
  font-size: 2.5rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .s-hero__title {
    white-space: normal;
    font-size: 2.25rem;
    line-height: 1.17;
  }
}

/* End section s-hero */
/* Start section s-about */
.s-about {
  background-color: var(--color-gray-50);
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .s-about {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.s-about__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-about__title {
    margin-bottom: 1.5rem;
  }
}
.s-about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-left: 0;
}
@media (max-width: 1295px) {
  .s-about__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.s-about__description {
  max-width: 32.75rem;
}
@media (max-width: 1295px) {
  .s-about__description {
    max-width: var(--w-100);
  }
}
@media (max-width: 767px) {
  .s-about__description {
    order: 2;
  }
}
.s-about__image {
  background-color: var(--color-infotecs);
  border-radius: 0.75rem;
  max-width: 39.75rem;
}
@media (max-width: 1295px) {
  .s-about__image {
    width: var(--w-100);
  }
}
@media (max-width: 767px) {
  .s-about__image {
    order: 1;
  }
}
.s-about__video-link {
  display: block;
  position: relative;
}
.s-about__play-button {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* End section s-about */
/* Start section s-statuses */
.s-statuses {
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .s-statuses {
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .s-statuses--p-60 {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.s-statuses__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-statuses__title {
    margin-bottom: 1.5rem;
  }
}
.s-statuses__list-items {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1rem;
  margin: 0 -0.75rem;
  padding: 0 0.75rem;
  scrollbar-width: none;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .s-statuses__list-items {
    gap: 2rem;
    padding-bottom: 0.313rem;
  }
}
.s-statuses__item {
  flex: 1 1 0;
  min-width: 10.625rem;
}
.s-statuses__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 18.75rem;
  max-height: 13.375rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .s-statuses__link {
    flex: 0 0 12.5rem;
  }
}
.s-statuses__image-wrap {
  width: 100%;
  aspect-ratio: 5/3;
  border: var(--border-2) var(--color-gray-200);
  border-radius: 0.75rem;
}
.s-statuses__subtitle {
  font-size: 0.875rem;
  line-height: 1.43;
  text-align: center;
}
.s-statuses__image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
  padding: 0.75rem;
}

/* End section s-statuses */
/* Start section s-history */
.s-history {
  background: var(--gradient-bg);
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .s-history {
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .s-history--p-60 {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.s-history__title {
  text-transform: none;
  margin: 0 0 3rem 0;
  font-size: 2rem;
  line-height: 1.25;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .s-history__title {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}
.s-history__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.s-history__subtitle {
  position: relative;
  margin-left: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-white);
}
.s-history__subtitle::after {
  position: absolute;
  content: "";
  top: 0.5rem;
  left: -1.125rem;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  box-shadow: 0 0 0 0.125rem var(--color-white);
  border-radius: 0.25rem;
}
.s-history__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 2px solid #fff;
  margin-left: 0.313rem;
  padding-left: 1.5rem;
}
.s-history__item {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

/* End section s-history */
/* Start section s-services */
.s-services {
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .s-services {
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .s-services--p-60 {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.s-services__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-services__title {
    margin-bottom: 2rem;
  }
}
.s-services__tabs-list {
  margin-bottom: 2rem;
}
.s-services__subtitle {
  font-size: 1.5rem;
  line-height: 1.58;
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .s-services__subtitle {
    font-size: 1.5rem;
    line-height: 1.33;
    margin-bottom: 0;
  }
}
.s-services__content {
  display: none;
  margin-left: 0;
  grid-template-columns: auto 46.25rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .s-services__content {
    gap: 1.5rem;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
}
.s-services__content--active {
  display: grid;
}
@media (max-width: 767px) {
  .s-services__content {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .s-services__content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.s-services__content-left.c-user-field .column-parent {
  flex-direction: column;
  gap: 1.5rem;
}
.s-services__content-left.c-user-field .column-parent .column-child {
  width: auto;
  max-width: none;
}
.s-services__form-wrap {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .s-services .c-user-field .column-parent {
    gap: 1.5rem;
  }
}
.s-services .c-user-field h5 {
  font-weight: 700;
}
.s-services__form-button--left {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .s-services__form-button--left {
    display: none;
  }
}
.s-services__form-button--right {
  display: none;
  width: 100%;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .s-services__form-button--right {
    display: block;
  }
}

/* End section s-services */
/* Start section s-activity */
.s-activity {
  padding: 4.5rem 0 4.5rem 0;
}
@media (max-width: 767px) {
  .s-activity {
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .s-activity--p-60 {
    padding: 3.75rem 0 3.75rem 0;
  }
}
.s-activity__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-activity__title {
    margin-bottom: 1.5rem;
  }
}
.s-activity__tabs-list {
  margin-bottom: 2rem;
}
.s-activity__subtitle {
  margin-top: 2.125rem;
  margin-bottom: 2.875rem;
}
@media (max-width: 767px) {
  .s-activity__subtitle {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
.s-activity__content {
  display: none;
  flex-direction: column;
  gap: 2rem;
  margin-left: 0;
}
.s-activity__content p:where(:not([class]):not(:last-child)) {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .s-activity__content {
    gap: 0;
  }
}
.s-activity__content--active {
  display: flex;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-activity__content--active {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .s-activity__content {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .s-activity .h1 {
    margin-bottom: 2rem;
  }
}
.s-activity .c-user-field ul {
  list-style: unset;
  margin-left: 1.5rem;
}
.s-activity .c-user-field ul li {
  padding-left: 0;
}
.s-activity .c-user-field ul li::marker {
  content: "•  ";
}
.s-activity .c-user-field ul li::before {
  display: none;
}

/* End section s-activity */
/* Start section s-details */
.s-details {
  padding: 2.5rem 0 2.5rem 0;
}
@media (max-width: 767px) {
  .s-details {
    padding: 1.5rem 0 1.5rem 0;
  }
}
.s-details__title {
  margin-bottom: 2rem;
  margin-top: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .s-details__title {
    margin-bottom: 1.5rem;
  }
}
.s-details__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 4px;
  overflow: hidden;
}
.s-details__row {
  padding: 0;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-gray-950);
  border-right: 1px solid var(--color-gray-950);
  border-bottom: 1px solid var(--color-gray-950);
}
.s-details__row:nth-child(odd) {
  background-color: var(--color-gray-50);
}
.s-details__row:first-child {
  border-top: 1px solid var(--color-gray-950);
  border-radius: 8px 8px 0 0;
}
.s-details__row:last-child {
  border-bottom: 1px solid var(--color-gray-950);
  border-radius: 0 0 8px 8px;
}
.s-details__label, .s-details__value {
  width: 50%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-gray-900);
  background-color: transparent;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .s-details__label, .s-details__value {
    padding: 1rem 0.75rem;
  }
}
.s-details__value {
  word-break: break-word;
  border-left: 1px solid var(--color-gray-950);
}

/* End section s-details */
/* Start c-user-field */
.c-user-field h4 {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-text);
}
.c-user-field h5 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
}
.c-user-field .column-child {
  flex-direction: column;
  justify-content: flex-start;
  gap: 0rem;
}
.c-user-field .column-parent {
  display: flex;
  justify-content: start;
  flex-direction: row;
  gap: 8.438rem;
}
@media (max-width: 767px) {
  .c-user-field .column-parent {
    gap: 0;
    flex-direction: column;
  }
}
.c-user-field .column-parent .column-child {
  flex-direction: column;
  justify-content: flex-start;
  gap: 0rem;
  width: var(--w-45);
  max-width: 34.75rem;
}
@media (max-width: 767px) {
  .c-user-field .column-parent .column-child {
    width: var(--w-100);
    max-width: var(--w-100);
  }
}
.c-user-field .column-parent .column-child h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-text);
  margin-top: 0rem;
}
.c-user-field hr {
  display: block;
  outline: 0rem;
  border: 0rem;
  margin: 0rem;
  padding: 0rem;
  margin-top: 2rem;
}
.c-user-field ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-user-field ul li {
  position: relative;
  padding-left: 2rem;
}
.c-user-field ul li::before {
  content: "";
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  top: 0rem;
  left: 0rem;
  background-image: url(/local/templates/landing-page/assets/images/icons/marker.svg);
  background-position: center;
  background-size: var(--w-100);
  background-repeat: no-repeat;
}
.c-user-field__item-dotted {
  display: flex;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-bottom: 0.938rem;
}
.c-user-field__item-dotted::before {
  content: "·";
  background-image: none;
  font-family: var(--font-family);
  font-weight: 900;
  color: var(--color-text);
}
.c-user-field__list-dotted.c-user-field__list-dotted--function {
  max-width: var(--w-100);
  display: block;
  columns: 3;
}
@media (max-width: 767px) {
  .c-user-field__list-dotted.c-user-field__list-dotted--function {
    columns: 1;
  }
}
.c-user-field div:last-child {
  margin-bottom: 0rem;
}
.c-user-field__column-2 {
  display: flex;
  justify-content: space-between;
  gap: 1.563rem;
}
@media (max-width: 767px) {
  .c-user-field__column-2 {
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 1rem;
  }
}
.c-user-field__column-2 .c-user-field__col {
  flex-basis: calc(50% - 13px);
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .c-user-field__column-2 .c-user-field__col {
    flex-basis: var(--w-100);
  }
}
.c-user-field__column-2 .c-user-field__col .c-user-field__item-dotted {
  display: flex;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .c-user-field__column-2 .c-user-field__col .c-user-field__item-dotted {
    margin-bottom: 0;
  }
}
.c-user-field__column-2 .c-user-field__col .c-user-field__item-dotted::before {
  content: "·";
  background-image: none;
  font-family: var(--font-family);
  font-weight: 900;
  color: var(--color-text);
  font-size: 18px;
  top: -3px;
}
.c-user-field__column-2 ul {
  gap: 0;
}
.c-user-field__reference {
  border: var(--border-width-s) solid var(--color-gray-200);
  border-radius: var(--b-radius-m);
  padding: 1.5rem;
  margin: 3rem 0;
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-user-field__reference {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-user-field__reference::before {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(/local/templates/landing-page/assets/images/icons/reference.svg);
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.c-user-field__reference-wrap {
  flex-shrink: 1;
}
.c-user-field__function, .c-user-field__stek {
  margin: 3rem 0;
}
@media (max-width: 767px) {
  .c-user-field__function, .c-user-field__stek {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.c-user-field__function h4, .c-user-field__stek h4 {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.c-user-field__function .c-user-field__item-dotted, .c-user-field__stek .c-user-field__item-dotted {
  display: flex;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-bottom: 0.938rem;
}
.c-user-field__function .c-user-field__item-dotted::before, .c-user-field__stek .c-user-field__item-dotted::before {
  content: "·";
  background-image: none;
  font-family: var(--font-family);
  font-weight: 900;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-user-field__function .c-user-field__item-dotted:last-child, .c-user-field__stek .c-user-field__item-dotted:last-child {
    margin-bottom: 0;
  }
}
.c-user-field__column-3 {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}
@media (max-width: 767px) {
  .c-user-field__column-3 {
    flex-direction: column;
    gap: 16px;
  }
}
.c-user-field__column-3 .c-user-field__col {
  flex-basis: calc(33% - 9px);
}
@media (max-width: 767px) {
  .c-user-field__column-3 .c-user-field__col {
    flex-basis: var(--w-100);
  }
}
.c-user-field__column-3 .c-user-field__item-dotted {
  display: flex;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .c-user-field__column-3 .c-user-field__item-dotted:last-child {
    margin-bottom: 0;
  }
}
.c-user-field__column-3 .c-user-field__item-dotted::before {
  content: "·";
  background-image: none;
  font-family: var(--font-family);
  font-weight: 900;
  color: var(--color-text);
}
.c-user-field__column-3 ul {
  gap: 0;
}
.c-user-field__footnote {
  font-size: 0.875rem;
  line-height: 1.43;
  font-family: var(--font-family);
  font-weight: 300;
  color: var(--color-gray-800);
  margin-top: 0.188rem;
}
@media (max-width: 767px) {
  .c-user-field__footnote {
    margin-top: 0.5rem;
  }
}
.c-user-field-link {
  color: var(--color-blue);
}

/* End c-user-field */
/* Start c-tabs-list */
.c-tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.5rem;
  margin-bottom: 0rem;
  margin-left: 0;
}
@media (max-width: 767px) {
  .c-tabs-list {
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    text-align: center;
  }
}
.c-tabs-list__tab {
  font-size: 1.125rem;
  line-height: 1.33;
  background-color: var(--color-white);
  border: 0.063rem solid var(--color-gray-300);
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  transition: all var(--transition-duration);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 2.25rem;
}
@media (any-hover: hover) {
  .c-tabs-list__tab:hover {
    background-color: var(--color-green-3);
    border: 0.063rem solid var(--color-primery);
    cursor: pointer;
  }
}
@media (any-hover: none) {
  .c-tabs-list__tab:active {
    background-color: var(--color-green-3);
    border: 0.063rem solid var(--color-primery);
  }
}
@media (max-width: 767px) {
  .c-tabs-list__tab {
    width: var(--w-100);
    max-height: var(--h-100);
  }
}
.c-tabs-list__tab--active {
  background-color: var(--color-green-3);
  border: 0.063rem solid var(--color-primery);
  user-select: none;
}
.c-tabs-list__tab--active:hover {
  cursor: auto;
}

/* End c-tabs-list */
/* Start c-user-field-tabs */
.c-user-field-tabs h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-text);
}
.c-user-field-tabs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .c-user-field-tabs__list {
    gap: 1.25rem;
  }
}
@media (max-width: 374px) {
  .c-user-field-tabs__list {
    flex-direction: column;
  }
}
.c-user-field-tabs__tab {
  width: auto;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--color-white);
  border: 0.063rem solid var(--color-gray-300);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all var(--transition-duration);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 3rem;
}
.c-user-field-tabs__tab--dormant {
  pointer-events: none;
}
@media (any-hover: hover) {
  .c-user-field-tabs__tab:hover {
    background-color: var(--color-green-3);
    border: 0.063rem solid var(--color-primery);
    cursor: pointer;
  }
}
@media (any-hover: none) {
  .c-user-field-tabs__tab:active {
    background-color: var(--color-green-3);
    border: 0.063rem solid var(--color-primery);
  }
}
.c-user-field-tabs__tab--active {
  font-size: 1.25rem;
  line-height: 1.3;
  background-color: var(--color-green-3);
  border: 0.063rem solid var(--color-primery);
}
.c-user-field-tabs__tab--active:hover {
  cursor: auto;
}

/* End c-user-field-tabs */
/* Start c-detail-slider */
.c-detail-slider {
  margin: 2rem 0 3rem 0;
}
@media (max-width: 767px) {
  .c-detail-slider {
    width: 100%;
    margin: 1.5rem 0 2rem 0;
  }
}
.c-detail-slider__images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 767px) {
  .c-detail-slider__images {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.c-detail-slider__main {
  max-width: 46.25rem;
  height: 30.625rem;
  align-self: stretch;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .c-detail-slider__main {
    width: var(--w-100);
    max-width: var(--w-100);
    height: auto;
    aspect-ratio: 1.31;
  }
}
.c-detail-slider__thumbs {
  overflow-x: auto;
  scrollbar-width: none;
  height: 6.75rem;
}
@media (max-width: 767px) {
  .c-detail-slider__thumbs {
    height: 4.5rem;
  }
}
.c-detail-slider__thumbs-list {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: max-content;
  gap: 1rem;
}
@media (max-width: 767px) {
  .c-detail-slider__thumbs-list {
    height: 4.5rem;
    gap: 0.75rem;
  }
}
.c-detail-slider__thumb {
  height: 100%;
  aspect-ratio: 49/27;
  border-radius: 0.75rem;
  overflow: hidden;
  opacity: 0.2;
  cursor: pointer;
  flex-shrink: 0;
}
.c-detail-slider__thumb--active {
  opacity: 1;
  cursor: auto;
}
@media (max-width: 767px) {
  .c-detail-slider__thumb {
    width: 9.375rem;
    flex: 0 0 9.375rem;
  }
}
.c-detail-slider__image {
  width: var(--w-100);
  height: var(--h-100);
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-detail-slider__image {
    border-radius: 0.75rem;
  }
}
.c-detail-slider__arrow {
  position: absolute;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.c-detail-slider__arrow--left {
  display: none;
  left: 0;
  background: url("../../assets/images/icons/arrow-left.svg") 50% 50% no-repeat;
}
.c-detail-slider__arrow--right {
  display: none;
  right: 0;
  background: url("../../assets/images/icons/arrow-right.svg") 50% 50% no-repeat;
}
@media (min-width: 768px) {
  .c-detail-slider_side .c-detail-slider__images {
    flex-direction: row;
    justify-content: space-between;
  }
  .c-detail-slider_side .c-detail-slider__images .c-detail-slider__main {
    width: 66%;
    max-width: 66%;
    height: auto;
    aspect-ratio: 1.82;
  }
  .c-detail-slider_side .c-detail-slider__images .c-detail-slider__thumbs {
    width: 32%;
    height: auto;
  }
  .c-detail-slider_side .c-detail-slider__thumbs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: auto;
  }
  .c-detail-slider_side .c-detail-slider__thumbs-list .c-detail-slider__thumb {
    width: 100%;
    height: auto;
  }
}

/* End c-detail-slider */
/* Start c-form */
.c-form {
  background-color: var(--color-gray-50);
  position: relative;
}
.c-form__footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.c-form__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
.c-form__title {
  font-size: 2rem;
  line-height: 1.25;
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-form__title {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}
.c-form .c-form__message-block._success {
  color: var(--color-primery);
  background-color: var(--color-gray-50);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-black-2);
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.c-form__message {
  display: flex;
  align-items: center;
  padding: 0.5em 20px;
  color: var(--color-primery);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-black-2);
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-form__message {
    padding: 0;
    align-items: flex-end;
  }
}
.c-form__message-block--hidden {
  display: none;
}
.c-form__message-popup {
  font-family: var(--font-family);
  font-weight: 700;
  overflow: hidden;
  background-color: #F9F9FA;
}
.c-form__message-popup p {
  margin: 0;
}
@media (max-width: 1295px) {
  .c-form__message-popup {
    width: 100%;
    max-height: fit-content;
  }
}
.c-form__message-popup--success, .c-form__message-popup--error {
  font-family: var(--font-family);
  padding: 2.5rem;
  width: 53.5rem;
  max-width: 53.5rem;
  font-style: normal;
  border-radius: var(--b-radius-m);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.c-form__message-popup--success p, .c-form__message-popup--error p {
  margin: 0;
}
@media (max-width: 1295px) {
  .c-form__message-popup--success, .c-form__message-popup--error {
    width: 100%;
    max-height: fit-content;
  }
}
@media (max-width: 767px) {
  .c-form__message-popup--success, .c-form__message-popup--error {
    border-radius: var(--b-radius-m) var(--b-radius-m) 0 0;
  }
}
.c-form__message-title {
  margin: 0;
  font-weight: 500;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.25;
  font-family: var(--font-family);
  text-transform: none;
}
.c-form__message-text {
  font-weight: 400;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
}
.c-form .cui-checkbox__checkmark:before {
  border: 1px solid var(--color-gray-150);
  border-radius: 4px;
}
.c-form .citrus-form__message-block.hidden {
  display: none;
}
.c-form .cui-checkbox__input:checked + .cui-checkbox__checkmark:before {
  background-color: var(--color-button);
  border-color: var(--color-button);
  border-radius: 4px;
}
.c-form__fields .c-form__files-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-form__fields .c-form__files-wrap .c-form__form-group, .c-form__fields .c-form__files-wrap .c-form__input-container {
  position: static;
}
.c-form__wrap {
  max-width: calc(var(--container-width) + var(--container-padding-x-tablet) * 2);
  padding: 0 var(--container-padding-x-tablet);
  margin: -2.5rem auto -0.75rem auto;
}
@media (max-width: 767px) {
  .c-form__wrap {
    margin: 0 -1.5rem 0 -1.5rem;
  }
}
.c-form__fields {
  position: relative;
  margin: 2rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
}
.c-form__fields .c-form__form-group {
  margin: 0 0 1.438rem 0;
}
.c-form__fields .c-form__form-group.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
.c-form__fields .c-form__form-group:has(.c-form__input-container--file) {
  height: min-content;
  min-height: 0;
  margin: 0;
}
.c-form__fields .c-form__form-group[data-field-code=property_phone], .c-form__fields .c-form__form-group[data-field-code=property_email] {
  max-width: calc(50% - 12px);
}
@media (max-width: 767px) {
  .c-form__fields .c-form__form-group[data-field-code=property_phone], .c-form__fields .c-form__form-group[data-field-code=property_email] {
    max-width: var(--w-100);
  }
}
@media (max-width: 767px) {
  .c-form__fields .c-form__form-group {
    margin-bottom: 1.125rem;
  }
}
.c-form__fields .c-form__form-group:last-child {
  margin-bottom: 0;
}
.c-form__fields .c-form__form-group, .c-form__fields .c-form__input-container {
  position: relative;
  width: var(--w-100);
  max-width: var(--w-100);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.c-form__fields .c-form__form-group:has(.c-form__input-container--file), .c-form__fields .c-form__input-container:has(.c-form__input-container--file) {
  flex-wrap: wrap;
  order: 2;
}
@media (max-width: 767px) {
  .c-form__fields .c-form__form-group, .c-form__fields .c-form__input-container {
    flex-direction: column;
  }
}
.c-form__fields .c-form__input-container.has-error .error {
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.43;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-important);
  position: absolute;
  width: 100%;
  bottom: -26px;
  left: 0;
  padding-left: 0;
}
.c-form__fields .c-form__field-title {
  top: 0;
  left: 0;
  width: var(--w-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-gray-900);
}
.c-form__fields .c-form__field-title .starrequired {
  margin-left: 2px;
}
.c-form__fields .c-form__starrequired {
  font-size: 1rem;
  line-height: 1.25;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-important);
}
.c-form__fields .c-form__form-control {
  border: 0.063rem solid var(--color-gray-300);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-white);
}
.c-form__fields .c-form__form-control::hover {
  border-color: var(--color-gray-150);
}
.c-form__fields .c-form__form-control:active, .c-form__fields .c-form__form-control:focus {
  background-color: var(--color-white);
  border-color: var(--color-green-2);
  outline: none;
  color: var(--color-gray-900);
}
.c-form__fields .c-form__form-control:disabled {
  border-color: var(--color-gray-950);
  background: var(--color-gray-50);
}
.c-form__fields .c-form__form-control--error {
  border-color: var(--color-important);
}
.c-form__fields .c-form__form-control--textarea {
  padding: 0.75rem 2.25rem 0.75rem 3rem;
  max-width: 48.5rem;
  resize: vertical;
  height: 9.375rem;
}
.c-form__fields .c-form__form-control::placeholder {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-gray-150);
}
.c-form__fields .c-form__form-control::-webkit-resizer {
  width: 0.625rem;
  height: 0.75rem;
  margin-bottom: 0.313rem;
  margin-right: 0.313rem;
  background: url(/local/templates/landing-page/assets/images/icons/resize.svg);
  background-repeat: no-repeat;
  background-position: top left;
}
.c-form__form-control[type=password] {
  position: relative;
}
.c-form__form-control[type=password]::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(/local/templates/landing-page/assets/images/icons/eye.svg);
}
.c-form__file-upload {
  display: flex;
  width: min-content;
  margin-bottom: 27px;
}
.c-form__file-upload::before {
  position: absolute;
  content: "";
  top: 2.75rem;
  left: 0.875rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/local/templates/landing-page/assets/images/icons/clip.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-form__file-upload::before {
    top: 2.625rem;
  }
}
.c-form__file-upload.btn {
  height: min-content;
  pointer-events: none;
}
.c-form__field-title--upload {
  display: flex;
  width: min-content;
}
.c-form__field-title--upload::before {
  position: absolute;
  content: "";
  top: 2.75rem;
  left: 0.875rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/local/templates/landing-page/assets/images/icons/clip.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-form__field-title--upload::before {
    top: 2.625rem;
  }
}
.c-form__field-title--upload.btn {
  height: min-content;
  pointer-events: none;
}
.c-form__file-item-uploaded {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.c-form__file-item-uploaded:not(:last-child) {
  margin-bottom: 0.5rem;
}
.c-form__file-item-uploaded .file-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-form__file-item-uploaded .file-title::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
  background: url(/local/templates/landing-page/assets/images/icons/file.svg);
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.c-form__file-item-uploaded .file-title-error {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-important);
}
.c-form__file-item-uploaded .file-name {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18.75rem;
  flex-shrink: 1;
}
.c-form__file-item-uploaded .file-ext {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  flex-shrink: 0;
}
.c-form__file-item-uploaded .file-size,
.c-form__file-item-uploaded .file-status {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-gray-750);
}
.c-form__file-item-uploaded .file-status {
  text-align: right;
}
.c-form__file-item-uploaded .file-description {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.c-form__file-item-uploaded .file-delete,
.c-form__file-item-uploaded .file-close {
  border: none;
  background: transparent;
}
.c-form__file-item-uploaded .file-delete path,
.c-form__file-item-uploaded .file-close path {
  stroke-width: 0.125rem;
  stroke: var(--color-important);
}
.c-form__file-item-uploaded progress {
  height: 0.25rem;
  border: none;
  background-color: var(--color-gray-750);
}
.c-form__file-item-uploaded progress::-webkit-progress-bar {
  border: none;
  background-color: var(--color-gray-750);
}
.c-form__file-item-uploaded progress::-webkit-progress-value {
  background-color: var(--color-primery);
}
.c-form__file-item-uploaded progress::-moz-progress-bar {
  border: none;
  background-color: var(--color-primery);
}
.c-form__file-item-uploaded .form-upload__container {
  margin-top: 0.625rem;
  font-size: 1rem;
}
.c-form__file-item-uploaded .form-upload__status:empty::before {
  content: "Не загружено";
}
.c-form .file-upload-light__description .file-upload-light__label.btn {
  width: 0;
}
.c-form .file-upload-light__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
.c-form__agree-wrap {
  display: flex;
  gap: 16px;
}
.c-form__agree-block {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
}
.c-form__agree-block .cui-checkbox__label {
  margin-left: 0;
  gap: 0 16px;
}
.c-form__consent label {
  align-items: flex-start;
}
.c-form__consent a {
  margin-top: 3px;
  color: var(--color-link);
  line-height: normal;
}
@media (any-hover: hover) {
  .c-form__consent a:hover, .c-form__consent a:active {
    color: var(--color-link);
  }
}
@media (any-hover: none) {
  .c-form__consent a:active {
    color: var(--color-link);
  }
}
.c-form .c-form__agree-link {
  display: inline;
  color: var(--color-primery);
  text-decoration: underline;
  transition: all 0.4s;
}
.c-form .c-form__agree-link:visited {
  color: var(--color-primery);
}
@media (any-hover: hover) {
  .c-form .c-form__agree-link:hover, .c-form .c-form__agree-link:active {
    text-decoration: none;
    color: var(--color-primery);
  }
}
@media (any-hover: none) {
  .c-form .c-form__agree-link:active {
    text-decoration: none;
    color: var(--color-primery);
  }
}
@media (max-width: 767px) {
  .c-form__form-group-btn .button {
    width: var(--w-100);
  }
}
.c-form .cui-checkbox-group:not(.checkbox-count-1) .cui-checkbox__label-text {
  white-space: normal;
}
.c-form .form-group.agree-block .cui-checkbox-group .cui-checkbox__label:has(.cui-checkbox__input.has-error) .cui-checkbox__label-text {
  color: var(--color-important);
}
.c-form .form-group.agree-block .cui-checkbox-group .cui-checkbox__label:has(.cui-checkbox__input.has-error) .cui-checkbox__checkmark::before {
  border-color: var(--color-important);
  -webkit-box-shadow: 0px 0px 5px 0px var(--color-important-2);
  -moz-box-shadow: 0px 0px 5px 0px var(--color-important-2);
  box-shadow: 0px 0px 5px 0px var(--color-important-2);
}
.c-form__close-modal {
  position: absolute;
  top: 0;
  right: 0;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  background: url("../../assets/images/icons/close2.svg") 50% 50% no-repeat;
}
.c-form__subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 500;
}

/* End c-form */
.c-burger {
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  width: 48px;
  height: 44px;
  padding: 12px;
}
.c-burger__line {
  position: absolute;
  right: 0;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-white);
}
.c-burger__line:nth-child(1) {
  top: 11px;
  opacity: 1;
}
.c-burger__line:nth-child(2) {
  top: 21px;
  transition: opacity 0.4s, transform 0s;
}
.c-burger__line:nth-child(3) {
  top: 21px;
  transition: opacity 0.4s, transform 0s;
}
.c-burger__line:nth-child(2), .c-burger__line:nth-child(3) {
  width: 1rem;
}
.c-burger__line:nth-child(4) {
  top: 31px;
  opacity: 1;
}

.anchor-offset {
  display: block;
  height: 0;
  margin-top: -88px;
  visibility: hidden;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
