/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 16:46:14 */
.site-header {
  display: none;
}

/* ALPHABOTZ HEADER */
.abtz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #00000026;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.abtz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.abtz-header__logo img {
  width: 168px;
  height: 40px;
  display: block;
  object-fit: contain;
}

/* NAV LIST */
.abtz-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* NAV ITEMS */
.abtz-header__nav-item {
  position: relative;
}

/* NAV LINKS */
.abtz-header__nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 80px;
  transition: color 0.25s ease;
}
.abtz-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.abtz-header__nav-link:hover {
  color: var(--color-primary);
}
.abtz-header__nav-link:hover::after {
  width: 100%;
}
.abtz-header__nav-link.abtz-active::after {
  width: 100%;
}

/* DROPDOWN ARROW */
.abtz-dropdown__arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.abtz-has-dropdown:hover .abtz-dropdown__arrow {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.abtz-header__dropdown {
  position: absolute;
  top: calc(100% - 15px);
  left: 50%;
  min-width: 180px;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;

  /* Invisible bridge between nav link and dropdown */
  padding: 16px 8px 8px 8px;
  border-top: 16px solid transparent;
  background-clip: padding-box;
}

/* Triangle centered on dropdown panel */
.abtz-header__dropdown::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background-color: rgba(10, 10, 10, 0.95);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Show dropdown on hover */
.abtz-has-dropdown:hover .abtz-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* DROPDOWN LINKS */
.abtz-header__sub-link {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.abtz-header__sub-link:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--color-white);
}

/* CTA BUTTON */
.abtz-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}
.abtz-header__cta:hover {
  background-color: #c8152a;
}

/* HAMBURGER TOGGLE */
.abtz-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.abtz-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.abtz-header__toggle.abtz-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.abtz-header__toggle.abtz-open span:nth-child(2) {
  opacity: 0;
}
.abtz-header__toggle.abtz-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE CTA */
.abtz-header__mobile-cta {
  display: none;
}

/* ── TABLET & MOBILE ── */
@media (max-width: 1024px) {
  .abtz-header {
	padding-top: 20px;
    padding-bottom: 20px;
  }
  .abtz-header__toggle {
    display: flex;
  }
  .abtz-header__cta {
    display: none;
  }
  .abtz-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }
  .abtz-header__nav.abtz-open {
    right: 0;
  }
  .abtz-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .abtz-header__nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
	.abtz-header__dropdown .abtz-header__nav-item:last-child {
		border-bottom: unset;
	}
  .abtz-header__nav-link {
    font-size: 18px;
    line-height: normal;
    padding: 14px 0;
    width: 100%;
    justify-content: space-between;
  }
  .abtz-header__nav-link::after {
    display: none;
  }

  /* Mobile dropdown - accordion */
  .abtz-header__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    display: none;
    background-clip: unset;
  }
  .abtz-header__dropdown::before {
    display: none;
  }

  /* Defeat hover on mobile */
  .abtz-has-dropdown:hover .abtz-header__dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .abtz-has-dropdown:hover .abtz-dropdown__arrow {
    transform: none;
  }

  /* Accordion open state */
  .abtz-has-dropdown.abtz-dropdown-open .abtz-header__dropdown {
    display: block;
  }
  .abtz-has-dropdown.abtz-dropdown-open .abtz-dropdown__arrow {
    transform: rotate(180deg);
  }

  .abtz-header__sub-link {
    font-size: 15px;
    padding: 10px 8px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 0;
  }
  .abtz-header__sub-link:hover {
    background-color: transparent;
    color: var(--color-white);
  }

  /* Mobile CTA */
  .abtz-header__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease;
    width: 100%;
    margin-top: 32px;
  }
  .abtz-header__mobile-cta:hover {
    background-color: #c8152a;
  }
}

@media (max-width: 767px) {
  .abtz-header__logo img {
    width: 130px;
    height: 29px;
  }
}