/* Generated by vite-plugin-svg-spritemap */
.section-vpam-navigation {
  position: relative;
  min-height: 5.9375rem;
}

.section-menu-block {
  position: sticky;
  top: 5.9375rem;
  z-index: 10;
  pointer-events: auto;
  margin-bottom: 2rem;
}
.section-menu-block.not-visible {
  pointer-events: none;
  display: none !important;
}
.section-menu-block__container {
  display: flex;
  justify-content: center;
}

.section-menu {
  position: relative;
  overflow: hidden;
  background: rgba(47, 47, 47, 0.6);
  -webkit-backdrop-filter: blur(0.46875rem);
  backdrop-filter: blur(0.46875rem);
  border-radius: 6.25rem;
  padding: 0.75rem 1.5rem;
}
.section-menu::after, .section-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  display: block;
}
.section-menu::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0));
}
.section-menu::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0));
}
.section-menu.has-fade-right::after {
  opacity: 1;
}
.section-menu.has-fade-left::before {
  opacity: 1;
}
.section-menu ul {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #444 #222;
  -ms-overflow-style: none;
}
.section-menu ul::-webkit-scrollbar {
  height: 0.375rem;
  background: transparent;
}
.section-menu ul::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 0.1875rem;
}
.section-menu ul::-webkit-scrollbar-track {
  background: transparent;
}
.section-menu ul::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.section-menu__item a {
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 500;
}
.section-menu__item--active a {
  color: #b88a4a;
}
.section-menu__item a:hover {
  color: #b88a4a;
}

.section-menu-block.not-visible {
  display: none !important;
}