@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap";
/* [project]/styles/customSelect.module.css [client] (css) */
.customSelect-module__AUPiBG__selectContainer {
  width: 100%;
  max-width: 320px;
  position: relative;
}

.customSelect-module__AUPiBG__selectButton {
  background: var(--bg-border);
  border: 1px solid var(--bg-border-bright);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all var(--transition-normal);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.25rem;
  font-size: .95rem;
  display: flex;
}

.customSelect-module__AUPiBG__selectButton:hover {
  background: var(--bg-border-bright);
  border-color: var(--text-muted);
}

.customSelect-module__AUPiBG__selectOpen .customSelect-module__AUPiBG__selectButton {
  border-color: var(--accent-primary);
  background: var(--accent-glow);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.customSelect-module__AUPiBG__selectIcon {
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.customSelect-module__AUPiBG__selectOpen .customSelect-module__AUPiBG__selectIcon {
  color: var(--accent-primary);
  transform: rotate(180deg);
}

.customSelect-module__AUPiBG__dropdownList {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-border);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-height: 300px;
  transition: all var(--transition-normal);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  overflow-y: auto;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0009;
}

.customSelect-module__AUPiBG__dropdownList::-webkit-scrollbar {
  width: 6px;
}

.customSelect-module__AUPiBG__dropdownList::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
}

.customSelect-module__AUPiBG__dropdownList::-webkit-scrollbar-thumb {
  background: var(--bg-border-bright);
  border-radius: 10px;
}

.customSelect-module__AUPiBG__dropdownList::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.customSelect-module__AUPiBG__selectOpen .customSelect-module__AUPiBG__dropdownList {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.customSelect-module__AUPiBG__dropdownItem {
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border-radius: 10px;
  margin-bottom: 2px;
  padding: .85rem 1rem;
  font-size: .95rem;
}

.customSelect-module__AUPiBG__dropdownItem:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.customSelect-module__AUPiBG__dropdownItem[data-selected="true"] {
  background: var(--accent-glow);
  color: var(--accent-primary);
  font-weight: 600;
}

/* [project]/styles/header.module.css [client] (css) */
.header-module__hZHEWW__header {
  height: var(--header-h);
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
  z-index: 100;
  transition: all var(--transition-normal);
  align-items: center;
  padding: 0 2rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-module__hZHEWW__headerContainer {
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
}

.header-module__hZHEWW__menuToggle {
  background: var(--bg-border);
  border: 1px solid var(--bg-border-bright);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 10px;
  margin-right: 1.5rem;
  padding: .5rem;
  display: none;
}

@media (max-width: 1024px) {
  .header-module__hZHEWW__menuToggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .header-module__hZHEWW__menuToggle:hover {
    background: var(--bg-border-bright);
    transform: scale(1.05);
  }
}

.header-module__hZHEWW__logoArea {
  transition: var(--transition-normal);
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  display: flex;
}

.header-module__hZHEWW__logoArea:hover {
  transform: scale(1.02);
}

.header-module__hZHEWW__logoText {
  color: var(--text-primary);
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  font-size: 1.25rem;
  font-weight: 700;
}

.header-module__hZHEWW__actions {
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  display: flex;
}

.header-module__hZHEWW__btnAction {
  background: var(--bg-border);
  border: 1px solid var(--bg-border-bright);
  color: var(--text-secondary);
  cursor: pointer;
  width: 42px;
  height: 42px;
  transition: all var(--transition-normal);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-module__hZHEWW__btnAction:hover {
  background: var(--accent-glow);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 10px 20px -10px var(--accent-glow);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .header-module__hZHEWW__logoText {
    display: none;
  }
}

/* [project]/styles/sidebar.module.css [client] (css) */
.sidebar-module__pMKfeW__sidebar {
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  top: var(--header-h);
  background: var(--bg-surface);
  border-right: 1px solid var(--bg-border);
  z-index: 40;
  transition: all var(--transition-normal);
  position: fixed;
  left: 0;
  overflow-y: auto;
}

.sidebar-module__pMKfeW__sidebarInner {
  padding: 2rem 1.5rem;
}

.sidebar-module__pMKfeW__headerTitle {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  align-items: center;
  margin-bottom: 1.25rem;
  margin-left: .75rem;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
}

.sidebar-module__pMKfeW__separator {
  background: var(--bg-border);
  height: 1px;
  margin: 1.5rem .75rem;
}

.sidebar-module__pMKfeW__navItem {
  margin-bottom: .5rem;
}

.sidebar-module__pMKfeW__navLink {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border-radius: 12px;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  text-decoration: none !important;
}

.sidebar-module__pMKfeW__navLink:hover {
  color: #fff;
  background: #ffffff08;
  transform: translateX(4px);
}

.sidebar-module__pMKfeW__navLinkActive {
  box-shadow: inset 0 0 0 1px #6366f133;
  color: var(--accent-primary) !important;
  background: #6366f11a !important;
}

.sidebar-module__pMKfeW__overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 35;
  opacity: 0;
  transition: opacity var(--transition-normal);
  background: #0009;
  display: none;
  position: fixed;
  inset: 0;
}

@media (max-width: 1024px) {
  .sidebar-module__pMKfeW__sidebar {
    background: var(--bg-surface-elevated);
    transform: translateX(-100%);
    box-shadow: 20px 0 50px #00000080;
  }

  .sidebar-module__pMKfeW__sidebarOpen {
    transform: translateX(0);
  }

  .sidebar-module__pMKfeW__overlayVisible {
    opacity: 1;
    display: block;
  }
}

/* [project]/styles/footer.module.css [client] (css) */
.footer-module__WlMSAW__footer {
  border-top: 1px solid var(--bg-border);
  background: #0003;
  margin-top: 4rem;
  padding: 3rem 0;
}

.footer-module__WlMSAW__footerContent {
  max-width: 1300px;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 3rem;
  font-size: .9rem;
  display: flex;
}

.footer-module__WlMSAW__link {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.footer-module__WlMSAW__link:hover {
  color: var(--accent-primary);
  text-decoration: none;
}

@media (max-width: 640px) {
  .footer-module__WlMSAW__footerContent {
    text-align: center;
    flex-direction: column;
    padding: 0 1.5rem;
  }
}

/* [project]/styles/tableOfContents.module.css [client] (css) */
.tableOfContents-module__x-c1da__tocWrapper {
  top: calc(var(--header-h)  + 4rem);
  width: 260px;
  height: fit-content;
  max-height: calc(100vh - var(--header-h)  - 6rem);
  border-left: 1px solid var(--bg-border);
  flex-shrink: 0;
  margin-left: 2rem;
  padding-left: 1.5rem;
  position: sticky;
  overflow-y: auto;
}

@media (max-width: 1440px) {
  .tableOfContents-module__x-c1da__tocWrapper {
    width: 220px;
    margin-left: 1rem;
  }
}

@media (max-width: 1200px) {
  .tableOfContents-module__x-c1da__tocWrapper {
    display: none;
  }
}

.tableOfContents-module__x-c1da__tocTitle {
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
}

.tableOfContents-module__x-c1da__tocList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tableOfContents-module__x-c1da__tocItem {
  margin-bottom: .5rem;
}

.tableOfContents-module__x-c1da__tocLink {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  font-size: .85rem;
  display: block;
}

.tableOfContents-module__x-c1da__tocLink:hover {
  color: #fff;
}

.tableOfContents-module__x-c1da__active {
  font-weight: 600;
  color: var(--accent-primary) !important;
}

/* [project]/styles/layout.module.css [client] (css) */
.layout-module__tIeA0q__container {
  background: var(--bg-main);
  background-image: radial-gradient(at 0 0, #6366f10d 0, #0000 50%), radial-gradient(at 100% 0, #a855f70d 0, #0000 50%);
  min-height: 100vh;
  display: flex;
}

.layout-module__tIeA0q__mainWrapper {
  padding-top: var(--header-h);
  transition: all var(--transition-normal);
  min-width: 0;
  padding-left: var(--sidebar-w);
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

@media (max-width: 1024px) {
  .layout-module__tIeA0q__mainWrapper {
    padding-left: 0;
  }
}

.layout-module__tIeA0q__mainContent {
  flex: auto;
  width: 100%;
  min-width: 0;
  max-width: 1100px;
  padding: 4rem 3rem;
}

@media (max-width: 1440px) {
  .layout-module__tIeA0q__mainContent {
    max-width: 900px;
    padding: 3rem 2rem;
  }
}

@media (max-width: 1024px) {
  .layout-module__tIeA0q__mainContent {
    max-width: 100%;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .layout-module__tIeA0q__mainContent {
    padding: 2rem 1rem;
  }
}

/* [project]/styles/globals.css [client] (css) */
:root {
  --bg-main: #06070a;
  --bg-surface: #0c0d12;
  --bg-surface-elevated: #15171e;
  --bg-surface-hover: #1c1f2a;
  --bg-border: #ffffff14;
  --bg-border-bright: #ffffff26;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-primary: #6366f1;
  --accent-secondary: #a855f7;
  --accent-hover: #818cf8;
  --accent-glow: #6366f14d;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #0ea5e9;
  --sidebar-w: 280px;
  --header-h: 72px;
  --glass: #0c0d12b3;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Outfit", "Inter", sans-serif;
  --transition-fast: .15s ease;
  --transition-normal: .25s cubic-bezier(.4, 0, .2, 1);
  --transition-soft: .5s cubic-bezier(.4, 0, .2, 1);
  --glass-blur: blur(12px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --title-gradient: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
  --border-glow: 0 0 0 1px var(--bg-border), 0 0 20px #0006;
  --bg-code-block: #ffffff0d;
  --bg-code-block-hover: #ffffff1a;
}

[data-theme="light"] {
  --bg-main: #cbd5e1;
  --bg-surface: #e2e8f0;
  --bg-surface-elevated: #f1f5f9;
  --bg-surface-hover: #94a3b8;
  --bg-border: #00000026;
  --bg-border-bright: #00000040;
  --text-primary: #0f172a;
  --text-secondary: #1e293b;
  --text-muted: #334155;
  --accent-primary: #4338ca;
  --accent-secondary: #7e22ce;
  --accent-hover: #3730a3;
  --accent-glow: #4338ca26;
  --title-gradient: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #fff 100%);
  --glass: #e2e8f0d9;
  --bg-code-block: #00000014;
  --bg-code-block-hover: #0000001f;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-primary);
  transition: all var(--transition-normal);
  text-decoration: none;
}

a:hover {
  filter: brightness(1.2);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  letter-spacing: -.04em;
  font-size: 3.5rem;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 3rem;
  font-size: 2.25rem;
}

h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.animate-fade-in {
  animation: fadeIn var(--transition-soft) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass {
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--bg-border);
}

.forum-root {
  background: var(--bg-main);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.forum-container {
  padding-top: var(--header-h);
  flex: 1;
}

.forum-header {
  border-bottom: 1px solid var(--bg-border);
  background: linear-gradient(#6366f10d, #0000);
  margin-bottom: 2rem;
  padding: 4rem 0;
}

.forum-title {
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  font-size: 3rem;
}

.forum-tagline {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .8rem;
}

.forum-content {
  padding-bottom: 5rem;
}

.forum-nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #06070af2 !important;
}

.nav-left {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.back-btn {
  color: var(--text-muted);
  border: 1px solid var(--bg-border);
  background: #ffffff0d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  display: flex;
}

.back-btn:hover {
  color: #fff;
  background: var(--accent-primary);
  border-color: var(--accent-glow);
}

.nav__lang-selector {
  border: 1px solid var(--bg-border);
  background: #ffffff0d;
  border-radius: 20px;
  align-items: center;
  gap: .5rem;
  margin-left: 2rem;
  padding: .5rem .75rem;
  display: flex;
}

.globe-icon {
  color: var(--text-muted);
}

.nav__lang-selector select {
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font-size: .8rem;
  font-weight: 600;
}

.nav__user-menu {
  border: 1px solid var(--bg-border);
  background: #ffffff08;
  border-radius: 40px;
  align-items: center;
  gap: 1rem;
  padding: .5rem 1rem;
  display: flex;
}

.nav__user-avatar {
  background: var(--accent-primary);
  border: 2px solid var(--accent-glow);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  overflow: hidden;
}

.user-avatar {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.user-icon {
  color: #fff;
}

.nav__user-info {
  flex-direction: column;
  display: flex;
}

.user-name {
  color: #fff;
  margin-bottom: .25rem;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
}

.nav__user-actions {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.admin-link {
  color: #ef4444;
  letter-spacing: 1px;
  font-size: .7rem;
  font-weight: 800;
}

.admin-link:hover {
  text-decoration: underline;
}

.logout-btn {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}

.logout-btn:hover {
  color: var(--danger);
}

.custom-lang-dropdown {
  z-index: 100;
  margin-left: 2rem;
  position: relative;
}

.custom-lang-trigger {
  border: 1px solid var(--bg-border);
  color: #fff;
  cursor: pointer;
  background: #ffffff0d;
  border-radius: 20px;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.custom-lang-trigger:hover {
  background: #ffffff14;
  border-color: #fff3;
}

.chevron-lang {
  opacity: .6;
  transition: transform .3s;
}

.chevron-lang.open {
  opacity: 1;
  transform: rotate(180deg);
}

.custom-lang-options {
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  pointer-events: auto;
  background: #0c0d12;
  min-width: 140px;
  max-height: 250px;
  padding: .25rem;
  list-style: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  overflow-y: auto;
  box-shadow: 0 10px 30px #00000080;
}

.custom-lang-options li {
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
  border-radius: 4px;
  padding: .65rem 1rem;
  font-size: .8rem;
  transition: all .2s;
}

.custom-lang-options li:hover {
  color: #fff;
  background: #ffffff0f;
}

.custom-lang-options li.active {
  background: var(--accent-primary);
  color: #fff;
}

.forum-actions {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
}

.search-bar {
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border-bright);
  flex: 1;
  align-items: center;
  height: 56px;
  padding: 0 1.5rem;
  display: flex;
}

.search-icon {
  color: var(--text-muted);
  margin-right: 1rem;
}

.search-bar input {
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
}

.new-post-btn {
  background: var(--accent-primary);
  color: #fff;
  border-radius: var(--radius-md);
  align-items: center;
  gap: .5rem;
  height: 56px;
  padding: 0 2rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.new-post-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.posts-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.post-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.post-card:hover {
  border-color: var(--accent-primary);
  background: #6366f10d;
  transform: translateX(10px);
}

.post-main {
  flex: 1;
}

.post-title {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.post-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.post-meta {
  color: var(--text-muted);
  gap: 2rem;
  font-size: .85rem;
  display: flex;
}

.meta-item {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.post-arrow {
  color: var(--text-muted);
  opacity: 0;
  font-size: 2rem;
  transition: all .3s;
}

.post-card:hover .post-arrow {
  opacity: 1;
  color: var(--accent-primary);
}

.new-post-container {
  max-width: 900px;
  margin: 0 auto;
}

.new-post-card, .post-detail {
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  margin-bottom: 3rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.new-post-card:before {
  content: "";
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.card-header {
  margin-bottom: 3rem;
}

.card-title {
  color: var(--text-primary);
  margin-bottom: .5rem;
  font-size: 2.2rem;
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.premium-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
  display: block;
}

.premium-input {
  width: 100%;
  border: 1px solid var(--bg-border-bright) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  background: #ffffff05 !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 1.1rem !important;
  transition: all .3s cubic-bezier(.4, 0, .2, 1) !important;
}

.premium-input:focus {
  border-color: var(--accent-primary) !important;
  background: #ffffff0a !important;
  box-shadow: 0 0 20px #6366f11a !important;
}

.premium-textarea {
  resize: vertical;
  min-height: 300px;
  line-height: 1.8 !important;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.category-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  cursor: pointer;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  transition: all .3s;
  display: flex;
}

.category-item:hover {
  border-color: var(--bg-border-bright);
  background: #ffffff0a;
  transform: translateY(-2px);
}

.category-item.active {
  border-color: var(--accent-primary);
  background: #6366f126;
  transform: translateY(-4px);
  box-shadow: 0 0 30px #6366f133;
}

.category-item.active .cat-icon-wrap {
  background: var(--accent-primary);
  color: #fff;
}

.text-accent {
  color: var(--accent-primary);
}

.active .text-accent {
  color: #fff;
}

.cat-icon-wrap {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  background: #ffffff08;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.active .cat-icon-wrap {
  color: var(--accent-primary);
  background: #6366f126;
}

.check-badge {
  background: var(--accent-primary);
  color: #fff;
  border-radius: 50%;
  padding: 2px;
  position: absolute;
  top: -5px;
  right: -5px;
}

.cat-info {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.cat-label {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
}

.cat-desc {
  color: var(--text-muted);
  font-size: .75rem;
}

.security-notice {
  color: var(--danger);
  border-radius: var(--radius-md);
  background: #ef44440d;
  border: 1px solid #ef44441a;
  gap: 1.25rem;
  margin: 2.5rem 0;
  padding: 1.5rem;
  display: flex;
}

.notice-text {
  flex-direction: column;
  gap: .25rem;
  font-size: .85rem;
  display: flex;
}

.notice-title {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
}

.form-footer {
  border-top: 1px solid var(--bg-border);
  justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 2rem;
  display: flex;
}

.btn-primary, .btn-secondary {
  border-radius: var(--radius-md);
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  font-size: .95rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 15px #6366f14d;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #6366f166;
}

.btn-secondary {
  color: var(--text-primary);
  border: 1px solid var(--bg-border);
  background: #ffffff0d;
}

.btn-secondary:hover {
  background: #ffffff1a;
}

.comments-section {
  max-width: 800px;
  margin: 0 auto;
}

.comment-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.comment-header {
  justify-content: space-between;
  margin-bottom: .75rem;
  font-size: .9rem;
  display: flex;
}

.comment-author {
  color: var(--accent-primary);
  font-weight: 600;
}

.comment-date {
  color: var(--text-muted);
}

.comment-body {
  color: var(--text-secondary);
  line-height: 1.6;
}

.comment-form {
  border-radius: var(--radius-md);
  margin-top: 3rem;
  padding: 1.5rem;
}

.comment-form textarea {
  border: 1px solid var(--bg-border-bright);
  color: #fff;
  border-radius: var(--radius-sm);
  background: none;
  outline: none;
  width: 100%;
  min-height: 120px;
  padding: 1rem;
}

.comment-form button {
  background: var(--accent-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding: .75rem 2rem;
  font-weight: 600;
  display: flex;
}

.post-actions, .comment-actions {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.action-btn {
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #ffffff08;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.action-btn.small {
  width: 28px;
  height: 28px;
}

.action-btn:hover {
  color: var(--text-primary);
  border-color: var(--bg-border-bright);
  background: #ffffff14;
}

.action-btn.edit:hover, .action-btn.edit.active {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: #6366f11a;
  box-shadow: 0 0 12px #6366f140;
}

.action-btn.delete:hover {
  color: var(--danger);
  border-color: var(--danger);
  background: #ef44441a;
  box-shadow: 0 0 12px #ef444440;
}

.category-tag {
  background: var(--accent-glow);
  color: var(--accent-primary);
  border-radius: 20px;
  padding: .2rem .8rem;
  font-size: .8rem;
  font-weight: 600;
}

.verification-warning {
  color: #f59e0b;
  background: #f59e0b1a;
  border-bottom: 1px solid #f59e0b;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.btn-key {
  color: #f59e0b !important;
  background: #f59e0b1a !important;
  border: 1px solid #f59e0b !important;
}

.upload-section {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.upload-hint {
  color: #f43f5e;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 600;
}

.btn-secondary.disabled {
  opacity: .4;
  cursor: not-allowed;
  border-style: dashed;
}

.btn-secondary.loading {
  pointer-events: none;
  opacity: .7;
}

.image-previews {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  display: flex;
}

.preview-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-border);
  background: #0000004d;
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.preview-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.preview-item.SUSPICIOUS {
  border: 2px solid #f59e0b;
  box-shadow: 0 0 10px #f59e0b4d;
}

.status-tag {
  color: #000;
  text-align: center;
  background: #f59e0b;
  padding: 2px 0;
  font-size: .6rem;
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.remove-img {
  color: #fff;
  cursor: pointer;
  background: #000000b3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: 2px;
  right: 2px;
}

.remove-img:hover {
  background: #ef4444;
}

.goog-te-banner-frame.skiptranslate, iframe.goog-te-banner-frame, .skiptranslate > iframe.goog-te-banner-frame, .goog-te-gadget-icon, .goog-te-gadget-simple, #goog-gt-tt, #goog-gt-tt *, .goog-tooltip, .goog-tooltip:hover {
  visibility: hidden !important;
  display: none !important;
}

html, body {
  position: static !important;
  top: 0 !important;
}

.goog-text-highlight {
  box-shadow: none !important;
  pointer-events: none !important;
  background-color: #0000 !important;
}

font {
  box-shadow: none !important;
  background-color: #0000 !important;
}

.custom-lang-options::-webkit-scrollbar {
  width: 6px;
}

.custom-lang-options::-webkit-scrollbar-track {
  background: #0003;
  border-radius: 4px;
}

.custom-lang-options::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 4px;
}

.custom-lang-options::-webkit-scrollbar-thumb:hover {
  background: #fff6;
}

@media (max-width: 991px) {
  .nav__lang-selector {
    justify-content: center;
    margin: 2rem 0 0;
  }

  .nav-left {
    gap: 1rem;
  }
}

/* [project]/styles/components.css [client] (css) */
.doc-page-title {
  background: var(--title-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: .5rem;
  font-size: 3rem;
}

.doc-table, table {
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  width: 100%;
  box-shadow: var(--border-glow);
  margin: 2rem 0;
  overflow: hidden;
}

.doc-table th, table th {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--bg-border);
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: .75rem;
  font-weight: 600;
}

.doc-table td, table td {
  border-bottom: 1px solid var(--bg-border);
  vertical-align: top;
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  line-height: 1.6;
  transition: background .2s, color .2s;
}

.doc-table tr:last-child td, table tr:last-child td {
  border-bottom: none;
}

.doc-table tr:hover td, table tr:hover td {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.doc-table th:first-child, .doc-table td:first-child, table th:first-child, table td:first-child {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: #ffffff05;
  width: 33.33%;
  max-width: 300px;
}

.doc-table th:last-child, .doc-table td:last-child, table th:last-child, table td:last-child {
  width: 66.66%;
}

.doc-table td:first-child code, table td:first-child code {
  color: var(--accent-primary);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-border-bright);
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 6px;
  max-width: 100%;
  padding: .35rem .6rem;
  font-family: JetBrains Mono, Consolas, monospace;
  font-size: .85em;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
  box-shadow: 0 2px 4px #0000000d;
}

.doc-table td:first-child code:hover, table td:first-child code:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px #0000001a;
}

.img-fluid {
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border-bright);
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  margin: 1.5rem auto;
  transition: transform .3s;
  display: block;
  box-shadow: 0 20px 40px #00000080;
}

.img-fluid:hover {
  transform: scale(1.02);
}

.doc-example {
  background: var(--bg-main);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  padding: 1.5rem;
  position: relative;
}

.doc-example-content:before {
  content: attr(data-label);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 700;
  display: block;
}

.doc-clipboard, .btn-clipboard {
  display: none !important;
}

code {
  background: var(--bg-surface-hover);
  color: var(--accent-code, #a5b4fc);
  border-radius: 4px;
  padding: .2rem .4rem;
  font-family: JetBrains Mono, Fira Code, Consolas, monospace;
  font-size: .9em;
}

pre {
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  background: #0d0e14;
  margin: 1.5rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}

pre code {
  color: #94a3b8;
  background: none;
  padding: 0;
}

.alert {
  border-radius: var(--radius-md);
  border-left: 4px solid #0000;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.alert-info {
  border: 1px solid #0ea5e926;
  border-left-color: var(--info);
  color: var(--text-primary);
  background: #0ea5e90d;
}

.alert-warning {
  border: 1px solid #f59e0b26;
  border-left-color: var(--warning);
  color: var(--text-primary);
  background: #f59e0b0d;
}

.alert-danger {
  border: 1px solid #ef444426;
  border-left-color: var(--danger);
  color: var(--text-primary);
  background: #ef44440d;
}

.alert-success {
  border: 1px solid #22c55e26;
  border-left-color: var(--success);
  color: var(--text-primary);
  background: #22c55e0d;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  display: grid;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .3s;
  text-decoration: none !important;
}

.card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px -15px #00000080, 0 0 20px -5px var(--accent-glow);
  transform: translateY(-6px);
}

.card-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-primary);
  background: #6366f11a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.card h4 {
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.badge-inline {
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--bg-border-bright);
  color: var(--text-secondary);
  border-radius: 20px;
  padding: .2rem .6rem;
  font-size: .7rem;
  font-weight: 700;
}

.badge-inline.info {
  color: var(--info);
  background: #0ea5e933;
}

.badge-inline.warning {
  color: var(--warning);
  background: #f59e0b33;
}

.badge-inline.danger {
  color: var(--danger);
  background: #ef444433;
}

.badge-inline.success {
  color: var(--success);
  background: #22c55e33;
}

.search-outer-container {
  z-index: 1000;
  max-width: 700px;
  margin: 0 auto;
  position: sticky;
  top: 1.5rem;
}

.search-glass-wrapper {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--bg-border-bright);
  border-radius: 20px;
  padding: 4px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px #0000004d, 0 0 0 1px #ffffff08;
}

.search-glass-wrapper:focus-within {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px -10px #0006, 0 0 25px -5px var(--accent-glow);
  transform: translateY(-2px);
}

.search-inner {
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.25rem;
  display: flex;
}

.search-icon-main {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color .3s;
}

.search-glass-wrapper:focus-within .search-icon-main {
  color: var(--accent-primary);
}

.search-input-premium {
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: .25rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.search-input-premium::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-clear-btn {
  background: var(--bg-border);
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.search-clear-btn:hover {
  color: var(--danger);
  background: #ef444426;
}

.search-shortcut {
  background: var(--accent-glow);
  pointer-events: none;
  border: 1px solid #6366f133;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: .25rem .75rem;
  display: flex;
}

.search-shortcut span {
  color: var(--accent-primary);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
}

.search-shortcut small {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-primary);
  opacity: .8;
  font-size: .65rem;
}

.search-glow-effect {
  background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0;
  width: 80%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.search-outer-container:focus-within .search-glow-effect {
  opacity: 1;
}

.no-results {
  background: var(--bg-surface);
  border: 1px dashed var(--bg-border-bright);
  text-align: center;
  border-radius: 24px;
  margin: 4rem 0;
  padding: 6rem 2rem;
}

@media (max-width: 1024px) {
  .doc-page-title {
    font-size: 2.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .doc-page-title {
    font-size: 2rem;
  }

  .doc-table, table {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
  }

  .doc-table th, .doc-table td, table th, table td {
    padding: .75rem 1rem;
    font-size: .9rem;
  }

  .doc-table th:first-child, .doc-table td:first-child, table th:first-child, table td:first-child {
    width: 40%;
  }

  .doc-table th:last-child, .doc-table td:last-child, table th:last-child, table td:last-child {
    width: 60%;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .search-outer-container {
    top: 1rem;
  }

  .search-shortcut {
    display: none;
  }

  .alert {
    gap: .75rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .doc-page-title {
    font-size: 1.75rem;
  }

  pre {
    padding: 1rem;
    font-size: .85rem;
  }

  .no-results {
    padding: 3rem 1rem;
  }
}

/* [project]/styles/home.css [client] (css) */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: 400;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "î˜€";
}

.w-icon-slider-left:before {
  content: "î˜";
}

.w-icon-nav-menu:before {
  content: "î˜‚";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "î˜ƒ";
}

.w-icon-file-upload-remove:before {
  content: "î¤€";
}

.w-icon-file-upload-icon:before {
  content: "î¤ƒ";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-webflow-badge, .w-webflow-badge * {
  z-index: auto;
  visibility: visible;
  box-sizing: border-box;
  float: none;
  clear: none;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 0;
  max-height: none;
  box-shadow: none;
  opacity: 1;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  -webkit-text-decoration: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  direction: ltr;
  background: none;
  border: 0 #0000;
  border-radius: 0;
  margin: 0;
  padding: 0;
  list-style-type: disc;
  transition: none;
  display: block;
  position: static;
  inset: auto;
  overflow: visible;
  transform: none;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  opacity: 1 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  overflow: visible !important;
  transform: none !important;
}

.w-webflow-badge > img {
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: 700;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

:-moz-any(.w-input:-moz-placeholder-shown, .w-select:-moz-placeholder-shown) {
  color: #999;
}

:is(.w-input:placeholder-shown, .w-select:placeholder-shown) {
  color: #999;
}

.w-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input::-webkit-input-placeholder {
  color: #999;
}

.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  font-size: inherit;
  line-height: inherit;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: outside;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate(0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #ddd;
  background-color: #010101;
  height: 100%;
  font-family: Robotomono, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Neuemachina, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Neuemachina, sans-serif;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Neuemachina, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
  transition: all .2s;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.fs-styleguide_row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-size-regular {
  font-size: 1rem;
}

.form {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.text-style-italic {
  font-style: italic;
}

.fs-styleguide_2-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: start;
  display: grid;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-size-small {
  font-size: .9rem;
  line-height: 160%;
}

.icon__image {
  width: 1.2rem;
  height: 1.2rem;
}

.social-link {
  color: #fff;
  background-color: #141414;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}

.social-link:hover {
  background-color: #243dc6;
}

.social-link:focus-visible, .social-link[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 3px solid #357af6;
}

.main-wrapper {
  flex: 1 0 auto;
  position: relative;
}

.show-mobile-portrait, .show-tablet {
  display: none;
}

.fs-styleguide_section-type {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.icon {
  z-index: 1;
  background-color: #f7f7f7;
  border-radius: 4px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: .2rem;
  display: flex;
}

.icon:focus-visible, .icon[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 3px solid #141414;
}

.text-size-large {
  font-size: 1.5rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.container {
  width: 100%;
  max-width: 75rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.in-nav {
  align-items: center;
  padding-left: 1.375rem;
  padding-right: 1.375rem;
  display: flex;
}

.fs-styleguide_3-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.show {
  display: block;
}

.text-size-medium {
  font-size: 1.25rem;
}

.page-wrapper {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  display: flex;
  position: relative;
}

.fs-styleguide_section {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

.form-input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.fs-styleguide_version-details {
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.form-checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem #3898ec;
}

.text-style-muted {
  opacity: .6;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.fs-styleguide_page-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hide {
  display: none;
}

.fs-styleguide_1-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_1-col.gap-medium {
  grid-row-gap: 2.5rem;
}

.form-radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form-radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem #3898ec;
}

.form-message-success {
  padding: 1.25rem;
}

.form-wrapper {
  margin-bottom: 0;
}

.page-padding {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.page-padding.style-2 {
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.form-checkbox, .form-radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.show-mobile-landscape {
  display: none;
}

.text-size-bold {
  color: #141414;
  font-size: 1rem;
  font-weight: 700;
}

.fs-styleguide_classes {
  display: none;
}

.fs-styleguide_color-sample {
  border: 1px solid #ddd;
  margin-top: .5rem;
  padding: 5rem;
}

.fs-styleguide_color-sample.khaki {
  background-color: #e5e5cc;
}

.fs-styleguide_color-sample.white-50 {
  background-color: #ffffff80;
}

.fs-styleguide_color-sample.black {
  background-color: #010101;
}

.fs-styleguide_color-sample.grey {
  background-color: #ddd;
}

.fs-styleguide_color-sample.turquoise {
  background-color: #e5e5cc;
}

.fs-styleguide_color-sample.white {
  background-color: #fff;
}

.fs-styleguide_color-sample.khaki-pressed {
  background-color: #d56d;
}

.h3-ultra-bold {
  font-weight: 800;
}

.nav {
  z-index: 100;
  background-color: #0000;
  background-image: linear-gradient(#000, #0000);
  flex: none;
  width: 100%;
  height: 88px;
  position: absolute;
  top: 0;
}

.logo {
  margin-right: 1.25rem;
  padding-left: 0;
}

.nav__menu-inner {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav__link {
  color: #fff;
  border: 1px solid #0000;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 15px;
  font-size: .875rem;
  line-height: 1.29;
  display: flex;
}

.nav__link:hover {
  border-color: #e5e5cc;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px #e5e5cc;
}

.btn {
  border: 2px solid #fdff8033;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 9.625rem;
  height: 2.75rem;
  font-size: .875rem;
  display: flex;
  position: relative;
}

.btn.style-2 {
  border-color: #67e9cb33;
}

.btn.style-2.in-track {
  flex: none;
}

.btn.style-3 {
  border-style: none;
  height: 3rem;
  padding: 3px;
}

.btn.style-3.in-discover {
  position: absolute;
  bottom: -1.5rem;
  right: 5%;
}

.btn.in-nav {
  margin-left: 1.25rem;
}

.btn-inner {
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 98%;
  height: 92%;
  padding: 10px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all .1s linear;
  display: flex;
}

.btn-inner.full-w-h {
  width: 100%;
  height: 100%;
}

.corner {
  border: 1px solid #e5e5cc;
  width: 8px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.corner.vertical {
  width: 0;
  height: 8px;
}

.corners {
  position: absolute;
  inset: -2px auto auto -2px;
}

.corners.corner-2 {
  inset: -2px -2px auto auto;
  transform: rotate(90deg);
}

.corners.corner-3 {
  inset: auto auto -2px -2px;
  transform: rotate(-90deg);
}

.corners.corner-4 {
  inset: auto -2px -2px auto;
  transform: rotate(180deg);
}

.logo-img {
  object-fit: contain;
  width: 9.75rem;
  height: 1.625rem;
}

.divider {
  opacity: .62;
  background-color: #ffffff42;
  width: 1px;
  height: 100%;
  box-shadow: 0 4px 24px #f4fafc;
}

.divider.center {
  z-index: 1;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.divider.left {
  z-index: 1;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.divider.right {
  z-index: 1;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.divider.in-nav {
  width: 100%;
  height: 1%;
}

.divider.in-marquee {
  width: 100%;
  height: 1px;
}

.divider.in-specs {
  background-color: #ffffffad;
  width: 100%;
  height: 1px;
}

.divider.in-form {
  opacity: .4;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
}

.nav__box {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

.section--hero {
  background-image: linear-gradient(#0000 60%, #010101);
  height: 100vh;
  padding-top: 19rem;
  padding-bottom: 1.875rem;
  position: relative;
  overflow: hidden;
}

.section--building {
  padding-top: 13.75rem;
  padding-bottom: 3rem;
  position: relative;
}

.section--glasses {
  z-index: 2;
  background-color: #010101;
  background-image: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e17_grid-bg.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  height: 300vh;
  position: relative;
}

.bg-box {
  width: 100%;
  max-width: 75rem;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}

.hero__wrapper {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  display: flex;
  position: relative;
}

.hero__h1 {
  text-transform: uppercase;
  height: 258px;
}

.hero__h1.bg-text-1 {
  color: #0000;
  max-width: none;
  height: 31px;
  margin-bottom: 2px;
  line-height: 1;
  overflow: hidden;
}

.hero__h1.bg-text-2 {
  color: #0000;
  max-width: none;
  height: 40px;
  margin-bottom: 2px;
  line-height: 1;
  overflow: hidden;
}

.scroll__arrow {
  color: #0000;
}

.scroll__arrow.arrow-1, .scroll__arrow.arrow-2 {
  margin-bottom: -10px;
}

.hero__scroll {
  flex-direction: column;
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
}

.scroll__text {
  font-size: 13px;
  line-height: 1;
}

.building__wrapper {
  z-index: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer {
  z-index: 1;
  background-color: #010101;
  flex: none;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.animate-2__wrapper {
  z-index: 1;
  flex: 0 50%;
  width: 60vw;
  max-width: 42.5rem;
  position: absolute;
  left: 0;
}

.building__info {
  flex: 0 43%;
  max-width: 29.5rem;
  padding-top: 4.25rem;
}

.title-bg-text {
  color: #0000;
  text-transform: uppercase;
  height: 20px;
  overflow: hidden;
}

.glasses__box {
  flex: 0 50%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.25rem;
  padding-bottom: 3.75rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.glasses__box.box-1 {
  position: static;
  inset: 0%;
}

.glasses__box.box-2, .glasses__box.box-3 {
  position: absolute;
  inset: 0%;
}

.glasses__img-wrap {
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.glasses__text {
  margin-bottom: 4.75rem;
}

.grid-bg-line {
  background-color: #fcff801a;
  width: 100%;
  height: 1px;
}

.grid-bg-line.line-1 {
  position: absolute;
  inset: 0% 0% auto;
}

.grid-bg-line.line-2 {
  position: absolute;
  inset: auto 0% 0%;
}

.glasses__pagination {
  color: #888;
  align-items: center;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.text-span {
  color: #e5e5cc;
  margin-right: 5px;
  font-size: 1.375rem;
  line-height: 1.64;
}

.section--vr {
  z-index: 1;
  padding-top: 13.5rem;
  padding-bottom: 4.125rem;
  position: relative;
}

.footer__wrapper {
  justify-content: space-between;
  align-items: center;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  display: flex;
}

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

.footer__soc-link {
  color: #e5e5cc;
  margin-right: 1.25rem;
  padding-top: 3px;
  padding-bottom: 3px;
}

.footer__soc-link:hover {
  color: #e5e5cc;
}

.footer__rights {
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.25;
}

.footer__nav {
  align-items: center;
  display: flex;
}

.vr__wrapper {
  justify-content: center;
  align-items: center;
  height: 47rem;
  margin-left: 2.375rem;
  margin-right: 2.375rem;
  display: flex;
  position: relative;
}

.vr__desktop-img.no-lazy {
  width: 400px;
  height: 350px;
}

.vr__item {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.vr-item__icon-wrap {
  background-color: #ffffff17;
  border: 1px solid #e5e5cc;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.vr-item__title {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.vr__content {
  max-width: 400px;
  position: relative;
}

.vr-item__text {
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 300;
}

.vr__vectors {
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.vr__vectors.from-right {
  position: absolute;
  left: auto;
  right: 0;
}

.vr__vector {
  background-image: linear-gradient(90deg, #ffffff26, #fff);
  flex: none;
  width: 100%;
  height: 1px;
}

.vr__vector.down {
  background-color: #fff;
  width: 56%;
  position: absolute;
  top: 49px;
  right: -118px;
  transform: rotate(45deg);
}

.vr__vector.top {
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: -114px;
  right: -169px;
  transform: rotate(-68deg);
}

.vr__vector.left {
  background-color: #fff;
  width: 61%;
  position: absolute;
  top: -45px;
  left: -134px;
  transform: rotate(-143deg);
}

.vr__vector.rotate-180 {
  background-image: linear-gradient(90deg, #fff, #ffffff26);
}

.line-tip {
  background-color: #fff;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px #ffffff80;
}

.line-tip.left-top {
  opacity: .55;
  top: 150px;
  left: 115px;
  right: auto;
  transform: none;
}

.line-tip.left-bottom {
  opacity: .55;
  inset: auto auto 68px 111px;
  transform: none;
}

.line-tip.right {
  opacity: .55;
  top: 183px;
  right: 87px;
  transform: none;
}

.section--discover {
  padding-top: 4.125rem;
  padding-bottom: 7.5rem;
  position: relative;
}

.discover__wrapper {
  z-index: 3;
  padding-left: 2.25rem;
  padding-right: 5.75rem;
  position: relative;
}

.text-primary {
  font-size: 1rem;
  font-weight: 300;
}

.text-primary.hero__text {
  max-width: 20.5rem;
  height: 48px;
  margin-left: 4.625rem;
}

.text-primary.discover__text {
  max-width: 25rem;
  margin-bottom: 6.625rem;
}

.text-primary.dropdown__text {
  margin-top: 14px;
  padding-right: 10px;
  display: block;
}

.discover__box {
  grid-column-gap: 7.5rem;
  perspective: 1000px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.discover__img-wrapper {
  position: relative;
}

.discover__img-wrapper.item-1 {
  flex: 0 50%;
  max-width: 33.75rem;
}

.discover__img-wrapper.item-2 {
  flex: 0 38%;
  max-width: 26.25rem;
  margin-top: -26%;
}

.grid-bg {
  z-index: 2;
  background-color: #010101;
  background-image: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e17_grid-bg.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 41%;
  position: absolute;
  bottom: 0;
}

.grid-bg.in-focntact {
  height: 37%;
}

.section--track {
  z-index: 2;
  padding-top: 12.5rem;
  position: relative;
}

.track__marquee-wrapper {
  background-color: #010101;
  height: 8.375rem;
  position: relative;
  overflow: hidden;
}

.track__marquee-box {
  grid-column-gap: 40px;
  flex: none;
  align-items: center;
  display: flex;
}

.track__text {
  text-transform: uppercase;
  flex: none;
  font-family: Neuemachina, sans-serif;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
}

.track__arrows {
  color: #e5e5cc;
  align-items: center;
  display: flex;
}

.track__arrow {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.track__arrow.right-02 {
  opacity: .55;
  margin-left: -2px;
  margin-right: -3px;
}

.track__arrow.right-01 {
  opacity: .22;
}

.social-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.track__marquee {
  grid-column-gap: 100px;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
}

.track__banner {
  overflow: hidden;
}

.section--specs {
  padding-top: 12.5rem;
  position: relative;
}

.heading {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  font-family: Neuemachina, sans-serif;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.heading.in-discover {
  max-width: 28rem;
  margin-bottom: 2.875rem;
}

.heading.in-vr {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 39rem;
  margin-bottom: 3.625rem;
  margin-left: auto;
  margin-right: auto;
}

.heading.in-building {
  max-width: 29rem;
  margin-bottom: 4.125rem;
  padding-left: 0;
}

.heading.in-hero {
  z-index: 1;
  text-transform: uppercase;
  max-width: 43.75rem;
  margin-bottom: 3.125rem;
  font-size: 4.5rem;
  line-height: 1.2;
}

.heading.in-contact {
  text-align: center;
  align-items: center;
  margin-bottom: 4.125rem;
}

.heading.in-specs {
  margin-bottom: 4.125rem;
}

.specs__dropdown {
  width: 100%;
  overflow: hidden;
}

.specs__toggle {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 7rem;
  padding: 1rem 2.25rem;
  display: flex;
}

.specs__icon {
  border: 1px solid #ffffff70;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.spec__icon-span {
  background-color: #fff;
  width: 1.125rem;
  height: 2px;
  position: absolute;
}

.spec__icon-span.span-2 {
  transform: rotate(90deg);
}

.specs__toggle-title {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.specs__list {
  background-color: #0000;
  padding-bottom: 11.5rem;
  padding-left: 19rem;
  padding-right: 2.25rem;
  display: block;
  position: static;
  overflow: visible;
}

.specs__img-wrapper {
  margin-top: -4.5rem;
  margin-bottom: 3.25rem;
}

.specs__dropdowns {
  z-index: 2;
  background-image: linear-gradient(90deg, #0000, #010101 2% 98%, #0000);
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.specs__dropdown-wrapper {
  position: relative;
}

.specs__row {
  grid-column-gap: 6rem;
  display: flex;
}

.list {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.list__item {
  grid-column-gap: 10px;
  color: #fff;
  align-items: flex-start;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.38;
  display: flex;
}

.section--contact {
  padding-top: 12.5rem;
  padding-bottom: 3.75rem;
  position: relative;
}

.contact__wrapper {
  z-index: 3;
  position: relative;
}

.form-block {
  z-index: 3;
  background-color: #0a0c0a;
  width: 100%;
  max-width: 48.75rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 7.5rem;
}

.success-message {
  color: #010101;
  background-color: #e5e5cc;
}

.error-message {
  color: #010101;
  text-align: center;
}

.form__btn-wrapper {
  flex: none;
  width: 2.625em;
  height: 2.625rem;
  position: relative;
}

.form__btn {
  z-index: 1;
  background-color: #0000;
  border: 1px solid #e5e5cc;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  transition: opacity .2s linear;
  position: relative;
}

.form__btn:hover {
  box-shadow: 0 0 3px 1px #e5e5cc;
}

.form__btn-icon {
  color: #e5e5cc;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 14px;
  display: flex;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.form__input {
  color: #fff;
  background-color: #0000;
  border: 0 #000;
  margin-bottom: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.31;
}

.form__input::placeholder {
  color: #ffffff80;
  font-size: 1rem;
  line-height: 1.31;
}

.nav__menu {
  flex: 1;
}

.nav-bg-1 {
  display: none;
}

.vr__item-box {
  width: 100%;
  max-width: 246px;
  position: absolute;
  top: -191px;
  left: -222px;
}

.vr__item-box.item-2 {
  position: absolute;
  top: auto;
  bottom: -152px;
  left: -222px;
}

.vr__item-box.item-3 {
  position: absolute;
  top: 25px;
  left: auto;
  right: -270px;
}

.blur__small-line {
  filter: blur(2px);
  background-color: #e5e5cc;
  width: 2px;
  height: 55px;
  position: absolute;
}

.blur__small-line.center {
  top: 44px;
  left: 50%;
  transform: translate(-50%);
}

.blur__small-line.center.in-hero {
  top: 7.75rem;
}

.blur__small-line.left {
  left: 0;
}

.blur__small-line.left.in-hero {
  top: 383px;
}

.blur__small-line.left.in-vr {
  bottom: -48px;
}

.blur__small-line.left.in-contact {
  position: absolute;
  top: -45px;
}

.blur__small-line.right {
  right: 0;
}

.blur__small-line.right.in-hero {
  bottom: 104px;
}

.blur__small-line.right.in-building {
  bottom: 0;
}

.blur__small-line.right.in-vr {
  top: 39%;
}

.blur__small-line.right.in-discover {
  top: 56%;
}

.blur-line__in-specs {
  filter: blur(2px);
  background-color: #e5e5cc;
  width: 2px;
  height: 55px;
  position: absolute;
  bottom: 68px;
  right: 0;
}

.lottie-anima {
  z-index: 2;
  width: 100%;
  position: relative;
  left: 10%;
}

.glasses__wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-left: 116px;
  display: flex;
  position: sticky;
  top: 0;
}

.glasses__info {
  max-width: 25rem;
  position: relative;
}

.preloader {
  z-index: 999;
  background-color: #010101;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.hero__bg-video_wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero__bg-video, .preloader__video {
  width: 100%;
  height: 100%;
}

.list__item-span {
  color: #ddd;
}

.vr__desktop-img-box {
  position: relative;
}

.dropdowns {
  flex-direction: column;
  align-items: flex-start;
  height: 560px;
  display: flex;
}

.dropdown__line {
  background-color: #ffffff80;
  justify-content: center;
  align-items: flex-end;
  width: 2px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 36px auto 0% 8px;
}

.dropdown__head {
  z-index: 1;
  cursor: pointer;
  width: 100%;
  display: flex;
}

.dropdown__number {
  margin-right: 2.75rem;
}

.dropdown__list {
  background-color: #0000;
  padding-left: 4rem;
  display: none;
  position: static;
  overflow: visible;
}

.dropdown__list.w--open {
  background-color: #0000;
}

.dropdown__list.active {
  display: block;
}

.dropdown__title {
  text-transform: capitalize;
  white-space: normal;
}

.dropdown__wrapper {
  margin-bottom: 10px;
  padding-bottom: 74px;
  position: relative;
  overflow: visible;
}

.dropdown__line-blur {
  opacity: 0;
  filter: blur(3px);
  background-image: linear-gradient(#e5e5cc, #e5e5cc);
  border-radius: 100%;
  width: 1px;
  height: 40%;
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 0%;
  transform: translate(-50%);
  box-shadow: 0 0 0 1px #e5e5cc;
}

.specs-anchor {
  width: 100%;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
}

@media screen and (min-width: 1280px) {
  .building__info {
    max-width: none;
  }

  .vr__content {
    max-width: 544px;
  }

  .vr-item__text {
    font-size: 1rem;
  }

  .vr__vector.down {
    top: 64px;
    right: -153px;
  }

  .vr__vector.top {
    width: 75%;
    top: -104px;
    right: -180px;
    transform: rotate(-60deg);
  }

  .vr__vector.left {
    width: 70%;
    top: -30px;
    left: -169px;
    transform: rotate(-160deg);
  }

  .vr__vector.animate.down {
    width: 28%;
    top: 32px;
    right: -77px;
  }

  .vr__vector.animate.top {
    width: 64%;
    top: -96px;
    right: -138px;
    transform: rotate(-70deg);
  }

  .vr__vector.animate.left {
    top: -66px;
    left: -145px;
    transform: rotate(-131deg);
  }

  .line-tip.left-top {
    top: 165px;
    left: 86px;
  }

  .line-tip.left-bottom {
    bottom: 70px;
    left: 96px;
  }

  .line-tip.right {
    top: 199px;
    right: 68px;
  }

  .grid-bg {
    height: 28.125rem;
  }

  .grid-bg.in-focntact {
    height: 36%;
  }

  .heading.in-building {
    padding-right: 0;
  }

  .specs__row {
    grid-column-gap: 8.125rem;
  }

  .list__item {
    font-size: 1rem;
  }

  .vr__item-box {
    max-width: 320px;
    top: -130px;
    left: -290px;
  }

  .vr__item-box.item-2 {
    bottom: -115px;
    left: -290px;
  }

  .vr__item-box.item-3 {
    max-width: 250px;
    top: 70px;
    right: -290px;
  }

  .blur__small-line.left.in-vr, .blur__small-line.left.in-contact {
    left: 0;
  }

  .blur__small-line.right.in-building, .blur__small-line.right.in-vr {
    right: 0;
  }

  .blur__small-line.right.in-discover {
    top: 52%;
  }

  .dropdowns {
    max-width: 460px;
  }
}

@media screen and (min-width: 1920px) {
  .animate-2__wrapper {
    max-width: 60rem;
  }

  .grid-bg {
    height: 27rem;
  }

  .grid-bg.in-focntact {
    height: 34%;
  }

  .track__banner-img {
    width: 100%;
  }

  .specs__dropdowns {
    z-index: 2;
  }

  .blur__small-line.right.in-hero {
    z-index: 1;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.5rem;
  }

  .show-tablet {
    display: block;
  }

  .icon {
    padding: .625rem;
  }

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .page-padding, .page-padding.style-2 {
    padding-left: 1.375rem;
    padding-right: 1.375rem;
  }

  .page-padding.style-2.in-specs {
    padding-left: 0;
    padding-right: 0;
  }

  .nav__menu-inner {
    z-index: 1;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-top: 5vh;
    position: relative;
  }

  .nav__link.in-nav {
    padding: 15px 40px;
    font-size: 1rem;
  }

  .nav__burger {
    grid-row-gap: 5px;
    perspective: 1000px;
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: -10px;
    padding: 0 10px;
    display: flex;
  }

  .nav__burger.w--open {
    background-color: #0000;
  }

  .btn.in-nav {
    margin-left: auto;
    margin-right: 15px;
  }

  .divider.left, .divider.right {
    display: none;
  }

  .divider.in-nav {
    z-index: 1;
    position: relative;
  }

  .nav__box {
    grid-row-gap: 20px;
    flex-direction: column;
    width: auto;
  }

  .section--hero {
    padding-top: 13.5rem;
  }

  .section--hero.no-async {
    height: 80vh;
  }

  .section--building {
    padding-top: 8rem;
  }

  .section--glasses {
    background-position: 50%;
    background-size: auto 80vh;
  }

  .hero__wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__h1 {
    height: 174px;
    font-size: 3rem;
  }

  .hero__h1.bg-text-1 {
    height: 20px;
  }

  .hero__h1.bg-text-2 {
    height: 27px;
  }

  .hero__scroll {
    display: none;
  }

  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .title-bg-text {
    font-size: 2.5rem;
  }

  .glasses__box {
    padding-top: 0;
    padding-bottom: 0;
  }

  .glasses__img-wrap {
    width: 100%;
    max-width: none;
    position: relative;
    right: auto;
  }

  .glasses__text {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .section--vr {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .footer__wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .vr__wrapper {
    height: 40rem;
    margin-left: 0;
    margin-right: 0;
  }

  .vr__desktop-img {
    max-width: 300px;
  }

  .vr__desktop-img.no-lazy {
    height: 260px;
  }

  .vr-item__icon-wrap {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .vr-item__title {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .vr__content {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 724px;
    display: flex;
  }

  .vr-item__text {
    font-size: .8rem;
  }

  .vr__vector.animate.down {
    width: 69%;
  }

  .vr__vector.animate.top {
    top: -89px;
    right: -146px;
    transform: rotate(-63deg);
  }

  .vr__vector.animate.left {
    width: 45%;
    top: 19px;
    left: -85px;
    transform: rotate(155deg);
  }

  .line-tip {
    width: 6px;
    height: 6px;
  }

  .line-tip.left-top {
    top: 118px;
    left: 80px;
  }

  .line-tip.left-bottom {
    bottom: 46px;
    left: 76px;
  }

  .line-tip.right {
    top: 144px;
    right: 63px;
  }

  .section--discover {
    padding-bottom: 4rem;
  }

  .discover__wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .text-primary.hero__text {
    margin-left: 2rem;
  }

  .discover__box {
    grid-column-gap: 3rem;
  }

  .discover__img-wrapper.item-1 {
    margin-top: 64px;
  }

  .discover__img-wrapper.item-2 {
    margin-top: -82px;
  }

  .section--track {
    padding-top: 8rem;
  }

  .track__marquee-wrapper {
    height: 6rem;
  }

  .track__text {
    font-size: 2.5rem;
  }

  .track__arrows {
    height: 30px;
  }

  .section--specs {
    padding-top: 8rem;
  }

  .heading {
    padding-left: 0;
    padding-right: 0;
  }

  .heading.in-building {
    margin-bottom: 2.5rem;
  }

  .heading.in-hero {
    max-width: 25rem;
    padding-left: 0;
    padding-right: 0;
    font-size: 3rem;
  }

  .heading.in-specs {
    padding-left: 1.375rem;
    padding-right: 1.375rem;
  }

  .specs__toggle {
    padding-left: 1.375rem;
  }

  .specs__list {
    padding-bottom: 6rem;
    padding-left: 9rem;
  }

  .specs__img-wrapper {
    margin-top: 0;
  }

  .section--contact {
    padding-top: 8rem;
  }

  .nav__menu {
    background-color: #0000;
    overflow: hidden;
  }

  .nav-bg-1 {
    border: 1px solid #0000;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .vr__item-box {
    max-width: 200px;
    left: 0;
  }

  .vr__item-box.item-2 {
    bottom: -127px;
    left: 0;
  }

  .vr__item-box.item-3 {
    top: -105px;
    right: 0;
  }

  .blur__small-line.left, .blur__small-line.left.in-vr, .blur__small-line.left.in-contact {
    left: -1.375rem;
  }

  .blur__small-line.right, .blur__small-line.right.in-building, .blur__small-line.right.in-vr {
    right: -1.375rem;
  }

  .blur__small-line.right.in-discover {
    top: 47%;
  }

  .burger__span {
    background-color: #fff;
    width: 100%;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .lottie-anima {
    left: 0%;
  }

  .glasses__wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .fs-styleguide_section-type {
    font-size: .875rem;
  }

  .icon {
    margin-top: 0;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .container.in-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr 1fr;
  }

  .fs-styleguide_version-details {
    font-size: .875rem;
  }

  .fs-styleguide_page-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-padding.style-2 {
    height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .fs-styleguide_color-sample {
    padding: 2.5rem 2rem;
  }

  .nav {
    height: 70px;
  }

  .nav__burger {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: -6px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .btn {
    width: 7rem;
    height: 2.4rem;
  }

  .btn.style-3 {
    height: 2.4rem;
  }

  .btn-inner {
    font-size: .8rem;
  }

  .section--hero {
    flex-direction: column;
    padding-top: 9.5rem;
    padding-bottom: 0;
    display: flex;
  }

  .section--hero.no-async {
    height: auto;
    padding-top: 0;
  }

  .hero__h1 {
    height: 144px;
    font-size: 2.5rem;
  }

  .hero__h1.bg-text-1 {
    height: 16px;
  }

  .hero__h1.bg-text-2 {
    height: 22px;
  }

  .hero__scroll {
    position: absolute;
  }

  .building__wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }

  .animate-2__wrapper {
    flex: 0 100%;
    width: auto;
    position: relative;
  }

  .building__info {
    flex-basis: 100%;
  }

  .title-bg-text {
    height: 13px;
    font-size: 2rem;
  }

  .glasses__box {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .glasses__img-wrap {
    flex-basis: auto;
    width: 800px;
    margin-bottom: -40px;
  }

  .glasses__text {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .footer__wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .vr__wrapper {
    height: auto;
  }

  .vr__desktop-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .vr__item {
    max-width: 22rem;
    padding-left: 20px;
  }

  .vr__item.item-3 {
    padding-left: 0;
    padding-right: 20px;
  }

  .vr-item__icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
  }

  .vr-item__title {
    font-size: 1.25rem;
  }

  .vr__content {
    flex-direction: column;
    justify-content: flex-start;
    max-width: 288px;
    height: 520px;
  }

  .vr-item__text {
    margin-bottom: 0;
    font-size: .9rem;
  }

  .vr__vectors {
    width: 1px;
    height: 100%;
  }

  .vr__vector {
    background-image: linear-gradient(#fff, #ffffff26);
    width: 100%;
    height: 100%;
  }

  .vr__vector.rotate-180 {
    background-image: linear-gradient(#fff, #ffffff26);
  }

  .vr__vector.animate.down {
    width: 1px;
    height: 90%;
    top: -85%;
    right: -39px;
    transform: rotate(26deg);
  }

  .vr__vector.animate.top {
    width: 1px;
    height: 46%;
    top: -93px;
    right: -42px;
    transform: rotate(48deg);
  }

  .vr__vector.animate.left {
    width: 1px;
    height: 70%;
    top: -145px;
    left: -37px;
    transform: rotate(-29deg);
  }

  .line-tip {
    width: 4px;
    height: 4px;
    top: 0%;
    right: 50%;
    transform: translate(50%);
  }

  .line-tip.left-top {
    top: 118px;
    left: 76px;
  }

  .line-tip.left-bottom {
    bottom: 71px;
    left: 81px;
  }

  .line-tip.right {
    top: 144px;
    right: 73px;
  }

  .text-primary.discover__text {
    max-width: 25.5rem;
    margin-bottom: 3rem;
    font-size: .9rem;
  }

  .discover__box {
    grid-column-gap: 0rem;
    grid-row-gap: 5rem;
    flex-direction: column-reverse;
  }

  .discover__img-wrapper.item-1 {
    flex-basis: auto;
    width: 80%;
    margin-top: 0;
  }

  .discover__img-wrapper.item-2 {
    flex-basis: auto;
    align-self: flex-end;
    width: 60%;
    margin-top: 0;
  }

  .track__marquee-wrapper {
    height: 5rem;
  }

  .track__text {
    font-size: 2rem;
  }

  .track__arrows {
    height: 25px;
  }

  .heading.in-discover {
    margin-bottom: 2.5rem;
  }

  .heading.in-hero {
    max-width: 18rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }

  .heading.in-contact {
    margin-bottom: 3rem;
  }

  .heading.in-specs {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .specs__toggle {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .specs__list {
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .specs__img-wrapper {
    max-width: 15.625rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
  }

  .specs__row {
    grid-column-gap: 2rem;
    justify-content: space-between;
  }

  .form-block {
    padding: 3rem;
  }

  .form__btn-wrapper {
    width: 2em;
    height: 2rem;
  }

  .form__btn-icon {
    width: 16px;
    height: 12px;
  }

  .form__input {
    font-size: .875rem;
  }

  .form__input::placeholder {
    font-size: .875rem;
  }

  .vr__item-box {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    max-width: none;
    display: flex;
    position: relative;
    top: auto;
    left: auto;
  }

  .vr__item-box.item-2 {
    order: 1;
    position: relative;
    bottom: auto;
    left: auto;
  }

  .vr__item-box.item-3 {
    flex-direction: row-reverse;
    position: relative;
    top: auto;
    right: auto;
  }

  .blur__small-line.center.in-hero {
    height: 32px;
    top: 14px;
  }

  .blur__small-line.left, .blur__small-line.left.in-vr, .blur__small-line.left.in-contact {
    left: -1rem;
  }

  .blur__small-line.right, .blur__small-line.right.in-building, .blur__small-line.right.in-vr {
    right: -1rem;
  }

  .glasses__wrapper {
    overflow: hidden;
  }

  .glasses__info {
    flex-basis: auto;
  }

  .hero__bg-video_wrapper {
    order: -1;
    height: 55vh;
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
  }

  .dropdowns {
    height: 460px;
  }

  .dropdown__number {
    margin-right: 1.75rem;
  }

  .dropdown__list {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .fs-styleguide_2-col {
    grid-template-columns: auto;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .section--building {
    padding-bottom: 6rem;
  }

  .section--glasses {
    background-size: auto 75vh;
  }

  .glasses__img-wrap {
    width: 180vw;
  }

  .discover__img-wrapper.item-1 {
    width: 90%;
  }

  .discover__img-wrapper.item-2 {
    width: 80%;
  }

  .grid-bg.in-focntact {
    height: 34%;
  }

  .specs__row {
    grid-column-gap: 0rem;
    grid-row-gap: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .list {
    grid-row-gap: 1.2rem;
  }

  .form-block {
    padding: 2rem 1.4rem;
  }

  .hero__bg-video_wrapper {
    height: 100%;
    margin-top: 2.5rem;
  }

  .hero__bg-video {
    height: 100%;
    position: relative;
  }

  .dropdowns {
    height: auto;
  }
}

#w-node-_792b3fd4-69ad-03ed-5e0e-ba5b074914bf-db9e0e06, #w-node-_792b3fd4-69ad-03ed-5e0e-ba5b074914df-db9e0e06, #w-node-_792b3fd4-69ad-03ed-5e0e-ba5b0749155f-db9e0e06, #w-node-_792b3fd4-69ad-03ed-5e0e-ba5b07491561-db9e0e06, #w-node-_792b3fd4-69ad-03ed-5e0e-ba5b07491563-db9e0e06 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@font-face {
  font-family: Sfprodisplay;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e0e_SFProDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sfprodisplay;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e12_SFProDisplay-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sfprodisplay;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e0d_SFProDisplay-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemachina;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e10_NeueMachina-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemachina;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e0f_NeueMachina-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemachina;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e11_NeueMachina-Ultrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemachina;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e13_NeueMachina-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Robotomono;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e14_RobotoMono-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Robotomono;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e16_RobotoMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Robotomono;
  src: url("https://assets.website-files.com/64a43fa5ca6570dddb9e0e08/64a43fa5ca6570dddb9e0e15_RobotoMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@media (min-width: 992px) {
  html.w-mod-js:not(.w-mod-ix) [data-w-id="248cd358-a951-70d6-471c-644a11683501"] {
    opacity: 0;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  html.w-mod-js:not(.w-mod-ix) [data-w-id="c0231c20-f6eb-632e-6966-efed4044d86e"] {
    transform-style: preserve-3d;
    background-color: #0000;
    border-color: #0000;
    transform: translate3d(0, 0, 0)scale3d(1, 1, 1)rotateX(0)rotateY(0)rotateZ(0)skew(0deg);
  }

  html.w-mod-js:not(.w-mod-ix) [data-w-id="38105ac7-f391-382a-0ae2-367bd369bf3f"] {
    opacity: 0;
    transform: translate3d(0, 10%, 0)scale3d(1, 1, 1)rotateX(0)rotateY(0)rotateZ(0)skew(0deg);
  }
}

body.no-scroll {
  overflow: hidden;
}

.w-richtext > :first-child {
  margin-top: 0;
}

.w-richtext > :last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
  margin-bottom: 0;
}

main:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.container {
  margin-left: auto !important;
  margin-right: auto !important;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

.btn .corner {
  box-shadow: 0 4px 4px #000000d9, 0 0 8px #09ff89d9, 0 2px 15px #b7ffef;
}

.btn:hover {
  border: 2px solid #0000;
}

.btn:hover .btn-inner {
  color: #202024;
  background-color: #e5e5cc;
}

.btn:hover .corner {
  box-shadow: 0 4px 4px #fff8b7d9, 0 0 6px #fff8b7d9, 0 2px 15px #fff8b7;
}

.btn.style-2:hover .btn-inner, .btn.style-3:hover .btn-inner {
  color: #010101;
  background-color: #e5e5cc;
}

.hero__h1.bg-text-1, .title-bg-text, .hero__h1.bg-text-2 {
  -webkit-text-stroke: 1px #678382;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #010101;
}

::-webkit-scrollbar-thumb {
  background: #678382;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e5e5cc;
}

/* [project]/styles/utilities.css [client] (css) */
.mt-2 {
  margin-top: .5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.my-2 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.fw-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.badge {
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: .375rem;
  padding: .25em .5em;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.bg-label-info {
  color: #0ea5e9;
  background-color: #0ea5e926;
}

.bg-label-warning {
  color: #f59e0b;
  background-color: #f59e0b26;
}

.table-bordered th, .table-bordered td {
  border: 1px solid var(--bg-border);
}

.fill-container {
  object-fit: contain;
  width: 100%;
}

/* [project]/styles/swiper-bundle.min.css [client] (css) */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(#00000080, #0000);
}

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next, .swiper-button-prev {
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  text-align: center;
  z-index: 10;
  transition: opacity .3s;
  position: absolute;
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: 100%;
  bottom: 10px;
  left: 0;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  border-radius: 50%;
  display: inline-block;
}

button.swiper-pagination-bullet {
  box-shadow: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, top .2s;
  display: inline-block;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s;
}

.swiper-pagination-progressbar {
  background: #00000040;
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: 100% 0;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  -ms-touch-action: none;
  background: #0000001a;
  border-radius: 10px;
  position: relative;
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  z-index: 50;
  width: 98%;
  height: 5px;
  position: absolute;
  bottom: 3px;
  left: 1%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  z-index: 50;
  width: 5px;
  height: 98%;
  position: absolute;
  top: 1%;
  right: 3px;
}

.swiper-scrollbar-drag {
  background: #00000080;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-flow: column wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  opacity: .6;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  filter: blur(50px);
  background: #000;
  position: absolute;
  inset: 0;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  transition-property: transform, opacity, height;
  overflow: hidden;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* [project]/node_modules/lenis/dist/lenis.css [client] (css) */
html.lenis, html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent], .lenis [data-lenis-prevent-wheel], .lenis [data-lenis-prevent-touch], .lenis [data-lenis-prevent-vertical], .lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-behavior: allow-discrete;
  transition-property: overflow;
  transition-duration: 1ms;
}

/*# sourceMappingURL=_9d228a60._.css.map*/