@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&family=Urbanist:wght@500;600;700&display=swap");

.arz-site-header {
  --arz-header-max-width: 1170px;
  --arz-header-side-gap: 16px;
  --arz-header-topbar: #00157c;
  --arz-header-field: #213083;
  --arz-header-divider: #f40076;
  --arz-header-ink: #001042;
  --arz-header-link: #1c40f2;
  --arz-header-white: #fff;
  position: relative;
  z-index: 1000;
  width: 100%;
  color: var(--arz-header-ink);
  font-family: "Urbanist", Arial, sans-serif;
}

.arz-site-header,
.arz-site-header *,
.arz-site-header *::before,
.arz-site-header *::after {
  box-sizing: border-box;
}

.arz-site-header a {
  color: inherit;
  text-decoration: none;
}

.arz-site-header button {
  font: inherit;
}

.arz-header__container {
  width: min(var(--arz-header-max-width), calc(100% - (var(--arz-header-side-gap) * 2)));
  margin-inline: auto;
}

.arz-header__topbar {
  min-height: 38px;
  padding-block: 5px;
  color: var(--arz-header-white);
  background: var(--arz-header-topbar);
  border-bottom: 1px solid var(--arz-header-divider);
}

.arz-header__topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 27px;
  gap: 24px;
}

.arz-header__phone,
.arz-header__account-links a {
  color: var(--arz-header-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.arz-header__phone {
  font-family: "Mulish", Arial, sans-serif;
}

.arz-header__account-links {
  display: flex;
  align-items: center;
}

.arz-header__account-links a + a {
  position: relative;
  margin-left: 28px;
}

.arz-header__account-links a + a::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 1px;
  height: 16px;
  background: #5673ff;
  content: "";
  transform: translateY(-50%);
}

.arz-header__topbar a:hover,
.arz-header__topbar a:focus-visible {
  color: #a9c5ff;
}

.arz-header__field {
  padding-bottom: 45px;
  background: var(--arz-header-field);
}

.arz-header__panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding-inline: 15px;
  background: var(--arz-header-white);
  border-radius: 0 0 5px 5px;
}

.arz-header__logo {
  display: flex;
  flex: 0 0 220px;
  align-items: center;
  min-width: 0;
}

.arz-header__logo img {
  display: block;
  width: 125px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.arz-header__navigation {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.arz-header__navigation nav {
  min-width: 0;
}

.arz-header__menu,
.arz-header__submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arz-header__menu {
  display: flex;
  align-items: stretch;
}

.arz-header__menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.arz-header__menu > li > a,
.arz-header__parent-row > a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 11px;
  color: var(--arz-header-ink);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.arz-header__parent-row {
  display: flex;
  align-items: stretch;
}

.arz-header__parent-row > a {
  padding-right: 3px;
}

.arz-header__submenu-toggle {
  position: relative;
  width: 18px;
  min-height: 50px;
  padding: 0;
  color: var(--arz-header-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.arz-header__submenu-toggle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.arz-header__menu > li:hover > a,
.arz-header__menu > li:hover > .arz-header__parent-row a,
.arz-header__menu a:hover,
.arz-header__menu a:focus-visible,
.arz-header__menu a[aria-current="page"],
.arz-header__submenu-toggle:hover,
.arz-header__submenu-toggle:focus-visible {
  color: var(--arz-header-link);
}

.arz-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: none;
  width: 210px;
  overflow: hidden;
  background: var(--arz-header-white);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px rgb(0 16 66 / 14%);
}

.arz-header__align-right > .arz-header__submenu {
  right: 0;
  left: auto;
}

.arz-header__has-children:hover > .arz-header__submenu,
.arz-header__has-children:focus-within > .arz-header__submenu,
.arz-header__has-children.is-submenu-open > .arz-header__submenu {
  display: block;
}

.arz-header__submenu a {
  display: block;
  padding: 10px 15px;
  color: var(--arz-header-ink);
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.arz-header__submenu a:hover,
.arz-header__submenu a:focus-visible {
  color: var(--arz-header-link);
  background: #f6f6f6;
}

.arz-header__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: 18px;
  padding: 8px 17px;
  overflow: hidden;
  color: var(--arz-header-white) !important;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(95.45deg, #0082f8 0.64%, #1c40f2 98.23%);
  border-radius: 5px;
}

.arz-header__cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95.45deg, #1c40f2 0.64%, #0082f8 98.23%);
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.arz-header__cta:hover::before,
.arz-header__cta:focus-visible::before {
  opacity: 1;
}

.arz-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  color: var(--arz-header-ink);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.arz-header__menu-icon,
.arz-header__menu-icon::before,
.arz-header__menu-icon::after {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.arz-header__menu-icon {
  position: relative;
}

.arz-header__menu-icon::before,
.arz-header__menu-icon::after {
  position: absolute;
  left: 0;
}

.arz-header__menu-icon::before {
  top: -7px;
}

.arz-header__menu-icon::after {
  top: 7px;
}

.arz-site-header.is-menu-open .arz-header__menu-icon {
  background: transparent;
}

.arz-site-header.is-menu-open .arz-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.arz-site-header.is-menu-open .arz-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.arz-header__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1169px) and (min-width: 992px) {
  .arz-header__logo {
    flex-basis: 145px;
  }

  .arz-header__menu > li > a,
  .arz-header__parent-row > a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .arz-header__cta {
    margin-left: 10px;
    padding-inline: 13px;
  }
}

@media (max-width: 991px) {
  .arz-header__field {
    padding-bottom: 18px;
  }

  .arz-header__panel {
    min-height: 60px;
    padding-inline: 14px;
  }

  .arz-header__logo {
    flex-basis: auto;
  }

  .arz-header__logo img {
    width: 118px;
  }

  .arz-header__menu-toggle {
    display: inline-flex;
  }

  .arz-header__navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 30;
    display: none;
    align-items: stretch;
    padding: 8px 0 14px;
    background: var(--arz-header-white);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 12px 28px rgb(0 16 66 / 16%);
  }

  .arz-site-header.is-menu-open .arz-header__navigation {
    display: block;
  }

  .arz-header__menu,
  .arz-header__menu > li,
  .arz-header__parent-row {
    display: block;
  }

  .arz-header__menu > li > a,
  .arz-header__parent-row > a {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 15px;
  }

  .arz-header__parent-row {
    position: relative;
  }

  .arz-header__parent-row > a {
    padding-right: 54px;
  }

  .arz-header__submenu-toggle {
    position: absolute;
    top: 0;
    right: 5px;
    width: 46px;
    min-height: 42px;
  }

  .arz-header__has-children:hover > .arz-header__submenu,
  .arz-header__has-children:focus-within > .arz-header__submenu {
    display: none;
  }

  .arz-header__has-children.is-submenu-open > .arz-header__submenu {
    position: static;
    display: block;
    width: auto;
    box-shadow: none;
  }

  .arz-header__has-children.is-submenu-open .arz-header__submenu-toggle::before {
    transform: translate(-50%, -35%) rotate(225deg);
  }

  .arz-header__submenu a {
    padding: 9px 28px;
    background: #f8f9ff;
  }

  .arz-header__cta {
    margin: 12px 18px 0;
  }
}

@media (max-width: 479px) {
  .arz-header__topbar-row {
    gap: 12px;
  }

  .arz-header__phone,
  .arz-header__account-links a {
    font-size: 12px;
  }

  .arz-header__account-links a + a {
    margin-left: 20px;
  }

  .arz-header__account-links a + a::before {
    left: -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arz-site-header *,
  .arz-site-header *::before,
  .arz-site-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Source rules: merge into the single output CSS file for a generated page. */
.arz-hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #213083;
  border-bottom-right-radius: 90px;
}

.arz-hero-shell::before,
.arz-hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.arz-hero-shell::before {
  left: max(24px, calc(50% - 750px));
  top: 61%;
  width: 36px;
  height: 78px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 175, 255, .06) 30%, rgba(0, 188, 255, .3) 76%, transparent 100%);
}

.arz-hero-shell::after {
  left: max(24px, calc(50% - 750px));
  top: calc(61% + 53px);
  width: 36px;
  height: 28px;
  background: linear-gradient(90deg, #00d9eb, #087cff);
  clip-path: polygon(0 25%, 50% 70%, 100% 25%, 100% 55%, 50% 100%, 0 55%);
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, .75));
}

@media (max-width: 767px) {
  .arz-hero-shell {
    border-bottom-right-radius: 52px;
  }

  .arz-hero-shell::before,
  .arz-hero-shell::after {
    left: 20px;
    transform: scale(.72);
    transform-origin: left center;
  }
}

.arz-sitemap-body {
  margin: 0;
  overflow-x: hidden;
  color: #0d1b4c;
  background: #f6f8ff;
  font-family: "Urbanist", Arial, sans-serif;
}

.arz-sitemap-body *,
.arz-sitemap-body *::before,
.arz-sitemap-body *::after {
  box-sizing: border-box;
}

.arz-sitemap-main {
  display: block;
  width: 100%;
  min-width: 0;
}

.arz-sitemap-container {
  width: min(1170px, calc(100% - 32px));
  margin-inline: auto;
}

.arz-sitemap-hero {
  min-height: 360px;
  margin-top: -45px;
  color: #fff;
}

.arz-sitemap-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 70px 0 80px;
  text-align: center;
}

.arz-sitemap-eyebrow {
  margin: 0 0 14px;
  color: #8edaff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.arz-sitemap-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .98;
}

.arz-sitemap-hero__copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #dce6ff;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.arz-sitemap-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.arz-sitemap-hero__stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 15px;
  color: #e8efff;
  font-size: 13px;
  font-weight: 600;
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
}

.arz-sitemap-hero__stats strong {
  color: #fff;
  font-size: 18px;
}

.arz-sitemap-content {
  min-width: 0;
  padding: 54px 0 88px;
}

.arz-sitemap-search {
  display: grid;
  grid-template-columns: minmax(190px, .55fr) minmax(300px, 1.45fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e1e7fb;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(28 64 242 / 8%);
}

.arz-sitemap-search__heading p {
  margin: 0;
  color: #001042;
  font-size: 20px;
  font-weight: 700;
}

.arz-sitemap-search__heading span {
  display: block;
  margin-top: 7px;
  color: #68749d;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.arz-sitemap-search__control {
  position: relative;
  min-width: 0;
}

.arz-sitemap-search__control svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 20px;
  height: 20px;
  fill: #6472a0;
  pointer-events: none;
  transform: translateY(-50%);
}

.arz-sitemap-search__control input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 12px 78px 12px 50px;
  color: #001042;
  font: 600 15px/1.4 "Mulish", Arial, sans-serif;
  background: #f8f9fd;
  border: 1px solid #dce3f8;
  border-radius: 10px;
  outline: 0;
}

.arz-sitemap-search__control input:focus {
  background: #fff;
  border-color: #1c40f2;
  box-shadow: 0 0 0 3px rgb(28 64 242 / 12%);
}

.arz-sitemap-search__control button {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 7px 9px;
  color: #1c40f2;
  font: 700 12px/1 "Urbanist", Arial, sans-serif;
  background: #edf1ff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transform: translateY(-50%);
}

.arz-sitemap-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: #68749d;
  font: 600 12px/1.4 "Mulish", Arial, sans-serif;
}

.arz-sitemap-jump {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e1e7fb;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(28 64 242 / 8%);
  min-width: 0;
}

.arz-sitemap-jump__heading p {
  margin: 0;
  color: #001042;
  font-size: 20px;
  font-weight: 700;
}

.arz-sitemap-jump__heading span {
  display: block;
  margin-top: 7px;
  color: #68749d;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 13px;
}

.arz-sitemap-jump__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
}

.arz-sitemap-jump__links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: #213083;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: #f4f6ff;
  border: 1px solid #e0e6ff;
  border-radius: 8px;
  max-width: 100%;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.arz-sitemap-jump__links a:hover,
.arz-sitemap-jump__links a:focus-visible {
  color: #fff;
  background: #1c40f2;
  border-color: #1c40f2;
}

.arz-sitemap-jump__links strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  padding-inline: 5px;
  place-items: center;
  color: inherit;
  background: rgb(33 48 131 / 8%);
  border-radius: 6px;
  font-size: 11px;
}

.arz-sitemap-sections {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.arz-sitemap-section {
  scroll-margin-top: 24px;
  min-width: 0;
  padding: 34px;
  background: #fff;
  border: 1px solid #e3e8f8;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgb(0 16 66 / 5%);
}

.arz-sitemap-section__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8ecf7;
}

.arz-sitemap-section__number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #0082f8, #1c40f2);
  border-radius: 11px;
}

.arz-sitemap-section h2 {
  margin: 0;
  color: #001042;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.arz-sitemap-section__heading p {
  max-width: 720px;
  margin: 7px 0 0;
  color: #68749d;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.arz-sitemap-section__count {
  padding: 7px 10px;
  color: #1c40f2;
  font-size: 12px;
  font-weight: 700;
  background: #eef2ff;
  border-radius: 999px;
  white-space: nowrap;
}

.arz-sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 24px 0 0;
  padding: 0;
  min-width: 0;
  list-style: none;
}

.arz-sitemap-links li {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.arz-sitemap-links a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 48px;
  gap: 12px;
  padding: 13px 14px;
  color: #182456;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  background: #f8f9fd;
  border: 1px solid transparent;
  border-radius: 9px;
  min-width: 0;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.arz-sitemap-links a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1099px) {
  .arz-sitemap-section {
    padding: 28px;
  }

  .arz-sitemap-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.arz-sitemap-links a:hover,
.arz-sitemap-links a:focus-visible {
  color: #1c40f2;
  background: #fff;
  border-color: #cbd7ff;
  transform: translateY(-1px);
}

.arz-sitemap-links svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  fill: #0082f8;
}

.arz-blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  min-width: 0;
}

.arz-blog-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 8px 11px;
  color: #213083;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  background: #f2f5ff;
  border: 1px solid #dfe6ff;
  border-radius: 8px;
}

.arz-blog-category-nav a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.arz-blog-category-nav a:hover,
.arz-blog-category-nav a:focus-visible {
  color: #fff;
  background: #1c40f2;
  border-color: #1c40f2;
}

.arz-blog-category-nav strong {
  font-size: 11px;
}

.arz-blog-directory {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  min-width: 0;
}

.arz-blog-category {
  scroll-margin-top: 24px;
  min-width: 0;
  padding: 26px;
  background: #f8f9fd;
  border: 1px solid #e3e8f8;
  border-radius: 14px;
}

.arz-blog-category__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.arz-blog-category__heading > div {
  min-width: 0;
}

.arz-blog-category__heading h3 {
  margin: 0;
  color: #001042;
  font-size: 20px;
  line-height: 1.3;
}

.arz-blog-category__heading p {
  max-width: 720px;
  margin: 6px 0 0;
  color: #68749d;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.arz-blog-category__heading > span {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #1c40f2;
  font-size: 11px;
  font-weight: 700;
  background: #e9eeff;
  border-radius: 999px;
}

.arz-blog-category .arz-sitemap-links {
  width: 100%;
  min-width: 0;
  margin-top: 20px;
}

.arz-blog-category .arz-sitemap-links a,
.arz-blog-category .arz-sitemap-links a span {
  min-width: 0;
}

.arz-blog-category .arz-sitemap-links a span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 899px) {
  .arz-blog-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arz-blog-category-nav a {
    justify-content: space-between;
    width: 100%;
  }

  .arz-blog-category {
    padding: 22px;
  }
}

@media (max-width: 599px) {
  .arz-blog-category-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .arz-blog-category {
    padding: 16px;
  }

  .arz-blog-category__heading {
    display: grid;
    gap: 12px;
  }

  .arz-blog-category__heading > span {
    width: max-content;
  }
}

@media (max-width: 899px) {
  .arz-sitemap-hero {
    min-height: 330px;
  }

  .arz-sitemap-hero__inner {
    padding: 84px 0 78px;
  }

  .arz-sitemap-jump {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .arz-sitemap-search {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .arz-sitemap-search__status {
    grid-column: 1;
    margin-top: -10px;
  }

  .arz-sitemap-jump__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arz-sitemap-jump__links a {
    justify-content: space-between;
    width: 100%;
  }

  .arz-sitemap-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .arz-sitemap-container {
    width: min(100% - 24px, 1170px);
  }

  .arz-sitemap-hero {
    min-height: 310px;
  }

  .arz-sitemap-hero__inner {
    padding: 76px 0 70px;
  }

  .arz-sitemap-hero__copy {
    font-size: 16px;
  }

  .arz-sitemap-hero h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .arz-sitemap-hero__stats {
    justify-content: center;
    width: 100%;
  }

  .arz-sitemap-content {
    padding: 34px 0 58px;
  }

  .arz-sitemap-jump,
  .arz-sitemap-search,
  .arz-sitemap-section {
    padding: 20px;
    border-radius: 14px;
  }

  .arz-sitemap-search__control input {
    height: 52px;
    padding-right: 72px;
    font-size: 16px;
  }

  .arz-sitemap-jump__links {
    grid-template-columns: minmax(0, 1fr);
  }

  .arz-sitemap-section__heading {
    grid-template-columns: auto 1fr;
  }

  .arz-sitemap-section__count {
    grid-column: 2;
    width: max-content;
  }

  .arz-sitemap-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 399px) {
  .arz-sitemap-container {
    width: min(100% - 20px, 1170px);
  }

  .arz-sitemap-hero__inner {
    padding: 70px 0 62px;
  }

  .arz-sitemap-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .arz-sitemap-hero__stats span {
    justify-content: center;
  }

  .arz-sitemap-jump,
  .arz-sitemap-search,
  .arz-sitemap-section {
    padding: 16px;
  }

  .arz-sitemap-section__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .arz-sitemap-section__count {
    grid-column: 1;
  }

  .arz-sitemap-section h2 {
    font-size: 22px;
  }

  .arz-sitemap-search__control input {
    padding-left: 44px;
  }

  .arz-sitemap-search__control svg {
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arz-sitemap-body *,
  .arz-sitemap-body *::before,
  .arz-sitemap-body *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.arz-site-footer {
  --arz-footer-max-width: 1170px;
  --arz-footer-side-gap: 16px;
  --arz-footer-background: #213083;
  --arz-footer-text: #fff;
  --arz-footer-divider: #c4d8fd;
  --arz-footer-accent: #0082f8;
  --arz-footer-accent-end: #1c40f2;
  --arz-footer-button: #5041bc;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 70px 0 14px;
  color: var(--arz-footer-text);
  font-family: "Urbanist", Arial, sans-serif;
  background: var(--arz-footer-background);
}

.arz-site-footer,
.arz-site-footer *,
.arz-site-footer *::before,
.arz-site-footer *::after {
  box-sizing: border-box;
}

.arz-site-footer a {
  color: inherit;
  text-decoration: none;
}

.arz-site-footer button,
.arz-site-footer input {
  font: inherit;
}

.arz-footer__container {
  width: min(var(--arz-footer-max-width), calc(100% - (var(--arz-footer-side-gap) * 2)));
  margin-inline: auto;
}

.arz-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(145px, 0.72fr) minmax(165px, 0.88fr) minmax(300px, 1.55fr);
  gap: 40px;
  align-items: start;
}

.arz-footer__brand,
.arz-footer__column,
.arz-footer__contact {
  min-width: 0;
}

.arz-footer__logo {
  display: inline-block;
}

.arz-footer__logo img {
  display: block;
  width: 168px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.arz-footer__summary {
  max-width: 385px;
  margin: 16px 0 28px;
  color: var(--arz-footer-text);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
}

.arz-footer__follow-title,
.arz-footer__column h2,
.arz-footer__contact h2 {
  margin: 0;
  color: var(--arz-footer-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.arz-footer__column h2,
.arz-footer__contact > h2:first-child {
  position: relative;
  padding-bottom: 18px;
}

.arz-footer__column h2::after,
.arz-footer__contact > h2:first-child::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: linear-gradient(95deg, var(--arz-footer-accent), var(--arz-footer-accent-end));
  content: "";
}

.arz-footer__socials {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.arz-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--arz-footer-text);
  background: rgb(37 50 111 / 55%);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.arz-footer__socials a:hover,
.arz-footer__socials a:focus-visible {
  background: #392396;
  transform: translateY(-2px);
}

.arz-footer__socials svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.arz-footer__column ul {
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.arz-footer__column li {
  margin: 0;
  padding: 0;
}

.arz-footer__column a {
  display: inline-block;
  padding: 7px 0;
  color: var(--arz-footer-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arz-footer__column a:hover,
.arz-footer__column a:focus-visible,
.arz-footer__legal a:hover,
.arz-footer__legal a:focus-visible {
  color: #79bdff;
}

.arz-footer__column a:hover,
.arz-footer__column a:focus-visible {
  transform: translateX(3px);
}

.arz-footer__newsletter {
  position: relative;
  margin-top: 24px;
}

.arz-footer__newsletter input[type="email"] {
  display: block;
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 12px 130px 12px 18px;
  color: #10152f;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  outline: 0;
}

.arz-footer__newsletter input[type="email"]:focus {
  border-color: #82b2ff;
  box-shadow: 0 0 0 3px rgb(0 130 248 / 20%);
}

.arz-footer__newsletter button {
  position: absolute;
  top: 7px;
  right: 9px;
  min-height: 38px;
  padding: 8px 17px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--arz-footer-button);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.arz-footer__newsletter button:hover,
.arz-footer__newsletter button:focus-visible {
  background: #ff8057;
}

.arz-footer__newsletter button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.arz-footer__form-status {
  margin: 9px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.arz-footer__address-title {
  margin-top: 32px !important;
}

.arz-footer__address {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 19px;
}

.arz-footer__address img {
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.arz-footer__address address {
  margin: 0;
  color: #fff;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.arz-footer__divider {
  width: 100%;
  height: 1px;
  margin-top: 25px;
  background: var(--arz-footer-divider);
  opacity: 0.9;
}

.arz-footer__bottom {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 20px;
  padding-top: 44px;
}

.arz-footer__copyright {
  margin: 0;
  color: #fff;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.arz-footer__payments {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.arz-footer__payments strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.arz-footer__payments img {
  display: block;
  width: min(459px, 100%);
  height: auto;
  object-fit: contain;
}

.arz-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.arz-footer__legal a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.arz-footer__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1099px) {
  .arz-footer__main {
    grid-template-columns: minmax(0, 1.35fr) minmax(140px, 0.72fr) minmax(150px, 0.8fr) minmax(280px, 1.3fr);
    gap: 28px;
  }

  .arz-footer__summary {
    font-size: 14px;
  }
}

@media (max-width: 899px) {
  .arz-site-footer {
    padding-top: 54px;
  }

  .arz-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 48px;
  }

  .arz-footer__bottom {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 34px;
  }

  .arz-footer__payments {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .arz-footer__legal {
    margin-top: 28px;
  }
}

@media (max-width: 599px) {
  .arz-site-footer {
    padding-top: 44px;
  }

  .arz-footer__main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .arz-footer__summary {
    max-width: 100%;
  }

  .arz-footer__address-title {
    margin-top: 28px !important;
  }

  .arz-footer__divider {
    margin-top: 38px;
  }

  .arz-footer__payments {
    display: grid;
    grid-template-columns: 1fr;
  }

  .arz-footer__payments img {
    width: 100%;
    max-width: 459px;
  }
}

@media (max-width: 379px) {
  .arz-footer__newsletter input[type="email"] {
    height: 48px;
    padding-right: 15px;
  }

  .arz-footer__newsletter button {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .arz-footer__address {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arz-site-footer *,
  .arz-site-footer *::before,
  .arz-site-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
