@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Playfair+Display:wght@600&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap');










/* Reset styles */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
img {
  display: block;
  max-width: 100%;
}
.executive-vanguard {
  width: 100%;
  background: #0f0f0f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.imperial-hub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}
@media screen and (min-width: 1280px) {
  .imperial-hub {
    padding: 15px 120px;
  }
}
.sovereign-crest {
  display: flex;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
}
.sovereign-crest img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sovereign-crest:hover {
  transform: rotate(5deg);
}
@media screen and (min-width: 1280px) {
  .sovereign-crest {
    width: 60px;
    height: 60px;
  }
}
.majestic-routes {
  display: none;
}
@media screen and (min-width: 1280px) {
  .majestic-routes {
    display: flex;
    align-items: center;
  }
}
.elite-paths {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.prestige-passage {
  position: relative;
  padding: 8px 10px;
}
.prestige-passage a {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: #dddddd;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.prestige-passage:hover a {
  color: #ffd700;
}
.prestige-passage::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffd700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.prestige-passage:hover::before {
  transform: scaleX(1);
}
.handheld-activator {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.handheld-activator:hover {
  opacity: 0.8;
}
.handheld-activator img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .handheld-activator {
    display: none;
  }
}
.adaptive-drawer {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 50px;
  align-items: center;
  transition: right 0.5s ease;
  z-index: 2000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
}
.adaptive-drawer.is-open {
  right: 0;
}
.drawer-terminator {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffd700;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.drawer-terminator:hover {
  transform: rotate(90deg);
}
.grand-choices {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
}
.drawer-selection {
  width: 90%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.adaptive-drawer.is-open .drawer-selection {
  opacity: 1;
  transform: translateY(0);
}
.drawer-selection:nth-child(1) {
  transition-delay: 0.1s;
}
.drawer-selection:nth-child(2) {
  transition-delay: 0.2s;
}
.drawer-selection:nth-child(3) {
  transition-delay: 0.3s;
}
.drawer-selection:nth-child(4) {
  transition-delay: 0.4s;
}
.drawer-selection a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px;
  display: block;
  border-radius: 5px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.drawer-selection:hover a {
  background: #2a2a2a;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.veil-shroud {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1999;
}
.veil-shroud.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1280px) {
  .adaptive-drawer,
  .veil-shroud {
    display: none;
  }
}
.imperial-epilogue-sanctum {
  width: 100%;
  background: #111111;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -8px 25px rgba(255, 215, 0, 0.1);
}
.container_footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 25px;
}
@media screen and (min-width: 1280px) {
  .container_footer {
    padding: 70px 120px;
  }
}
.sanctum-navigation-apparatus {
  width: 100%;
  margin-bottom: 40px;
}
.apparatus-roster {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .apparatus-roster {
    flex-direction: row;
    gap: 60px;
  }
}
.roster-segment a {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.roster-segment a:hover {
  color: #ffd700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}
@media screen and (min-width: 1280px) {
  .roster-segment a {
    font-size: 17px;
  }
}
.sanctum-cautionary-board {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 950px;
  text-align: left;
  margin-bottom: 40px;
}
.board-edict {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .board-edict {
    font-size: 16px;
  }
}
.alliance-confederates {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  padding: 15px;
  background: #222222;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.1);
  margin-bottom: 40px;
}
@media screen and (min-width: 1280px) {
  .alliance-confederates {
    gap: 35px;
    padding: 20px;
  }
}
.confederate-medallion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
}
.confederate-medallion:hover {
  opacity: 0.85;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.medallion-supreme {
  width: 90px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.15);
}
.medallion-supreme img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.medallion-radiant-tone img {
  filter: brightness(1.05);
}
.medallion-diminutive {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.15);
  background: transparent;
}
.medallion-diminutive img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
@media screen and (min-width: 1280px) {
  .medallion-supreme {
    width: 200px;
    height: 65px;
  }

  .medallion-diminutive {
    width: 50px;
    height: 50px;
  }
}
.sanctum-ownership-proclamation {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #bbbbbb;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .sanctum-ownership-proclamation {
    font-size: 14px;
  }
}
/* ===== Premium legal pages — shared styles (flex-only) ===== */
.vlt-legal-wrap {
  position: relative;
  background-color: #121214;
  color: #ececec;
  isolation: isolate;
  z-index: 1;
}
.vlt-legal-wrap > .container {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 80px;
  max-width: 1180px;
}
/* Head */
.vlt-legal-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 960px) {
  .vlt-legal-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.vlt-legal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  color: #f5f5f6;
  margin: 0;
}
.vlt-legal-title-mark {
  width: 14px;
  height: 28px;
  border-radius: 2px;
  background-color: #d4af37;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
  flex: 0 0 auto;
}
.vlt-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-size: 14px;
  color: #f0e6c2;
  background-color: rgba(20, 20, 22, 0.6);
  backdrop-filter: blur(2px);
  white-space: nowrap;
}
/* Content area */
.vlt-legal-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin-top: 20px;
}
.vlt-legal-lead,
.vlt-legal-p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #e6e6e7;
  margin: 0;
}
/* Section blocks */
.vlt-legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background-color: #161619;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(212, 175, 55, 0.08);
}
.vlt-legal-h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
  margin: 0;
  color: #f5f5f6;
}
.vlt-legal-ico {
  width: 18px;
  height: 18px;
  fill: #d4af37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
  flex: 0 0 auto;
}
/* Lists */
.vlt-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vlt-legal-li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.65;
  color: #e6e6e7;
}
.vlt-legal-li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
/* Links */
.vlt-legal-a {
  color: #d6b25f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.vlt-legal-a:hover {
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) inset;
}
/* Accessibility & readability */
.vlt-legal-copy a:focus-visible {
  outline: 2px dashed #d4af37;
  outline-offset: 2px;
}
.vlt-legal-copy {
  hyphens: auto;
  word-wrap: break-word;
}
/* Utility spacing within blocks */
.vlt-legal-gap-2 { margin-top: 8px; }
.vlt-legal-gap-3 { margin-top: 16px; }
.vlt-legal-gap-4 { margin-top: 24px; }
.vlt-legal-gap-6 { margin-top: 32px; }
/* Ensure nothing is overlapped by a mobile menu overlay when closed */
.vlt-legal-wrap { pointer-events: auto; }
.sovereign-assurance-archive {
  background: #111111;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.sovereign-assurance-archive::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1);
  z-index: 0;
}
.archive-principal-manifesto {
  position: relative;
  z-index: 1;
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 800px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .archive-principal-manifesto {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.archive-compendium {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .archive-compendium {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.compendium-entry {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .compendium-entry {
    width: calc(50% - 12.5px);
  }
}
@media screen and (min-width: 1280px) {
  .compendium-entry {
    width: calc(33.333% - 16.666px);
  }
}
.compendium-entry:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.entry-abstract {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #f0f0f0;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.3s ease;
}
.entry-abstract:hover {
  color: #ffd700;
}
.entry-abstract::marker {
  content: '';
}
.entry-abstract::after {
  content: '⊕';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ffd700;
  transition: transform 0.3s ease;
}
.compendium-entry[open] .entry-abstract::after {
  content: '⊖';
  transform: translateY(-50%);
}
.compendium-entry p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
  padding: 0 20px 15px 20px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sovereign-assurance-archive {
    padding: 50px 0;
  }

  .archive-principal-manifesto {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .entry-abstract {
    font-size: 18px;
    padding: 12px 15px;
  }

  .entry-abstract::after {
    right: 15px;
    font-size: 16px;
  }

  .compendium-entry p {
    font-size: 14px;
    padding: 0 15px 12px 15px;
  }
}
@media screen and (max-width: 360px) {
  .sovereign-assurance-archive {
    padding: 40px 0;
  }

  .archive-principal-manifesto {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .entry-abstract {
    font-size: 16px;
    padding: 10px 12px;
  }

  .entry-abstract::after {
    right: 12px;
    font-size: 14px;
  }

  .compendium-entry p {
    font-size: 13px;
    padding: 0 12px 10px 12px;
  }
}
.luxury-casino-repository {
  scroll-margin-top: 60px;
  width: 100%;
  background: #010101;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.luxury-casino-repository::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px rgba(255, 215, 0, 0.1);
  z-index: 0;
}
.vault-assemblage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.opulent-vault {
  background: linear-gradient(90deg,#000000bf,#0d1521bd,#070e18bd), url(./assets/card-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat no-repeat;
  background-size: cover cover;
  border-radius: 20px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  width: 100%;
  max-width: 1400px;
}
@media screen and (min-width: 1280px) {
  .opulent-vault {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 35px;
    gap: 30px;
  }
}
.opulent-vault:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 12px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-10px);
}
.vault-crown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 1280px) {
  .vault-crown {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .vault-crown {
    flex-basis: 35%;
  }
}
.crown-emblem {
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}
.emblem-portrait {
  width: 100%;
  min-width: 200px;
  height: auto;
  object-fit: cover;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
}
.crown-emblem:hover .emblem-portrait {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
  transform: scale(1.05);
}
.crown-evaluation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .crown-evaluation {
    align-items: flex-start;
  }
}
.evaluation-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .evaluation-frame {
    justify-content: flex-start;
  }
}
.evaluation-metric {
  color: #f0f0f0;
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.25);
}
.evaluation-icon {
  max-width: 120px;
  transition: box-shadow 0.5s ease;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.25));
}
.opulent-vault:hover .evaluation-icon {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}
.evaluation-spotlight {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .evaluation-spotlight {
    text-align: left;
    font-size: 19px;
  }
}
.merit-directory {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .merit-directory {
    flex-basis: 20%;
  }
}
.merit-record {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #d0d0d0;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}
.merit-record::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.25);
}
@media screen and (min-width: 1280px) {
  .merit-record {
    font-size: 16px;
  }
}
.exchange-avenues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
  padding: 10px;
  background: #151515;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);

  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .exchange-avenues {
    justify-content: flex-start;
      max-width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .exchange-avenues {
    flex-basis: 30%;
  }
}
.avenue-badge {
  width: 60px;
  height: auto;
  object-fit: contain;
  transition: filter 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}
.avenue-badge:hover {
  filter: brightness(1.4);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.exclusive-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 40px 20px;
  height: 55px;
  background: #000000;
  border-radius: 15px;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  align-self: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.2);
}
@media screen and (min-width: 1280px) {
  .exclusive-portal {
    flex-basis: 15%;
    width: 220px;
    height: 55px;
    font-size: 18px;
  }
}
.exclusive-portal:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transform: scale(1.08);
}
.exclusive-portal span {
  z-index: 1;
}
.regal-endorsement-exhibit {
  background-color: #0a0a0a;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.swiper-reviews {
  max-width: 100%;
  overflow: visible;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}
.endorsement-narrative {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #151515;
  border-radius: 12px;
  padding: 30px;
  max-width: 450px;
  height: auto;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.endorsement-narrative::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 40px;
  color: #ffd700;
  opacity: 0.3;
}
.endorsement-narrative::after {
  content: '”';
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 40px;
  color: #ffd700;
  opacity: 0.3;
}
.narrative-originator {
  font-family: 'Libre Baskerville', serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffd700;
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 1280px) {
  .regal-endorsement-exhibit {
    padding: 50px 0;
  }

  .endorsement-narrative {
    padding: 20px;
    font-size: 15px;
  }

  .endorsement-narrative::before,
  .endorsement-narrative::after {
    font-size: 30px;
  }

  .narrative-originator {
    font-size: 17px;
  }
}
@media (min-width: 1281px) {
  .endorsement-narrative {
    max-width: 550px;
    padding: 40px;
    font-size: 19px;
  }

  .narrative-originator {
    font-size: 21px;
  }
}
.regal-casino-stratification {
  width: 100%;
  background-image: url(./assets/rating.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.regal-casino-stratification::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.rating_container {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1280px) {
  .rating_container {
    padding: 60px 120px;
  }
}
.stratification-core-assembly {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}
.stratification-insight-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 30px;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: box-shadow 0.4s ease;
}
.stratification-insight-module:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}
.stratification-principal-caption {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  transition: text-shadow 0.3s ease;
}
.stratification-principal-caption:hover {
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
@media screen and (min-width: 1280px) {
  .stratification-principal-caption {
    font-size: 36px;
  }
}
.stratification-elaborate-synopsis {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f0f0f0;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}
.stratification-elaborate-synopsis:hover {
  color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .stratification-elaborate-synopsis {
    font-size: 18px;
  }
}
.elite-assessment-protocol {
  background-color: #0f0f0f;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.elite-assessment-protocol_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.protocol-descriptive-segment {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  text-align: left;
}
.segment-principal-declaration {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: text-shadow 0.4s ease;
}
.segment-principal-declaration:hover {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.segment-auxiliary-declaration {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}
.segment-auxiliary-declaration:hover {
  color: #ffd700;
}
.segment-elaborate-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d0d0d0;
  margin: 0;
  line-height: 1.7;
  transition: color 0.4s ease;
}
.segment-elaborate-excerpt:hover {
  color: #ffffff;
}
.protocol-illustrative-depiction {
  margin: 0;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.protocol-illustrative-depiction:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
}
.protocol-illustrative-depiction img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.protocol-illustrative-depiction:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1280px) {
  .elite-assessment-protocol_inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .protocol-descriptive-segment {
    max-width: 100%;
    text-align: center;
  }

  .protocol-illustrative-depiction {
    max-width: 100%;
  }

  .segment-principal-declaration {
    font-size: 28px;
  }

  .segment-auxiliary-declaration {
    font-size: 18px;
  }

  .segment-elaborate-excerpt {
    font-size: 15px;
  }
}
.elite-entertainment-portfolio {
  background-color: #0f0f0f;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.portfolio-executive-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .portfolio-executive-summary {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.summary-distinguished-proclamation {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: text-shadow 0.3s ease;
  width: 100%;
}
.summary-distinguished-proclamation:hover {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
@media screen and (max-width: 1023px) {
  .summary-distinguished-proclamation {
    font-size: 26px;
    text-align: center;
  }
}
.summary-supplementary-proclamation {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 600;
  color: #e8e8e8;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
  width: 100%;
}
.summary-supplementary-proclamation:hover {
  color: #ffd700;
}
@media screen and (max-width: 1023px) {
  .summary-supplementary-proclamation {
    font-size: 18px;
    text-align: center;
  }
}
.summary-visual-exhibit {
  margin: 0;
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  order: 3;
}
@media screen and (min-width: 1024px) {
  .summary-visual-exhibit {
    order: 2;
    width: 40%;
  }
}
.summary-visual-exhibit:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transform: scale(1.02);
}
.summary-visual-exhibit img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.summary-visual-exhibit:hover img {
  transform: scale(1.05);
}
.summary-catalogue-ensemble {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
  width: 100%;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .summary-catalogue-ensemble {
    order: 3;
    width: 55%;
  }
}
.ensemble-specimen {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
  transition: color 0.3s ease;
}
.ensemble-specimen:hover {
  color: #ffffff;
}
.ensemble-specimen::before {
  content: '♠';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 20px;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.2);
}
@media screen and (max-width: 1023px) {
  .ensemble-specimen {
    font-size: 14px;
    text-align: left;
  }
}
.imperial-terminology-compendium {
  background-color: #0a0a0a;
  padding: 50px 15px;
  position: relative;
  overflow: hidden;
}
.compendium-overview-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .compendium-overview-panel {
    align-items: center;
  }
}
.overview-principal-descriptor {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: text-shadow 0.4s ease;
}
.overview-principal-descriptor:hover {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
@media screen and (max-width: 1023px) {
  .overview-principal-descriptor {
    font-size: 26px;
  }
}
.overview-auxiliary-descriptor {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}
.overview-auxiliary-descriptor:hover {
  color: #ffd700;
}
@media screen and (max-width: 1023px) {
  .overview-auxiliary-descriptor {
    font-size: 18px;
  }
}
.compendium-entries-catalog {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.entry-key-phrase {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  transition: text-shadow 0.4s ease;
}
.entry-key-phrase:hover {
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  .entry-key-phrase {
    font-size: 16px;
  }
}
.entry-elucidation {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d8d8d8;
  line-height: 1.55;
  margin: 0;
  padding-left: 40px;
  transition: color 0.4s ease;
}
.entry-elucidation:hover {
  color: #f0f0f0;
}
@media screen and (max-width: 1023px) {
  .entry-elucidation {
    font-size: 14px;
  }
}
.entry-emblem {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: filter 0.4s ease;
}
.entry-key-phrase:hover .entry-emblem {
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.35));
}
.luxury-cookies-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(90deg, #1c0e2f, #3c2f5f);
  box-shadow: 0 -6px 24px rgba(255, 215, 0, 0.3);
  z-index: 999;
  overflow: hidden;
  isolation: isolate;
}
.luxury-cookies-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom center, rgba(255, 215, 0, 0.2), transparent 70%);
  z-index: 0;
  animation: luxeGlow 4s ease-in-out infinite;
}
@keyframes luxeGlow {
  0% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.03); }
  100% { opacity: 0.25; transform: scale(1); }
}
.cookies-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 16px;
}
@media screen and (min-width: 1280px) {
  .cookies-container {
    padding: 32px 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
}
.cookies-statement {
  max-width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .cookies-statement {
    max-width: 50%;
    text-align: left;
  }
}
.luxury-cookies-message {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
  animation: messageFadeIn 1s ease-out;
}
@media screen and (min-width: 1280px) {
  .luxury-cookies-message {
    font-size: 16px;
  }
}
@keyframes messageFadeIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookies-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 1280px) {
  .cookies-actions {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}
.cookies-accept-js {
  background: linear-gradient(45deg, #d4a017, #ffd700);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a0b2e;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cookies-accept-js::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.4s ease;
}
.cookies-accept-js:hover::before {
  left: 100%;
}
.cookies-accept-js:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
@media screen and (min-width: 1280px) {
  .cookies-accept-js {
    font-size: 15px;
    padding: 14px 28px;
  }
}
.cookies-decline-js {
  background: linear-gradient(45deg, #b91c1c, #dc2626);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cookies-decline-js::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.4s ease;
}
.cookies-decline-js:hover::before {
  left: 100%;
}
.cookies-decline-js:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}
@media screen and (min-width: 1280px) {
  .cookies-decline-js {
    font-size: 15px;
    padding: 14px 28px;
  }
}
.guild-vault {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #2e1a4d, #4a3c6f);
  border-radius: 12px;
  border: 2px solid #d4a017;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
  animation: vaultFadeIn 1.3s ease-out;
}
@media screen and (min-width: 1280px) {
  .guild-vault {
    gap: 20px;
    padding: 20px;
  }
}
@keyframes vaultFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.vault-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vault-partner:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}
.badge-luxe {
  width: 80px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ffd700;
}
.badge-luxe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.badge-velvet {
  background: linear-gradient(45deg, #7c3aed, #a855f7);
}
.badge-velvet img {
  filter: brightness(1.2);
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 1px solid #d4a017;
}
.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
@media screen and (min-width: 1280px) {
  .badge-luxe {
    width: 100px;
    height: 60px;
  }

  .badge-icon {
    width: 48px;
    height: 48px;
  }
}
.prestige-insight-domain {
  width: 100%;
  background: #000000;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.about_inner_info{
  display: flex;
  flex-direction: column;
}
.prestige-insight-domain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1);
  z-index: 0;
}
.domain-headline {
  position: relative;
  z-index: 1;
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1280px) {
  .domain-headline {
    font-size: 42px;
  }
}
.insight-narrative {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 950px;
  margin: 0 auto;
}
.narrative-segment {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: center;
  background: #0a0a0a;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.narrative-segment:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .narrative-segment {
    font-size: 15px;
    padding: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .narrative-segment {
    font-size: 17px;
    padding: 25px;
    text-align: left;
  }
}
.boxes {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 1%;
  background-position: top;
  animation: bgAnimate 6s infinite alternate-reverse ease-in-out;
  padding-top: 2px;
  @media screen and (max-width: 1440px) {
    height: 100vh;
    overflow: hidden;
  }
}
@keyframes bgAnimate {
  0% {
    background-size: 100% 1%;
  }
  100% {
    background-size: 100% 150%;
  }
}
.box {
  width: calc((100% - (39 * 2px)) / 40);
  aspect-ratio: 1;
  background-color: #2a2a2a;
  transition: background-color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  @media screen and (max-width: 1400px) {
    width: calc((100% - (19 * 3px)) / 20);
  }

  @media screen and (max-width: 480px) {
    width: calc((100% - (10 * 3px)) / 11);
  }
}
.box.active {
background: -webkit-linear-gradient(90deg,#373054,#33299c,#0f08e6); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(90deg,#373054,#33299c,#0f08e6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
background: -webkit-linear-gradient(90deg,#eae6ff,#f4f4f4); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(90deg,#eae6ff,#f4f4f4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: 800px;
  @media screen and (max-width: 1440px) {
    min-width: 300px;
  }
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #161616;
}
input,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 100px;
  resize: vertical;
}
input[type='checkbox'] {
  width: auto;
  margin-right: 10px;
}
.btn-2 {
  text-align: center;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 2px;
  position:relative;
  overflow:hidden;
  margin: 0 20px;
}
.btn-2:before {
  content: "";
  position: absolute;
  height: 11px;
  width: 100%;
  background : #fff;
  left: 0;
  top: 0;
  transition: all .3s;
  opacity: 0.3;
}
.btn-2:hover:before {
  top: 77%;
}
textarea {
  resize: none;
}
:root {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;

background: -webkit-linear-gradient(90deg,#405758,#5e787b,#405758); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(90deg,#405758,#5e787b,#405758); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.page-section{
  background-color: #fff;
  padding-top: 100px;
}
body {
  overflow-x: hidden !important;
}/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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 {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.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-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.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));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &: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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.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-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}
