/* ================= payout HERO ================= */
.payout-hero1 {
  position: relative;
  height: 420px;
  margin-top: 62px;
}

.gradient-text {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payout-hero1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payout-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payout-hero-content1 {
  text-align: center;
  color: #fff;
}

.payout-hero-content1 h1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #eaffc7, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payout-hero-content1 p {
  margin-top: 14px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
}

.payout-page {
  font-family: Inter, system-ui, sans-serif;
}

/* HERO */
.payout-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 8%;
  align-items: center;
}

/* LEFT CONTENT */
.payout-hero-content {
  position: relative;
}

.payout-hero-content p {
  margin-top: 20px;
  color: #3b3b3b;
}

/* SMALL HEADING */
.payout-kicker {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 14px;
  padding-bottom: 6px;
}

/* UNDERLINE */
.payout-kicker::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #064e3b;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
}

.payout-hero h1 {
  font-size: 48px;
  line-height: 1.15;
}

.payout-hero h1 span {
  color: #22c55e;
}

/* BUTTON */
.payout-btn {
  margin-top: 24px;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.4);
}

/* RIGHT IMAGE FIX */
.payout-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.payout-hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .payout-hero {
    grid-template-columns: 1fr 1;
    text-align: center;
  }

  .payout-kicker::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .payout-hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .payout-hero {
    padding: 70px 20px;
    grid-template-columns: 1fr 1;
  }

  .payout-hero h1 {
    font-size: 36px;
  }

  .payout-hero-image img {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .payout-hero {
    grid-template-columns: 1fr;
  }
}


/* ================= SPLIT SECTION ================= */
.payout-split {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;

  background: linear-gradient(135deg, #041912, #0b3a2a, #06261c);

  color: #ffffff;
}

/* reverse layout */
.payout-split.reverse {
  direction: ltr;
}

/* ================= TEXT ================= */
.split-text h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.split-text h2 span {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-text p {
  margin-top: 18px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= IMAGE ================= */
.split-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .payout-split {
    grid-template-columns: 1fr 1;
    text-align: center;
  }

  .split-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .split-image {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .payout-split {
    padding: 90px 20px;
  }

  .split-text h2 {
    font-size: 32px;
  }

  .split-image img {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .payout-split {
    grid-template-columns: 1fr;
  }
}

/* ================= PAYOUT STEPS ================= */
.payout-steps {
  padding: 140px 8%;
  text-align: center;

  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* ================= HEADER ================= */
.steps-header h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #020617;
}

.steps-header h2 span {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #16a34a;
}

.steps-header p {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 15px;
  color: #64748b;
}

/* ================= GRID ================= */
.steps-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ================= CARD ================= */
.step-card {
  position: relative;
  padding: 44px 36px;
  border-radius: 28px;

  background: #ffffff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transform-style: preserve-3d;

  transition: background 0.55s ease, transform 0.55s ease, box-shadow 0.55s ease;

  animation: stepFloat 6s ease-in-out infinite;
}

/* SEQUENTIAL FLOAT */
.step-card:nth-child(2) {
  animation-delay: 0.8s;
}
.step-card:nth-child(3) {
  animation-delay: 1.6s;
}

/* FLOAT ANIMATION */
@keyframes stepFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= ICON ================= */
.step-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);

  transition: background 0.45s ease, transform 0.45s ease;
}

/* ICON VARIANTS */
.step-icon.fund {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.step-icon.onboard {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.step-icon.pay {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* ================= TEXT ================= */
.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #020617;
  transition: color 0.45s ease;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  transition: color 0.45s ease;
}

/* ================= HOVER (KEY PART) ================= */
.step-card:hover {
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  transform: translateY(-14px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  animation-play-state: paused;
  cursor: pointer;
}

/* TEXT WHITE ON HOVER */
.step-card:hover h4,
.step-card:hover p {
  color: #ffffff;
}

/* ICON CHANGE ON HOVER */
.step-card:hover .step-icon {
  background: linear-gradient(135deg, #0f766e, #16a34a);
  transform: scale(1.08);
}

/* ================= FINAL / SUCCESS CARD ================= */
.step-card.highlight {
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.step-card.highlight:hover {
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  transform: translateY(-14px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  animation-play-state: paused;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .payout-steps {
    padding: 100px 20px;
  }

  .steps-header h2 {
    font-size: 30px;
  }

  .steps-header h2 span {
    font-size: 17px;
  }

  .step-card {
    padding: 36px 28px;
  }
}

/* ================= NEXT GEN PAYOUTS ================= */
.payout-nextgen {
  padding: 80px 8%;
  text-align: center;

  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.15),
      transparent 60%
    ),
    linear-gradient(180deg, #020617, #041b16);
}

.payout-nextgen h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
}

.nextgen-subtext {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* GRID */
.nextgen-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* CARD */
.nextgen-card {
  position: relative;
  padding: 44px 34px;
  border-radius: 28px;

  background: linear-gradient(145deg, #062319, #07412f);
  color: #ecfdf5;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

/* FLOAT ANIMATION */
.nextgen-card {
  animation: nextgenFloat 6s ease-in-out infinite;
}
.nextgen-card:nth-child(2) {
  animation-delay: 0.8s;
}
.nextgen-card:nth-child(3) {
  animation-delay: 1.6s;
}
.nextgen-card:nth-child(4) {
  animation-delay: 2.4s;
}
.nextgen-card:nth-child(5) {
  animation-delay: 3.2s;
}

@keyframes nextgenFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ICON */
.nextgen-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.45);

  transform: translateZ(20px);
  transition: transform 0.4s ease;
}

/* TEXT */
.nextgen-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ecfdf5;
}

.nextgen-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* HOVER – FULL 3D EFFECT */
.nextgen-card:hover {
  transform: translateY(-16px) rotateX(6deg);
  background: linear-gradient(135deg, #020617, #042f2e);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.nextgen-card:hover .nextgen-icon {
  transform: scale(1.15) translateZ(30px);
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payout-nextgen {
    padding: 100px 20px;
  }

  .payout-nextgen h2 {
    font-size: 30px;
  }

  .nextgen-grid {
    margin-top: 60px;
  }
}

/* ================= PAYOUT GROWTH ================= */
.payout-growth {
  padding: 140px 8%;
  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

.payout-growth h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 80px;
}

/* WRAP */
.growth-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

/* ================= ACCORDION ================= */
.growth-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ================= CARD ================= */
.growth-item {
  border-radius: 24px;
  padding: 22px 24px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* ================= TITLE ================= */
.growth-title {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 16px;
  font-weight: 700;
  color: #020617;
}

.growth-title span {
  color: #16a34a;
  margin-right: 10px;
}

/* ================= ARROW ================= */
.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #020617;
  border-bottom: 2px solid #020617;
  transform: rotate(45deg);
  transition: transform 0.35s ease;
}

/* ================= CONTENT (HEIGHT CONTROL MAGIC) ================= */
.growth-content {
  display: grid;
  grid-template-rows: 0fr; /* CLOSED */
  transition: grid-template-rows 0.45s ease;
}

.growth-inner {
  overflow: hidden;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  padding-top: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ================= ACTIVE ================= */
.growth-item.active {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.growth-item.active .growth-content {
  grid-template-rows: 1fr; /* OPEN */
}

.growth-item.active .growth-inner {
  opacity: 1;
}

.growth-item.active .arrow {
  transform: rotate(225deg);
}

/* ================= MOBILE GIF ================= */
.mobile-gif {
  display: none;
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  margin-top: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* ================= DESKTOP IMAGE ================= */
.growth-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .growth-wrap {
    grid-template-columns: 1fr;
  }

  .growth-image {
    display: none;
  }

  .mobile-gif {
    display: block;
  }
}

/* ================= PAYOUT TAILORED ================= */
.payout-tailored {
  padding: 80px 8%;
  text-align: center;

  /* GLASS BACKGROUND */
  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

.payout-tailored h2 {
  font-size: 38px;
  font-weight: 800;
  color: #020617;
}

.tailored-sub {
  margin-top: 16px;
  font-size: 15px;
  color: #64748b;
}

/* ================= GRID ================= */
.tailored-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 38px;
}

/* ================= CARD ================= */
.tailored-card {
  position: relative;
  padding: 46px 34px;
  border-radius: 30px;

  /* STRONG GLASS */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

/* ICON */
.tailored-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* TEXT */
.tailored-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.tailored-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ================= HOVER ================= */
.tailored-card:hover {
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);

  transform: translateY(-18px) rotateX(6deg) rotateY(-3deg);

  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45), 0 0 60px rgba(34, 197, 94, 0.35);
}

.tailored-card:hover h4 {
  color: #ecfdf5;
}

.tailored-card:hover p {
  color: #bbf7d0;
}

.tailored-card:hover .tailored-icon {
  background: linear-gradient(135deg, #ffffff, #dcfce7);
  color: #065f46;
}

/* ================= FLOAT LOOP ================= */
.tailored-card {
  animation: floatCard 8s ease-in-out infinite;
}

.tailored-card:nth-child(2) {
  animation-delay: 0.6s;
}
.tailored-card:nth-child(3) {
  animation-delay: 1.2s;
}
.tailored-card:nth-child(4) {
  animation-delay: 1.8s;
}
.tailored-card:nth-child(5) {
  animation-delay: 2.4s;
}
.tailored-card:nth-child(6) {
  animation-delay: 3s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .payout-tailored {
    padding: 100px 20px;
  }

  .payout-tailored h2 {
    font-size: 30px;
  }

  .tailored-grid {
    margin-top: 60px;
  }

  .tailored-card {
    padding: 36px 26px;
  }
}

/* ================= PAYOUT FAQ ================= */
.payout-faq {
  padding: 120px 8%;
  background: #ffffff;
}

.payout-faq h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 70px;
}

/* FAQ LIST */
.faq-list {
  max-width: 900px;
  margin: auto;
}

/* DETAILS */
.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* SUMMARY */
.faq-list summary {
  list-style: none;
  cursor: pointer;

  font-size: 16px;
  font-weight: 600;
  color: #020617;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

/* ARROW */
.faq-list summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  transition: transform 0.3s ease;
}

/* OPEN STATE */
.faq-list details[open] summary::after {
  content: "–";
}

/* CONTENT */
.faq-list p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.faq-list ul {
  margin-top: 12px;
  padding-left: 18px;
}

.faq-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payout-faq {
    padding: 90px 20px;
  }

  .payout-faq h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .faq-list summary {
    font-size: 15px;
  }
}

/* ================= DISCOVER SECTION ================= */
.payout-discover {
  padding: 80px 8%;
  background: radial-gradient(
      circle at top left,
      rgba(34, 197, 94, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

/* WRAPPER */
.discover-content {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* ================= TEXT ================= */
.discover-text {
  position: relative;

  padding: 60px;
  border-radius: 32px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TITLE */
.discover-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 18px;
}

/* SUBTITLE */
.discover-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.discover-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
}

/* BUTTON */
.discover-btn {
  padding: 14px 36px;
  border-radius: 999px;
  border: none;

  font-size: 14px;
  font-weight: 700;
  color: #ffffff;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  cursor: pointer;

  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discover-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(34, 197, 94, 0.45);
}

/* ================= IMAGE ================= */
.discover-image {
  position: relative;
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

.discover-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;

  box-shadow: 0 50px 110px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .discover-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .discover-image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .payout-discover {
    padding: 100px 20px;
  }

  .discover-text {
    padding: 40px 28px;
  }

  .discover-text h2 {
    font-size: 30px;
  }

  .discover-image img {
    max-width: 100%;
  }
}
