/* ═══════════════════════════════════════════════════════
   ЛОССНАБ — style.css
   Основан на структуре septiki-rus.ru
   Акцентный цвет: --main-color: #f29020
═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* ── Переменные ─────────────────────────────────────── */
:root {
  --main-color: #f2901f;
  --main-hover: #cc7410;
  --main-light: #fff4e6;
  --color-gray: #f1d7b5;
  --color-primary: #f2901f; /* bg-primary → narıncı */
  --color-success: #f2901f; /* text-success → narıncı */
  --color-black: #052227;
  --color-warning: #e5b026;
  --bs-link-color: #f2901f;
  --bs-success-rgb: 242, 144, 31;
  --bs-primary-rgb: 242, 144, 31;
  --brand-900: #6f3f06;
  --brand-700: #96590d;
  --brand-500: #f2901f;
  --brand-300: #f6c892;
  --brand-100: #fff1e2;
  --accent-blue: #17bde4;
  --icon-blue-filter: brightness(0) saturate(100%) invert(68%) sepia(87%)
    saturate(749%) hue-rotate(157deg) brightness(101%) contrast(101%);
  --section-spacing: 60px;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 5, 34, 39;
  color-scheme: light;
  --black: #fff;
  --white: #000;
  --section-1: #f4f5f4;
  --section-2: #f9f9f9;
  --section-3: #eee;
  --section-4: #e4e4e48f;
  --section-5: #f6f6f6;
  --section-6: #f9f9f987;
  --opacity: rgba(0, 0, 0, 0.8);
  --advantages-text: #17181c;
  --image-invert: invert(0);
  --advantages-border: #ccc;
  --advantages-hover: #4c4c4c;
  --horizental-heading: #413c3c;
  --textarea-about: #fafafa;
  --disabled: rgba(0, 0, 0, 0.5);
  --accordion-border: #e1e1e1;
  --input-wrapper-border: #e4e4e4;
  --input-wrapper-bg: #f7f7f5;
  --call-btn: linear-gradient(to bottom, #000000c4 0%, #000000 100%);
  --feedback-content: #4d4c4b;
  --footer: #2c2c2c;
  --header: #2c2c2c;
  --box-shadow: rgb(0 0 0 / 45%);
  --employee-card: #d7d7d7;
  --career-card: #fff;
  --career-btn: #161616;
  --career_page_full: #fcfcfc;
  --products-card: #fff;
  --products-border: #ddd;
  --products-addition: #5bcc34;
  --news-card-title: #17181c;
  --news-card-bg: #ededed;
  --news-span: #2e2e2e;
  --products-overlay: rgba(9, 112, 9, 0.588);
  --advantages-box-shadow: rgba(0, 0, 0, 0.46) 3px 3px 3px;
  --section-6-text: #f9f9f987;
}

/* ── Сброс и базовые стили ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif !important;
  color: var(--color-black);
}

img,
a img {
  outline: none;
}
a:focus {
  outline: none;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--main-hover);
}

img,
svg {
  vertical-align: middle;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
ul ul {
  margin-bottom: 0;
}

button {
  border-radius: 0;
  text-transform: none;
  cursor: pointer;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ── Утилиты Bootstrap-подобные ────────────────────── */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.overflow-auto {
  overflow: auto !important;
}

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

.flex-column {
  flex-direction: column !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-left {
  align-items: flex-start;
}
.position-relative {
  position: relative !important;
}

.m-0 {
  margin: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}

.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}

.text-success {
  color: rgba(var(--bs-success-rgb), 1) !important;
  margin-left: 10px;
}
.text-black {
  color: rgba(var(--bs-black-rgb), 1) !important;
}
.text-white {
  color: rgba(var(--bs-white-rgb), 1) !important;
}

.bg-primary {
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
}
.bg-white {
  background-color: rgba(var(--bs-white-rgb), 1) !important;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * 1.5rem);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(1.5rem * 0.5);
  padding-left: calc(1.5rem * 0.5);
  box-sizing: border-box;
}
.col {
  flex: 1 0 0%;
}

/* ── Типографика ────────────────────────────────────── */
.h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.strong {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.bolder {
  font-weight: 800;
}

/* ── Шапка ──────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   ЛОССНАБ — style.css
   Акцентный цвет: --main-color: #f29020
═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* ── Переменные ─────────────────────────────────────── */
:root {
  --main-color: #f29020;
  --main-hover: #d97d10;
  --main-light: #fff4e6;
  --color-gray: #c8dedf;
  --color-primary: #f29020;
  --color-success: #f29020;
  --color-black: #052227;
  --color-warning: #e5b026;
  --accent-blue: #f29020;
  --bs-link-color: #f29020;
  --bs-success-rgb: 242, 144, 32;
  --bs-primary-rgb: 242, 144, 32;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 5, 34, 39;
}

/* ── Сброс и базовые стили ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-top: 0;
}

img,
a img {
  outline: none;
}
a:focus {
  outline: none;
}
a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--main-hover);
}
img,
svg {
  vertical-align: middle;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
ul ul {
  margin-bottom: 0;
}
button {
  border-radius: 0;
  text-transform: none;
  cursor: pointer;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ── Bootstrap utilities ────────────────────────────── */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.overflow-auto {
  overflow: auto !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.flex-column {
  flex-direction: column !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-left {
  align-items: flex-start;
}
.position-relative {
  position: relative !important;
}
.m-0 {
  margin: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-success {
  color: rgba(var(--bs-success-rgb), 1) !important;
  margin-left: 10px;
}
.text-black {
  color: rgba(var(--bs-black-rgb), 1) !important;
}
.text-white {
  color: rgba(var(--bs-white-rgb), 1) !important;
}
.bg-primary {
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
}
.bg-white {
  background-color: rgba(var(--bs-white-rgb), 1) !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * 1.5rem);
  margin-left: calc(-0.5 * 1.5rem);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(1.5rem * 0.5);
  padding-left: calc(1.5rem * 0.5);
  box-sizing: border-box;
}
.col {
  flex: 1 0 0%;
}

/* ── Ümumi container ────────────────────────────────── */
.container-main , .container {
  max-width: 1400px;

  padding: 0 20px !important;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

/* ── Типографика ────────────────────────────────────── */
.h3 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.strong {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.bolder {
  font-weight: 800;
}

/* ══════════════════════════════════════════════════════
   HEADER — прозрачный по умолчанию, белый при скролле
══════════════════════════════════════════════════════ */
.mobile-right {
  margin-left: auto;
  gap: 12px;
}
 
.phone-mini {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: color 0.35s;
  white-space: nowrap;
}
 
.header.scrolled .phone-mini {
  color: var(--main-color);
}
 
/* ── Hamburger button ──────────────────── */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0;
}
 
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.35s;
  transform-origin: center;
}
 
.header.scrolled .burger-btn span {
  background: #052227;
}
 
/* Анимация → крестик */
.burger-btn.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
 
/* ── Overlay ───────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
 
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
 
/* ── Mobile drawer ─────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1025;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
 
.mobile-menu.is-open {
  transform: translateX(0);
}
 
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 72px 28px 32px;
}
 
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.mobile-menu ul li a {
  display: block;
  padding: 13px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #052227;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, padding-left 0.2s;
}
 
.mobile-menu ul li a:hover {
  color: var(--main-color);
  padding-left: 6px;
}
 
/* Контакты внизу drawer */
.mobile-menu__contacts {
  padding-top: 28px;
  border-top: 1px solid #eee;
  margin-top: 28px;
}
 
.mobile-menu__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--main-color);
  text-decoration: none;
  margin-bottom: 6px;
}
 
.mobile-menu__phone:hover {
  color: var(--main-hover);
}
 
.mobile-menu__hours {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 18px;
}
 
.mobile-menu__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
 
.mobile-menu__socials a img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
 
.mobile-menu__socials a:hover img {
  opacity: 1;
}
 
/* ── Hide on desktop ───────────────────── */
@media (min-width: 992px) {
  .burger-btn,
  .mobile-menu,
  .mobile-overlay {
    display: none !important;
  }
}
 
/* ── Mobile header height ──────────────── */
@media (max-width: 992px) {
      .services_section-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
  .header {
    min-height: unset;
  }
 
  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }
}
 
/* ── Prevent body scroll when menu open ── */
body.menu-open {
  overflow: hidden;
}
 
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  /* По умолчанию: прозрачный */
  background: transparent !important;
  box-shadow: none;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Состояние после скролла — добавляется через JS */
.header.scrolled {
  background: #fff !important;
  box-shadow: 0 4px 10px rgba(34, 95, 114, 0.22);
}

/* ── Мобильная строка (адрес + часы) ───────────────── */
.d-block.d-lg-none.bg-primary.mb-1 {
  background-color: rgba(var(--bs-primary-rgb), 1) !important;
}

/* ── Шапка внутри: header-inner ────────────────────── */
.header-inner {
  display: flex;
  align-items: stretch;
  gap: 4rem;
}

.header-logo {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

/* ── Логотип ────────────────────────────────────────── */
.logoNew {
  height: 80px;
  width: auto;
  display: block;
}



.direction-column {
  flex-direction: column;
}

.logofirst,
.text-successs {
  font-size: 16px;
  font-weight: 800;
}
.text-successs {
  color: var(--main-color);
}

.button-logo {
  font-size: 0.772rem;
  font-weight: 600;
  padding: 0 0 0 0.3rem;
}

/* ── Текст шапки: белый на прозрачном, тёмный на белом ─ */
.header .strong,
.header .top-menu a,
.header .phone_block a.h3 span,
.header .header-top a {
  color: #fff !important;
  transition: color 0.35s ease;
}

.header.scrolled .strong,
.header.scrolled .top-menu a,
.header.scrolled .phone_block a.h3 span,
.header.scrolled .header-top a {
  color: #052227 !important;
}
.header.scrolled .phone_block a.h3 span {
  color: var(--accent-blue) !important;
}

/* Телефон и Заказать звонок */
.phone_block a.h3 {
  text-decoration: none;
  transition: color 0.35s ease;
}

.header:not(.scrolled) .phone_block a.h3 {
  color: #fff !important;
}
.header.scrolled .phone_block a.h3 {
  color: var(--main-color) !important;
}

.phone_block a.text-success {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.35s ease;
}
.header:not(.scrolled) .phone_block a.text-success {
  color: #fff !important;
}
.header.scrolled .phone_block a.text-success {
  color: var(--main-color) !important;
}

/* SVG иконка телефона */
.phone_block svg path {
  transition: fill 0.35s ease;
}
.header:not(.scrolled) .phone_block svg path {
  fill: #fff !important;
}
.header.scrolled .phone_block svg path {
  fill: var(--main-color) !important;
}

/* Иконки location / clock */
.header:not(.scrolled) .icon-accent {
  filter: brightness(0) invert(1);
}
.header.scrolled .icon-accent {
  filter: none;
}

/* Соцсети иконки */
.ws {
  width: 38px;
  height: 38px;
}
.ws:hover {
  opacity: 0.8;
}

/* Nav hover */
.header.scrolled .top-menu a:hover {
  color: var(--main-color);
}
.header:not(.scrolled) .top-menu a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* phone_block call row */
.phone_block .phone-call-row {
  align-items: center;
  gap: 8px;
}

.header-main {
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 4px 0;
}
.header-top {
  gap: 12px 20px;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  width: 100%;
}
.header-nav .top-menu {
  justify-content: space-between;
  width: 100%;
}

/* ── Навигационное меню ─────────────────────────────── */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-menu a {
  text-decoration: none;
  transition: color 0.3s;
}
ul.list-unstyled {
  margin-bottom: 0;
}

/* Кнопка «Септики» */
a.btn-menu {
  width: 165px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  padding-left: 17px;
  transition: color 0.3s;
}
.header:not(.scrolled) a.btn-menu {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.header.scrolled a.btn-menu {
  color: #000;
  border-color: var(--main-color);
}
a.btn-menu:hover {
  color: #333;
}

/* ── Dropdown ───────────────────────────────────────── */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(5, 34, 39, 0.15);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #212529;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
}
.dropdown-item:hover {
  background: #e9ecef;
}
.dropdown-item:active {
  background: var(--main-color);
  color: #fff;
}

/* ── Социальные иконки ──────────────────────────────── */
.ts {
  margin-right: 40px;
}
.fa-search {
  margin-left: 30px;
}
.fa-brands,
.fa-search {
  font-size: 28px;
}

/* ── Корзина ────────────────────────────────────────── */
.basket-item-count {
  display: flex;
}
.icon-cart {
  font-size: 30px;
}
#msMiniCart {
  font-size: 1.2em;
}
span.count.ms2_total_count {
  background: red;
  color: #fff;
  font-size: 12px;
  height: 17px;
  width: 17px;
  text-align: center;
  line-height: 17px;
  border-radius: 50px;
  margin-left: 5px;
  padding: 0;
}

/* ── Мобильная корзина ──────────────────────────────── */
.phone-mini-cart a {
  color: #000;
  text-decoration: none;
}
.phone-mini-cart {
  margin-left: 15px;
  margin-right: 15px;
}

/* ── Поиск ──────────────────────────────────────────── */
.topsearch {
  position: absolute;
  top: -56px;
  background: #fff;
}
.topsearch button.btn-close {
  margin-right: 10px;
  z-index: 2;
}
.shearsinp {
  border: 0;
  border-radius: 20px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.form-control:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 0.25rem rgba(242, 144, 32, 0.25);
  outline: 0;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

/* ── py-lg-2 ────────────────────────────────────────── */
.py-lg-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* ── Сравнение и избранное ──────────────────────────── */
.top-favorites,
.comparison-go {
  position: relative;
  text-decoration: none;
}
.top-favorites .icon-favourites,
.top-comparison .icon-comparison {
  color: var(--bs-link-color);
  font-size: 35px;
}
.top-comparison {
  width: 33.333%;
  display: flex;
  justify-content: center;
  margin-right: 30px;
}
.top-favorites {
  width: 33.333%;
  display: flex;
  justify-content: center;
}
.top-comparison .comparison,
.top-comparison .comparison-total {
  padding: 0 !important;
}
.top-comparison .comparison .comparison-go,
.top-comparison .comparison .comparison-total {
  display: inline-block !important;
}
.msfavorites-total,
.comparison-total {
  position: absolute;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  height: 17px;
  width: 17px;
  text-align: center;
  line-height: 17px;
  border-radius: 50px;
  margin-left: 5px;
  left: 30px;
  top: -5px;
}

/* ═══════════════════════════════════════════════════════
   МЕДИА-ЗАПРОСЫ
═══════════════════════════════════════════════════════ */















/* ── Bootstrap responsive containers ───────────────── */






/* ── Bootstrap display utilities ───────────────────── */





/* ≤ 991px — планшеты и телефоны */


/* ≤ 575px — маленькие телефоны */


/* 576 – 767px */


/* 768 – 991px */


/* ≤ 414px */


/* ≤ 400px */


/* ── Bootstrap responsive containers ───────────────── */






/* ── Bootstrap display utilities ───────────────────── */




/* ═══════════════════════════════════════════════════════
   BANNER SECTION — banner.css
═══════════════════════════════════════════════════════ */

.banner-section {
  position: relative;
  background-image: url("../img/1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  margin-top: 0;
  height: 100vh;
}

.hero-swiper {
  position: relative;
}

.hero-swiper .swiper-slide {
  height: auto;
}

/* ── Основная строка: текст слева + фото справа ─────── */
.banner-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 150px;
  padding-bottom: 60px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* ── Левая часть ─────────────────────────────────────── */
.banner-left {
  flex: 0 0 auto;
  max-width: 650px;
}
.claude-wrap {
  position: absolute;
  bottom: -80px;
  z-index: 40;
  display: flex;
}
.claude-item1 {
  position: relative;
  margin-left: -300px;
}
.claude-item2 {
  position: relative;
  margin-left: -500px;
}
.claude-item3 {
  position: relative;
  margin-left: -500px;
}
.claude-item4 {
  position: relative;
  margin-left: -1200px;
}
.banner-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.32;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.banner-title .accent {
  color: var(--accent-blue);
}

.banner-desc {
  font-size: 0.97rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.65;
  margin: 0 0 36px;
}

.banner-btn {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 29px 46px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.banner-btn:hover {
  background: var(--main-hover);
  color: #fff;
  text-decoration: none;
}

/* ── Правая часть: фото ─────────────────────────────── */
.banner-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.banner-img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: contain;
}

.hero-nav {
  display: none;
}

/* ── Карточки внизу ─────────────────────────────────── */
.banner-cards-wrap {
  padding-bottom: 0;
}

.banner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.b-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(23, 80, 120, 0.08);
}

.b-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(23, 189, 228, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-card-icon .b-card-svg,
.icon-accent {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: var(--icon-blue-filter);
}

.header .icon-accent {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 24px;
}

.b-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-card-title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
  color: #17181c;
}

.b-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 400;
  color: #6b7c8a;
}

/* ── Responsive ─────────────────────────────────────── */






#about-home .container-main {
  box-shadow: 0px 4px 10px rgba(34, 95, 114, 0.22);
  border-radius: 20px;
  background: #fff;
  padding: 28px 24px !important;
}

.row {
  row-gap: 10px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 22px;
  color: #000;
  line-height: 1;
  text-align: start;
  margin: 0;
  font-weight: 500;
}
.right-side a,
.turned {
  display: block;
}

#about-home .row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr;
  align-items: stretch;
}

.turned {
  margin-top: 5px;
  opacity: 1;
  text-transform: uppercase;
  background-color: transparent;
  writing-mode: unset;
  transform: unset;
  color: var(--white);
  font-size: 28px;
}

.about-home__media {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f5f4;
}

.about-home__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-area {
  width: 100%;
  height: 236px;
  position: relative;
  left: 0;
  background-color: var(--textarea-about);
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  border-top-right-radius: 45px;
  text-align: left;
  padding: 25px;
}

.horizantal-paragraph {
  height: auto;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
  font-weight: 500;
}

.horizantal-heading {
  font-size: 24px;
  background-color: unset;
  color: var(--horizental-heading);
  margin-bottom: 10px;
  font-weight: 500;
}

.horizantal-paragraph {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  color: var(--white);
  hyphens: auto;
  font-weight: 500;
}

.right-side {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.about-home__img-side {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.right-side a {
  text-decoration: underline;
  font-size: 14px;
  margin-top: 22px;
  position: unset;
  color: var(--horizental-heading);
  font-weight: 500;
}
#hero_slider .swiper-slide::nth-child(4) {
  background: url("https://caspian-energy.az/uploads/posts/2024-05/1714552285_slider-2.webp")
    center/cover;
}








/* ═══════════════════════════════════════════════════════
   PRODUCTS SECTION — products.css
   Акцентный цвет: --main-color: #f29020
═══════════════════════════════════════════════════════ */

/* ── Основной свайпер ───────────────────────────────── */
.products-swiper {
  padding: 20px 5px !important;
}

#products .products-swiper + .section-title {
  margin-top: 48px;
}

/* Стрелки */
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  color: #f29020;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  top: 38%;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}

/* Пагинация */
.products-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.products-swiper .swiper-pagination-bullet-active {
  background: #f29020;
}

/* ── Карточка товара ────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 16px 20px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
  box-shadow: 0px 4px 10px rgba(34, 95, 114, 0.22);
}

/* Бейдж */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f29020;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* ── Фото в карточке ───────────────────────────────── */
.product-img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  padding: 10px;
}

/* ── Информация ─────────────────────────────────────── */
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--bran-900);
  margin: 0 0 8px;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-art {
  font-size: 16px;
  color: #b27e49;
}

.product-stock {
  font-size: 16px;
  font-weight: 600;
}

.product-stock.in {
  color: #333;
}
.product-stock.out {
  color: #e53935;
}

/* Звёзды */
.product-stars {
  color: #f29020;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Характеристики */
.product-specs {
  border-top: 1px solid #f5dfc4;
  border-bottom: 1px solid #f5dfc4;
  padding: 10px 0;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
}

.spec-row span:last-child {
  font-weight: 400;
  color: #333333c6;
  margin-right: 50px;
}

/* Цена */
.product-price {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
}

.product-price span {
  color: var(--accent-blue);
  font-size: 24px;
}

/* Кнопки */
.btn-detail,
.btn-cart {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0px 4px 10px rgba(34, 95, 114, 0.22);
}

.btn-detail {
  background: #f29020;
  color: #fff;
  border: 2px solid #f29020;
  margin-bottom: 10px;
}

.btn-detail:hover {
  box-shadow: none;
  color: #fff;
  text-decoration: none;
}

.btn-cart {
  background: #f29020;
  color: #fff;
  border: 2px solid #f29020;
}

.btn-cart:hover {
  box-shadow: none;
  color: #fff;
  text-decoration: none;
}

.btn-turnkey {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #f29020;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-turnkey:hover {
  color: #d97d10;
  text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────── */


/* ═══════════════════════════════════════════════════════
   CERTIFICATES SECTION — certificates.css
═══════════════════════════════════════════════════════ */

#certificates {
  background: #fff;
}

/* ── Свайпер ─────────────────────────────────────────── */
.certificates-swiper {
  width: 100%;
  overflow: hidden;
  height: auto;
}

/* ── Карточка сертификата ───────────────────────────── */
.cert-card {
  background: #fff;
  border: 1.5px solid #e2eaf0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-card a {
  width: 100%;
  display: block;
}

.cert-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── Responsive ─────────────────────────────────────── */

.btn {
  /* padding: 17px 26px; */
  font-size: 16px;
  /* line-height: 20px; */
  font-weight: bold;
}
.btn-default-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--main-color) !important;
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
  background-color: var(--main-color);
  height: 55px !important;
  padding: 0 20px;
  font-weight: bold;
}
.btn-default-yellow:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #fff;
  height: 150px;
  width: 200px;

  border-radius: 50%;
}

.btn-default-yellow:hover {
  color: #333;
  background-color: var(--main-color);
}

.btn-default-yellow:before {
  top: 100%;
  left: 100%;
  transition: all 0.9s;
}

.btn-default-yellow:hover:before {
  top: -30px;
  left: -30px;
}

.btn-default-yellow:active:before {
  background: var(--main-color);
  transition: background 0.7s;
}

.press-card {
  position: relative;
  z-index: 0;
  display: block;
  min-height: 330px;
  height: auto;
}

.press-card {
  border: 1px solid #e9e9e9;
  overflow: hidden;
  transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.press-card:hover {
  border-color: rgba(0, 0, 0, 0);
}

.press-card:hover .press-card__hover {
  transform: none;
}

.press-card:hover .press-card__title,
.press-card:hover .press-card__desc,
.press-card:hover .press-card__text {
  color: #fff !important;
}

.press-card:hover .press-card__wrapper {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.press-card__hover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateY(110%);
  display: flex;
  align-items: flex-end;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.press-card__hover::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.619) 100%);

  opacity: 0;
  transition: 0.5s;
}
.press-card:hover .press-card__hover::after {
  opacity: 1;
}
.press-card:hover .press-card__hover {
  transform: translateY(0);
}

.press-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-card__container {
  padding: 1.25rem;
}

.press-card__title {
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--blue3);
}

.press-card__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #5a5a5a;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.press-card:hover .press-card__desc {
  color: #fff;
}

.press-card__wrapper {
  padding: 0.625rem 1.25rem;
}

.press-card__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e9e9e9;
  transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.press-card__date {
  display: flex;
}

.press-card__date {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.press-card__text {
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
}

.services_section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.services_section-grid .main-page__card {
  display: flex;
}

.services_section .press-card__title {
  color: #333;
}

.services_section .press-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

.services_section .press-card__hover {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  height: 200px;
  min-height: 200px;
  width: 100%;
  transform: none !important;
  z-index: 0;
  flex-shrink: 0;
}

.services_section .press-card__hover::after {
  display: none;
}

.services_section .press-card:hover .press-card__hover {
  transform: none !important;
}

.services_section .press-card:hover .press-card__hover::after {
  opacity: 0;
}

.services_section .press-card__content {
  flex: 1;
  background: #fff;
}

.services_section .press-card:hover .press-card__title {
  color: #333 !important;
}

.services_section .press-card:hover .press-card__desc {
  color: #5a5a5a !important;
}

.services_section .press-card:hover .press-card__text {
  color: #f29020 !important;
}

.services_section .press-card:hover {
  border-color: #e9e9e9;
}

.services_section .press-card:hover .press-card__wrapper {
  border-color: #e9e9e9;
}

.bg1 {
  background-image: url("https://aquagid59.ru/wp-content/uploads/2025/05/image_1768505128526401-1024x572.png");
}
.bg2 {
  background-image: url("https://static.tildacdn.com/tild3332-3231-4865-a566-306263623464/ChatGPT_Image_7__202.png");
}
.bg3 {
  background-image: url("https://avatars.mds.yandex.net/i?id=5a044c34d2da2ca6eb6744c18e2ca37a_l-4910248-images-thumbs&n=13");
}
.bg4 {
  background-image: url("https://eurolos.ru/assets/templates/main/images/steps/reliable_pumps_and_compressors.jpg");
}
.bg5 {
  background-image: url("https://avatars.mds.yandex.net/i?id=f0947076dca94144987fd74dc5f0bd0dd4558c3a-5876635-images-thumbs&n=13");
}

.info .container,
.info2 .container {
  display: flex;
  flex-direction: row;
  padding: 0;
  width: 100%;
  overflow: hidden;
  padding-right: 0 !important;
  background: #f0f0f0;
  border-radius: 40px;
  box-shadow: rgba(34, 95, 114, 0.22) 0px 4px 10px;
}
.info-texts {
  width: 59%;
  margin: 55px 44px 38px 45px;
  font-style: normal;
}
.info-texts h2 {
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.info-texts p {
  padding-top: 15px;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}
.info-texts span {
  font-weight: bold;
}
.info img,
.info2 img {
  width: 41%;
  object-fit: cover;
}
:root {
  --color-ivuap3whn: 255, 255, 255;
  --color-ihtfep74x: 0, 0, 0;
  --color-igso2bjes: 0, 0, 0;
}
.advantages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 30px;
  margin-top: 0;
  justify-content: center;
}

.advantages .section-title {
  margin-bottom: 24px !important;
}
.advantages-cards .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantages-cards .card-img img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 0;
  height: 200px;
  object-fit: cover;
  display: block;
}
.advantages-cards .card-img {
  width: 100%;
  height: 200px;
  position: relative;
  margin-bottom: 25px;
}
.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.advantages-cards p {
  font-size: 16px;
  line-height: 1.55;
  color: #666;
  margin-bottom: 30px;
}
.advantages a {
  text-transform: uppercase;
  background-color: var(--main-color);
  color: #333;
  border-color: var(--main-color) !important;
  font-size: 16px;
  width: fit-content;
}
.faq-logo {
  max-width: 80%;
}

h2 {
  font-weight: 600;
}

#faq h2 {
  margin-top: 0;
}

.resources .f66 {
  position: relative;
}

/* #faq h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px
} */

.flex {
  display: flex;
  gap: 30px;
}

.resources .f33 {
  padding-right: 0.75rem;
}

.f33 {
  flex: 1 1 33.33333%;
  width: 33.33333%;
  max-width: 33.33333%;
}

.resources-desc {
  padding: 1.5rem;
  font-size: 24xp;
  text-align: center;
  line-height: 1.2;
  background-color: #f5f5f5;
  border-radius: 20px;
}

.resources-desc .desc {
  margin-block: 20px;
  letter-spacing: -0.72px;
}

.faq-right {
  /* flex: 0 0 60%; */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 12px; */
  max-height: 350px;
  overflow-y: auto;
  padding: 0 30px 0 0;
}

.faq-item {
  transition: all 0.4s ease;
  overflow: hidden;
  margin-bottom: 20px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 50px;
  background: #f6f6f6;
}

.faq-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: #121212;

  margin: 0;
  transition: color 0.3s ease;
}

.faq-arrow {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 0 24px;
  transform: translateY(-5px);
  transition: all 0.6s ease;
}

.faq-content p {
  font-size: 18px;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 18px 0;
  font-family: "Play", sans-serif;
}

.faq-item.active .faq-header h3 {
  color: var(--main-color);
  /* question turns red */
}

.faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  background: #fff;
  /* only answer is white */
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

/* Hover animation */
.faq-item:hover .faq-arrow {
  transform: rotate(45deg);
}

.faq-header:hover h3 {
  color: var(--main-color);
}

.f66 {
  flex: 1 1 66.66666%;
  width: 66.66666%;
}

#faq .btn-default-yellow {
  width: fit-content;
  margin: auto;
  color: #333;
  font-weight: bold;
}
:root {
  --footer-color-bg: #121f28;
  --footer-color-font: #767e93;
  --radius: 2.5rem;
  --radius-sm: 1.875rem;
  --radius-lg: 3.75rem;
}

.footer-nav__item::marker {
  content: "";
}







a {
  text-decoration: none;
}
/* ═══════════════════════════════════════════════════════
   SERVICES-FAQ — rəng uyğunlaşdırması (LosSnab #f29020)
   Struktura toxunulmur, yalnız rənglər
═══════════════════════════════════════════════════════ */

/* Services link color */
.press-card__text {
  color: #f29020;
}

/* Hover zamanı "Подробнее" ağ qalır */
.press-card:hover .press-card__text {
  color: #fff !important;
}

/* Info mətn accent rəngi */
.info-texts span {
  color: #f29020;
}

/* Info2 mətn accent */
.info2 .info-texts span {
  color: #f29020;
}

/* Advantages düymə */
.advantages a.btn-default-yellow {
  background-color: #f29020;
  border-color: #f29020 !important;
  color: #fff;
}

.advantages a.btn-default-yellow:hover {
  color: #333;
}

/* FAQ active başlıq rəngi */
.faq-item.active .faq-header h3,
.faq-header:hover h3 {
  color: #f29020;
}

/* FAQ "Оставить заявку" düymə */
#faq .btn-default-yellow {
  background-color: var(--main-color);
  border-color: var(--main-color) !important;
  color: #fff;
}

/* Section başlıqları */

main > section {
  padding: var(--section-spacing) 0;
}

main > section.banner-section {
  padding-top: 0;
}
/* ═══════════════════════════════════════════════════════
   ONFOOTER SECTION — onfooter.css
═══════════════════════════════════════════════════════ */

#onfooter {
  background: #fff;
}

/* ── Böyük rounded kart ─────────────────────────────── */
.onfooter-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

/* Arxa fon şəkli — bannerbackg.png */
.onfooter-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/onfooterbg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Kontent üstdə */
.onfooter-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 56px;
  gap: 40px;
}

/* ── Sol tərəf ──────────────────────────────────────── */
.onfooter-left {
  flex: 1 1 auto;
}

.onfooter-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.32;
  margin: 0 0 20px;
}

.onfooter-sub {
  font-size: 0.97rem;
  margin: 0 0 18px;
  font-weight: 500;
}

/* Checkbox siyahısı */
.onfooter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onfooter-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.onfooter-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.onfooter-check svg {
  width: 14px;
  height: 14px;
}

/* Kontaktlar sıra */
.onfooter-contacts {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.onfooter-messenger p,
.onfooter-phone p {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 13px;
}

/* Telegram düyməsi */
.onfooter-tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--main-color);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.onfooter-tg-btn:hover {
  background: var(--main-hover);
  color: #fff;
  text-decoration: none;
}

.onfooter-tg-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Telefon */
.onfooter-phone-num {
  font-size: 32px;
  font-weight: 700;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.onfooter-phone-num:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* ── Sağ tərəf: form ────────────────────────────────── */
.onfooter-right {
  flex: 0 0 auto;
  width: 360px;
}

.onfooter-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(150, 89, 13, 0.15);
}

.onfooter-form-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 24px;
}

/* Form sahələri */
.onfooter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.onfooter-field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-700);
}

.onfooter-field input {
  height: 50px;
  border: 1.5px solid #f2d7b7;
  border-radius: 50px;
  padding: 0 18px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  color: var(--brand-900);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  width: 100%;
}

.onfooter-field input::placeholder {
  color: #caa47a;
}

.onfooter-field input:focus {
  border-color: var(--main-color);
}

/* Göndər düyməsi */
.onfooter-submit {
  width: 100%;
  height: 54px;
  background: #f29020;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 8px 0 14px;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

.onfooter-submit:hover {
  background: #d97d10;
}

/* Razılıq checkbox */
.onfooter-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.onfooter-agree input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #f29020;
  cursor: pointer;
}

.onfooter-agree label {
  font-size: 0.78rem;
  color: #6a7a8a;
  line-height: 1.5;
  cursor: pointer;
}

.onfooter-agree label a {
  color: #6a7a8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.onfooter-agree label a:hover {
  color: #f29020;
}

/* ── Responsive ─────────────────────────────────────── */






/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

@supports (padding: max(0px)) {
}



@font-face {
  font-family: "Inter";
  font-display: fallback;
  src:
    url("../fonts/Inter-Regular.woff") format("woff"),
    url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: fallback;
  src:
    url("../fonts/Inter-Medium.woff") format("woff"),
    url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: fallback;
  src:
    url("../fonts/Inter-SemiBold.woff") format("woff"),
    url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  font-display: fallback;
  src: url("../fonts/Geometria.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  font-display: fallback;
  src: url("../fonts/Geometria-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  font-display: fallback;
  src: url("../fonts/Geometria-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  background-color: #fff;
}

svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.accept-control input:not(:checked) + .checkbox-punson:after {
  display: none !important;
}

.si-facts {
  position: relative;
  padding-top: 160px;
  background: #fff;
  padding-bottom: 60px;
  overflow: hidden;
}

.si-facts:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: #496b02;
}

.si-facts-i1 {
  position: absolute;
  position: absolute;
  left: -302px;
  bottom: -299px;
}

.si-facts-i2 {
  position: absolute;
  right: -280px;
  bottom: 0;
  z-index: 1;
}

.si-facts .container {
  position: relative;
  z-index: 1;
}

.si-facts-head {
  font-family: "Geometria", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 60px;
  line-height: 1.4;
  text-align: center;
}

.grid-facts {

  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.item-fact {
  position: relative;
  text-align: center;
}

.item-fact-media {
  position: relative;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.item-fact-check {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 13px;
  background: #fff;
  stroke: #496b01;
}

.item-fact-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.item-fact-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-fact-body {
  margin-top: 20px;
}

.item-fact-name {
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
}











[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: ButtonText dotted 1px
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

@supports (padding:max(0px)) {
}





@font-face {
    font-family: 'Inter';
    font-display: fallback;
    src:
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Inter';
    font-display: fallback;
    src:
        url('../fonts/Inter-Medium.woff') format('woff'),
        url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'Inter';
    font-display: fallback;
    src:
        url('../fonts/Inter-SemiBold.woff') format('woff'),
        url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'Geometria';
    font-display: fallback;
    src:
        url('../fonts/Geometria.woff') format('woff');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Geometria';
    font-display: fallback;
    src:
        url('../fonts/Geometria-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'Geometria';
    font-display: fallback;
    src:
        url('../fonts/Geometria-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    background-color: #fff;
}



svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none !important;
}

input[ name="MESSAGE"] {
    background: transparent;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

[data-fancybox] {
    outline: none;
}

.form-input {
    width: 100%;
    padding: 15px 25px 15px 55px;
    border: 1px solid #767676;
    outline: none;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    border-radius: 5px;
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-position: 25px 50%;
}

[name="FIO"] {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1Ljk5MDEgMTUuNTg1OUwxNS41OTAxIDEzLjk4NTlDMTUuNDAwMyAxMy4yMDk4IDE0LjgyNDkgMTIuNTg1NSAxNC4wNjY3IDEyLjMzMzNMMTEuMTMzMiAxMS4zNTZDMTAuNDE3OSAxMS4wNTggMTAuMDkwNiA5LjkwNTk2IDEwLjAxOTkgOS40Njg2MkMxMC41NjQ5IDkuMDE1MzcgMTAuOTE1NyA4LjM3MDUgMTAuOTk5OSA3LjY2NjYzQzEwLjk4NzkgNy41NDY0MSAxMS4wMTYyIDcuNDI1NiAxMS4wODA2IDcuMzIzMjhDMTEuMTg0NSA3LjI5NzI1IDExLjI2OTYgNy4yMjI4MiAxMS4zMDkyIDcuMTIzMjhDMTEuNTAxMiA2LjY1ODU0IDExLjYyMTYgNi4xNjc0MSAxMS42NjY2IDUuNjY2NjNDMTEuNjY2NyA1LjYzOTQyIDExLjY2MzMgNS42MTIzMiAxMS42NTY2IDUuNTg1OThDMTEuNjA4OCA1LjM5MTM4IDExLjQ5NDQgNS4yMTk2NyAxMS4zMzMyIDUuMTAwNjRWMy4zMzMzQzExLjMzMzIgMi4yNTkzIDExLjAwNTIgMS44MTg2NSAxMC42NTk5IDEuNTYzMzFDMTAuNTkzOSAxLjA0NiAxMC4wMzk5IDAgNy45OTk4NSAwQzYuMTg5ODkgMC4wNzI4NzQ3IDQuNzM5MjkgMS41MjM0MyA0LjY2NjQxIDMuMzMzMzNWNS4xMDA2N0M0LjUwNTIyIDUuMjE5NyA0LjM5MDgxIDUuMzkxNDIgNC4zNDMwNiA1LjU4NjAxQzQuMzM2MzEgNS42MTIzNSA0LjMzMjk3IDUuNjM5NDggNC4zMzMwNiA1LjY2NjY3QzQuMzc3OTQgNi4xNjc2OSA0LjQ5ODQxIDYuNjU5MDQgNC42OTA0MiA3LjEyNEM0LjcxOTI5IDcuMjE4MjIgNC43OTUwMSA3LjI5MDY5IDQuODkwNDIgNy4zMTUzNUM0LjkyNzc3IDcuMzM0IDQuOTk3NzcgNy40MzA2OSA0Ljk5Nzc3IDcuNjY2NjlDNS4wODI0OSA4LjM3MjU2IDUuNDM1MjUgOS4wMTg5IDUuOTgzMTQgOS40NzIwMkM1LjkxMzE0IDkuOTA4NjggNS41ODc3OCAxMS4wNiA0Ljg5MjQ1IDExLjM1MDdMMS45MzMwMyAxMi4zMzMzQzEuMTc1NDEgMTIuNTg1NSAwLjYwMDM5OSAxMy4yMDkxIDAuNDEwMzMyIDEzLjk4NDdMMC4wMTAzMjExIDE1LjU4NDdDLTAuMDM0OTYxMyAxNS43NjMxIDAuMDcyOTc5MSAxNS45NDQ1IDAuMjUxNDIxIDE1Ljk4OTdDMC4yNzgwNzggMTUuOTk2NSAwLjMwNTQ4NSAxNiAwLjMzMjk4NiAxNkgxNS42NjY3QzE1Ljg1MDggMTUuOTk5OSAxNiAxNS44NTA3IDE2IDE1LjY2NjZDMTYgMTUuNjM5MyAxNS45OTY2IDE1LjYxMjMgMTUuOTkwMSAxNS41ODU5WiIgZmlsbD0iI0IwQjBCMCIvPgo8L3N2Zz4K");
}

[name="PHONE"] {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjk1NjkgOC41MzMwMUMxMS4xNjEgOC41MzMwMSAxMC4zNzk1IDguNDA4NTMgOS42Mzg5MiA4LjE2MzhDOS4yNzYwNCA4LjA0MDAzIDguODI5OTUgOC4xNTM1NyA4LjYwODQ3IDguMzgxMDRMNy4xNDY3NSA5LjQ4NDQ4QzUuNDUxNTcgOC41Nzk1OSA0LjQwNzM3IDcuNTM1NzMgMy41MTQ4NCA1Ljg1MzI4TDQuNTg1ODIgNC40Mjk2NUM0Ljg2NDA3IDQuMTUxNzcgNC45NjM4NyAzLjc0NTg2IDQuODQ0MjkgMy4zNjVDNC41OTg1MSAyLjYyMDU1IDQuNDczNjYgMS44Mzk0MyA0LjQ3MzY2IDEuMDQzMThDNC40NzM2OSAwLjQ2Nzk2NiA0LjAwNTczIDAgMy40MzA1NCAwSDEuMDQzMTVDMC40Njc5NjYgMCAwIDAuNDY3OTY2IDAgMS4wNDMxNUMwIDcuNjM2MjUgNS4zNjM3OSAxMyAxMS45NTY5IDEzQzEyLjUzMjEgMTMgMTMgMTIuNTMyIDEzIDExLjk1NjlWOS41NzYxM0MxMyA5LjAwMDk4IDEyLjUzMiA4LjUzMzAxIDExLjk1NjkgOC41MzMwMVoiIGZpbGw9IiNCMEIwQjAiLz4KPC9zdmc+Cg==");
}

.form-input:focus {
    border-color: #496B02 !important;
}

.b-input-group {
    position: relative;
}

.btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    background-color: transparent;
    outline: none;
    border: none;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.btn_theme1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 25px 0 35px;
    height: 68px;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: background .2s, color .2s, -webkit-box-shadow .2s;
    transition: background .2s, color .2s, -webkit-box-shadow .2s;
    -o-transition: background .2s, color .2s, box-shadow .2s;
    transition: background .2s, color .2s, box-shadow .2s;
    transition: background .2s, color .2s, box-shadow .2s, -webkit-box-shadow .2s;
}

.btn_theme1:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: #FF5050;
    -webkit-box-shadow: 0px 20px 50px rgba(255, 65, 65, 0.6);
    box-shadow: 0px 20px 50px rgba(255, 65, 65, 0.6);
    border-radius: 50px;
    -webkit-transition: -webkit-box-shadow .2s;
    transition: -webkit-box-shadow .2s;
    -o-transition: box-shadow .2s;
    transition: box-shadow .2s;
    transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.btn_theme1:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    height: 100%;
    background: -o-linear-gradient(286.05deg, #FC9A07 10.62%, #FF4141 88.83%);
    background: linear-gradient(163.95deg, #FC9A07 10.62%, #FF4141 88.83%);
    -webkit-box-shadow: inset 0px 0px 15px #FC8713;
    box-shadow: inset 0px 0px 15px #FC8713;
    border-radius: 50px;
    -webkit-transition: -webkit-box-shadow .2s;
    transition: -webkit-box-shadow .2s;
    -o-transition: box-shadow .2s;
    transition: box-shadow .2s;
    transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.btn_theme1:hover:before {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn_theme1:hover:after {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn_theme1 .btn-icon {
    font-size: 14px;
}

.btn_theme1 .btn-icon,
.btn_theme1 .btn-text {
    position: relative;
    z-index: 1;
}

.link {
    display: inline-block;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
    border-bottom: 1px solid;
    -webkit-transition: border .2s;
    -o-transition: border .2s;
    transition: border .2s;
}

.link:hover {
    border-bottom-color: transparent !important;
}

.link_st2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom-style: dashed;
}

.link_st2_theme1 {
    color: #0DAEE2;
}


.b-private {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.accept-control:hover {
    cursor: pointer !important;
}

.checkbox-punson {
    width: 13px;
    height: 13px;
    border: 1px solid #bbbbbb;
    border-radius: 38%;
    margin-right: 10px;
    position: absolute;
    top: 0px !important;
    left: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-punson:after {
    content: '';
    background: no-repeat center url('/promo/assets/templates/vendor/cookieconsent/check.svg') transparent !important;
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px !important;
}

.accept-control input:not(:checked) + .checkbox-punson:after {
    display: none !important;
}

.b-private a {
    border-bottom: 1px solid !important;
}

.accept-control {
    position: relative !important;
    width: 24px !important;
    height: 14px !important;
    flex: 0 0 24px !important;
}

.b-private-text {
    font-size: 10px;
    font-weight: 300;
    line-height: 1.6;
    color: #888;
    position: relative;
    top: -5px;
}

.b-private-text .link {
    color: inherit;
    border-bottom: none;
}



.b-progress {
    height: 18px;
    background: #fff;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
}

.b-progress-current {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 50px;
    background-color: #FC8E0E;
    background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 15px 15px;
    -webkit-animation: progress-bar 2s linear infinite;
    animation: progress-bar 2s linear infinite;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}

@-webkit-keyframes progress-bar {
    from {
        background-position: 0 0
    }

    to {
        background-position: 30px 0
    }
}

@keyframes progress-bar {
    from {
        background-position: 0 0
    }

    to {
        background-position: 30px 0
    }
}


.b-timer {
    font-family: 'Geometria', sans-serif;
    font-size: 34px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
}

.b-timer-col-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.si-quiz {
    position: relative;
    padding-top: 0;
    margin-top: 48px;
}

.si-quiz .container {
    position: relative;
    padding-top: 65px;
    max-width: 1120px;
}

.si-quiz-bg {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    width: 1500px;
    height: 740px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.si-quiz-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.si-quiz-bg:before {
    content: '';
    position: absolute;
    left: 25px;
    right: 25px;
    top: 25px;
    bottom: 25px;
    border: 1px solid rgba(228, 228, 228, .2);
    border-radius: 20px;
    z-index: 1;
}

.si-quiz-head {
    text-align: center;
    color: #fff;
}

.si-quiz-head-h {
    font-family: 'Geometria', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.3;
}

.si-quiz-head-sub-title {
    margin-top: 3px;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.5;
}

.si-quiz-head-timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 30px;
    margin-top: 40px;
    margin-bottom: 22px;
    background: #FFC658;
    border-radius: 5px;
    color: #000;
    text-align: left;
}

.si-quiz-head-timer-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    margin-right: 25px;
}

.si-quiz-head-timer-box {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.si-quiz-head-timer-box-t1 {
    margin-right: 13px;
    text-align: right;
    font-size: 13px;
    line-height: 1.3;
}

.b-quiz {
    position: relative;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s, visibility .2s;
    -o-transition: opacity .2s, visibility .2s;
    transition: opacity .2s, visibility .2s;
    background: #fff;
    -webkit-box-shadow: 0px 20px 50px rgba(0, 90, 167, 0.1);
    box-shadow: 0px 20px 50px rgba(0, 90, 167, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.b-quiz.is-init {
    opacity: 1;
    visibility: visible;
}

.b-quiz-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 710px;
}

.b-quiz-columns-c1 {
    width: 50%;
    padding: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.b-quiz-columns-c2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 60px;
    background: #EEF2F3;
}

.b-quiz-head {
    margin-bottom: 30px;
}

.b-quiz-head-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    color: #797979;
}

.b-quiz-head-progress .b-progress {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.b-quiz-head-progress-t1 {
    margin-right: 10px;
}

.b-quiz-head-progress-t2 {
    display: none;
}

.b-quiz-step.hidden {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    pointer-events: none;
    z-index: -1;
}

.b-quiz-step.current {
    opacity: 1;
    visibility: visible;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}

.b-quiz-step-h1 {
    margin-bottom: 25px;
    font-family: 'Geometria', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
}

.b-quiz-step-item+.b-quiz-step-item {
    margin-top: 18px;
}

.b-quiz-answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 52px;
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 5px;
    cursor: pointer;
    padding: 13px 20px;
    -webkit-transition: border .2s;
    -o-transition: border .2s;
    transition: border .2s;
}

.b-quiz-answer:hover {
    border-color: #496B02;
}

.b-quiz-answer-check {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    font-size: 20px;
    -webkit-transition: border .2s, background .2s;
    -o-transition: border .2s, background .2s;
    transition: border .2s, background .2s;
}

.b-quiz-answer:hover .b-quiz-answer-check {
    background: #496B02;
    border-color: #496B02;
}

.b-quiz-answer-check .icon {
    font-size: 11px;
    stroke: #fff;
    top: -2px;
    right: -2px;
    stroke-width: 4px;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}

.b-quiz-answer:hover .b-quiz-answer-check .icon {
    opacity: 1;
}

.b-quiz-answer-input {
    position: absolute;
    top: 0;
    left: -9999px;
    visibility: hidden;
}

.b-quiz-answer-body {
    display: block;
}

.b-quiz-answer-name {
    font-size: 17px;
    font-weight: 500;
}

.b-quiz-control {
    margin-top: 30px;
}

.b-quiz-control-btn {
    width: 285px;
}

.b-quiz-variant {
    position: relative;
}

.b-quiz-variant .p2 {
    display: none;
}

.b-quiz-variant-media {
    position: relative;
}

.b-quiz-variant-media .img {
    border-radius: 5px;
    overflow: hidden;
}

.b-quiz-variant-media .m1 {
    position: absolute;
    right: -30px;
    bottom: 0;
}

.b-quiz-variant-body {
    position: absolute;
    left: 20px;
    bottom: 25px;
    z-index: 1;
}

.b-quiz-variant-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 20px;
    background: #fff;
}

.b-quiz-variant-text {
    width: 260px;
    margin-top: -25px;
    position: relative;
    padding: 15px 10px 15px 20px;
    font-size: 15px;
    line-height: 1.5;
}

.b-quiz-variant-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 5px;
    z-index: -1;
}

.b-quiz-variant-text span {
    position: relative;
}

.b-quiz-manager-r1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.b-quiz-manager-media {
    position: relative;
    margin-right: 24px;
    margin-top: 5px;
    width: 46px;
    height: 40px;
    border-radius: 5px;
    background: #fff;
}

.b-quiz-manager-media img {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.b-quiz-manager-body {
    width: calc(100% - 70px);
    font-size: 15px;
    line-height: 1.5;
}

.b-quiz-manager-action {
    margin-top: 16px;
}

.b-quiz-finish-t2 {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.5;
}

.b-quiz-finish .st {
    color: #496B01;
    font-weight: 700;
}

.b-quiz-finish-form {
    margin-top: 22px;
    max-width: 330px;
}

.b-quiz-finish-form-r {
    margin-top: 10px;
}

.b-quiz-finish-btn-submit {
    width: 100%;
}

.b-quiz-finish-form-r-submit {
    margin-top: 20px;
}

.b-quiz-finish-form-r-private {
    margin-top: 20px;
}










.b-quiz-answer-check svg path{
  fill: #fff !important;
}
/* ═══════════════════════════════════════════════════════
   ENGINEER SECTION — engineer.css
═══════════════════════════════════════════════════════ */

#engineer {
  padding: 60px 0 ;
  position: relative;
  overflow: hidden;
}


.eng-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: #1b2a1b;
  line-height: 1.55;
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.eng-title strong {
  font-weight: 800;
  color: #1b2a1b;
}

.eng-body {
  display: grid;
  grid-template-columns: 0.8fr 540px 1fr;
  align-items: center;
  justify-content: center;
}

.eng-left {
  padding-right: 20px;
}

.eng-left-title {
  font-size:18px;
  font-weight: 400;
  color: #2a3a2a;
  line-height: 1.6;
  margin-bottom: 24px;
}

.eng-left-title strong {
  font-weight: 700;
}

.eng-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eng-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: #2a3a2a;
  line-height: 1.55;
}

.eng-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f29020;
}

.eng-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.eng-photo {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
  /* Soluk arxa fon üzərindən çıxsın deyə kölgə yox */
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
}

/* ── Sağ: kart ──────────────────────────────────────── */
.eng-right {
  padding-left: 20px;
}

.eng-card {
  border: 2px solid #6ab04c;
  border-radius: 12px;
  padding: 9px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eng-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1b2a1b;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: left;
  border: 1px solid #343434a0;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}

.eng-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eng-card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: #2a3a2a;
  line-height: 1.55;
}

.eng-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6ab04c;
}

/* Düymə */
.eng-btn {
  display: block;
  width: 100%;
  background: #6ab04c;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  padding: 16px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  box-sizing: border-box;
  text-transform: uppercase;
}

.eng-btn:hover {
  background: #559040;
  color: #fff;
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────── */





.footer {
    --footer-color-delimiter: #ebebeb;
    background-color: var(--footer-color-bg);
    color: var(--footer-color-font);
    position: relative;
    z-index: 99;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 0 var(--offset-side)
}

.jeywalogo img{
    max-width: 200px !important;
    object-fit: cover;
}
.footer__main {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    padding: 2.5rem 0
}

.footer__text {
    font-size: 17px;
    line-height: 24px;
    margin: 0
}

.footer__text:not(:last-child) {
    margin-bottom: 2.5rem
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .9375rem
}

.footer__phone {
    --footer-color-font: white;
    font: 2rem/1 var(--font);
    letter-spacing: -.02em;
    white-space: nowrap
}

.footer__email {
    --footer-color-font: #fff
}



.footer__nav {
    display: flex;
    gap: 5rem
}



.footer-nav__title {
    --footer-color-font: white;
    display: inline-block;
    font: 1.25rem/1 var(--font);
    letter-spacing: .01em;
    margin-bottom: 1.25rem;
    -webkit-user-select: none;
    user-select: none
}

.footer-nav__list {
    padding: 0;
    margin: 0
}

.footer-nav__item {
    text-indent: 0
}

.footer-nav__item::marker {
    content: ""
}

.footer-nav__item:not(:last-child) {
    margin-bottom: .9375rem
}

.footer-nav__link {
    font: 1.125rem/1 var(--font);
    letter-spacing: -.02em;
    -webkit-user-select: none;
    user-select: none
}


.footer__other {
    font: .9375rem/1.4 var(--font);
    -webkit-user-select: none;
    user-select: none;
    padding: 2.5rem 0
}

.footer__other:not(:first-child) {
    border-top: 1px solid #2A353E
}

.footer a {
    color: var(--footer-color-font);
    text-decoration: none;
    transition: color var(--transition-time)
}

.footer a:hover {
    color: #fff
}
.footer__main {
        padding: 3.125rem 0
    }
    .footer__other {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 3.4375rem;
        padding-bottom: 3.4375rem
    }
     .turned {
    background-color: transparent;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  }

@media (min-width: 992px) {
.header-logo .logoNew {
    height: 132px;
    max-height: 132px;
    width: auto;
    object-fit: contain;
  }

.header {
    min-height: 148px;
  }
  .header-inner {
    min-height: 132px;
  }



.d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }



.d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }

.text-area {
    padding: 45px;
    left: -50px;
  }

 

.footer__main {
        flex-direction: row;
        padding: 5rem 0;
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
  .about-home__left,.about-home__img{
  display: none !important;
}
#about-home .row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
}
.header {
    min-height: unset;
  }
  .ts {
    margin-right: 0;
  }
  .fa-search {
    margin-left: 0;
  }
  .topsearch {
    top: 8px;
  }

  .header .phone_block a.h3 {
    color: var(--main-color) !important;
  }
  .header .phone_block a.text-success {
    color: var(--main-color) !important;
  }
  .header .phone_block svg path {
    fill: var(--main-color) !important;
  }


.header {
    height: initial !important;
    padding-top: 0 !important;
  }

  .header-inner {
    align-items: center;
  }

  .header-inner > .d-lg-none {
    margin-left: auto;
  }

  .ts {
    margin-right: 0;
  }
  .fa-search {
    margin-left: 0;
  }
  .topsearch {
    top: 8px;
  }

.section-title {
    font-size: 24px;
  }
  .info-texts h2 {
    font-size: 20px;
  }
  .info-texts p {
    padding-top: 0;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .flex {
    display: flex;
    gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .f33 {
    width: 100%;
    max-width: 100%;
  }
  .f66 {
    width: 100%;
    max-width: 100%;
  }
  .btn-default-yellow {
    margin: 0;
  }

.footer__text{
        font-size: 15px;
    }
}


@media (min-width: 768px) and (max-width: 992px) {
.topsearch {
    top: 8px;
  }

  .topsearch {
    top: 8px;
  }
}



@media (min-width: 768px) {


.d-md-block {
    display: block !important;
  }



.d-md-block {
    display: block !important;
  }

.section-title h3 {
    font-size: 40px;
  }

  .about-home__media {
    height: 400px;
    border-radius: 40px;
  }
}


@media (max-width: 1024px) {
.banner-title {
    font-size: 2.1rem;
  }
  .banner-img {
    max-width: 420px;
  }
  .hero-nav {
    display: none;
  }
.banner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 242px;}
.onfooter-content {
    padding: 48px 36px;
    gap: 36px;
  }
  .onfooter-title {
    font-size: 1.8rem;
  }
  .onfooter-right {
    width: 320px;
  }
}
html {
    scroll-behavior: smooth;
  }
@media (max-width: 768px) {
  .onfooter-content{
    align-items: flex-start;
  }
    .advantages-cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .info img{
    height: 350px;
  }
  .info .container , .info2 .container{
    padding: 0 10px !important;
  }
      .services_section-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
  .cert-card img{
    height: 100%
  }
  .spec-row span:last-child{
    margin-right: 0 !important;
  }
  .product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bran-900);
    margin: 0 0 8px;
    line-height: 1.35;
}
  .phone-mini{
  display: none !important;
}
.banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 32px;
  }
  .banner-desc{
    max-width: 500px;
  }
  .banner-left {
    max-width: 100%;
  }
  .banner-title {
    font-size: 1.75rem;
  }
  .banner-right {
    width: 100%;
    justify-content: center;
  }
  .banner-img {
    max-width: 100%;
  }
  .banner-cards {
    grid-template-columns: repeat(2, 1fr);
  }

#hero_slider .swiper-slide::nth-child(4) {
    background: url("https://caspian-energy.az/uploads/posts/2024-05/1714552285_slider-2.webp")
      center/cover;
  }

.product-img {
    height: 160px;
  }
  .product-img img {
    height: 160px;
  }

.services_section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantages-cards {
    grid-template-columns: 1fr;
  }
  .btn,
  .btn-default-yellow {
    font-size: 14px !important;
  }
  .section-title {
    font-size: 20px;
  }
  .info .container,
  .info2 .container {
    flex-direction: column;
  }
  .info-texts,
  .info img,
  .info2 img {
    width: 100%;
  }
  .info-texts {
    margin: 40px 0px 10px 10px;
  }
  .info-texts h2 {
    font-size: 20px !important;
  }
  .info-texts p {
    padding-top: 0;
    font-size: 12px;
    max-width: 90%;
    margin-bottom: 10px;
  }
  .faq-header h3 {
    font-size: 14px;
  }
  .faq-right {
    padding: 0 10px 0 0;
  }
  .faq-content p {
    font-size: 14px;
  }
  .press-card:hover .press-card__hover {
    transform: translateY(0) !important;
  }

  .press-card .press-card__hover {
    transform: translateY(0) !important;
  }

  .press-card .press-card__hover::after {
    opacity: 1 !important;
  }

  .press-card__title,
  .press-card__desc,
  .press-card__text {
    color: #fff !important;
  }

  .press-card__wrapper {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  .services_section .press-card__hover {
    height: 180px;
    min-height: 180px;
    transform: none !important;
  }

  .services_section .press-card .press-card__hover::after {
    display: none !important;
    opacity: 0 !important;
  }

  .services_section .press-card__title {
    color: #333 !important;
  }

  .services_section .press-card__desc {
    color: #5a5a5a !important;
  }

  .services_section .press-card__text {
    color: #f29020 !important;
  }

  .services_section .press-card__wrapper {
    border-color: #e9e9e9 !important;
  }

:root {
    --section-spacing: 40px;
  }

  #about-home .container-main {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .onfooter-content {
    flex-direction: column;
    padding: 36px 24px;
    gap: 32px;
  }
  .onfooter-left {
    max-width: 100%;
  }
  .onfooter-right {
    width: 100%;
  }
  .onfooter-title {
    font-size: 1.6rem;
  }
  .onfooter-contacts {
    gap: 24px;
  }
  .onfooter-phone-num {
    font-size: 1.25rem;
  }

.footer__main {
    display: flex;
    flex-direction: column;
gap: 20px;}
    .footer__other{
        flex-direction: column;
        gap: 20px;
        align-items:center;
        justify-content: center;
    }
    .footer__other{
        padding: 20px 0;
    }
}


@media (max-width: 1200px) {
  .onfooter-phone{
    display: none !important;
  }
    .advantages-cards {
    grid-template-columns: repeat(2, 1fr);
  }
.services_section-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .btn,
  .btn-default-yellow {
    font-size: 14px !important;
  }
  .section-title {
    font-size: 30px;
  }
  .press-card__title {
    font-size: 30px;
  }
  .info-texts h2 {
    font-size: 23px;
  }
  .info-texts p {
    padding-top: 0;
    font-size: 14px;
  }
  .advantages-cards .card-img img {
    height: 170px;
  }
  .faq-header h3 {
    font-size: 17px;
  }
  .faq-content {
    font-size: 16px;
  }
  .desc {
    font-size: 14px;
  }


  .item-fact-name {
    font-size: 16px;
  }

  .si-facts-i1,
  .si-facts-i2 {
    display: none;
  }

    .si-quiz-head-h {
        font-size: 40px;
    }

    .si-quiz-head-sub-title {
        margin-top: 10px;
        font-size: 17px;
    }

    .b-quiz-columns {
        min-height: 560px;
    }

    .b-quiz-columns-c1,
    .b-quiz-columns-c2 {
        padding: 40px;
    }

    .b-quiz-variant-media .m1 {
        max-width: 270px;
    }

    .b-quiz-step-h1 {
        font-size: 26px;
    }
}



@media only screen and (max-width: 1400px) {

  .si-facts-i2 {
    z-index: 0;
  }



    .si-quiz-bg {
        width: calc(100% - 30px);
    }

    .si-quiz-head-h {
        font-size: 50px;
    }

    .b-quiz-columns {
        min-height: 600px;
    }

    .b-quiz-columns-c1,
    .b-quiz-columns-c2 {
        padding: 50px;
    }

    .b-quiz-head {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 960px) {

  .si-facts {
    background: #496b02;
    height: auto;
    padding-top: 140px;
    padding-bottom: 130px;
  }

  .si-facts:before {
    display: none;
  }

  .si-facts-head {
    margin-bottom: 40px;
  }

  .grid-facts {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -40px;
  }

  .grid-facts-item {
    width: 33.33%;
    margin-top: 40px;
  }


    .si-quiz {
        margin-top: 32px;
    }

    .si-quiz .container {
        padding-top: 55px;
    }

    .si-quiz-bg:before {
        display: none;
    }

    .si-quiz-head-h {
        font-size: 36px;
    }

    .b-quiz-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 0;
    }

    .b-quiz-columns-c1 {
        width: 100%;
    }

    .b-quiz-columns-c2 {
        display: none;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
    }

    .b-quiz-variant {
        position: relative;
        max-width: 460px;
    }

    .b-quiz-manager {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 760px) {

  .si-facts-head {
    font-size: 20px;
  }

  .grid-facts-item {
    width: 40%;
  }

  .item-fact-name {
    font-size: 17px;
  }


    .si-quiz-head-h {
        font-size: 22px;
    }

    .si-quiz-head-sub-title {
        margin-top: 10px;
        font-size: 17px;
        padding: 0 10px;
    }

    .si-quiz-head-timer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 30px;
        margin-top: 30px;
        margin-bottom: 0;
        text-align: center;
        border-radius: 5px 5px 0 0;
    }

    .si-quiz-head-timer-text {
        margin-right: 0;
    }

    .si-quiz-head-timer-box {
        margin-top: 16px;
    }

    .si-quiz-bg {
        height: 500px;
    }

    .b-quiz {
        border-radius: 0 0 5px 5px;
    }

    .b-quiz-head {
        margin-bottom: 20px;
    }

    .b-quiz-head-progress {
        display: block;
        text-align: center;
    }

    .b-quiz-head-progress .b-progress {
        max-width: 240px;
        margin: auto;
    }

    .b-quiz-head-progress-t1 {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .b-quiz-step-h1 {
        font-size: 22px;
        text-align: center;
    }

    .b-quiz-columns-c1 {
        padding: 40px 40px 70px;
    }

    .b-quiz-control-btn {
        width: 100%;
    }

    .b-quiz-step-finish .b-quiz-step-h1 {
        margin-bottom: 10px;
    }

    .b-quiz-finish-t2 {
        margin-top: 0;
        font-size: 17px;
        text-align: center;
    }

    .b-quiz-finish-form {
        max-width: 100%;
    }
}

@media only screen and (max-width: 500px) {

    .si-quiz-bg {
        width: calc(100% - 20px);
    }

    .b-quiz-columns-c1 {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 1100px) {
.eng-center { width: 300px; }
  .eng-photo  { width: 300px; }
  .eng-title  { font-size: 1.25rem; }
}

@media (max-width: 1200px) {
.eng-body {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
  .eng-center {
    width: 100%;
  }
  #engineer{
    padding: 60px 0
  }
  .eng-photo {
    width: 280px;
    margin: 0 auto;
  }
  .eng-left  { padding-right: 0; }
  .eng-right { padding-left: 0; }
  .eng-title { font-size: 1.1rem; }
}
/* @media(max-width: 1330px) {
  .grid-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  grid-template-columns: repeat(5, 1fr);}
} */
/* ═══════════════════════════════════════════
   CALLBACK MODAL — modal.css
═══════════════════════════════════════════ */

/* ── Обёртка ───────────────────────────── */
.cb-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cb-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

/* ── Overlay ───────────────────────────── */
.cb-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 30, 0.65);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

/* ── Dialog ────────────────────────────── */
.cb-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 860px;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cb-modal.is-open .cb-modal__dialog {
  transform: translateY(0) scale(1);
}

/* ── Левая часть ───────────────────────── */
.cb-modal__left {
  flex: 0 0 42%;
  background: linear-gradient(150deg, var(--main-color) 0%, #c46a05 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Декоративные круги */
.cb-modal__left::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.07);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.cb-modal__left::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.07);
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}

.cb-modal__left-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 44px 36px 44px 40px;
}

.cb-modal__logo {
  margin-bottom: 32px;
}

.cb-modal__logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.cb-modal__tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}

.cb-modal__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.cb-modal__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.cb-modal__perks svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ── Правая часть ──────────────────────── */
.cb-modal__right {
  flex: 1;
  background: #fff;
  padding: 44px 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}

/* Кнопка закрытия */
.cb-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}

.cb-modal__close:hover {
  background: var(--main-color);
  color: #fff;
}

.cb-modal__close svg {
  width: 16px;
  height: 16px;
}

/* Заголовок формы */
.cb-modal__form-head {
  margin-bottom: 28px;
  padding-right: 32px;
}

.cb-modal__form-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.cb-modal__form-head p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ── Форма ─────────────────────────────── */
.cb-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.cb-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cb-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.02em;
}

.cb-form__optional {
  font-weight: 400;
  color: #aaa;
}

.cb-form__field input,
.cb-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.cb-form__field input::placeholder,
.cb-form__field textarea::placeholder {
  color: #bbb;
}

.cb-form__field input:focus,
.cb-form__field textarea:focus {
  border-color: var(--main-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 144, 32, 0.12);
}

.cb-form__field input.is-error,
.cb-form__field textarea.is-error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.cb-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Кнопка submit */
.cb-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: var(--main-color);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.cb-form__submit:hover {
  background: var(--main-hover);
}

.cb-form__submit:active {
  transform: scale(0.98);
}

.cb-form__submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cb-form__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Privacy */
.cb-form__privacy {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.cb-form__privacy a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-form__privacy a:hover {
  color: var(--main-color);
}

/* ── Success state ─────────────────────── */
.cb-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 20px;
}

.cb-success svg {
  width: 72px;
  height: 72px;
}

.cb-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.cb-success p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 680px) {
  .cb-modal {
    padding: 0;
    align-items: flex-end;
  }

  .cb-modal__dialog {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    min-height: unset;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    transform: translateY(100%);
  }

  .cb-modal.is-open .cb-modal__dialog {
    transform: translateY(0);
  }

  .cb-modal__left {
    flex: 0 0 auto;
  }

  .cb-modal__left-inner {
    padding: 28px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .cb-modal__logo {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .cb-modal__logo img {
    height: 40px;
  }

  .cb-modal__tagline {
    font-size: 0.9rem;
    margin: 0;
  }

  .cb-modal__perks {
    display: none;
  }

  .cb-modal__left::before,
  .cb-modal__left::after {
    display: none;
  }

  .cb-modal__right {
    padding: 32px 20px 28px;
    flex: 1;
    min-height: 0;
  }
}