.elementor-792507 .elementor-element.elementor-element-260d5ddc{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-792507 .elementor-element.elementor-element-260d5ddc:not(.elementor-motion-effects-element-type-background), .elementor-792507 .elementor-element.elementor-element-260d5ddc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-792507 .elementor-element.elementor-element-73912d8a{--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;--border-radius:18px 18px 18px 18px;--padding-top:34px;--padding-bottom:34px;--padding-left:18px;--padding-right:18px;}.elementor-792507 .elementor-element.elementor-element-73912d8a:not(.elementor-motion-effects-element-type-background), .elementor-792507 .elementor-element.elementor-element-73912d8a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F1FBFA;}.elementor-792507 .elementor-element.elementor-element-1a583e7e{text-align:center;}.elementor-792507 .elementor-element.elementor-element-1a583e7e .elementor-heading-title{font-size:34px;font-weight:800;color:#10847E;}.elementor-792507 .elementor-element.elementor-element-2b207d76{text-align:center;}.elementor-792507 .elementor-element.elementor-element-2b207d76 .elementor-heading-title{font-size:16px;font-weight:400;color:#444;}.elementor-792507 .elementor-element.elementor-element-830fef5{--display:flex;--padding-top:60px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-792507 .elementor-element.elementor-element-672d12a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-792507 .elementor-element.elementor-element-672d12a.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-792507 .elementor-element.elementor-element-672d12a .wd-button-wrapper a{color:#3E3E3E;}.elementor-792507 .elementor-element.elementor-element-672d12a .wd-btn-text{font-family:"Lato", Sans-serif;font-size:20px;font-weight:500;text-transform:none;font-style:normal;text-decoration:none;}body.elementor-page-792507{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:768px){.elementor-792507 .elementor-element.elementor-element-672d12a .wd-btn-text{font-size:16px;}}@media(min-width:769px){.elementor-792507 .elementor-element.elementor-element-73912d8a{--content-width:1200px;}}/* Start custom CSS for shortcode, class: .elementor-element-5de4af1 *//* ====== Brands Index (A–Z) Centered ====== */
.brands_index {
  display: flex;
  justify-content: center; /* Horizontal centering */
  flex-wrap: wrap; /* Wrap to next line if needed */
  gap: 8px; /* Space between letters/links */
  margin-bottom: 24px; /* Space before the brands grid */
  list-style: none;
  padding: 0;
}

.brands_index li {
  margin: 0;
}

.brands_index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 34px;
  height: 34px;
  padding: 0 10px;

  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.brands_index a:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
  color: #0ea5e9;
  transform: translateY(-1px);
}

.brands_index a:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Compact on small screens */
@media (max-width: 767px) {
  .brands_index {
    gap: 6px;
    margin-bottom: 20px;
  }
  .brands_index a {
    min-width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* ====== Brands A–Z list: card grid style ====== */

/* Reset & grid */
ul.brands {
  list-style: none !important;
  margin: 24px 0 !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

/* Kill any theme floats/widths that might break the grid */
ul.brands li {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

/* Brand “card” */
ul.brands li a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  min-height: 44px;

  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;

  line-height: 1.2;
  word-break: break-word;

  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* Hover / active */
ul.brands li a:hover {
  border-color: #d1d5db;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* Keyboard focus */
ul.brands li a:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Subtle arrow cue on hover */
ul.brands li a::after {
  content: "↗";
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 13px;
}
ul.brands li a:hover::after { opacity: .7; transform: translateX(0); }

/* If a logo <img> is ever inside the <a> */
ul.brands li a img {
  width: 28px; height: 28px; object-fit: contain;
  filter: grayscale(20%);
}

/* Compact on small screens */
@media (max-width: 767px) {
  ul.brands {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  ul.brands li a { padding: 10px 12px; border-radius: 10px; }
}

/* Optional: dark mode polish */
@media (prefers-color-scheme: dark) {
  .brands_index a {
    background: #0b0f14;
    color: #e5e7eb;
    border-color: #1f2937;
  }
  .brands_index a:hover {
    background-color: #1f2937;
    border-color: #334155;
  }

  ul.brands li a {
    background: #0b0f14;
    color: #e5e7eb;
    border-color: #1f2937;
  }
  ul.brands li a:hover {
    border-color: #334155;
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
  }
}/* End custom CSS */
/* Start custom CSS for wd_button, class: .elementor-element-672d12a */.slp .wd-btn-icon {
    margin-left: 8px; /* adjust spacing as needed */
    display: inline-flex;
    align-items: center;
}/* End custom CSS */