<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* РЎС‚РёР»Рё РґР»СЏ С…РµРґРµСЂР° */
/* === Main Header === */
.main_header {
  padding: 30px 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.85); /* РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ Р±РµР»С‹Р№ */
  backdrop-filter: blur(20px); /* Р»РµРіРєРёР№ Р±Р»СЋСЂ */
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.main_header.scroll {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(97, 62, 62, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.main_header-products {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

.main_header-products .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main_header-products .main_header-bottom {
  margin-top: 0;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.main_header-products .main_header-nav {
  margin-top: 40px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.main_header-nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main_header-nav-list a,
.main_header-nav-list span {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "MullerMedium", sans-serif;
  color: #191919;
  text-decoration: none;
}

.main_header-nav-list a:hover,
.main_header-nav-list span:hover {
  text-decoration: underline;
  color: #003d82;
}

.main_header-nav-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_header-nav-list .menu-item-has-children::after {
  content: '';
  margin-left: 10px;
  background-image: url('assets/img/icons/desktop-nav-arrow.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 11px;
  height: 6px;
  transition: all .3s ease;
}

.main_header-nav-list li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main_header-nav-list .menu-item-has-children:hover::after {
  transform: rotate(180deg);
}

.main_header .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 0;
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  width: 300px;
}

.main_header-nav .sub-menu li {
  padding: 10px;
  display: block;
}

.main_header a {
  text-decoration: none;
}

.main_header-bottom {
  margin-top: 40px;
}

.main_header-logo {
  align-items: center;
  flex: 1;
}

.main_header-logo img,
.main_header-logo svg,
.main_header-logo object {
  width: 120%;
  max-width: 300px;
  height: auto;
  display: block;
}

.main_header-logo h2 {
  font-family: "MullerLight", sans-serif;
  font-size: 14px;
  color: #bbb8b8;
  margin: 0 33px;
  max-width: 150px;
}

.main_header-contacts {
  margin-left: 60px;
}

.main_header-tel {
  margin-bottom: 7px;
}

.main_header-tel span {
  font-family: "MullerMedium", sans-serif;
  font-size: 18px;
  color: #191919;
  margin-left: 7px;
}

.main_header-mail span {
  font-family: "MullerRegular", sans-serif;
  font-size: 18px;
  color: #191919;
  margin-left: 7px;
}

/* РљРѕРјРїР°РєС‚РЅС‹Р№ Рё Р°РґР°РїС‚РёРІРЅС‹Р№ С…РµРґРµСЂ */
header.main_header {
  height: auto;
  min-height: 70px;
  padding: 10px 0;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.main_header-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 991px) {
  .main_header-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.main_header-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.main_header-tel span, #emailText {
  font-size: 16px;
}
.btn.btn-border {
  padding: 8px 18px;
  font-size: 15px;
}
@media (max-width: 991px) {
  .main_header-logo img {
    max-width: 120px;
  }
  .btn.btn-border {
    width: 100%;
    box-sizing: border-box;
  }
}

.main {
  padding-top: 0;
}

/* =РїСЂР°РІРєРё С…РµРґРµСЂР° */

.main .container {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .main .container {
    padding-top: 10px;
  }
}

.main, .site-main {
  padding-top: 0;
}
@media (max-width: 991px) {
  .main, .site-main {
    padding-top: 0;
  }
}

.container {
  padding-top: 0;
}
@media (max-width: 991px) {
  .container {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .main_header {
    padding: 20px 0;
  }
  .main_header-tel span {
    font-size: 18px;
  }
  .main_header-mail span {
    font-size: 16px;
  }
  .main_header-logo img {
    max-width: 200px;
  }
  .main_header-logo h2 {
    font-size: 12px;
  }
} 

/* РњРѕР±РёР»СЊРЅР°СЏ РєРЅРѕРїРєР° 'РЎРІСЏР·Р°С‚СЊСЃСЏ' Рё РјРѕРґР°Р»СЊРЅРѕРµ РѕРєРЅРѕ */
@media (max-width: 991px) {
  .main_header-contacts-wrap, .main_header-contacts {
    display: none !important;
  }
  .mobile-contact-trigger {
    display: flex !important;
    justify-content: center;
    margin: 16px 0 0 0;
    width: 100%;
    position: static;
    z-index: auto;
  }
  .contact-modal-btn {
    width: 90%;
    max-width: 340px;
    font-size: 1.1rem;
    justify-content: center;
  }
  .btn.mobile-contact-trigger {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .hamburger {
    display: none !important;
  }
}
.contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}
.contact-modal.active {
  display: flex;
}
/* РЈР»СѓС‡С€РµРЅРЅРѕРµ РјРѕРґР°Р»СЊРЅРѕРµ РѕРєРЅРѕ СЃРІСЏР·Рё */
.contact-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 18px 24px 18px;
  min-width: 280px;
  max-width: 95vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.contact-modal-link {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1 rem;
  font-weight: 600;
  margin: 18px 0;
  padding: 18px 18px;
  border-radius: 12px;
  background: #f5f7fa;
  color: #003d82;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-modal-link:hover {
  background: #e3eaf6;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.contact-modal-link span {
  font-size: 2em;
  display: flex;
  align-items: center;
}
.contact-modal-link.phone span {
  color: #2ecc40;
}
.contact-modal-link.email span {
  color: #0061ff;
}
.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #003d82;
  cursor: pointer;
  transition: color 0.2s;
}
.contact-modal-close:hover {
  color: #0061ff;
}
.contact-modal-btn {
  background: #fff;
  border: 1px solid #003d82;
  color: #003d82;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-modal-btn:hover {
  background: #003d82;
  color: #fff;
} 

/* Р’РёРґРёРјРѕСЃС‚СЊ Р±СѓСЂРіРµСЂ-РјРµРЅСЋ РЅР° РјРѕР±РёР»СЊРЅС‹С… */
@media (max-width: 991px) {
  .hamburger {
    display: flex !important;
  }
} 

/* Overlay РґР»СЏ РјРѕР±РёР»СЊРЅРѕРіРѕ РјРµРЅСЋ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.mobile-menu-overlay.active {
  display: block;
}

/* РњРѕР±РёР»СЊРЅРѕРµ РјРµРЅСЋ */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.mobile-nav {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav-close {
  display: none;
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #003d82;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  margin: 0;
  border-radius: 50%;
  padding: 4px 8px;
}
.mobile-nav-close:hover {
  color: #0061ff;
  background: #f5f7fa;
}

.mobile-menu-list {
  flex: 1 1 auto;
  overflow-y: auto;
  margin: 0;
  padding: 20px 60px 40px 20px; /* СЃРїСЂР°РІР° 60px вЂ” РїРѕРґ РєСЂРµСЃС‚РёРє */
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-list li {
  margin-bottom: 16px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-list li:last-child {
  margin-bottom: 0;
}
.mobile-menu-list a {
  font-size: 1.2rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  display: block;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-list a:hover {
  background: #f5f7fa;
  color: #0061ff;
}
.mobile-menu-list .current-menu-item &gt; a {
  color: #0061ff;
  font-weight: bold;
  background: #e3eaf6;
  border-radius: 8px;
}
.mobile-menu-list .has-submenu &gt; a {
  position: relative;
  padding-right: 32px;
}
.mobile-menu-list .has-submenu &gt; a .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border: solid #003d82;
  border-width: 0 2px 2px 0;
  padding: 2px;
  transition: transform 0.3s;
  display: inline-block;
}
.mobile-menu-list .has-submenu.open &gt; a .arrow {
  transform: translateY(-50%) rotate(-135deg);
}
.mobile-menu-list .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-top: 0;
  margin-left: 10px;
  padding-left: 0;
}
.mobile-menu-list .has-submenu.open &gt; .submenu {
  max-height: 1000px;
  margin-top: 8px;
}
.mobile-menu-list .submenu li {
  margin-bottom: 8px;
}
.submenu {
  margin-top: 10px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .main_header-nav {
    display: none !important;
  }
}
@keyframes modalFadeIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
} 

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 0;
  transition: background 0.2s;
}
.hamburger:focus {
  outline: 2px solid #0061ff;
}
.hamburger-box {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 32px;
  height: 4px;
  background-color: #003d82;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  background-color: #003d82;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
body.mobile-menu-open .hamburger .hamburger-inner {
  background-color: transparent;
}
body.mobile-menu-open .hamburger .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
}
body.mobile-menu-open .hamburger .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
}
/* body.mobile-menu-open .hamburger {
  display: none !important;
} */
.mobile-nav-close {
  display: none;
}
.mobile-nav.active .mobile-nav-close {
  display: block;
} 

body.mobile-menu-open .hamburger {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}


/* РЎРєСЂС‹С‚СЊ РЅР° РџРљ */
.mobile-contact-trigger {
  display: none !important;
}

/* РџРѕРєР°Р·С‹РІР°С‚СЊ С‚РѕР»СЊРєРѕ РЅР° РјРѕР±РёР»СЊРЅС‹С… */
@media (max-width: 991px) {
  .mobile-contact-trigger {
    display: flex !important;
    justify-content: center;
    margin: 16px 0 0 0;
    width: 100%;
    position: static;
    z-index: auto;
  }
}

/* РЎРєСЂС‹РІР°РµРј РєРЅРѕРїРєСѓ РЅР° РґРµСЃРєС‚РѕРїРµ */
.btn.btn-border[href="#popup"] {
  display: none !important;
}

@media (max-width: 991px) {
  .btn.btn-border[href="#popup"] {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .main_header.hidden-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s, opacity 0.4s;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Muller:wght@400;700&amp;display=swap');

#preloader-prom {
  position: fixed;
  inset: 0;
  background: #f7fafd;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s;
  font-family: 'Muller', 'Arial', sans-serif;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.preloader-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.preloader-logo {
  max-width: 170px;
  margin-bottom: 10px;
}
.preloader-title {
  display: flex;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  gap: 7px;
}
.preloader-title-part1 {
  color: #003d82;
}
.preloader-title-part2 {
  background: #003d82;
  color: #fff;
  border-radius: 7px;
  padding: 0 10px;
}

.preloader-loader {
  margin: 24px 0 0 0;
  width: 170px;
  height: 7px;
  background: #d7e4f7;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
.preloader-loading {
  background-color: #003d82;
  width: 40px;
  height: 7px;
  border-radius: 7px;
  position: absolute;
  left: 0;
  top: 0;
  animation: prom-loader-move 1.5s infinite;
}
@keyframes prom-loader-move {
  0%   { left: 0;    width: 40px;}
  40%  { left: 90px; width: 50px;}
  80%  { left: 130px; width: 32px;}
  100% { left: 0;    width: 40px;}
}

.preloader-caption {
  color: #888;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
#preloader-prom.preloader-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
}

@media (max-width: 600px) {
  .preloader-content {
    gap: 16px;
    padding: 0 8vw;
  }
  .preloader-logo {
    max-width: 100px;
    margin-bottom: 8px;
  }
  .preloader-title {
    font-size: 1.2rem;
    gap: 4px;
  }
  .preloader-loader {
    width: 90vw;
    max-width: 120px;
    height: 6px;
  }
  .preloader-loading {
    height: 6px;
    width: 30px;
  }
  .preloader-caption {
    font-size: 15px;
    margin-top: 10px;
  }
}

</pre></body></html>