.elementor-10 .elementor-element.elementor-element-533e8f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-10 .elementor-element.elementor-element-533e8f7{--content-width:1218px;}}/* Start custom CSS for html, class: .elementor-element-d64dbaf */:root {
    --elements-webflow-library--neutral--100: #ffffff;
    --elements-webflow-library--neutral--300: #e4e4e7;
    --maine-black: #002e5d; 
    --brand-orange: #f37021;
    --font-primary: "Sf Pro Display", sans-serif;
}

.page-title, 
.entry-title, 
h1.entry-title, 
.page-header {
    display: none !important;
}

/* --- ХЕДЕР --- */
.brix---header-wrapper-v9 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  font-family: var(--font-primary);
  color: var(--maine-black);
  z-index: 9999;
  transition: top 0.3s ease;
}

/* --- ВЕРХНЯ СМУЖКА --- */
.brix---header-top-wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: #fff;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* Клас який додається при скролі — ховає верхню смужку */
.brix---header-wrapper-v9.scrolled .brix---header-top-wrapper {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* Тінь з'являється після скролу */
.brix---header-wrapper-v9.scrolled .brix---header-content-wrapper {
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* --- НИЖНЯ ЧАСТИНА З ЛОГО І МЕНЮ --- */
.brix---header-content-wrapper {
  padding: 18px 0;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

/* Відступ для контенту під хедером */
body {
  padding-top: 105px; /* висота верхньої смужки + меню */
}

/* --- КОНТЕЙНЕР --- */
.brix---container-default {
  max-width: 1218px;
  padding-right: 24px;
  padding-left: 24px;
  margin: 0 auto;
}

/* --- TOP BAR --- */
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-link {
    text-decoration: none;
    color: var(--maine-black);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    color: white;
    font-size: 10px;
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-bar-right a {
    color: var(--brand-orange);
    font-size: 14px;
}

/* --- MAIN NAV --- */
.main-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper img {
    height: 40px;
    width: auto;
}

.nav-right-side {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.navigation ul li a {
    text-decoration: none;
    color: var(--maine-black);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navigation ul li a i {
    font-size: 10px;
    opacity: 0.6;
}

.contact-btn {
    background: linear-gradient(90deg, #ff8c00 0%, #f37021 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* --- DROPDOWN --- */
.navigation ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none !important;
    display: block !important;
    z-index: 1000;
    border-radius: 2px;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 15px;
    color: #555 !important;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.sub-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--brand-orange) !important;
    padding-left: 30px;
}

.arrow-rotate {
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover .arrow-rotate {
    transform: rotate(180deg);
}

.menu-item-has-children::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--maine-black, #333);
    cursor: pointer;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media screen and (max-width: 991px) {

  .brix---header-top-wrapper {
    display: none !important;
  }

  .brix---header-content-wrapper {
    padding: 10px 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  body {
    padding-top: 60px !important;
  }

  .logo-wrapper img {
    height: 30px !important;
  }

  .main-nav-inner, 
  .nav-right-side,
  .brix---container-default {
      position: static; 
      overflow: visible !important;
  }

  .contact-btn, 
  .top-bar-right {
      display: none !important;
  }

  .navigation {
      display: block !important;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fff !important;
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      z-index: 10000;
      border-top: 1px solid #eee;
  }

  .navigation.active {
      max-height: 85vh !important;
      opacity: 1 !important;
      visibility: visible !important;
      overflow-y: auto;
      padding: 20px 0 40px 0;
  }

  .navigation ul {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 24px;
      gap: 0;
  }

  .navigation ul li {
      width: 100%;
      border-bottom: 1px solid #f5f5f5;
  }

  .navigation ul li:last-child {
      border-bottom: none;
  }

  .navigation ul li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      width: 100%;
      font-size: 18px;
      color: #333 !important;
  }

  .navigation ul li a:hover {
      color: var(--brand-orange) !important;
  }

  .mobile-menu-toggle {
      display: block;
      font-size: 24px;
      padding: 10px;
      margin-right: -10px;
      color: #333;
      cursor: pointer;
      z-index: 10001;
  }

  .sub-menu {
      position: static !important;
      box-shadow: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      display: none !important;
      width: 100%;
      background-color: #f8f9fa;
      padding: 10px 0;
      margin-bottom: 10px;
  }

  .menu-item-has-children.open .sub-menu {
      display: block !important;
  }

  .sub-menu li a {
      font-size: 16px;
      padding: 12px 20px 12px 30px;
      color: #555 !important;
  }

  .menu-item-has-children.open .arrow-rotate {
      transform: rotate(180deg);
  }

  .mobile-only-btn {
      display: block;
      margin-top: 25px;
      width: 100%;
  }

  .mobile-only-btn a {
      background: linear-gradient(90deg, #ff9d4d 0%, #f37021 100%);
      color: #fff !important;
      text-align: center;
      border-radius: 6px;
      justify-content: center !important;
      font-weight: 700;
      padding: 18px;
  }
}

@media screen and (max-width: 479px) {
  .brix---header-top-wrapper {
    display: none !important;
  }
}/* End custom CSS */