@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::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%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  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-Regular.woff2), format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Bold.woff2), format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Francker";
  src: url(../fonts/FranckerW-Bold.woff2), format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-blue: #274693;
  --color-light: #ffffff;
  --color-dark: #1c1d1e;
  --color-accent: #eb8317;
  --font-family-base: "Roboto", sans-serif;
  --font-family-accent: "Francker", sans-serif;
  --container-width: 80.625rem;
  --container-padding-x: 0.9375rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.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 (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((100vw - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("/assets/template/icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  display: flex;
  flex-direction: column;
  color: var(--color-light);
  background-color: var(--color-light);
  font-family: var(--font-family-base);
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-light);
  font-weight: 500;
  font-family: var(--font-family-base);
}

h1,
.h1 {
  font-size: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-blue);
  outline-offset: 0.25rem;
  transition-duration: 0 !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

p {
  margin: 0;
}

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

.burger-button {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 3px;
  color: var(--color-dark);
  background-color: transparent;
  border: none;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-accent);
  }
}
.burger-button--wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 0.3125rem;
  border-radius: 0.625rem;
  z-index: 20;
}
@media (width > 55.25rem) {
  .burger-button--wrapper {
    display: none;
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25em 0.1em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  background-color: currentColor;
  width: 100%;
  height: 0.125rem;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  width: 55%;
  align-self: end;
}

.icon-before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625rem;
}
.icon-before::before {
  --size: 1rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-size: contain;
}
.icon-before--exclamation-mark::before {
  background-image: url("/assets/template/images/header/icon-warning.svg");
}
.icon-before--location::before {
  background-image: url("/assets/template/images/header/icon-location.svg");
}
.icon-before--message::before {
  background-image: url("/assets/template/images/header/icon-message.svg");
  background-repeat: no-repeat;
}
.icon-before--requisites::before {
  --size: 1.5rem;
  background-image: url("/assets/template/images/about/2.svg");
}
.icon-before--location-orange::before {
  --size: 1.5rem;
  background-image: url("/assets/template/images/map/1.svg");
}
.icon-before--blue-dot::before {
  --size: 0.5rem;
  background-image: url("/assets/template/images/vacancy/1.svg");
  background-repeat: no-repeat;
}

.icon-after {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3125rem;
}
.icon-after::after {
  --size: 0.625rem;
  width: var(--size);
  height: var(--size);
  position: relative;
  content: "";
  flex-shrink: 0;
  background-size: contain;
}
.icon-after--search::after {
  --size: 0.75rem;
  position: absolute;
  top: 25%;
  background-image: url("/assets/template/images/header/icon-search.svg");
}
@media (width <= 90.06125rem) {
  .icon-after--search::after {
    right: 0;
  }
}
.icon-after--arrow-down::after {
  background-image: url("/assets/template/icons/arrow-down_dark.svg");
  background-repeat: no-repeat;
}
@media (max-width: 884px) {
  .icon-after--arrow-down::after {
    display: none;
  }
}
.icon-after--arrow-down-select::after {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -20%;
  background-image: url("/assets/template/icons/arrow-down_dark.svg");
  background-repeat: no-repeat;
}
.hero__title::after{
     --size: 2.5rem;
  background-image: url("/assets/template/icons/balloon.svg");
  background-repeat: no-repeat;
      width: var(--size);
    height: var(--size);
    position: relative;
    content: "";
    display: inline-block;
    flex-shrink: 0;
    background-size: contain;
}
.icon-after--balloon::after {
  --size: 2.5rem;
  background-image: url("/assets/template/icons/balloon.svg");
  background-repeat: no-repeat;
}
.icon-after--blue-balloon::after {
  --size: 2.5rem;
  background-image: url("/assets/template/images/about/1.svg");
  background-repeat: no-repeat;
}
.icon-after--arrow-right::after {
  --size: 0.75rem;
  background-image: url("/assets/template/icons/arrow-right_orange.svg");
  background-repeat: no-repeat;
}
.icon-after--arrow-down-accent::after {
  --size: 0.75rem;
  background-image: url("/assets/template/images/partners/arrow-down-accent.svg");
  background-repeat: no-repeat;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
@media (any-hover: hover) {
  .checkbox:hover {
    color: var(--color-accent);
  }
  .checkbox:hover .checkbox__input {
    border-color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .checkbox:active {
    color: var(--color-accent);
  }
  .checkbox:active .checkbox__input {
    border-color: var(--color-accent);
  }
}
.checkbox__text {
  font-size: 0.75rem;
  color: #8b909b;
}
.checkbox__input {
  min-width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  margin: 0;
  border: 0.0625rem solid #e4e5e6;
  background-color: #f8f9fa;
  border-radius: 0.3125rem;
}
.checkbox__input:not(:checked)::after {
  opacity: 0;
  visibility: hidden;
}
.checkbox__input._error {
  box-shadow: 0 0 0.9375rem red;
}
.checkbox__input::after {
  content: url("/assets/template/icons/checkbox.svg");
  color: var(--color-dark);
  transition-duration: var(--transition-duration);
  margin-bottom: 5px;
}

.modal {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  border-radius: 0.625rem;
  padding: 1.5625rem 1.875rem;
  max-width: 31.25rem;
  max-height: 23.75rem;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.1);
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow: hidden;
}
.card_img{
    width: 405px;
    height: auto;
    max-width: 100%;
}
.card_img img.active {
    display: block;
}

.card_img img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}
.modal__title {
  font-size: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
}
.modal__annotation {
  text-align: center;
  margin-bottom: 0.625rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.modal__form-input {
  width: 100%;
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.25rem;
}
.modal__form-button {
  font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
  border: 1px solid var(--color-accent);
  border-radius: 0.3125rem;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 0.9375rem 1.25rem;
  text-transform: uppercase;
}

.modal__form-button:hover {
  background-color: var(--color-light);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.modal__form-field {
  display: flex;
  width: 100%;
  column-gap: 0.625rem;
}
.modal-director {
  max-width: 46.25rem;
  max-height: 450px;
}
.modal-director__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  margin-bottom: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}
.modal-director__title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.modal-director__form-field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.625rem;
}
.modal-director__form-input {
  width: 100%;
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.25rem;
}
.modal-director__form-button {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  border: 1px solid var(--color-accent);
  border-radius: 0.3125rem;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 0.9375rem 1.25rem;
  text-transform: uppercase;
  max-width: 20.625rem;
  width: 100%;
}

.modal-director__form-button:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.modal-director__textarea {
  max-width: 680px;
  width: 100%;
  max-height: 100px;
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.25rem;
  resize: vertical;
  height: 6.25rem;
  resize: none;
  margin-bottom: 20px;
}

.soc1als__link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 0.625rem;
}
.soc1als__link-dark {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  background-color: #2a2a2a;
}
@media (max-width: 884px) {
  .soc1als__link {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.header__promo {
  background-color: var(--color-blue);
}
.header__promo-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.625rem;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  font-weight: 400;
}
@media (width <= 47.99875rem) {
  .header__promo-inner {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
@media (width <= 90.06125rem) {
  .header__promo-location {
    display: none;
  }
}
@media (width <= 47.99875rem) {
  .header__promo {
    display: none;
  }
}
.header__promo-form {
  position: relative;
  position: relative;
  border-radius: 0.3125rem;
  padding: 0.3125rem 0.9375rem;
  max-width: 25rem;
  height: 2.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .header__promo-form {
    max-width: 18.75rem;
  }
}
.header__promo-input {
  padding: 0.3125rem 0.9375rem;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--color-light);
}
.header__promo-input::placeholder {
  color: var(--color-light);
}
.header__promo-button {
  width: 0.75rem;
  height: 0.75rem;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 25%;
  right: 0.9375rem;
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.625rem;
  color: var(--color-dark);
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  padding-block: 1.25rem;
}
.header__body-about {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
}
.header__logo {
  max-width: clamp(5.625rem, 5.131127451rem + 2.0261437908vw, 7.5625rem);
  max-height: clamp(2.5rem, 2.3406862745rem + 0.6535947712vw, 3.125rem);
}
@media (width > 55.25rem) {
  .header__overlay {
    display: contents;
  }
}
@media (max-width: 884px) {
  .header__overlay {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    padding: 1rem;
    background-color: var(--color-light);
    transition-duration: var(--transition-duration);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}

@media (max-width: 350px) {
  .header__overlay {
      row-gap: 10px;
    }
}

.header__menu {
  z-index: 25;
}
.header__menu-list {
  display: flex;
  column-gap: clamp(0.9375rem, 0.618872549rem + 1.3071895425vw, 2.1875rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (max-width: 884px) {
  .header__menu-list {
    flex-direction: column;
    align-items: center;
    row-gap: 0.3125rem;
    font-size: 1.5625rem;
  }
}
.header__menu-item {
  position: relative;
}
.header__menu-item:hover > .header__menu-popup {
  display: initial;
}
.header__menu-link--arrow {
  position: relative;
  padding-right: 15px;
}
.header__menu-link--arrow::after {
  content: "";
  position: absolute;
  top: 7.5px;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: inherit;
  padding: 0.15625rem;
}
@media (max-width: 884px) {
  .header__menu-link--arrow::after {
    display: none;
  }
}
.header__menu-link.is-active::after {
  border-color: var(--color-accent);
  transform: rotate(225deg);
}
.header__menu-link--arrow:hover::after {
  border-color: var(--color-accent);
  transform: rotate(225deg);
  transition-duration: 0.5s;
}
.header__menu-link.is-active {
  color: var(--color-accent);
  pointer-events: none;
}
.header__menu-popup {
  position: absolute;
  left: 0;
  top: 1.25rem;
  
  white-space: nowrap;
  background-color: var(--color-light);
  display: none;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding-inline: 1.25rem;
  padding-block: 0.9375rem;
  border-radius: 0.3125rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .header__menu-popup {
    left: -9.375rem;
  }
}
@media (max-width: 1024px) {
  .header__menu-popup {
    visibility: hidden;
  }
}
@media (max-width: 1024px) {
  .header__menu-popup--center {
    left: 0;
  }
}
.header__menu-popup--gray {
  width: 18.75rem !important;
  height: 7.0625rem;
  background-color: #f8f9fa;
  border-radius: 0.3125rem 0 0 0.3125rem;
  padding-right: 0;
}
.header__menu-popup--item {
  width: 100%;
  margin-bottom: clamp(0.375rem, 0.2794117647rem + 0.3921568627vw, 0.75rem);
}
.header__menu-popup--item-arrow {
  position: relative;
}
.header__menu-popup--item-arrow::after {
  content: "";
  position: absolute;
  top: 0.4375rem;
  right: 0.9375rem;
  transform: translateY(-50%) rotate(-45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: inherit;
  padding: 0.15625rem;
}
.header__menu-popup--item-arrow:hover::after {
  border-color: var(--color-accent);
}
.header__menu-popup--item a {
  text-decoration: none;
}
.header__menu-popup--item:hover > .header__menu-popup--popup {
  display: grid;
  grid-template-columns: 20% 64%;
  column-gap: clamp(0.625rem, -0.012254902rem + 2.614379085vw, 3.125rem);
}
.header__menu-popup--popup {
  position: absolute;
  left: 17.5rem;
  top: -0.9375rem;
  display: none;
  background-color: var(--color-light);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: clamp(0.3125rem, 0.1531862745rem + 0.6535947712vw, 0.9375rem);
  padding-inline: clamp(0.3125rem, 0.1531862745rem + 0.6535947712vw, 0.9375rem);
  padding-bottom: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  width: 32.5625rem;
  height: 7.0625rem;
  border-radius: 0 0.3125rem 0.3125rem 0;
}
.header__soc1als-list {
  display: flex;
  align-items: center;
  column-gap: 0.9375rem;
}
@media (max-width: 1200px) {
  .header__soc1als-list {
    display: none;
  }
}
@media (max-width: 884px) {
  .header__soc1als-list {
    display: flex;
    justify-content: center;
  }
}
.header__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 0.1875rem;
}
@media (max-width: 1023px) {
  .header__contacts {
    display: none;
  }
}
@media (max-width: 884px) {
  .header__contacts {
    display: flex;
    flex-direction: column;
    align-self: center;
  }
}
.header__contacts-link {
  align-self: flex-end;
  font-size: 1.25rem;
}
@media (max-width: 884px) {
  .header__contacts-link {
    font-size: 2.1875rem;
  }
}
.header__contacts-button {
  color: #274693;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  align-self: flex-end;
  padding: 0;
}

.hero {
  margin-bottom: 5.625rem;
}
@media (width <= 90.06125rem) {
  .hero {
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .hero {
    margin-bottom: 1.25rem;
  }
}
.hero__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.9375rem;
  padding-block: 3.75rem;
}
@media (max-width: 1000px) {
  .hero__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.875rem;
  }
}
@media (max-width: 1000px) {
  .hero__body {
    order: 1;
    text-align: center;
  }
}
.hero__title {
  font-size: clamp(1.5625rem, 1.1642156863rem + 1.6339869281vw, 3.125rem);
  font-family: var(--font-family-accent);
  font-weight: bold;
  max-width: 37.5625rem;
}.hero__title::first-line ,
.hero__title--orange {
  color: var(--color-accent);
}
.hero__title--2 {
  font-size: clamp(1.5625rem, 1.1642156863rem + 1.6339869281vw, 3.125rem);
  font-family: var(--font-family-accent);
  font-weight: bold;
  margin-bottom: 1.125rem;
  max-width: 37.5625rem;
}
.hero__subtitle {
  font-size: clamp(1.125rem, 0.9338235294rem + 0.7843137255vw, 1.875rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3.75rem;
}
.hero__button {
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--color-accent);
  border-radius: 0.3125rem;
  background-color: var(--color-accent);
  color: var(--color-light);
  letter-spacing: 0.01em;
  padding: 0.9375rem 1.875rem;
  text-transform: uppercase;
}

.hero__button:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.hero__image {
  background-position: center;
}

.slider {
  position: relative;
}
.slider--hero__item {
  background-image: url("/assets/template/images/hero/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.slider--hero .slick-arrow {
  position: absolute;
  top: 47%;
  z-index: 10;
  font-size: 0;
  border-radius: 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
}
.slider--hero .slick-arrow.slick-prev {
  background-image: url(/assets/template/images/hero/hero_slider/prev-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  margin-left: -0.4375rem;
  left: 2.5rem;
}
.slider--hero .slick-arrow.slick-next {
  background-image: url(/assets/template/images/hero/hero_slider/next-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  margin-left: -0.4375rem;
  right: 2.5rem;
}
.slider--hero .slick-dots {
  position: absolute;
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
  bottom: 0.3125rem;
}
.slider--hero .slick-dots li.slick-active button {
  background-color: var(--color-accent);
}
.slider--hero .slick-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--color-light);
  border-radius: 50%;
  font-size: 0;
  background-color: var(--color-light);
}
.slider--news .slick-list {
  margin: 0 -0.9375rem;
}
.slider--news__item {
  margin-inline: 0.9375rem;
}
.slider--news .slick-arrow {
  position: absolute;
  top: -17%;
  z-index: 10;
  font-size: 0;
  border-radius: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
}
.slider--news .slick-arrow.slick-prev {
  background-image: url(/assets/template/images/news/1.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-color: var(--color-light);
  margin-left: -0.4375rem;
  border: none;
  right: 4.5%;
}
@media (max-width: 1200px) {
  .slider--news .slick-arrow.slick-prev {
    right: 5.5%;
  }
}
.slider--news .slick-arrow.slick-next {
  background-image: url(/assets/template/images/news/2.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  margin-left: -0.4375rem;
  background-color: var(--color-light);
  border: none;
  right: 0;
}
.slider--news .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
}
.slider--news .slick-dots li.slick-active button {
  background-color: var(--color-accent);
}
.slider--news .slick-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--color-light);
  border-radius: 50%;
  font-size: 0;
  background-color: var(--color-light);
}

.all-news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
}

.all-news__inner {
    padding-top: 20px;
}

.all-news h3 {        
  font-size: 20px;
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.slider-product {
  position: relative;
}
.slider-product__item {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.slider-product .slick-arrow {
  position: absolute;
  top: 47%;
  z-index: 10;
  font-size: 0;
  border-radius: 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
}
.slider-product .slick-arrow.slick-prev {
  background-image: url(/assets/template/images/news/1.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  left: 2.5rem;
}
.slider-product .slick-arrow.slick-next {
  background-image: url(/assets/template/images/news/2.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  right: 1.25rem;
}
.slider-product .slick-dots {
  position: absolute;
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
  bottom: 0.3125rem;
}
.slider-product .slick-dots li.slick-active button {
  background-color: var(--color-accent);
}
.slider-product .slick-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--color-light);
  border-radius: 50%;
  font-size: 0;
  background-color: var(--color-light);
}
.slider-productmini {
  position: relative;
}
.slider-productmini__item {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.slider-productmini .slick-track {
  display: flex;
  column-gap: 0.625rem;
}
.slider-productmini .slider-productmini__item.slick-current .product__item {
  border-color: var(--color-accent);
}

.slider--other .slick-list {
  margin: 0 -0.6875rem;
}
.slider--other .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
}
.slider--other .slick-dots li.slick-active button {
  background-color: var(--color-accent);
  border: 0.0625rem solid var(--color-dark);
}
.slider--other .slick-dots li button {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--color-dark);
  border-radius: 50%;
  font-size: 0;
  background-color: var(--color-light);
}
.slider--other .slick-arrow {
  position: absolute;
  top: -17%;
  z-index: 10;
  font-size: 0;
  border-radius: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
}
.slider--other .slick-arrow.slick-prev {
  background-image: url(/assets/template/images/news/1.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--color-light);
  margin-left: -0.4375rem;
  border: none;
  right: 4.5%;
}
@media (max-width: 1200px) {
  .slider--other .slick-arrow.slick-prev {
    right: 7%;
  }
}
@media (max-width: 1000px) {
  .slider--other .slick-arrow.slick-prev {
    right: 12%;
  }
}
.slider--other .slick-arrow.slick-next {
  background-image: url(/assets/template/images/news/2.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.05);
  margin-left: -0.4375rem;
  background-color: var(--color-light);
  border: none;
  right: 0;
}
@media (max-width: 1000px) {
  .slider--other .slick-arrow.slick-next {
    right: 6.2%;
  }
}
.slider--other .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.3125rem;
}
.slider--other .slick-dots li.slick-active button {
  background-color: var(--color-accent);
}
.slider--other .slick-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--color-light);
  border-radius: 50%;
  font-size: 0;
  background-color: var(--color-light);
}

.slick-track {
  display: flex;
}
@media (width <= 47.99875rem) {
  .slick-track {
    justify-content: center;
  }
}
.slick-list {
  overflow: hidden;
}

.card {
  color: var(--color-light);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.3125rem;
  height: 100%;
}
.card__inner {
  padding: 1.875rem;
}
.card__header {
  display: flex;
  align-items: center;
  column-gap: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  margin-bottom: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
}

@media (max-width: 560px) {
  .card__header {
    flex-direction: column;
    row-gap: 0.9375rem;
  }
}

.card__header--alt {
  min-height: 286px;
  margin-bottom: 0.9375rem;
}

@media (max-width: 560px) {
  .card__header--alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.9375rem;
  }
}

.card__image {
  border-radius: 50%;
}
.card__image--wrapper {
  width: 12.5rem;
  height: 12.5rem;
  background-color: #f0f0f0;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.625rem;
}
.card__title {
  font-size: clamp(1.125rem, 0.9338235294rem + 0.7843137255vw, 1.875rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 130%;
  max-width: 250px;
}
.card__title--alt {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 560px) {
  .card__title {
    text-align: center;
  }
}
.card__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
  line-height: 150%;
}
.card__link {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.625rem;
}
.card__link:hover>span {
  animation: move 0.3s ease-in-out forwards;
}

@keyframes move {
  0% {
    margin-left: 0
  }

  100% {
    margin-left: 7px;
  }
}
/* .card--bg1 {
  background-image: url("/assets/template/images/catalog/bg/1.jpg");
}
.card--bg2 {
  background-image: url("/assets/template/images/catalog/bg/2.jpg");
}
.card--bg3 {
  background-image: url("/assets/template/images/catalog/bg/3.jpg");
}
.card--bg4 {
  background-image: url("/assets/template/images/catalog/bg/4.jpg");
}
.card--bg5 {
  background-image: url("/assets/template/images/catalog/bg/5.jpg");
}
.card--bg6 {
  background-image: url("/assets/template/images/catalog/bg/6.jpg");
}
.card--bg7-alt {
  background-image: url("/assets/template/images/catalog/bg/7.jpg");
}
.card--bg8-alt {
  background-image: url("/assets/template/images/catalog/bg/8.jpg");
}
.card--bg9-alt {
  background-image: url("/assets/template/images/catalog/bg/9.jpg");
} */

.catalog__item {
  margin-bottom: 5.625rem;
}

.cotalog__item:first-child .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/1.jpg");
}

.cotalog__item:nth-child(2) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/2.jpg");
}

.cotalog__item:nth-child(3) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/3.jpg");
}

.cotalog__item:nth-child(4) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/4.jpg");
}

.cotalog__item:nth-child(5) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/5.jpg");
}

.cotalog__item:nth-child(6) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/6.jpg");
}

.cotalog__item:nth-child(7) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/7.jpg");
}

.cotalog__item:nth-child(8) .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/8.jpg");
}

.cotalog__item:last-child .catalog__item-card {
  background-image: url("/assets/template/images/catalog/bg/9.jpg");
}

@media (width <= 90.06125rem) {
  .catalog__item {
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .catalog__item {
    margin-bottom: 1.25rem;
  }
}
.catalog__item-title {
  font-size: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  max-width: 58.25rem;
  margin-bottom: 1.625rem;
}
.catalog__list {
  display: grid;
}
.catalog__list--grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media (max-width: 1200px) {
  .catalog__list--grid-2 {
    display: flex;
    flex-direction: column;
  }
}
.catalog__list--grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (max-width: 1070px) {
  .catalog__list--grid-3 {
    grid-template-columns: 1fr;
  }
}

.application {
  background-color: var(--color-blue);
  background-image: url("/assets/template/images/application/1.jpg");
  background-repeat: no-repeat;
  background-position: right 35%;
  background-size: contain;
  padding-top: clamp(1.25rem, 0.1348039216rem + 4.5751633987vw, 5.625rem);
  padding-bottom: clamp(1.875rem, 0.7598039216rem + 4.5751633987vw, 6.25rem);
}
.application-catalog {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .application {
    background-image: none;
  }
}
@media (width <= 90.06125rem) {
  .application {
    
    padding-top: 2.8125rem;
    padding-bottom: 3.125rem;
  }
}
@media (width <= 47.99875rem) {
  .application {
    padding-top: 1.25rem;
    padding-bottom: 1.5625rem;
    
  }
}
.application__title {
  font-size: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  max-width: 51.1875rem;
  margin-bottom: 2.5625rem;
}
.application__body {
  display: grid;
  grid-template-columns: 68% 32%;
  column-gap: clamp(0.9375rem, 0.3799019608rem + 2.2875816993vw, 3.125rem);
}
@media (max-width: 1600px) {
  .application__body {
    grid-template-columns: 1.5fr 1fr;
    row-gap: 1.875rem;
  }
}
@media (max-width: 1153px) {
  .application__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .application__body {
    align-items: flex-start;
  }
}
.application__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.1875rem 3.125rem;
}
@media (max-width: 1000px) {
  .application__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.application__info {
  display: grid;
  row-gap: 0.625rem;
}
.application__item {
  display: flex;
  column-gap: 1.5625rem;
  align-items: center;
}
.application__subtitle {
  font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  color: var(--color-accent);
  font-weight: 700;
  line-height: 130%;
}
.application__description {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.application__modal {
  align-self: center;
}

.service {
  margin-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.service-catalog {
  margin-top: clamp(1.25rem, 0.0870098039rem + 4.7712418301vw, 5.8125rem);
}
@media (width <= 90.06125rem) {
  .service {
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .service {
    margin-bottom: 1.25rem;
  }
}
.service__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1.625rem;
}

@media (max-width: 321px) {
    .service__title {
        font-size: 29px;
    }
}


.service__list {
  display: grid;
  row-gap: 1.875rem;
}
.service__list-item {
  display: flex;
  background-color: var(--color-blue);
  border-radius: 0.3125rem;
}

.service__list-item:nth-child(odd) img {
  border-radius: 0 5px 5px 0;
}
.service__list-item:nth-child(even) {
  flex-direction: row-reverse;
}
.service__list-item:nth-child(even) img {
  border-radius: 5px 0 0 5px;
}

.service__info {
  padding: 1.875rem;
}
.service__subtitle {
  font-size: clamp(1.125rem, 0.9338235294rem + 0.7843137255vw, 1.875rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0.9375rem;
}
.service__description {
  display: grid;
  row-gap: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 1.25rem;
}
.service__image {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1200px) {
  .service__image {
    display: none;
  }
}

.white .service__description p, .white .card__description p{
    color: white;
}

.advantages {
  background-image: url(/assets/template/images/advantages/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.advantages-catalog {
  background-image: none;
  background-color: #f8f9fa;
}
.advantages__inner {
  padding-block: 6.25rem;
  display: grid;
  row-gap: 1.5625rem;
  
}
@media (max-width: 1100px) {
  .advantages__inner {
    padding-block: 3.125rem;
  }
}
.advantages__title {
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: bold;
  line-height: 120%;
}
.advantages__title-catalog {
  color: var(--color-dark);
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
.advantages__list-item {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 130%;
  padding: 1.875rem;
  border-radius: 0.3125rem;
}
@media (max-width: 1100px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .advantages__list {
    grid-template-columns: 1fr;
  }
}
.advantages__icon-wrapper {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 50%;
}
.advantages__subtitle {
  font-size: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 1%;
  text-transform: uppercase;
}
.advantages__description {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
}

.scale {
  position: relative;
  bottom: -205%;
  left: -6%;
  width: 15.625rem;
}
.scale__output {
  position: absolute;
  font-weight: 700;
  bottom: 180%;
  display: block;
  transform: translateX(-50%);
  color: var(--color-dark);
}
.scale__track {
  height: 0.0625rem;
  background-color: #8a8b8c;
  border-radius: 0.25rem;
}
.scale__thumb {
  width: 1.3125rem;
  height: 1.3125rem;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  border-radius: 1rem;
  background-color: #274693;
}
.scale__level {
  width: 50%;
  height: 0.0625rem;
  background-color: #274693;
  border-radius: 1rem;
}
.scale__input {
  appearance: none;
  position: absolute;
  width: 105%;
  height: 2rem;
  margin-left: -2.5%;
  background-color: transparent;
  outline: none;
}
.scale__input::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.calculator {
  background-color: #f8f9fa;
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.calculator-catalog {
  background-color: #f8f9fa;
}

.calculator__inner {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  padding-inline: 5.9375rem;
  padding-top: 2.625rem;
  padding-bottom: 3.125rem;
  background-color: var(--color-light);
}
@media (max-width: 1380px) {
  .calculator__inner {
    padding-inline: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .calculator__inner {
    padding-inline: 0.9375rem;
  }
}
.calculator__title {
  font-size: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.625rem;
  color: var(--color-dark);
}
.calculator__subtitle {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin-bottom: 1.4375rem;
  color: var(--color-dark);
}
.calculator__parameters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  column-gap: 1.25rem;
  margin-bottom: 1.875rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 1380px) {
  .calculator__parameters {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .calculator__parameters {
    grid-template-columns: 1fr;
  }
}
.calculator__parameters-range {
  height: 0.0625rem;
  appearance: none;
  background-color: transparent;
  outline: none;
}
.calculator__parameters-range-label {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  font-weight: 700;
  line-height: 150%;
  color: var(--color-dark);
}
.calculator__parameters-item {
  display: grid;
  row-gap: 0.625rem;
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  width: 16.25rem;
  height: 5.1875rem;
  background-color: #f8f9fa;
  padding-inline: 1.25rem;
  padding-top: 0.9375rem;
  padding-bottom: 0.8125rem;
}
@media (max-width: 1380px) {
  .calculator__parameters-item {
    margin-left: auto;
    margin-right: auto;
  }
}
.calculator__parameters-select-label {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  position: relative;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-dark);
}
.calculator__parameters-title {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  font-weight: 400;
  line-height: 150%;
  color: #8a8b8c;
}
.calculator__parameters-button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  font-weight: 700;
  width: 16.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  background-color: #274693;
  color: var(--colo-light);
}

.calculator__parameters-button:hover {
    color: #274693;
    background-color: var(--colo-light);
}

@media (max-width: 1380px) {
  .calculator__parameters-button {
    margin-left: auto;
    margin-right: auto;
  }
}
.calculator__result {
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  display: none;
}
.calculator__result.active{
    display: block;
           animation: calcAnim 0.3s;
}
@keyframes calcAnim{
    from{
         transform: translateY(-50%);

    }
    to{
              transform: translateY(0%); 
    }
}
.calculator__result-inner {
  padding-top: 1.375rem;
  padding-bottom: 1.9375rem;
  padding-inline: 1.875rem;
}
.calculator__result-title {
  font-size: clamp(1.5625rem, 1.4828431373rem + 0.3267973856vw, 1.875rem);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.625rem;
  color: var(--color-dark);
}
.calculator__result-subtitle {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin-bottom: 1.4375rem;
  color: var(--color-dark);
}
.calculator__result-button {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  width: 100%;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  text-transform: uppercase;
  color: var(--colo-light);
}

.calculator__result-button:hover {
    color: var(--color-accent);
    background-color: var(--color-light);
}

.about {
 margin-block: 100px;
}
@media (width <= 90.06125rem) {
  .about {
    margin-block: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .about {
    margin-block: 1.25rem;
  }
}
.about__inner {
  color: var(--color-dark);
  display: grid;
  row-gap: 2.5rem;
}
.about__header {
  display: flex;
  align-items: center;
}
.about__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 120%;
  padding-block: 0.6875rem;
  padding-left: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  margin-left: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  border-left: 1px solid #e4e5e6;
}


@media (max-width: 371px) {
  .about__title {
    font-size: 20px;
  }
}

.about__title-catalog {
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.15);
}
.about__list {
  background-color: #f8f9fa;
  border-radius: 0.3125rem;
}
@media (max-width: 993px) {
  .about__list {
    background-color: var(--color-light);
  }
}
.about__item {
  display: flex;
}
@media (max-width: 993px) {
  .about__item {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  }
}
@media (max-width: 993px) {
  .about__item--direction {
    flex-direction: column;
  }
}
.about__image-wrapper {
  display: contents;
}
.about__body {
  padding-block: 2.5rem;
  padding-inline: 3.125rem;
}
@media (max-width: 1110px) {
  .about__body {
    padding-block: 1.25rem;
    padding-inline: 1.5625rem;
  }
}
@media (max-width: 993px) {
  .about__body {
    padding: 0;
  }
}
.about__description {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: grid;
  row-gap: 0.9375rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
}
@media (max-width: 993px) {
  .about__description {
    background-color: #f8f9fa;
    border-radius: 0.3125rem;
    padding: 0.625rem;
  }
}
.about__image--1 {
  border-radius: 0 0.3125rem 0 0;
}
@media (max-width: 993px) {
  .about__image--1 {
    border-radius: 0.3125rem;
  }
}
.about__image--2 {
  border-radius: 0 0 0 0.3125rem;
}
@media (max-width: 993px) {
  .about__image--2 {
    border-radius: 0.3125rem;
  }
}
@media (max-width: 1321px) {
  .about__image {
    max-width: 50%;
  }
}
@media (max-width: 993px) {
  .about__image {
    max-width: 100%;
  }
}
.about__button {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: flex;
  column-gap: 0.625rem;
  border: none;
  background: transparent;
  color: var(--color-accent);
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .about__button {
    margin-top: 0.9375rem;
  }
}

.news {
  background-image: url(/assets/template/images/news/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.news-catalog {
  background-image: none;
  background-color: #f8f9fa;
  color: var(--color-dark);
}

.news-catalog .news__subtitle {
    color: var(--color-dark);
}
.news__inner {
  padding-block: 5.9375rem;
}

.news__item {
    list-style: none;
}
@media (max-width: 1000px) {
  .news__inner {
    padding-block: 2.5rem;
    padding-inline: 1.5625rem;
  }
}
.news__title {
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1.5625rem;
}
.news__title-catalog {
  color: var(--color-dark);
}
@media (width <= 47.99875rem) {
  .news__title {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .news__item {
    text-align: center;
    margin-right: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .news__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}
.news__image {
  border-radius: 0.3125rem;
  margin-bottom: 0.9375rem;
}
.news__subtitle {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0.625rem;
  
}



.news__subtitle a {
    text-decoration: none;
}

.news__subtitle-catalog {
  color: var(--color-dark);
}
.news__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}

.map {
  position: relative;
  background-color: var(--color-dark);
  width: 100%;
}

.map__contacts {
  position: absolute;
  top: 10%;
  width: 25.625rem;
  height: 25rem;
  border-radius: 0.3125rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 1.5625rem;
}
@media (width <= 63.99875rem) {
  .map__contacts {
    padding: 0.625rem;
    height: 6.25rem;
    width: 21.875rem;
  }
}

@media (max-width: 370px) {
  .map__contacts {
    width: 200px;
    height: 140px;
  }
}
.map__contacts-list {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: grid;
  row-gap: 0.625rem;
  padding-left: 0.3125rem;
  margin-bottom: 1.125rem;
  font-weight: 400;
  line-height: 150%;
}
@media (width <= 63.99875rem) {
  .map__contacts-list {
    display: none;
  }
}
.map__contacts-article {
  color: #8a8b8c;
}
.map__contacts-number {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
}
.map__address {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0.625rem;
}
.map__button {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #eb8317;
  border: none;
  background-color: transparent;
}

.footer {
  background-color: var(--color-dark);
}
.footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.3125rem;
  margin-bottom: 1.625rem;
  padding-top: 2.8125rem;
  padding-bottom: 1.6875rem;
  border-bottom: 0.0625rem solid #565758;
}
@media (max-width: 1200px) {
  .footer__header {
    padding-top: 1.875rem;
    padding-bottom: 1.25rem;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__header {
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__logo {
    align-self: center;
    margin-bottom: 0.625rem;
  }
}
.footer__body {
  padding-bottom: 1.5625rem;
  margin-bottom: 1.625rem;
  border-bottom: 0.0625rem solid #565758;
}
.footer__contacts-link {
  display: flex;
  align-items: center;
}
.footer__menu {
  display: grid;
  grid-template-columns: 10% 14% 9% 43%;
  column-gap: 6.625rem;
}
@media (max-width: 1270px) {
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__menu {
    column-gap: 0.3125rem;
  }
}
.footer__menu-main-link {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  color: var(--colo-light);
  opacity: 0.5;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.01em;
  margin-bottom: 0.9375rem;
}
.footer__menu-list {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: grid;
  row-gap: 0.625rem;
  font-weight: 400;
  line-height: 130%;
}
.footer__menu-list-2-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.125rem;
}
@media (max-width: 1270px) {
  .footer__menu-list-2-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1270px) {
  .footer__menu-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__extra {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: flex;
  justify-content: space-between;
  column-gap: 0.3125rem;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-light);
  opacity: 0.5;
  padding-bottom: 2.8125rem;
}
@media (max-width: 1000px) {
  .footer__extra {
    align-items: center;
    flex-direction: column;
    row-gap: 0.625rem;
    padding-bottom: 1.875rem;
  }
}

.breadcrumb {
  line-height: 150%;
    font-size: 16px;
  font-weight: 400;
  color: #8a8b8c;
  margin-bottom: clamp(1.25rem, 0.8198529412rem + 1.7647058824vw, 2.9375rem);
}
.breadcrumb__separator {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.breadcrumb__link.is-active {
  color: var(--color-dark);
  pointer-events: none;
}

.about-company {
  padding-top: 27px;
  margin-bottom: 6.25rem;
}
@media (width <= 90.06125rem) {
  .about-company {
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 47.99875rem) {
  .about-company {
    margin-bottom: 1.25rem;
  }
}
.about-company__header {
  display: flex;
  align-items: center;
  margin-bottom: 2.1875rem;
}
.about-company__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 120%;
  padding-block: 0.6875rem;
  padding-left: 1.875rem;
  margin-left: 1.875rem;
  border-left: 1px solid #e4e5e6;
}

@media (max-width: 392px) {
  .about-company__title {
  font-size: 20px;
  padding-left: 10px;
  margin-left: 10px;
  }
}

.about-company__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  color: var(--color-dark);
  margin-bottom: 2.6875rem;
}
.about-company__director {
  display: flex;
  border-radius: 0.3125rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1144px) {
  .about-company__director {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .about-company__director {
    flex-direction: column;
    row-gap: 10px;
  }
}
.about-company__director--photo {
  width: 16.125rem;
  height: 16.125rem;
  border-radius: 0.3125rem 0 0 0.3125rem;
}
@media (max-width: 767px) {
  .about-company__director--photo {
    border-radius: 0.3125rem;
    margin-top: 10px;
  }
}
.about-company__director--info {
  padding-inline: clamp(0.3125rem, -0.4044117647rem + 2.9411764706vw, 3.125rem);
  padding-top: clamp(0.25rem, -0.3713235294rem + 2.5490196078vw, 2.6875rem);
  padding-bottom: clamp(0.3125rem, -0.4044117647rem + 2.9411764706vw, 3.125rem);
}
@media (max-width: 767px) {
  .about-company__director--info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-company__director--description {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-dark);
  margin-bottom: 1.4375rem;
}
@media (max-width: 767px) {
  .about-company__director--description {
    text-align: center;
  }
}
.about-company__director--button {
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-light);
  text-transform: uppercase;
}

.about-company__director--button:hover {
    color: var(--color-accent);
    background-color: var(--color-light);
}

.chronology {
  background-image: url("/assets/template/images/chronology/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.chronology__inner {
  padding-block: 6.25rem;
}
.chronology__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  margin-bottom: 2.8125rem;
}
.chronology__body {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}
.chronology__circle {
  width: 43.75rem;
  height: 43.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.chronology__circle-svg{
    position: absolute;
    width: 100%;
    height: 100%;
}
.chronology__circle-svg svg{
    width: 100%;
    height: 100%;
}
.circle-bg{
   stroke:#EB8317 !important; 
}
.circle-progress {
  stroke-dasharray: 2199;
  stroke-dashoffset: 0;
 
  transform: rotate(180deg);
  transform-origin: center;
  
}

.chronology.done .circle-progress {
     animation: circle-fill 4.5s linear forwards;
}
.chronology.done .chronology__item{
    opacity: 1;
    transition: all 0.45s linear;
}
.chronology.done .chronology__item:nth-child(4){
    transition-delay: 0.9s;
}
.chronology.done .chronology__item:nth-child(6){
    transition-delay: 1.8s;
}
.chronology.done .chronology__item:nth-child(5){
    transition-delay: 2.35s;
}
.chronology.done .chronology__item:nth-child(3){
    transition-delay: 3.3s;
}
.chronology.done .chronology__item:nth-child(1){
    transition-delay: 4s;
}
@keyframes circle-fill {
  from {
    stroke-dashoffset: 0;
  }
  to {
      stroke-dashoffset: 2199;
  }
}
.chronology__wrapper {
  width: 37.5rem;
  height: 37.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 50%;
  overflow: hidden;
}
.chronology__item {
  position: absolute;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.chronology__item-title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  color: var(--color-accent);
}
.chronology__item-text {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
}
.chronology__item--1 {
  top: -3%;
  left: 0;
}
.chronology__item--2 {
  top: -3%;
  right: 0;
  align-items: flex-end;
}
.chronology__item--3 {
  top: 29%;
  left: 0;
}
.chronology__item--3 .chronology__item-text {
  max-width: 16.875rem;
}
.chronology__item--4 {
  top: 40%;
  right: 0.2%;
  align-items: flex-end;
  text-align: end;
}
.chronology__item--5 {
  top: 83.5%;
  left: 0;
}
.chronology__item--6 {
  top: 83.5%;
  right: 0;
  align-items: flex-end;
}

.partners__header-inner {
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.partners__title {
  font-size: clamp(1.125rem, 0.7745098039rem + 1.4379084967vw, 2.5rem);
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1.1875rem;
}
.partners__title-catalog {
  margin-bottom: clamp(1.125rem, 0.9975490196rem + 0.522875817vw, 1.625rem);
}
.partners__description {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
  color: var(--color-dark);
  margin-bottom: 2.0625rem;
}
.partners__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.625rem;
}
@media (max-width: 1200px) {
  .partners__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    row-gap: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  }
}
@media (max-width: 767px) {
  .partners__list {
    grid-template-columns: 1fr;
    row-gap: 0rem;
  }
}
@media (max-width: 1200px) {
  .partners__item {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .partners__item {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 0.0625rem solid #eeeff0;
  }
}
.partners__body {
  background-color: #f8f9fa;
  padding-block: 6rem;
}

@media (max-width: 767px) {
  .partners__body  {
    padding-block: 20px;
  }
}
.partners__map {
  display: grid;
  grid-template-columns: 35% 57%;
  column-gap: 0.625rem;
}
@media (max-width: 1033px) {
  .partners__map {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 30px;
    align-items: center;
  }
}
.partners__map-list {
  display: flex;
  row-gap: 0.625rem;
  column-gap: 0.625rem;
  color: var(--color-dark);
  max-width: 28.4375rem;
  flex-wrap: wrap;
  margin-bottom: clamp(0.625rem, 0.3700980392rem + 1.045751634vw, 1.625rem);
}
@media (max-width: 1033px) {
  .partners__map-list {
    max-width: none;
  }
}
.partners__map-item {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  padding-block: 0.5rem;
  padding-inline: 0.9375rem;
  font-weight: 700;
  line-height: 150%;
  background-color: #eeeff0;
  border-radius: 0.3125rem;
}
.partners__map-item.is-active {
  background-color: var(--color-blue);
  color: var(--color-light);
}
.partners__map-button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  border: none;
  background-color: transparent;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-inline: 0;
}
.partners__map-accordion {
  display: grid;
}
.partners__map-accordion--details[open] + .partners__map-accordion--content {
  grid-template-rows: 1fr;
}
.partners__map-accordion--details[open] .partners__map-accordion--title {
  color: #f8f9fa;
}
.partners__map-accordion--details[open] .partners__map-accordion--title::after {
  content: none;
}
.partners__map-accordion--summary {
  list-style: none;
}
.partners__map-accordion--summary::-webkit-details-marker {
  display: none;
}
.partners__map-accordion--title {
  display: inline-flex;
  column-gap: 0.625rem;
  color: var(--color-accent);
  margin-bottom: clamp(0.625rem, 0.3700980392rem + 1.045751634vw, 1.625rem);
  cursor: pointer;
}
.partners__map-accordion--title::after {
  content: url("/assets/template/images/partners/arrow-down-accent.svg");
  width: 0.625rem;
  height: 0.3125rem;
  transition-duration: 0.2s;
}
.partners__map-accordion--content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.partners__map-accordion--inner {
  overflow: hidden;
}

.areas__inner {
  padding-top: 6.25rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 1000px) {
  .areas__inner   {
    padding-block: 30px;
  }
}

.areas__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-dark);
  margin-bottom: 1.375rem;
}
.areas__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (max-width: 1100px) {
  .areas__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 615px) {
  .areas__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.areas__item-title {
  font-size: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-dark);
  margin-bottom: 1.1875rem;
}
.areas__item-title--margin {
  margin-top: clamp(0.9375rem, 0.443627451rem + 2.0261437908vw, 2.875rem);
}
.areas__list-item {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg1.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
  border-radius: 0.3125rem;
  max-width: 25.625rem;
  width: 100%;
  height: auto;
  padding: 1.875rem;
}
@media (max-width: 1100px) {
  .areas__list-item {
    display: flex;
    flex-direction: column;
  }
}
.areas__list-item--bg2 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg2.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg3 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg3.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg4 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg4.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg5 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg5.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg6 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg6.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg7 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg7.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg8 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg8.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-item--bg9 {
  background: linear-gradient(180deg, rgba(39, 70, 147, 0.5) 0%, rgba(39, 70, 147, 0.95) 100%), url("/assets/template/images/areas/bg9.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}
.areas__list-wrapper {
  width: 8.75rem;
  height: 8.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f0f0f0;
  overflow: hidden;
  margin-bottom: 1.625rem;
}
.areas__list-subtitle {
  font-family: var(--font-family-accent);
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 700;
  line-height: 130%;
  color: var(--color-light);
  margin-bottom: 2.9375rem;
}

.areas__list-item.areas__list-item--bg6>h3 {
    margin-bottom: 16px;
}

.areas__list-item.areas__list-item--bg7>h3 {
    margin-bottom: 16px;
}

.areas__list-item.areas__list-item--bg8>h3 {
    margin-bottom: 16px;
}

.areas__list-item.areas__list-item--bg9>h3 {
    margin-bottom: 16px;
}



.production {
  background-color: #274693;
}
.production__inner {
  color: var(--color-dark);
  display: grid;
  row-gap: 1.625rem;
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.production__header {
  display: flex;
  align-items: center;
}
.production__title {
  font-family: var(--font-family-accent);
  font-size: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  font-weight: 700;
  line-height: 120%;
  padding-block: 0.6875rem;
}

@media (max-width: 417px) {
  .production__title {
    font-size: 21px;
  }
}

.production__list {
  background-color: var(--color-light);
  border-radius: 0.3125rem;
}
@media (max-width: 993px) {
  .production__list {
    background-color: var(--color-blue);
  }
}
.production__item {
  display: flex;
}
@media (max-width: 993px) {
  .production__item {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  }
}
@media (max-width: 993px) {
  .production__item--direction {
    flex-direction: column;
  }
}
.production__body {
  padding-block: clamp(0.3125rem, -0.2450980392rem + 2.2875816993vw, 2.5rem);
  padding-inline: clamp(0.3125rem, -0.4044117647rem + 2.9411764706vw, 3.125rem);
}
@media (max-width: 1110px) {
  .production__body {
    padding-block: 1.25rem;
    padding-inline: 1.5625rem;
  }
}
@media (max-width: 993px) {
  .production__body {
    padding: 0;
  }
}
.production__description {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: grid;
  row-gap: 0.9375rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  font-family: var(--font-family-base);
}
@media (max-width: 993px) {
  .production__description {
    background-color: var(--color-light);
    border-radius: 0.3125rem;
    padding: 0.625rem;
  }
}
.production__image-wrapper {
  display: contents;
}
.production__button {
  font-size: clamp(0.8125rem, 0.7647058824rem + 0.1960784314vw, 1rem);
  display: flex;
  column-gap: 0.625rem;
  border: none;
  background: transparent;
  color: var(--color-accent);
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .production__button {
    margin-top: 0.9375rem;
  }
}

.letters {
  background-color: #f8f9fa;
  padding-block: 5.875rem;
}
.letters__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1.625rem;
}
.letters__list {
  display: flex;
  justify-content: space-between;
  column-gap: 0.625rem;
}
@media (max-width: 1000px) {
  .letters__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
  }
}
@media (max-width: 1000px) {
  .letters__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}
.letters__item {
  max-width: 18.75rem;
}

.letters__image {
    cursor: pointer;
}

@media (max-width: 1000px) {
  .letters__item {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}
.letters__wrapper {
  background-color: var(--color-light);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.3125rem;
  padding-block: 1.125rem;
  padding-inline: 0.8125rem;
  margin-bottom: 0.9375rem;
}
.letters__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 150%;
}

.tabs-industrial__buttons {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.tabs-industrial__button {
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-light);
  border-radius: 0.3125rem;
  padding-inline: clamp(0.625rem, 0.5453431373rem + 0.3267973856vw, 0.9375rem);
  padding-block: 0.5rem;
  font-weight: 700;
  line-height: 150%;
  border: none;
}
.tabs-industrial__button.is-active {
  background-color: var(--color-light);
  color: var(--color-blue);
  pointer-events: none;
}
@media (any-hover: hover) {
  .tabs-industrial__button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .tabs-industrial__button:active {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}
.tabs-industrial__header {
  margin-bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.tabs__header {
  margin-bottom: 2.5rem;
}
.tabs__buttons {
  display: flex;
  column-gap: 0.625rem;
}
.tabs__buttons--vacancy {
  flex-wrap: wrap;
  row-gap: 0.625rem;
}
.tabs__button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  background-color: #eeeff0;
  border-radius: 0.3125rem;
  padding-inline: clamp(0.625rem, 0.5453431373rem + 0.3267973856vw, 0.9375rem);
  padding-block: 0.5rem;
  font-weight: 700;
  line-height: 150%;
  border: none;
}
.tabs__button.is-active {
  background-color: #274693;
  color: var(--color-light);
  pointer-events: none;
}
@media (any-hover: hover) {
  .tabs__button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .tabs__button:active {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}
.tabs__content:not(.is-active) {
  display: none;
}
.tabs__content:focus-visible {
  outline-offset: -1rem;
}
.tabs-product__header {
  display: flex;
  column-gap: 3.125rem;
  margin-bottom: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
}

.tabs-product__buttons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 15px;
    border-bottom: 1px solid #e4e5e6;
    width: 100%;
}

@media (max-width: 1198px) {
  .tabs-product__buttons {
      border-bottom: none;
  }
  
}

.tabs-product__button {
  font-size: 16px;
  background: transparent;
  border: none;
  font-weight: 700;
  color: #8a8b8c;
  white-space: nowrap;
  margin-bottom: -2px;
}
.tabs-product__button:hover {
  color: var(--color-dark);
  border-bottom: 0.1875rem solid var(--color-blue);
}
.tabs-product__button.is-active {
  color: var(--color-dark);
  border-bottom: 0.1875rem solid var(--color-blue);
}

.vacancy {
  padding-block: 6.25rem;
}
.vacancy__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 1.625rem;
}
.vacancy__list {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 130%;
  margin-bottom: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
}
@media (max-width: 818px) {
  .vacancy__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
  }
}
@media (max-width: 530px) {
  .vacancy__list {
    grid-template-columns: 1fr;
  }
}
.vacancy__table {
  padding: clamp(0.625rem, 0.306372549rem + 1.3071895425vw, 1.875rem);
  background-color: #f8f9fa;
  border-radius: 0.3125rem;
}
.vacancy__table-column {
  display: flex;
  flex-direction: column;
}
.vacancy__table-column:not(:last-child) {
  padding-right: clamp(0.625rem, 0.4338235294rem + 0.7843137255vw, 1.375rem);
  margin-right: clamp(0.625rem, 0.4338235294rem + 0.7843137255vw, 1.375rem);
  border-right: 0.0625rem solid #e4e5e6;
}
@media (max-width: 818px) {
  .vacancy__table-column:not(:last-child) {
    border-right: none;
  }
}
.vacancy__table-title {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: var(--color-dark);
  font-weight: 700;
  padding-bottom: 0.5625rem;
  margin-bottom: 1.625rem;
  border-bottom: 0.0625rem solid #e4e5e6;
}
.vacancy__table-list {
  display: grid;
  row-gap: 1rem;
}
.vacancy__table-actions {
  display: flex;
}
.vacancy__table-a {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-light);
  padding-inline: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  padding-block: 0.9375rem;
  max-width: 21.875rem;
  border-radius: 0.3125rem;
}

.vacancy__table-a:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

..catalog-products {
    background-color: #f8f9fa;
}

.catalog-products__inner {
  margin-top: 27px;
  margin-bottom: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.catalog-products__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
}
.catalog-products__description {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
  color: var(--color-dark);
  margin-bottom: clamp(0.9375rem, 0.6507352941rem + 1.1764705882vw, 2.0625rem);
}
.catalog-products__body {
  display: grid;
  grid-template-columns: 18.6% 79%;
  column-gap: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  color: var(--color-dark);
}
@media (max-width: 1057px) {
  .catalog-products__body {
    grid-template-columns: 35% 60%;
  }
}
@media (max-width: 792px) {
  .catalog-products__body {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 792px) {
  .catalog-products__menu {
    display: none;
  }
}

.catalog-products__menu-column {
  position: relative;
  border-radius: 0.3125rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  padding-inline: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
  padding-block: clamp(0.875rem, 0.8112745098rem + 0.2614379085vw, 1.125rem);
  margin-bottom: 0.9375rem;
}
.catalog-products__menu-column--title {
  font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 110%;
  color: var(--color-dark);
  padding-bottom: 0.5625rem;
  margin-bottom: 0.6875rem;
  border-bottom: 0.0625rem solid #e4e5e6;
}
.catalog-products__menu-column--subtitle {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 12px
}
@media (max-width: 792px) {
  .catalog-products__menu-column--subtitle {
    font-size: 25px;
  }
}
.catalog-products__menu-column--list {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  padding-left: clamp(0.3125rem, 0.2328431373rem + 0.3267973856vw, 0.625rem);
  font-weight: 400;
  line-height: 130%;
}

@media (max-width: 792px) {
   .catalog-products__menu-column--item {
    font-size: 20px;
  }
}


@media (width > 792px) {
  .catalog-products__menu-column--list-border {
    padding-bottom: 0.6875rem;
    margin-bottom: 0.6875rem;
    border-bottom: 0.0625rem solid #e4e5e6;
  }
}
.catalog-products__menu-column--item:not(:last-child) {
  margin-bottom: 7px;
}

@media (max-width: 792px) {
  .catalog-products__menu-column--element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.catalog-products__modal--title {
    font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
    font-weight: 700;
    line-height: 130%;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.catalog-products__modal--description {
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-accent);
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-products__modal--features {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    display: grid;
    row-gap: 5px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-products__modal--link {
    font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
    background-color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--color-accent);
    color: var(--color-light);
    border-radius: 5px;
    padding-inline: fluid(55, 20);
    padding-block: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-products__modal--link:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.catalog-products__menu-description {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0.875rem;
}
.catalog-products__menu-button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--color-blue);
  color: var(--color-light);
  background-color: var(--color-blue);
}

.catalog-products__menu-button:hover {
    background-color: var(--color-light);
    color: var(--color-blue);
    
}

.catalog-products__products {
    display: flex;
    flex-direction: column;
    
}

.catalog-products__products-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  margin-bottom: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  position: relative;
}

@media (max-width: 848px) {
  .catalog-products__products-list {
    justify-content: center;
  }
}

.catalog-products__products-item {
  display: flex;
  flex-direction: column;
  height: 412px;
  width: 239px;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.3125rem;
  position: relative;
}

.catalog-products__products-item.slick-slide .catalog-products__products-accoridon-button {
    display: none;
}

.catalog-products__products-item.slick-slide .catalog-products__products-header {
    align-items: normal;
}

.catalog-products__products-item.slick-slide .catalog-products__products-title {
    max-width: 181px;
}



.hidden-content {
  /* opacity: 0; */
  display: none;
}

.content-container {
  color: #1c1d1e;
  position: relative;
  height: calc(100% - 30px);
}
.initial-content, .hidden-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.catalog-products__products-item.expanded {
  height: 565px;
  background-color: #fff;
  z-index: 1;
  margin-bottom: -157px;
}
.catalog-products__products-item.expanded .initial-content {
  /* opacity: 0;
  visibility: hidden; */
  display: none;
}

.catalog-products__products-item.expanded .hidden-content {
  /* opacity: 1;
  visibility: visible; */
  display: block;
  z-index: 1;
}

.hidden-content__title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: var(--color-dark);
  margin-bottom: 7px;

}
.hidden-content__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.hidden-content__item {
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
}
.hidden-content__item::before {
  content: "•";
  float: left;
  padding: 0 0.5em 0 0;
}
.hidden-content__item>span {
  display: block;
  overflow: hidden;
}

.catalog-products__products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}

.catalog-products__products-item:hover .catalog-products__menu-column--popup {
  display: block;
}

.other .catalog-products__products-item:hover .catalog-products__menu-column--popup {
  display: none;
}

.catalog-products__menu-column--popup {
  position: absolute;
  display: none;
  z-index: 5;
  top: 0;
  left: 0;
  width: 240px;
  height: 547px;
  padding-left: 54px;
  background-color: var(--color-light);
  padding-inline: 20px;
  padding-block: 16px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  color: var(--color-dark);
}

.catalog-products__products-image--link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-products__products-image {
  align-self: center;
  width: 124px;
  height: 148px;
}

.catalog-products__products-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  color: var(--color-dark);
}
.catalog-products__products-description {
    font-size: 16px;
    max-width: 180px;
}
.catalog-products__products-accordion {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.catalog-products__products-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--color-dark);
}

.catalog-products__products-accoridon-button {
  min-width: 20px;
  height: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
  border: none;
  background-image: url(../images/catalog/1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  cursor: pointer
}
.catalog-products__products-price {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 700;
  line-height: 130%;
  color: var(--color-dark);
}
.catalog-products__products-button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--color-accent);
  color: var(--color-light);
  border-radius: 0.3125rem;
  padding-block: 5.5px;
  border: 1px solid var(--color-accent);
  width: 100%;
  justify-content: center;
  
}

.catalog-products__products-button:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.catalog-products__products-pagination {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 15px;
  width: fit-content;
  padding-inline: 1.875rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.3125rem;
}
.catalog-products__products-pagination--link {
  width: 3.125rem;
  height: 3.125rem;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
}
.catalog-products__products-pagination--link:hover {
  border-bottom: 0.125rem solid var(--color-accent);
  color: var(--color-dark);
}

.primer {
  background-color: var(--color-blue);
  padding-block: 93px;
}

@media (max-width: 1000px) {
  .primer {
  padding-block: 40px;
  }
}

@media (max-width: 767px) {
  .primer {
  padding-block: 20px;
  }
}

.primer__inner h2 {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: bold;
  line-height: 120%;
  margin-top: 0;
  margin-bottom: -16px;
  color: var(--color-light);
  max-width: 730px;
  
}

.primer__inner h3 {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
  margin-top: 36px;
  margin-bottom: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
  color: var(--color-light);
}


.primer__inner img {
    border-radius: 5px;
}


.primer__inner > p {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--font-family-base);
  margin-bottom: 17px;
}




/* .primer__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: bold;
  line-height: 120%;
  margin-bottom: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  color: var(--color-light);
} */
.primer__title--orange {
  color: var(--color-accent);
  text-transform: uppercase;
}
.primer__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.25rem, 0.7720588235rem + 1.9607843137vw, 3.125rem);
  margin-bottom: clamp(0.625rem, 0.5134803922rem + 0.4575163399vw, 1.0625rem);
}
@media (max-width: 1150px) {
  .primer__item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    row-gap: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  }
}
.primer__item-info {
  max-width: 38.4375rem;
}
@media (max-width: 1150px) {
  .primer__item-info {
    max-width: 70rem;
  }
}
.primer__item-title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
  color: var(--color-light);
}
.primer__item-description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  display: grid;
  row-gap: clamp(0.75rem, 0.6703431373rem + 0.3267973856vw, 1.0625rem);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--font-family-base);
}
.primer__item-image {
  padding-top: 0.375rem;
  border-radius: 0.3125rem;
  background-size: cover;
}
.primer__item-reverse {
  flex-direction: column;
}
.primer__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: clamp(0.9375rem, 0.762254902rem + 0.7189542484vw, 1.625rem);
}

.industrial {
  background-color: var(--color-blue);
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.industrial__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}
.industrial__descritption {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
  font-family: var(--font-family-base);
  margin-bottom: 33px;
}
.industrial__card {
  display: flex;
  background-color: var(--color-light);
  border-radius: 0.3125rem;
}
.industrial__card-info {
  color: var(--color-dark);
  padding-top: clamp(0.75rem, 0.5428921569rem + 0.8496732026vw, 1.5625rem);
  padding-bottom: clamp(1.5625rem, 0.7340686275rem + 3.3986928105vw, 4.8125rem);
  padding-inline: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
}
.industrial__card-title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0.9375rem;
  color: var(--color-dark);
}
.industrial__card-description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 150%;
}
.industrial__card-description p:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.industrial__card-image {
  border-radius: 0 0.3125rem 0.3125rem 0;
}
@media (max-width: 1150px) {
  .industrial__card-image {
    display: none;
  }
}

.accordion {
  padding-block: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  box-shadow: inset 0 -1px 0 0 #e4e5e6, inset 0 1px 0 0 #e4e5e6;
}
.accordion__title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  position: relative;
  padding-right: 3.125rem;
  transition-duration: var(--transition-duration);
  color: var(--color-dark);
  font-family: var(--font-family-base);
  font-weight: 700;
  line-height: 130%;
  cursor: pointer;
}
.accordion__title::before, .accordion__title::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  width: 1.875rem;
  height: 0.125rem;
  background-color: var(--color-dark);
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
  right: 0;
}
.accordion__title::after {
  rotate: 90deg;
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.accordion__content-inner {
  overflow: hidden;
}
.accordion__content-body {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  --offsetTop: clamp(0.5rem, 0.3725490196rem + 0.522875817vw, 1rem);
  margin-top: var(--offsetTop);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 150%;
}
.accordion__details[open] .accordion__title::before, .accordion__details[open] .accordion__title::after {
  background-color: var(--color-dark);
}
.accordion__details[open] .accordion__title::after {
  rotate: 0deg;
}
.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
}
.accordion__summary {
  list-style: none;
}
@media (any-hover: hover) {
  .accordion__summary:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .accordion__summary:active {
    color: var(--color-accent);
  }
}
.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion-group {
  display: grid;
 
}

.accordion-group__catalog {
    display: none;
}

@media (max-width: 792px) {
  .accordion-group__catalog {
    display: grid;
    justify-content: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 0.0625rem solid #e4e5e6;
  }
}

.accordion-catalog__title {
  font-size: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  border-radius: 5px;
  background-color: var(--color-accent);
  color: var(--color-light);
  position: relative;
  text-align: center;
  font-weight: 700;
  line-height: 130%;
  padding-inline: 20px;
  padding-block: 5px;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (any-hover: hover) {
  .accordion-catalog__title:hover {
    color: var(--color-accent);
    background-color: var(--color-light);
    border: 1px solid var(--color-accent);
  }
}
@media (any-hover: none) {
  .accordion-catalog__title:active {
    color: var(--color-accent);
    background-color: var(--color-light);
    border: 1px solid var(--color-accent);
  }
}
.accordion-catalog__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%) rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: inherit;
  padding: 0.15625rem;
  margin-left: 10px;
  transition-duration: 0.5s;
}
.accordion-catalog__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.accordion-catalog__content-inner {
  overflow: hidden;
}
.accordion-catalog__content-body {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
.accordion-catalog__details[open] .accordion-catalog__title::after {
  transform: rotate(225deg);
  transition-duration: 0.5s;
}
.accordion-catalog__details[open] + .accordion-catalog__content {
  grid-template-rows: 1fr;
}
.accordion-catalog__summary {
  list-style: none;
}
@media (any-hover: hover) {
  .accordion-catalog__summary:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .accordion-catalog__summary:active {
    color: var(--color-accent);
  }
}
.accordion-catalog__summary::-webkit-details-marker {
  display: none;
}

.question-answer {
  background-color: #f8f9fa;
  color: var(--color-dark);
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.question-answer__title {
  font-size: clamp(1.5625rem, 1.3235294118rem + 0.9803921569vw, 2.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-dark);
  margin-bottom: clamp(0.8125rem, 0.6053921569rem + 0.8496732026vw, 1.625rem);
}

.product {
  background-color: #f8f9fa;
}
.product__inner {
  padding-top: clamp(0.625rem, 0.3541666667rem + 1.1111111111vw, 1.6875rem);
  padding-bottom: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.product__card {
  display: grid;
  border-radius: 0.3125rem;
  background-color: var(--color-light);
  grid-template-columns: 47% 45%;
  column-gap: clamp(0.625rem, -0.012254902rem + 2.614379085vw, 3.125rem);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  margin-top: clamp(0.9375rem, 0.4276960784rem + 2.091503268vw, 2.9375rem);
  margin-bottom: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.product__slider--wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  margin-block: 1.875rem;
  margin-left: 1.875rem;
  margin-right: 1px;
}
.product__item {
  display: flex;
  justify-content: center;
  padding-block: 2.0625rem;
  padding-inline: 8.6875rem;
  border: 0.0625rem solid #e4e5e6;
  border-radius: 0.3125rem;
  cursor: pointer;
}
.product__item-mini {
  width: 142px;
  height: 106px;
  padding-block: 0.4375rem;
  padding-inline: 2rem;
}
.product__info {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 130%;
  padding-top: clamp(0.75rem, 0.5906862745rem + 0.6535947712vw, 1.375rem);
  padding-bottom: 100px;
}
.product__title {
  font-size: clamp(0.9375rem, 0.6985294118rem + 0.9803921569vw, 1.875rem);
  font-weight: 700;
  line-height: 130%;
  color: var(--color-dark);
  margin-bottom: 0.4375rem;
}
.product__subtitle {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  color: #8a8b8c;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: clamp(0.625rem, 0.3860294118rem + 0.9803921569vw, 1.5625rem);
}
.product__list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem);
}
.product__price {
  font-size: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  font-weight: 700;
  line-height: 130%;
  margin-block: clamp(0.9375rem, 0.7781862745rem + 0.6535947712vw, 1.5625rem);
}
.product__button {
    font-size: 16px;
letter-spacing: 0.01em;
    font-weight: 700;
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  border-radius: 0.3125rem;
  padding: 0.9375rem 1.875rem;
  color: var(--color-light);
  text-transform: uppercase;
}

.product__button:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.product__content {
  display: flex;
  column-gap: 6.25rem;
  background-color: var(--color-light);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0.3125rem;
}
.product__content--info {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 150%;
  flex-basis: 56.875rem;
  margin-block: 1.5625rem;
  margin-inline: 1.875rem;
  max-width: 909px;
  /* margin-bottom: 25px; */
}

.product__content--image {
  padding-top: 1.875rem;
  padding-bottom: 4.125rem;
  padding-right: 25px;
}

@media (max-width: 1000px) {
  .product__content--image {
      display: none;
  }
  
}

.other__inner {
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
.other__title {
  font-size: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  margin-bottom: clamp(0.625rem, 0.3700980392rem + 1.045751634vw, 1.625rem);
}
.other__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.875rem;
  border: 0.3125rem;
  margin-inline: 0.6875rem;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
}
.other__image {
  width: 15rem;
  height: 11.25rem;
}
.other__info {
  display: flex;
  flex-direction: column;
  row-gap: 0.4375rem;
  max-width: 12.5rem;
}
.other__description {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 130%;
}
.other__button {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  border-radius: 0.3125rem;
  padding-block: frem(5.5);
  padding-inline: clamp(1.25rem, 0.6924019608rem + 2.2875816993vw, 3.4375rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-light);
  background-color: var(--color-accent);
  border: none;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ready {
    background-color: #f8f9fa;
    padding-top: 27px;
    padding-bottom: 100px;
    color: #1c1d1e;
}

.ready + p {
    font-family: "Roboto";
    line-height: 130%;
    font-size: 16px;
    font-weight: 400;
}

.ready__inner > h1  {
    color: #1c1d1e;
    font-family: "Francker";
    line-height: 120%;
    font-size: 47px;
    font-weight: 700;
}


.ready__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding-block: 20px;
    padding-inline: 25px;
    margin-bottom: 30px;
}
.ready__card:has(> .catalog),
.ready__card:has(> .map),
.ready__card:has(> .service){
    display: flex;
}

.ready__card .service {
    margin-block: 0;
}

.modal-order {
  max-width: 820px;
  max-height: 405px;
}

.modal-order__title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.modal-order__inputs {
  display: grid;
  row-gap: 20px;
}

.modal-order__form-input {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 15.5px 20px;
  max-width: 240px;
  max-height: 50px;
}

.modal-order__form-input::placeholder {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  color: #8a8b8c;
}

.modal-order__inputs--wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-order__form-select {
  max-width: 240px;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 14px 20px;
  appearance: none;
  font-weight: 400;
  font-size: 16px;
}

.modal-order__form-select--label {
  position: absolute;
  right: 20px;
  z-index: 1;
  top: 50%;
  translate: 0 -50%;
  font-weight: 400;
  font-size: 16px;
}

.modal-order__textarea {
  resize: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 15px 20px;
  max-width: 760px;
  max-height: 90px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
}

.modal-order__textarea::placeholder {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  color: #8a8b8c;
}

.modal-order__inputs--group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-order__form-input {
  width: 240px;
}

.modal-order__form-input--company {
  width: 100%;
  max-width: 500px;
}

.modal-order__form-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5px;
}

.checkbox-order {
  max-width: 292px;
}

.modal-order__form-button {
  font-family: var(--font-family-base);
  font-size: 16px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  letter-spacing: 0.01em;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 15px 20px;
  text-transform: uppercase;
  max-width: 240px;
  width: 100%;
}

.modal-order__form-button:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

.modal-wait {
  max-width: 410px;
  height: 302px;
}

.modal-wait__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-dark);
}

.modal-wait__message {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 13px;
}

.modal-wait__button {
  font-size: 16px;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.01em;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 15px 20px;
  text-transform: uppercase;
  width: 100%;
}

.modal-wait__button:hover {
  background-color: var(--color-light);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.product__content--specifications {
  display: grid;
  row-gap: 7px;
}

.product__content--field {
  display: grid;
  grid-template-columns: 27.25% 59%;
}
.calculator__parameters-select{
    border: none;
    background:none;
    user-select:none;
    cursor: pointer;
    outline: none;
    width: 100%;
    display: none;
}
.calculator__parameters-select.active{
    display: block;
}
.calculator__parameters-select option{
    cursor: pointer;
}
.calculator__parameters-inp{
            border: none;
        background: none;
            height: 25px;
         outline: none;
             padding: 0;

}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
     display: none; 
    -webkit-appearance: none;
    margin: 0; 
}

.modal-calc {
  border-radius: 15px;
  max-width: 600px;
  padding: 20px;
  background-color: #f8f9fa;
}

.modal-calc__title {
  color: var(--color-dark);
  margin-bottom: 10px;
  text-align: center;
}

.modal-calc__results {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 20px;
}

.modal-calc__results p{
  color: var(--color-dark);
}

.modal-calc__field {
  justify-content: space-between;
}

.modal-calc__button {
  max-width: 250px;
  width: 100%;
}

@media (max-width: 840px) {
  .product__content--field {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
  }
    
    .product__content--field:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c6c7c8;
  }
  
}

.product__content--specification {
  display: flex;
  white-space: nowrap;
  align-items: baseline;
}

.product__content--text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #8a8b8c;
}

.product__content--border {
  width: 100%;
  margin-inline: 5px;
  border-bottom: 1px dashed #c6c7c8;
}

@media (max-width: 840px) {
  .product__content--border {
      display: none;
  }
  
}

.product__content--feature {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-dark);
  /* white-space: nowrap; */
}

@media (max-width: 840px) {
  .product__content--feature {
      white-space: wrap;
      text-align: center;
  }
  
}

.product__content--link {
  color: var(--color-accent);
  cursor: pointer;
}

.preparation {
  max-width: 410px;
  width: 100%;
  max-height: 694px;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  padding-top: 27px;
  padding-inline: 30px;
  color: var(--color-dark);
  background-color: white;
}

@media (max-width: 1023px) {
  .preparation {
    padding-top: 8px;
    padding-inline: 10px;
  }
}

@media (max-width: 981px) {
  .preparation {
    max-width: 850px;
    width: 100%;
    max-height: 1000px;
    height: 100%;
    padding-inline: 30px;
  }
}

@media (max-width: 390px) {
  .preparation {
    padding-inline: 10px;
  }
}

.preparation__title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 9px;
  margin-bottom: 17px;
  border-bottom: 1px solid #e4e5e6;
}

@media (max-width: 981px) {
  .preparation__list-wrapper {
    display: grid;
  }
}


.preparation__list-wrapper p strong {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.preparation__list-wrapper ul {
  display: grid;
  row-gap: 16px;
  margin-bottom: 22px;
}

.preparation__list-wrapper ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

@media (max-width: 1199px) {
  .preparation__list-wrapper ul li {
    font-size: 14px;
  }
}

.application-manual__wrapper {
  display: flex;
  column-gap: 30px;
}

@media (max-width: 1272px) {
  .application-manual__wrapper {
    column-gap: 10px;
  }
}

@media (max-width: 981px) {
  .application-manual__wrapper {
    flex-direction: column;
    row-gap: 30px;
  }
}

.application-manual {
  color: var(--color-dark);
  border-radius: 5px;
  max-width: 850px;
  max-height: 694px;
  padding-top: 27px;
  padding-bottom: 23px;
  padding-inline: 30px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
}

@media (max-width: 1023px) {
  .application-manual {
    padding-top: 8px;
    padding-inline: 10px;
  }
}

@media (max-width: 981px) {
  .application-manual {
    padding-bottom: 23px;
    padding-inline: 30px;
    max-height: 2000px;
  }
}

@media (max-width: 390px) {
  .application-manual {
    padding-inline: 10px;
  }
}

.application-manual__title {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 9px;
  margin-bottom: 17px;
  border-bottom: 1px solid #e4e5e6;
}

.application-manual__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .application-manual__description {
    font-size: 14px;
  }
}

.application-manual__list {
  display: grid;
  row-gap: 18px;
}

@media (max-width: 1272px) {
  .application-manual__list {
    row-gap: 12px;
  }
}

.application-manual__item {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

@media (max-width: 600px) {
  .application-manual__item {
    flex-direction: column;
    row-gap: 20px;
  }
}

.certificates {
    border-radius: 5px;
    max-width: 1290px;
    width: 100%;
    padding-block: 30px;
    padding-inline: 30px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    background-color: white;
}

.certificates__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-dark);
    padding-bottom: 9px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e4e5e6;
}

.certificates__list {
    display: flex;
    column-gap: 29px;
}

.certificates__item {
    padding-block: 18px;
    padding-inline: 13px;
    border: 1px solid #e4e5e6;
    border-radius: 5px;
}

.certificates__item img {
    cursor: pointer;
}

.tabs-industrial__button1 {
  background-color: #eeeff0;
  color: var(--color-dark);
  border-radius: 5px;
  padding-inline: 15px;
  padding-block: 8px;
  font-weight: 700;
  line-height: 150%;
  border: none;
}

.tabs-industrial__button1.is-active {
  background-color: #274693;
  color: var(--color-light);
}

.tabs__content .industrial__title {
    color: var(--color-dark);
}

.tabs__content .industrial__descritption {
    color: var(--color-dark);
}

.tabs__content1:not(.is-active) {
  display: none;
}

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


@media (max-width: 767px) {
    .chronology__item{
          position: relative !important;
          inset:auto !important;
          opacity: 1;
          margin-bottom: 20px;
      }
      .chronology__wrapper,
      .chronology__circle{
          max-width: 100vw;
          position: relative;
          max-height: 100vw;
      }
      .card_img {
width: 70%;
height: 90%;
      }
      .chronology__circle-svg{
             z-index: 1;
      }
      .chronology__list{
             margin-top: 40px;
      }
      .chronology__item{
          border-bottom:1px solid #eb8317 ;
          padding-bottom: 20px;
      }
      .chronology__item img{
          display: none;
      }
      .chronology__item--4,
      .chronology__item--6,
      .chronology__item--2{
             align-items: flex-start;
             text-align: left;
      }
  }
  
.simplesearch-result h3 {
    color: var(--color-dark);
}

.modal-thanks__title {
  color: var(--color-dark);
  margin-bottom: 10px;
  text-align: center;
}

.modal-thanks__button {
  border-radius: 5px;
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  width: 100%;
  color: #fff;
  padding-block: 5.5px;
}
.modal-thanks__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
}

.modal-thanks__button:hover {
  color: var(--color-accent);
  background-color: #fff;
}

.ready__inner .catalog__inner.container {
    padding-inline: 0;
}

.ready__inner .catalog__inner .catalog__item:last-child {
    margin-bottom: 0;
}