/* ===========================
   Victoria Gurariy Finance
   Nude Pink Palette
   =========================== */

:root {
  --bg: #f0ddcc;          /* nude pink */
  --bg-2: #e8d2bd;        /* deeper nude */
  --bg-3: #f7e7d8;        /* lighter nude */
  --surface: #faeee2;     /* card surface */
  --surface-2: #ffffff;   /* white surface */
  --line: rgba(60, 30, 20, 0.10);
  --line-strong: rgba(60, 30, 20, 0.22);
  --text: #1a1a1a;
  --text-muted: #5a4a42;
  --text-dim: #8a7a72;
  --accent: #1a1a1a;      /* black accent for elegance */
  --accent-2: #b8895c;    /* warm bronze */
  --whatsapp: #25d366;
  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 14px;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(60, 30, 20, 0.06);
  --shadow-md: 0 8px 28px rgba(60, 30, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(60, 30, 20, 0.12);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', 'Assistant', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   VG MARK (logo fallback)
   =========================== */
.vg-mark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--text);
  border-radius: 50%;
  font-size: 18px;
  color: var(--text);
}
.vg-mark--sm { width: 36px; height: 36px; font-size: 14px; border-width: 1.5px; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(240, 221, 204, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--transition), background 0.3s var(--transition);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(240, 221, 204, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.nav__name {
  font-size: 15px;
  letter-spacing: 0.02em;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14.5px;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s var(--transition);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 9px 20px;
  background: var(--text);
  color: var(--bg) !important;
  border-radius: 999px;
  transition: all 0.25s var(--transition);
}
.nav__cta:hover {
  background: var(--accent-2);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 137, 92, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 255, 255, 0.4), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 30, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 30, 20, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.hero__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--transition);
}
.hero__logo img {
  width: 260px;
  height: auto;
  mix-blend-mode: multiply;
}
.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.logo-fallback__mark {
  width: 110px;
  height: 110px;
  border: 3px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.logo-fallback__name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.logo-fallback__sub {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp 1s var(--transition) 0.15s both;
  color: var(--text);
}
.hero__title .accent {
  font-weight: 600;
  color: var(--accent-2);
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 44px;
  animation: fadeUp 1s var(--transition) 0.3s both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--transition) 0.45s both;
}

.hero__contact {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--transition) 0.6s both;
}
.hero__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.2s var(--transition);
}
.hero__contact-link svg { width: 16px; height: 16px; }
.hero__contact-link:hover { color: var(--text); }
.hero__contact-divider {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}
@media (max-width: 560px) {
  .hero__contact-divider { display: none; }
  .hero__contact { gap: 14px; flex-direction: column; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.3s var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent-2);
  color: white;
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 2px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section--dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  font-weight: 500;
}
.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-muted);
}
.prose p + p { margin-top: 20px; }
.prose strong { color: var(--text); font-weight: 600; }

/* ===========================
   FEATURES (services)
   =========================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.feature {
  padding: 36px 32px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.feature:hover::before { opacity: 1; }
.feature__num {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 20px;
  font-weight: 600;
}
.feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.feature p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   SERVICES LIST (4 detailed services)
   =========================== */
.services-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-item {
  display: flex;
  gap: 22px;
  padding: 36px 32px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}
.service-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.service-item:hover::before { opacity: 1; }

.service-item__mark {
  flex-shrink: 0;
  font-size: 28px;
  color: var(--accent-2);
  line-height: 1;
  margin-top: 4px;
  font-family: serif;
  transition: transform 0.4s var(--transition);
}
.service-item:hover .service-item__mark {
  transform: rotate(180deg);
}
.service-item__body { flex: 1; }
.service-item__body h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-item__body p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-item__body p + p { margin-top: 12px; }

@media (max-width: 960px) {
  .services-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-item { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .service-item__mark { font-size: 24px; }
}

/* ===========================
   WHY (cards)
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text);
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--text);
}
.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.why-card p + p { margin-top: 14px; }

/* ===========================
   STEPS (process)
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-shadow: var(--shadow-md);
}
.step h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* ===========================
   CONTACT
   =========================== */
.section--contact {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 137, 92, 0.12), transparent 70%),
    var(--bg);
}
.contact-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-card__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.contact-card__sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s var(--transition);
  min-width: 220px;
}
.contact-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-btn__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  line-height: 1.2;
}
.contact-btn__caption {
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.75;
  font-weight: 400;
}
.contact-btn__value {
  font-size: 15.5px;
  font-weight: 600;
}
.contact-btn--phone {
  background: var(--text);
  color: var(--bg);
}
.contact-btn--phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent-2);
  color: white;
}
.contact-btn--whatsapp {
  background: var(--whatsapp);
  color: white;
}
.contact-btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}
.contact-btn--email {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.contact-btn--email:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-card__note {
  font-size: 13.5px;
  color: var(--text-dim);
}

/* ===========================
   COPY BUTTON
   =========================== */
.contact-btn-group {
  display: inline-flex;
  align-items: stretch;
  gap: 8px;
}
.copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  align-self: center;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--transition);
  flex-shrink: 0;
}
.copy-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.copy-btn__icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 0.25s var(--transition), transform 0.25s var(--transition);
}
.copy-btn__icon--check {
  opacity: 0;
  transform: scale(0.5);
  color: #2f9b5d;
}
.copy-btn.is-copied .copy-btn__icon--copy {
  opacity: 0;
  transform: scale(0.5);
}
.copy-btn.is-copied .copy-btn__icon--check {
  opacity: 1;
  transform: scale(1);
}
.copy-btn.is-copied {
  background: rgba(47, 155, 93, 0.1);
  border-color: #2f9b5d;
  color: #2f9b5d;
}
.copy-btn.is-copied:hover {
  background: rgba(47, 155, 93, 0.15);
  color: #2f9b5d;
}

.copy-btn__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--transition), transform 0.2s var(--transition);
}
.copy-btn__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--text);
}
.copy-btn:hover .copy-btn__tooltip,
.copy-btn.is-copied .copy-btn__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Small variant for hero bar */
.copy-btn--sm {
  width: 28px;
  height: 28px;
  border-width: 1px;
}
.copy-btn--sm .copy-btn__icon {
  width: 13px;
  height: 13px;
}
.hero__contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 40px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.footer__tag {
  font-size: 13px;
  color: var(--text-dim);
}
.footer__contact {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer__contact a:hover { color: var(--text); }
.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .features, .why-grid, .steps {
    grid-template-columns: 1fr;
  }
  .steps::before { display: none; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__name { display: none; }
  .hero__logo img { width: 200px; }
  .nav__links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(240, 221, 204, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s var(--transition);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
  }
  .nav__links .nav__cta {
    margin: 12px 24px 4px;
  }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .hero__logo img { width: 160px; }
  .logo-fallback__mark { width: 140px; height: 140px; font-size: 56px; }

  .contact-card { padding: 44px 24px; }
  .contact-btn { width: 100%; min-width: 0; justify-content: center; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__contact { flex-direction: column; gap: 6px; align-items: center; }
}

/* ===========================
   REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
