:root {
  --clr-bg: #111111;
  --clr-header: #181818;
  --clr-btn-login: #00b004;
  --clr-btn-reg: #ffff00;
  --clr-btn-reg-text: #111111;
  --clr-text: #e8e8e8;
  --clr-text-muted: #a0a0a0;
  --clr-accent: #00b004;
  --clr-gold: #f0c040;
  --clr-border: #2a2a2a;
  --clr-card: #1a1a1a;
  --clr-card2: #1e1e1e;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  line-height: 1.3;
  color: #fff;
}

.x9f2a {
  display: none;
}
.wp-block-placeholder {
  display: none;
}
.elementor-invisible {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.ax-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.ax-site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ax-main {
  flex: 1;
}

.ax-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #242424;
}

.ax-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.ax-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ax-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.ax-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ax-nav__link {
  color: #c8c8c8;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.ax-nav__link:hover,
.ax-nav__link.ax-active {
  background: rgba(0, 176, 4, 0.12);
  color: var(--clr-accent);
}

.ax-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ax-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
  margin-right: 8px;
}

.ax-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 6px var(--clr-accent);
  animation: ax-pulse 1.8s infinite;
}

@keyframes ax-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.3px;
}

.ax-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.ax-btn:active {
  transform: translateY(0);
}

.ax-btn--login {
  background: var(--clr-btn-login);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 176, 4, 0.3);
}

.ax-btn--reg {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-text);
  box-shadow: 0 0 12px rgba(255, 255, 0, 0.25);
}

.ax-btn--reg:hover {
  color: var(--clr-btn-reg-text);
}

.ax-btn--lg {
  padding: 14px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.ax-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.ax-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.ax-burger.ax-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ax-burger.ax-open span:nth-child(2) {
  opacity: 0;
}
.ax-burger.ax-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ax-mobile-nav {
  display: none;
  background: #1a1a1a;
  border-top: 1px solid #282828;
  padding: 12px 20px 16px;
}

.ax-mobile-nav.ax-open {
  display: block;
}

.ax-mobile-nav__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.ax-mobile-nav__links a {
  display: block;
  padding: 10px 12px;
  color: #c8c8c8;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.ax-mobile-nav__links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ax-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.ax-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/adban.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ax-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.95) 35%,
    rgba(17, 17, 17, 0.4) 100%
  );
  z-index: 1;
}

.ax-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
}

.ax-hero__badge {
  display: inline-block;
  background: rgba(0, 176, 4, 0.15);
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.ax-hero__title {
  font-family: "Bebas Neue", "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.ax-hero__title span {
  color: var(--clr-btn-reg);
}

.ax-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: #b0b0b0;
  margin-bottom: 14px;
  font-weight: 400;
}

.ax-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 0, 0.08);
  border: 1.5px solid var(--clr-btn-reg);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-btn-reg);
  font-family: "Montserrat", Arial, sans-serif;
}

.ax-hero__bonus-label {
  font-size: 12px;
  font-weight: 400;
  color: #a0a0a0;
  display: block;
  margin-top: 2px;
}

.ax-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ax-hero__features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ax-hero__feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #a0a0a0;
}

.ax-hero__feat::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.ax-section {
  padding: 60px 0;
}

.ax-section--sm {
  padding: 32px 0;
}

.ax-breadcrumbs {
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
}

.ax-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.ax-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  opacity: 0.4;
}

.ax-breadcrumbs__list a {
  color: var(--clr-text-muted);
}

.ax-breadcrumbs__list a:hover {
  color: var(--clr-accent);
}

.ax-breadcrumbs__list li:last-child {
  color: var(--clr-text);
}

.ax-section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ax-section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: var(--clr-accent);
  border-radius: 4px;
  flex-shrink: 0;
}

.ax-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
  box-shadow: var(--shadow);
}

.ax-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.ax-info-table tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}

.ax-info-table tr:last-child {
  border-bottom: none;
}
.ax-info-table tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.ax-info-table td {
  padding: 13px 20px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.ax-info-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 500;
  width: 42%;
  border-right: 1px solid var(--clr-border);
}

.ax-info-table td:last-child {
  color: var(--clr-text);
  font-weight: 400;
}

.ax-info-table .ax-val--green {
  color: var(--clr-accent);
  font-weight: 700;
}
.ax-info-table .ax-val--yellow {
  color: var(--clr-gold);
  font-weight: 700;
}

.ax-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.ax-adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.ax-adv-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.ax-adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 176, 4, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.ax-adv-card:hover::after {
  opacity: 1;
}

.ax-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 176, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
}

.ax-adv-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ax-adv-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.ax-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.ax-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ax-demo-wrap {
  position: relative;
  padding-bottom: 56.25%;
  max-height: 540px;
  border-radius: var(--radius-md);
  background: #0a0a0a;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}

.ax-demo-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ax-review-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.ax-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}

.ax-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.ax-author__info {
  flex: 1;
}

.ax-author__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.ax-author__role {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.ax-author__link {
  font-size: 12px;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.ax-content-block {
  font-size: 15px;
  line-height: 1.75;
  color: #d0d0d0;
}

.ax-content-block h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--clr-accent);
}

.ax-content-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f0f0f0;
  margin: 22px 0 10px;
}

.ax-content-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: #e0e0e0;
  margin: 18px 0 8px;
}

.ax-content-block p {
  margin-bottom: 14px;
}

.ax-content-block ul,
.ax-content-block ol {
  margin: 0 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ax-content-block ul li::marker {
  color: var(--clr-accent);
}
.ax-content-block ol li::marker {
  color: var(--clr-accent);
}

.ax-content-block a {
  color: var(--clr-accent);
  text-decoration: underline;
}
.ax-content-block a:hover {
  color: var(--clr-gold);
}

.ax-content-block strong {
  color: #fff;
  font-weight: 700;
}
.ax-content-block em {
  color: var(--clr-gold);
}

.ax-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  overflow-x: auto;
  display: block;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
}

.ax-content-block table th {
  background: rgba(0, 176, 4, 0.1);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}

.ax-content-block table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  color: #d0d0d0;
}

.ax-content-block table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.ax-content-block blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: 12px 18px;
  margin: 20px 0;
  background: rgba(0, 176, 4, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #c0c0c0;
  font-style: italic;
}

.ax-content-block hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

.ax-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ax-faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.ax-faq-item:hover {
  border-color: rgba(0, 176, 4, 0.25);
}

.ax-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  gap: 12px;
  user-select: none;
}

.ax-faq-q::-webkit-details-marker {
  display: none;
}

.ax-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 176, 4, 0.1);
  border: 1px solid rgba(0, 176, 4, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
  font-size: 14px;
  color: var(--clr-accent);
}

.ax-faq-item.ax-open .ax-faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 176, 4, 0.2);
}

.ax-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.7;
}

.ax-faq-item.ax-open .ax-faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}

.ax-footer {
  background: var(--clr-header);
  border-top: 1px solid #242424;
  padding: 40px 0 0;
  margin-top: auto;
}

.ax-footer__grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.ax-footer__logo img {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}

.ax-footer__tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.ax-footer__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.ax-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ax-footer__links a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.ax-footer__links a:hover {
  color: var(--clr-accent);
}

.ax-footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ax-brand-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #a0a0a0;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}

.ax-brand-badge:hover {
  background: rgba(0, 176, 4, 0.1);
  color: var(--clr-accent);
}

.ax-footer__bottom {
  border-top: 1px solid #242424;
  padding: 20px;
  text-align: center;
}

.ax-footer__legal {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 8px;
}

.ax-footer__copy {
  font-size: 12px;
  color: #444;
}

.ax-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #181818 0%, #1e1e1e 100%);
  border-top: 2px solid rgba(255, 255, 0, 0.3);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ax-widget.ax-visible {
  transform: translateY(0);
}

.ax-widget__text {
  flex: 1;
}

.ax-widget__bonus {
  font-size: 15px;
  font-weight: 800;
  color: var(--clr-btn-reg);
  font-family: "Montserrat", Arial, sans-serif;
}

.ax-widget__sub {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.ax-widget__close {
  background: none;
  border: none;
  color: #555;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.ax-widget__close:hover {
  color: #888;
}

.ax-section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ax-rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}

.ax-star {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold);
}

.ax-animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.ax-animate-fade.ax-in {
  opacity: 1;
  transform: translateY(0);
}

.ax-demo-note {
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

.ax-demo-note a {
  color: var(--clr-accent);
}

.ax-pb0 {
  padding-bottom: 0;
}

.ax-wp-manifest {
  display: none;
}

@media (max-width: 1024px) {
  .ax-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .ax-nav {
    display: none;
  }
  .ax-burger {
    display: flex;
  }
  .ax-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .ax-section-two-col {
    grid-template-columns: 1fr;
  }
  .ax-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ax-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ax-hero {
    min-height: 420px;
  }
  .ax-hero__content {
    padding: 40px 16px;
  }
  .ax-advantages {
    grid-template-columns: 1fr;
  }
  .ax-review-wrap {
    padding: 22px 18px;
  }
  .ax-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .ax-btn--lg {
    width: 100%;
    justify-content: center;
  }
  .ax-widget {
    flex-wrap: wrap;
  }
  .ax-header__actions .ax-online-count {
    display: none;
  }
  .ax-info-table td {
    padding: 10px 12px;
  }
}

.ax-skiplink {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--clr-accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 2000;
  font-size: 14px;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}

.ax-skiplink:focus {
  top: 0;
}
