:root {
  --lv-bg: #04152d;
  --lv-bg-soft: #0c2345;
  --lv-surface: #ffffff;
  --lv-surface-alt: #f5f8fc;
  --lv-border: rgba(11, 35, 71, 0.08);
  --lv-text: #14233e;
  --lv-text-soft: #5f6f86;
  --lv-white-soft: rgba(255, 255, 255, 0.72);
  --lv-accent: #17d2d0;
  --lv-accent-dark: #0fa6b2;
  --lv-shadow: 0 30px 80px rgba(6, 20, 43, 0.18);
  --lv-radius-xl: 28px;
  --lv-radius-lg: 22px;
  --lv-radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--lv-text);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

h1,
h2,
h3,
.navbar-brand,
.btn,
.section-kicker {
  font-family: "Space Grotesk", sans-serif;
}

a {
  text-decoration: none;
}

.section-spaced {
  padding: 6.5rem 0;
}

.section-light {
  background:
    radial-gradient(circle at top, rgba(23, 210, 208, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(23, 210, 208, 0.16), transparent 22%),
    linear-gradient(180deg, #04152d 0%, #071c39 100%);
  color: #ffffff;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto;
}

.section-heading h2,
.why-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-heading p,
.hero-lead,
.faq-intro,
.contact-section p,
.site-footer p {
  color: var(--lv-text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-heading-dark {
  max-width: none;
}

.section-heading-dark h2,
.section-heading-dark p {
  color: #ffffff;
}

.section-kicker {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--lv-accent-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.navbar {
  padding: 1rem 0;
  background: rgba(4, 21, 45, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  font-weight: 700;
  color: #ffffff;
}

.brand-mark {
  color: var(--lv-accent);
  font-size: 1.65rem;
  line-height: 1;
}

.brand-mark.small {
  font-size: 1.2rem;
}

.brand-text {
  font-size: 1.2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin: 0 0.55rem;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  min-width: 48px;
  padding: 0.48rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.lang-btn.is-active {
  background: #ffffff;
  color: #031126;
}

.btn {
  border-radius: 14px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
}

.btn-brand-primary {
  color: #04203b;
  background: linear-gradient(135deg, var(--lv-accent) 0%, #58e7d6 100%);
  border: 0;
  box-shadow: 0 18px 40px rgba(23, 210, 208, 0.28);
}

.btn-brand-primary:hover {
  color: #04203b;
  background: linear-gradient(135deg, #31ded2 0%, #73f1df 100%);
}

.btn-brand-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.btn-brand-outline:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 6rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #031126 0%, #071a35 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: #ffffff;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.32;
}

.hero-glow-left {
  width: 320px;
  height: 320px;
  background: #11c4d3;
  top: 110px;
  left: -120px;
}

.hero-glow-right {
  width: 420px;
  height: 420px;
  background: #0c6ca8;
  bottom: -120px;
  right: -140px;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-lead {
  max-width: 600px;
  color: var(--lv-white-soft);
  margin-top: 1.5rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  background: rgba(7, 25, 49, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1rem;
  gap: 1rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.hero-product-panel {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(7, 25, 49, 0.82);
  margin-top: 0.15rem;
}

.product-shot {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.product-slider {
  position: relative;
}

.product-slide {
  display: none;
}

.product-slide.is-active {
  display: block;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-product-panel .product-shot img {
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(4, 21, 45, 0.68);
  color: #ffffff;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(4, 21, 45, 0.85);
}

.slider-arrow-prev {
  left: 1rem;
}

.slider-arrow-next {
  right: 1rem;
}

.product-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-note strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.product-note span {
  display: block;
  color: var(--lv-white-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

.selling-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: var(--lv-radius-md);
  background: #ffffff;
  border: 1px solid var(--lv-border);
  box-shadow: 0 18px 42px rgba(11, 35, 71, 0.08);
}

.selling-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  color: var(--lv-text);
}

.selling-card p {
  margin: 0;
  color: var(--lv-text-soft);
  line-height: 1.7;
}

.hero-sidebar {
  border-radius: 22px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.sidebar-menu li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.3rem;
  font-size: 0.93rem;
}

.sidebar-menu li.active,
.sidebar-menu li:hover {
  background: rgba(23, 210, 208, 0.16);
  color: #ffffff;
}

.hero-dashboard {
  border-radius: 22px;
  background: linear-gradient(180deg, #fefefe 0%, #f3f7fb 100%);
  padding: 1.25rem;
  color: var(--lv-text);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ghost-dot {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 35, 71, 0.18);
}

.dashboard-icons {
  display: flex;
  gap: 0.9rem;
  color: var(--lv-text-soft);
}

.hero-dashboard h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.mini-card,
.chart-card,
.status-card,
.activity-card,
.service-card,
.process-step,
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-md);
  box-shadow: var(--lv-shadow);
}

.mini-card {
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(11, 35, 71, 0.08);
}

.mini-card span,
.chart-header span,
.status-card span,
.activity-card span {
  display: block;
  color: var(--lv-text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.mini-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.mini-card small {
  color: #31af7f;
  font-weight: 700;
}

.chart-card,
.status-card,
.activity-card {
  padding: 1.1rem;
  box-shadow: 0 14px 34px rgba(11, 35, 71, 0.08);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-header small {
  color: var(--lv-text-soft);
}

.chart-lines {
  position: relative;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 35, 71, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 35, 71, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  background-size: 100% 42px, 42px 100%, auto;
}

.chart-lines svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #1697cc;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-lines .secondary-line {
  stroke: #26d0c4;
  opacity: 0.75;
}

.status-ring {
  width: 130px;
  height: 130px;
  margin: 1.25rem auto;
  border-radius: 50%;
  background: conic-gradient(var(--lv-accent) 0 60%, #dbe5f0 60% 100%);
  display: grid;
  place-items: center;
}

.ring-center {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
  color: var(--lv-text-soft);
  margin-bottom: 0.5rem;
}

.activity-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.activity-card p,
.activity-card small {
  margin: 0;
  color: var(--lv-text);
}

.service-card {
  padding: 2rem 1.6rem;
}

.icon-wrap,
.step-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(23, 210, 208, 0.16), rgba(23, 210, 208, 0.08));
  color: var(--lv-accent-dark);
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}

.service-card h3,
.process-step h3,
.case-card h3,
.testimonial-card strong,
.contact-options h3,
.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.service-card p,
.process-step p,
.case-card p,
.testimonial-card span,
.contact-options small,
.footer-links a,
.footer-links span {
  color: var(--lv-text-soft);
}

.service-card a,
.section-link {
  color: var(--lv-accent-dark);
  font-weight: 700;
}

.why-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(23, 210, 208, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.benefits-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.benefits-list i {
  color: var(--lv-accent-dark);
}

.results-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--lv-radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(23, 210, 208, 0.18), transparent 28%),
    linear-gradient(160deg, #03172f 0%, #0a274f 100%);
  box-shadow: 0 24px 70px rgba(5, 20, 44, 0.3);
}

.results-graphic {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  margin-bottom: 1.2rem;
  background: linear-gradient(180deg, rgba(23, 210, 208, 0.2), rgba(23, 210, 208, 0.08));
  font-size: 2.2rem;
  color: var(--lv-accent);
}

.results-card p,
.results-card span {
  color: rgba(255, 255, 255, 0.84);
}

.results-card strong {
  display: block;
  font-size: clamp(3rem, 7vw, 4rem);
  line-height: 1;
  color: var(--lv-accent);
  margin-bottom: 0.75rem;
}

.process-step {
  position: relative;
  padding: 2rem 1.45rem;
  text-align: center;
}

.step-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eafaf9;
  color: var(--lv-accent-dark);
  font-weight: 800;
}

.step-icon {
  margin: 0 auto 1.2rem;
}

.case-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  color: var(--lv-text);
  border-radius: var(--lv-radius-lg);
  box-shadow: 0 25px 60px rgba(4, 21, 45, 0.18);
}

.case-media {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.case-media-one {
  background:
    linear-gradient(rgba(4, 21, 45, 0.24), rgba(4, 21, 45, 0.18)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1200&q=80");
}

.case-media-two {
  background:
    linear-gradient(rgba(4, 21, 45, 0.22), rgba(4, 21, 45, 0.18)),
    url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1200&q=80");
}

.case-media-three {
  background:
    linear-gradient(rgba(4, 21, 45, 0.18), rgba(4, 21, 45, 0.16)),
    url("https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=1200&q=80");
}

.case-body {
  padding: 1.5rem;
}

.case-tag {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--lv-text-soft);
  font-size: 0.8rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.case-metrics strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.case-metrics span {
  display: block;
  font-size: 0.86rem;
  color: var(--lv-text-soft);
}

.testimonials-section {
  background:
    radial-gradient(circle at top, rgba(23, 210, 208, 0.08), transparent 24%),
    linear-gradient(180deg, #fdfefe 0%, #f7fbff 100%);
}

.testimonial-card {
  padding: 2rem 1.6rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.avatar-one {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=240&q=80");
}

.avatar-two {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=240&q=80");
}

.avatar-three {
  background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=240&q=80");
}

.faq-accordion .accordion-item {
  border: 1px solid var(--lv-border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 16px 40px rgba(11, 35, 71, 0.08);
}

.faq-accordion .accordion-button {
  padding: 1.25rem 1.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  background: #ffffff;
  color: var(--lv-text);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--lv-accent-dark);
  background: #f9fcff;
}

.faq-accordion .accordion-body {
  color: var(--lv-text-soft);
  line-height: 1.75;
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(23, 210, 208, 0.18), transparent 24%),
    linear-gradient(180deg, #06172f 0%, #071c39 100%);
  color: #ffffff;
}

.contact-shell {
  padding: 3rem;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 21, 45, 0.92) 0%, rgba(10, 30, 58, 0.98) 100%);
  background-size: 54px 54px, 54px 54px, auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.contact-section .section-kicker,
.contact-section h2,
.contact-section p {
  color: #ffffff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.form-label {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(23, 210, 208, 0.6);
  box-shadow: 0 0 0 0.25rem rgba(23, 210, 208, 0.16);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-feedback {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.3;
  border: 1px solid transparent;
}

.form-feedback.is-visible {
  display: inline-flex;
}

.form-feedback::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.form-feedback.is-info {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.form-feedback.is-info::before {
  background: rgba(255, 255, 255, 0.8);
}

.form-feedback.is-success {
  color: #dffaf0;
  background: rgba(17, 176, 120, 0.18);
  border-color: rgba(79, 220, 166, 0.28);
}

.form-feedback.is-success::before {
  background: #4fdca6;
}

.form-feedback.is-error {
  color: #ffe5e7;
  background: rgba(227, 74, 98, 0.2);
  border-color: rgba(255, 120, 141, 0.28);
}

.form-feedback.is-error::before {
  background: #ff8fa1;
}

#sendEmailButton[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.contact-options {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-options a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-options a:last-child {
  border-bottom: 0;
}

.contact-options i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(23, 210, 208, 0.12);
  color: var(--lv-accent);
  font-size: 1.3rem;
}

.contact-options span {
  display: flex;
  flex-direction: column;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #031126;
  color: #ffffff;
}

.site-footer h3 {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.75rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-sidebar {
    display: none;
  }

  .product-notes {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    padding: 2rem;
  }

  .hero-product-panel .product-shot img {
    min-height: auto;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 767.98px) {
  .section-spaced {
    padding: 5rem 0;
  }

  .hero-section {
    padding-top: 8rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .activity-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-shell {
    padding: 1.5rem;
  }
}
