:root {
  --bg: #ffffff;
  --text: #0f1115;
  --muted: #4c525d;
  --soft-muted: #6f7682;
  --line: #dbe1eb;
  --surface: #ffffff;
  --primary: #0b50b2;
  --primary-deep: #08378f;
  --nav-dark: #05060a;
  --badge-bg: #dee8f7;
  --footer-bg: #d9e4f3;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 22px 60px rgba(10, 35, 87, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, calc(100% - 24px));
  margin-inline: auto;
}

.section {
  padding-block: 56px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro h2 {
  margin: 16px 0 12px;
  font: 700 44px/1.12 "Sora", sans-serif;
  letter-spacing: -0.02em;
  max-width: 780px;
}

.section-intro > p {
  margin: 0;
  max-width: 660px;
  font-size: 16px;
  color: #32363d;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 11px;
  border-radius: 13px;
  background: var(--badge-bg);
  font: 500 13px/1 "Manrope", sans-serif;
  color: #1a1f27;
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #0f63d4, #0a3f9f);
}

.badge-icon img {
  width: 13px;
  height: 13px;
  filter: brightness(4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 8px;
  backdrop-filter: saturate(130%) blur(10px);
  background: #f8f8f8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand-logo {
  width: 40px;
  height: 36px;
}

.brand-text {
  font: 800 30px/1 "Sora", sans-serif;
  letter-spacing: -0.02em;
  color: #07080c;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 13px;
  background: var(--nav-dark);
}

.navbar .navbar-collapse {
  flex-grow: 0;
}

.nav-link {
  border-radius: 9px;
  padding: 8px 12px;
  font: 600 12px/1 "Manrope", sans-serif;
  color: rgba(236, 238, 241, 0.96);
  transition: all 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}

.nav-link.active {
  color: #111622;
  background: #e8edf8;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #0d0f15;
  color: #fff;
  border-radius: 9px;
  padding: 8px 11px;
  font: 700 12px/1 "Manrope", sans-serif;
}

.menu-toggle.navbar-toggler {
  border: 0;
  box-shadow: none;
}

.menu-toggle.navbar-toggler:focus {
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 84px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  margin: 18px 0 18px;
  max-width: 960px;
  font: 800 58px/1.08 "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy {
  margin: 0;
  max-width: 800px;
  color: #242a34;
  font-size: 17px;
}

.hero-actions {
  margin-top: 28px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 11px;
  padding: 0 18px;
  font: 700 15px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, color 170ms ease, background 170ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--primary), #0d3f9e 65%, #0a2c80);
  box-shadow: 0 12px 28px rgba(8, 44, 128, 0.24);
}

.btn-outline {
  color: #12203a;
  border: 1.6px solid #1a57bb;
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #e9effb;
}

.section-insights {
  padding-top: 8px;
}

.hero,
.section-insights {
  background: #ffffff;
}

.section-talent,
.section-solution,
.section-testimonials {
  background: #ffffff;
}

.insights-carousel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 40px minmax(170px, 250px) minmax(260px, 390px) minmax(170px, 250px) 40px;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.carousel-nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #ccd4e2;
  background: rgba(255, 255, 255, 0.75);
  color: #364157;
  font-size: 16px;
  cursor: pointer;
  transition: all 180ms ease;
}

.carousel-nav:hover,
.carousel-nav:focus-visible {
  border-color: #4f76bf;
  color: #07328e;
  background: #fff;
}

.insight-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: #fff;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-side {
  height: clamp(180px, 20vw, 260px);
  filter: saturate(0.98);
}

.insight-left {
  transform: rotate(2deg);
}

.insight-right {
  transform: rotate(-2deg);
  border: 3px solid #0785f8;
}

.insight-main {
  height: clamp(230px, 28vw, 330px);
  box-shadow: var(--shadow-soft);
}

.dots {
  margin-top: 14px;
  display: flex;
  gap: 7px;
  justify-content: center;
}

.dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: #a6adb9;
  cursor: pointer;
  transition: all 180ms ease;
}

.dot.active {
  width: 15px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #7f8898;
}

.section-roadmaps {
  padding-top: 50px;
  background: #f8f8f8;
}

.roadmap-title {
  margin-bottom: 22px;
}

.industry-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 5px;
  border-radius: 11px;
  padding: 5px;
  background: #eaedf2;
}

.industry-tab {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: 700 13px/1 "Manrope", sans-serif;
  color: #14161d;
  cursor: pointer;
  transition: all 180ms ease;
}

.industry-tab.active {
  background: #f5f7fa;
  box-shadow: inset 0 0 0 1px #d5dbe5;
}

.roadmap-shell {
  margin-top: 14px;
  width: 100%;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
}

.roadmap-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #cbd4e2;
  background: #fff;
  color: #4a5260;
  font-size: 15px;
  cursor: pointer;
}

.roadmap-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-card {
  min-height: 280px;
  border-radius: 16px;
  border: 1px solid #dbe1eb;
  padding: 14px 14px 16px;
  background: #f8fafc;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.roadmap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(19, 33, 64, 0.08);
}

.phase-pill {
  display: inline-block;
  border-radius: 8px;
  background: #d8e6f8;
  color: #0f53b5;
  font: 800 14px/1 "Manrope", sans-serif;
  padding: 5px 9px;
}

.roadmap-card h3 {
  margin: 12px 0 4px;
  font: 800 27px/1.14 "Sora", sans-serif;
}

.roadmap-card small {
  color: #3e4653;
  font-size: 12px;
}

.roadmap-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.roadmap-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #161b24;
  font-size: 14px;
}

.roadmap-list li::before {
  content: "\2713";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 3px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0c4ba8;
  font-size: 9px;
}

.roadmap-cta {
  margin-top: 20px;
}

.section-talent {
  padding-top: 52px;
}

.talent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.talent-copy-wrap > h2 {
  margin: 16px 0 12px;
  font: 800 44px/1.08 "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.talent-copy-wrap > p:last-of-type {
  margin: 0;
  color: #232a33;
  font-size: 15px;
  max-width: 540px;
}

.talent-metrics {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  max-width: 280px;
}

.metric-card {
  border-radius: 11px;
  border: 1px solid #d9e0eb;
  background: #f9fbfd;
  padding: 10px 11px 10px;
}

.metric-card h3 {
  margin: 0;
  font: 800 30px/1 "Sora", sans-serif;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

.metric-card p {
  margin: 6px 0 0;
  color: #5f6773;
  font-size: 12px;
}

.talent-media {
  margin: 0;
  position: relative;
}

.talent-media > img {
  width: 100%;
  border-radius: 18px;
}

.floating-stat {
  position: absolute;
  border-radius: 9px;
  padding: 9px 11px;
  min-width: 108px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(4px);
}

.floating-stat strong {
  display: block;
  font: 800 28px/1 "Sora", sans-serif;
}

.floating-stat span {
  color: #343a45;
  font-size: 12px;
}

.floating-top {
  top: -12px;
  right: -16px;
}

.floating-bottom {
  left: -16px;
  bottom: -14px;
}

.section-solution h2,
.section-testimonials h2 {
  margin-top: 16px;
}

.quiz-card {
  width: min(700px, 100%);
  margin-top: 24px;
  border-radius: 16px;
  border: 1px solid #d6dce6;
  padding: 18px 18px 16px;
  background: #f5f7f9;
  text-align: left;
}

.quiz-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.quiz-head p {
  margin: 0;
  color: #1e2530;
  font-size: 13px;
}

#quizPercent {
  color: #313844;
  font-size: 12px;
}

.progress-line {
  margin-top: 8px;
  background: #dde4ef;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
}

#quizProgress {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #0d3f99, #0b52bc);
  transition: width 250ms ease;
}

.quiz-card h3 {
  margin: 22px 0 12px;
  font: 700 23px/1.14 "Sora", sans-serif;
}

.quiz-options {
  display: grid;
  gap: 9px;
}

.quiz-option {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 9px;
  border: 1px solid #cfd6e2;
  background: #fff;
  padding: 8px 10px;
  font: 600 13px/1.2 "Manrope", sans-serif;
  color: #1d2430;
  cursor: pointer;
  transition: border-color 170ms ease, background 170ms ease;
}

.quiz-option::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1.6px solid #a7b0c0;
  flex-shrink: 0;
}

.quiz-option.selected {
  border-color: #0d4fb1;
  background: #f0f5fd;
}

.quiz-option.selected::before {
  border: 4px solid #0d4fb1;
}

.quiz-error {
  margin-top: 8px;
  margin-bottom: 0;
  color: #b30f2f;
  font-size: 12px;
}

.quiz-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-result {
  width: min(700px, 100%);
  margin-top: 16px;
  text-align: left;
  border-radius: 16px;
  padding: 16px;
  background: #f4f8ff;
  border: 1px solid #ccdaf0;
}

.quiz-result h3 {
  margin: 0;
  font: 700 26px/1.2 "Sora", sans-serif;
}

.quiz-result p {
  margin-top: 8px;
  margin-bottom: 0;
  color: #222a35;
  font-size: 14px;
}

.quiz-result ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #19202a;
  display: grid;
  gap: 5px;
  font-size: 13px;
}

.result-actions {
  margin-top: 12px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.section-testimonials {
  padding-top: 58px;
}

.testimonials-shell {
  width: 100%;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.testimonial-track-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 12px;
  transition: transform 260ms ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  border-radius: 12px;
  border: 1px solid #dbe1eb;
  background: #f9fbfd;
  padding: 12px;
  text-align: left;
  min-height: 192px;
}

.testimonial-stars {
  font-size: 14px;
  color: #0d50b7;
  letter-spacing: 1px;
}

.testimonial-quote {
  margin: 10px 0 12px;
  color: #1d2430;
  font-size: 13px;
  min-height: 52px;
  position: relative;
  padding-right: 30px;
}

.testimonial-quote::after {
  content: "\201D";
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 40px;
  line-height: 1;
  color: #0e1118;
}

.testimonial-meta {
  border-top: 1px solid #dce2ed;
  padding-top: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-avatar {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #0f1626;
  color: #f7f9fd;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
}

.testimonial-name {
  margin: 0;
  font-weight: 800;
  color: #0f1115;
}

.testimonial-role,
.testimonial-sector {
  margin: 0;
  font-size: 12px;
  color: #4f5763;
}

.testimonial-sector {
  color: #0f50b6;
}

.section-faq {
  padding-top: 50px;
  background: #f8f8f8;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}

.faq-lead h2 {
  margin: 16px 0 0;
  font: 700 44px/1.1 "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  border: 1px solid #d7dde7;
  border-radius: 10px;
  background: #f7f9fb;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 12px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font: 700 16px/1.16 "Sora", sans-serif;
  color: #0f1218;
}

.faq-symbol {
  font: 600 15px/1 "Manrope", sans-serif;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  border-top: 1px solid #dfe5ee;
  padding: 10px 11px;
  color: #212730;
  font-size: 13px;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.section-footer {
  background: #e8f1ff;
  padding-top: 32px;
  padding-bottom: 0;
}

.cta-panel {
  border-radius: 12px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: linear-gradient(105deg, #0742a2 0%, #0a47a8 60%, #8aa7d3 100%);
  color: #eef4ff;
}

.cta-copy h2 {
  margin: 0;
  max-width: 500px;
  font: 700 46px/1.08 "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.cta-copy p {
  margin: 10px 0 0;
  max-width: 620px;
  color: #edf2ff;
  font-size: 15px;
}

.btn.cta-btn {
  background: #f1f6ff;
  color: #0f4cae;
  min-height: 44px;
  padding: 0 20px;
}

.site-footer {
  margin-top: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-about {
  padding-right: 10px;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand .brand-text {
  font-size: 31px;
}

.footer-about p {
  margin: 10px 0 0;
  color: #232a35;
  font-size: 12px;
  max-width: 230px;
}

.socials {
  margin-top: 10px;
  display: flex;
  gap: 7px;
}

.socials a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0f1729;
  color: #f0f4ff;
  display: grid;
  place-items: center;
  font: 700 10px/1 "Manrope", sans-serif;
}

.footer-grid h3 {
  margin: 0 0 7px;
  font: 700 18px/1.2 "Sora", sans-serif;
}

.footer-subtitle {
  margin-top: 11px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.footer-grid li a {
  color: #151b26;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 15px;
  border-top: 1px solid #b8c8e3;
  padding: 7px 0 9px;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: #1d2532;
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1270px) {
  .brand-text {
    font-size: 28px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section-intro h2,
  .talent-copy-wrap > h2,
  .faq-lead h2,
  .cta-copy h2 {
    font-size: 38px;
  }

  .section-intro > p,
  .cta-copy p {
    font-size: 15px;
  }

  .roadmap-card h3 {
    font-size: 24px;
  }

  .metric-card h3 {
    font-size: 26px;
  }

  .metric-card strong {
    font-size: 15px;
  }

  .quiz-card h3 {
    font-size: 21px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .footer-brand .brand-text,
  .footer-grid h3 {
    font-size: 17px;
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-link {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 62px;
  }

  .hero-title {
    font-size: 42px;
    max-width: 620px;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 580px;
  }

  .section-intro h2,
  .talent-copy-wrap > h2,
  .faq-lead h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .insights-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .insight-left,
  .insight-right {
    display: none;
  }

  .industry-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-shell {
    grid-template-columns: 1fr;
  }

  .roadmap-nav {
    display: none;
  }

  .roadmap-cards {
    grid-template-columns: 1fr;
  }

  .talent-grid {
    grid-template-columns: 1fr;
  }

  .talent-metrics {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-top {
    right: 8px;
    top: 8px;
  }

  .floating-bottom {
    left: 8px;
    bottom: 8px;
  }

  .quiz-head p {
    font-size: 13px;
  }

  .quiz-card h3 {
    font-size: 20px;
  }

  .testimonials-shell {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar .navbar-collapse {
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    z-index: 30;
  }

  .site-header .main-nav {
    width: 100%;
    padding: 9px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    box-shadow: 0 10px 24px rgba(12, 19, 35, 0.2);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 16px));
  }

  .header-inner {
    min-height: 58px;
  }

  .brand-logo {
    width: 34px;
    height: 31px;
  }

  .brand-text {
    font-size: 22px;
  }

  .badge {
    font-size: 11px;
  }

  .hero-title {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .section-intro h2,
  .talent-copy-wrap > h2,
  .faq-lead h2,
  .cta-copy h2 {
    font-size: 28px;
  }

  .section-intro > p,
  .cta-copy p {
    font-size: 14px;
  }

  .quiz-actions {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonials-shell > .carousel-nav {
    justify-self: center;
  }

  .faq-question {
    font-size: 14px;
    padding: 10px;
  }

  .faq-answer p {
    font-size: 12px;
    padding: 8px 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.4;
  }
}
