.agency-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 200px;
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 300;
  background-color: #171717;
  transition: top 0.3s ease, bottom 0.3s ease;
}
@media (max-width: 1440px) {
  .agency-header {
    padding: 22px 100px;
  }
}
@media (max-width: 1028px) {
  .agency-header {
    padding: 22px 40px;
  }
}
@media (max-width: 768px) {
  .agency-header {
    padding: 22px 20px;
  }
}
@media (max-width: 460px) {
  .agency-header {
    padding: 16px;
    top: unset;
  }
}
.agency-header .logo {
  height: 20px;
  width: auto;
}
.agency-header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .agency-header .actions {
    gap: 8px;
  }
}
@media (max-width: 460px) {
  .agency-header .actions {
    width: 100%;
    justify-content: flex-end;
  }
}
.agency-header .actions .header-cta {
  width: 100%;
}
@media (max-width: 460px) {
  .agency-header .actions .header-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 15px;
    background-color: #171717;
  }
}
.agency-header .actions .cta {
  font-weight: 700;
}
@media (max-width: 768px) {
  .agency-header .actions .cta {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 16px;
  }
}
@media (max-width: 460px) {
  .agency-header .actions .cta {
    width: 100%;
  }
}
@media (max-width: 460px) {
  .agency-header .actions .cta.secondary {
    display: none;
  }
}
.agency-header .reseller-pages {
  position: relative;
  display: inline-block;
  /* Rotate the arrow when open */
}
.agency-header .reseller-pages .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 16px;
}
.agency-header .reseller-pages .dropdown-arrow {
  transition: transform 0.2s ease;
  transform-origin: center;
}
.agency-header .reseller-pages .dropdown-toggle.open .dropdown-arrow {
  transform: rotate(180deg);
}
.agency-header .reseller-pages .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px); /* a bit below the button */
  left: 0;
  min-width: 160px;
  background-color: #171717;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.agency-header .reseller-pages .dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.agency-header .reseller-pages .dropdown-menu li a:hover {
  color: #666666;
}
.agency-header .reseller-pages.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 460px) {
  .agency-header .reseller-pages.open .dropdown-menu {
    left: revert;
    right: -16px;
  }
}/*# sourceMappingURL=header.css.map */