/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #f4efe6;
  --text: #1e1b16;
  --muted: rgba(30, 27, 22, 0.65);
  --btn: #241c18;
  --gold: rgba(139, 90, 43, 0.55);
  --line: rgba(30, 27, 22, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

/* ==================================
   WOW BACKGROUND FX
================================== */
.bg-fx{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blob{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.45;
  transform: translateZ(0);
}

.blob-1{
  top: -180px;
  left: -160px;
  background: rgba(139, 90, 43, 0.25);
  animation: blobFloat1 12s ease-in-out infinite;
}

.blob-2{
  top: 25%;
  right: -220px;
  background: rgba(30, 27, 22, 0.16);
  animation: blobFloat2 14s ease-in-out infinite;
}

.blob-3{
  bottom: -220px;
  left: 20%;
  background: rgba(139, 90, 43, 0.20);
  animation: blobFloat3 16s ease-in-out infinite;
}

@keyframes blobFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(60px, 80px) scale(1.1); }
}
@keyframes blobFloat2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-80px, 40px) scale(1.08); }
}
@keyframes blobFloat3{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px, -70px) scale(1.12); }
}

/* Film grain */
.noise{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.vignette{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(244,239,230,0) 0%, rgba(244,239,230,0) 45%, rgba(10,8,6,0.14) 100%);
  opacity: 0.65;
}

/* Cursor glow */
.cursor-glow{
  position: fixed;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle, rgba(139,90,43,0.35) 0%, rgba(139,90,43,0.15) 40%, rgba(139,90,43,0) 70%);
  transform: translate(-999px, -999px);
  filter: blur(6px);
}

/* ==================================
   HEADER / NAV
================================== */
.header {
  padding: 22px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 18px;
}

.logo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
  position: relative;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  border-bottom: 1px solid rgba(30, 27, 22, 0.35);
  padding-bottom: 4px;
}

.mobile-menu-links a.active{
  background: rgba(30, 27, 22, 0.06);
  border-color: rgba(139, 90, 43, 0.35);
  transform: translateY(-2px);
}

/* ==================================
   Buttons (WOW)
================================== */
.btn {
  text-decoration: none;
  background: var(--btn);
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn:hover{
  opacity: 0.95;
}

.btn-outline{
  text-decoration: none;
  color: rgba(30,27,22,0.88);
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(30, 27, 22, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-outline:hover{
  background: rgba(255,255,255,0.32);
}

.btn-shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0) 60%);
  transform: translateX(-120%);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine{
  0%{ transform: translateX(-120%); }
  45%{ transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}

/* ==================================
   WORLD CLASS MOBILE MENU
================================== */

.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(30, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
}

.hamburger span{
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: rgba(30, 27, 22, 0.85);
  transform: translateX(-50%);
  border-radius: 99px;
}

.hamburger span:nth-child(1){
  top: 17px;
}

.hamburger span:nth-child(2){
  top: 25px;
  width: 12px;
  opacity: 0.85;
}

.mobile-menu{
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;

  display: grid;
  place-items: end center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu-panel{
  width: min(520px, 96%);
  border-radius: 26px 26px 0 0;
  background: rgba(244, 239, 230, 0.97);
  border: 1px solid rgba(30, 27, 22, 0.12);
  box-shadow: 0 -25px 60px rgba(0,0,0,0.25);

  padding: 18px 18px 26px;

  transform: translateY(45px);
  transition: transform 0.35s ease;
}

.mobile-menu.show{
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.show .mobile-menu-panel{
  transform: translateY(0);
}

.mobile-menu-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}

.mobile-brand{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(30, 27, 22, 0.9);
}

.close-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(30, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 16px;
}

.mobile-menu-links{
  display: grid;
  gap: 10px;
  padding: 10px 0 18px;
}

.mobile-menu-links a{
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 26px;
  color: rgba(30, 27, 22, 0.9);

  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(30, 27, 22, 0.10);
  background: rgba(255, 255, 255, 0.22);

  transition: 0.2s ease;
}

.mobile-menu-links a:hover{
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
}

.mobile-menu-bottom{
  padding-top: 8px;
}

.mobile-line{
  height: 1px;
  background: rgba(30, 27, 22, 0.12);
  margin: 10px 0 16px;
}

.mobile-mini{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-label{
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(30, 27, 22, 0.45);
  margin-bottom: 3px;
}

.mini-value{
  font-size: 12.5px;
  color: rgba(30, 27, 22, 0.78);
}

.mobile-cta{
  text-decoration: none;
  background: #241c18;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.no-scroll{
  overflow: hidden;
}

@media (max-width: 900px){
  .nav{ display: none; }
  .hamburger{ display: inline-block; }
}

/* ==================================
   LANGUAGE SWITCH
================================== */
.lang-switch{
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-btn{
  border: 1px solid rgba(30, 27, 22, 0.18);
  background: rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.lang-btn.active{
  background: #111;
  color: #fff;
  border-color: #111;
}

.mobile-lang{
  margin-top: 18px;
  justify-content: center;
}

@media (max-width: 900px){
  .lang-btn{ padding: 7px 10px; }
  .desktop-lang{ display: none !important; }
}

/* ==================================
   HERO
================================== */
.hero-wrap {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* watermark */
.hero-watermark {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-size: clamp(190px, 38vw, 240px);
  letter-spacing: 6px;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

/* Big Title */
.hero-title {
  position: absolute;
  top: 80px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 0.95;
  z-index: 10;
  text-shadow: 0 18px 60px rgba(0,0,0,0.08);
}

/* CTA row */
.hero-cta{
  position: absolute;
  top: 265px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
}

/* Statue */
.hero-center {
  position: relative;
  z-index: 8;
  width: min(420px, 86vw);
  margin-top: 220px;
}

.statue-wrap{
  position: relative;
  transform: translateZ(0);
}

.statue {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 22px 35px rgba(0, 0, 0, 0.20));
  transform: translateZ(0);
}

.statue-glow{
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle at 50% 60%, rgba(139,90,43,0.22) 0%, rgba(139,90,43,0) 65%);
  filter: blur(10px);
  opacity: 0.8;
  z-index: -1;
}

/* LEFT / RIGHT texts */
.hero-left,
.hero-right {
  position: absolute;
  max-width: 240px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  z-index: 10;
}

.hero-left {
  left: 0;
  top: 350px;
}

.down-arrow {
  font-size: 24px;
  margin-bottom: 12px;
  color: rgba(30, 27, 22, 0.35);
}

.hero-left p {
  color: rgba(30, 27, 22, 0.75);
  font-weight: 400;
}

.hero-right {
  right: 0;
  top: 350px;
  text-align: left;
}

/* Circle text */
.circle-text {
  position: absolute;
  right: 40px;
  bottom: 50px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 1px solid rgba(30, 27, 22, 0.25);
  display: grid;
  place-items: center;
  z-index: 10;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.circle-text span {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: rgba(30, 27, 22, 0.65);
  white-space: nowrap;
  animation: spin 6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Soft rectangle outline */
.hero-wrap::after {
  content: "";
  position: absolute;
  width: min(760px, 92%);
  height: 360px;
  border: 2px solid rgba(30, 27, 22, 0.071);
  top: 250px;
  z-index: 4;
  border-radius: 18px;
}

/* premium sweep line animation */
.hero-sweep{
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(100deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.18) 48%, rgba(255,255,255,0) 65%);
  transform: skewX(-10deg);
  opacity: 0.35;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-left, .hero-right { display: none; }
  .circle-text { right: 10px; width: 80px; height: 80px; }
  .hero-wrap::after { height: 290px; }
  .hero-center { margin-top: 120px; }
  .hero-title{ top: 50px; }
  .hero-cta{ top: 250px; }
}

/* ==================================
   PRACTICE AREAS
================================== */
.practice {
  padding: 40px 0 50px;
  background: transparent;
}

.practice-wrap {
  text-align: center;
}

.practice-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.practice-subtitle {
  font-size: 13px;
  color: rgba(30, 27, 22, 0.55);
  line-height: 1.6;
  margin-bottom: 15px;
}

.practice-learn-more{
  display: inline-block;
  font-size: 13px;
  color: #8b5a2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 90, 43, 0.4);
  padding-bottom: 3px;
  margin-bottom: 55px; /* keeps spacing before cards */
}

.practice-learn-more:hover{
  border-bottom-color: rgba(139, 90, 43, 0.9);
}

.practice-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.practice-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(30,27,22,0.08);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.practice-card:hover{
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.practice-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  color: rgba(30, 27, 22, 0.75);
}

.practice-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(30, 27, 22, 0.9);
}

.practice-card p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(30, 27, 22, 0.55);
}

.active-glow{
  position: relative;
  border-color: rgba(139,90,43,0.22);
}
.active-glow::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, rgba(139,90,43,0.18) 0%, rgba(139,90,43,0) 55%);
  pointer-events: none;
}

/* responsive */
@media (max-width: 900px) {
  .practice-grid { gap: 40px; }
}

/* ==================================
   ATTORNEYS SECTION
================================== */
.attorneys{
  padding: 95px 0 120px;
  background: transparent;
}

.attorneys-title{
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  margin-bottom: 55px;
}

.attorneys-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.attorneys-left h3{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: right;
  line-height: 1.2;
  margin-bottom: 15px;
  color: rgba(30, 27, 22, 0.9);
}

.attorneys-left p{
  font-size: 13px;
  text-align: right;
  line-height: 1.6;
  color: rgba(30, 27, 22, 0.55);
  margin-bottom: 16px;
}

.learn-more{
  font-size: 13px;
  color: #8b5a2b;
  float: right;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 90, 43, 0.4);
  padding-bottom: 3px;
}

.learn-more:hover{
  border-bottom-color: rgba(139, 90, 43, 0.9);
}

.attorneys-right{
  position: relative;
  display: grid;
  place-items: center;
}

.attorney-frame{
  width: min(420px, 90%);
  height: 320px;
  background: rgba(139, 90, 43, 0.10);
  border-radius: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.attorney-frame::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.04);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  opacity: 0.35;
}

.attorney-img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0px 18px 25px rgba(0,0,0,0.15));
}

@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}

@media (max-width: 900px){
  .attorneys-grid{ grid-template-columns: 1fr; gap: 40px; }
  .stat-top-left{ left: 5px; top: 20px; }
  .attorneys-left h3, .attorneys-left p { text-align: center; }
  .attorneys-left{ text-align: center; }
  .learn-more{ display: inline-block; margin: 0 auto; float: none; }
  .stat-right{ right: 5px; top: 120px; }
  .stat-bottom-left{ left: 40px; bottom: 10px; }
}

/* ==================================
   BENEFITS (DARK)
================================== */
.benefits {
  background: #241c18;
  padding: 90px 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.benefits::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 25% 20%, rgba(139,90,43,0.28), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10), transparent 55%);
  opacity: 0.8;
  pointer-events:none;
}

.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.benefits-left h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.benefits-left p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.benefits-btn {
  display: inline-block;
  background: #f4efe6;
  color: #241c18;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}

.benefits-center {
  display: grid;
  place-items: center;
  padding: 0px 20px;
}

.benefits-img-wrap {
  aspect-ratio: 1/1.15;
  background: #f4efe6;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 60px 0px 60px 0px;
}

.benefits-img-wrap img {
  width: 95%;
  height: 95%;
  border-radius: 60px 0px 60px 0px;
  object-fit: cover;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefit-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-item p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 950px) {
  .benefits-wrap { grid-template-columns: 1fr; text-align: center; }
  .benefits-right { align-items: center; }
  .benefits-left { order: 1; }
  .benefits-center { order: 2; }
  .benefits-right { order: 3; }
}

/* ==================================
   FINAL CTA + FOOTER
================================== */
.final-cta{
  padding: 110px 0 80px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: min(980px, 92%);
  height: 1px;
  background: rgba(30, 27, 22, 0.08);
}

.final-title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.final-mid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.final-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(30, 27, 22, 0.85);
  border: 1px solid rgba(30, 27, 22, 0.15);
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease;
}

.final-line{
  width: 80px;
  height: 1px;
  background: rgba(30, 27, 22, 0.35);
}

.final-talk{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 1px;
}

.final-email{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 1px;
  margin-top: 8px;
  color: rgba(30, 27, 22, 0.9);
}

/* FOOTER */
.footer{
  background: rgba(30, 27, 22, 0.06);
  padding: 18px 0;
}

.footer-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo{
  font-weight: 500;
  letter-spacing: 0.4px;
}

.footer-links{
  display: flex;
  gap: 22px;
  font-size: 12px;
}

.footer-links a:hover{
  color: rgba(30, 27, 22, 1);
}

@media (max-width: 900px){
  .footer-wrap{
    flex-direction: column;
    text-align: center;
  }
  .final-line{ display: none; }
}

/* ==================================
   Motion reduced
================================== */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow{ display: none !important; }
}
