@charset "UTF-8";
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #222222;
  --muted: #5d635f;
  --brand: #2fc95f;
  --brand-2: #35b95f;
  --deep: #1f4b3f;
  --card: #e8f4e8;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shadow: 0 16px 40px rgba(32, 41, 36, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(110deg, #1f4b3f, #225d4f 60%, #1e4a40);
  color: #fff;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  padding-bottom: 88px;
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.login {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.btn-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 400;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #28b653, #2ea651);
}

.btn-dark {
  background: var(--deep);
  color: #fff;
  font-weight: 500;
}

.btn-dark:hover {
  background: #16372f;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 40px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  max-width: 640px;
}

.hero-copy p {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 18px;
  line-height: 1.5;
  max-width: 600px;
}

.hero-note {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-note strong {
  color: #fff;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-left {
  width: 44%;
  height: 370px;
  left: 0;
  bottom: 8px;
  margin: 0;
  border-top-left-radius: 52px;
}

.photo-right {
  width: 52%;
  height: 500px;
  right: 0;
  top: 0;
  margin-right: 0;
  border-top-right-radius: 52px;
}

.floating-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  width: auto;
}

.floating-card {
  display: flex;
  gap: 10px;
}
.floating-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.floating-card h3 {
  margin: 0 !important;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0%;
}

.floating-card p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0%;
  font-size: 13px;
  white-space: nowrap;
}

.floating-card.top {
  left: -24px;
  top: 76px;
}

.floating-card.bottom {
  right: -24px;
  bottom: 24px;
}

.panel {
  margin-top: 44px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 42px;
}

.usp, main > section:not(.benefits, .cta) {
  max-width: 1240px;
  margin: 60px auto;
  padding: 0 24px;
}

.usp__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.usp-item--full {
  grid-column: 1 / -1;
}

.usp-item img {
  width: auto;
  height: 40px;
  margin-bottom: 19px;
}

.usp-item p:not(.h3) {
  margin-top: 7px;
  font-size: 14px;
  color: var(--muted);
}

/* Pricing cards */
.pricing-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pricing-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 14px 30px var(--shadow);
  padding: 20px 20px 18px;
}

.pricing-card .h3 {
  margin-bottom: 4px;
}

.pricing-card strong {
  font-size: 18px;
}

.pricing-card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.pricing-card li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 2px;
}

.pricing-note {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.billing-toggle {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.billing-toggle__label {
  color: var(--muted);
}

.billing-toggle__control {
  display: inline-flex;
  background: #e8f4ee;
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.billing-toggle__option {
  border: 0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.billing-toggle__option--active {
  background: #ffffff;
  color: var(--deep);
  box-shadow: 0 6px 16px rgba(31, 75, 63, 0.18);
}

.billing-toggle__hint {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-price {
  margin: 4px 0 6px;
}

.pricing-price--yearly {
  display: none;
}

.billing-toggle__free {
  color: var(--brand);
  font-weight: 700;
}

.pricing-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
  margin-right: 6px;
}

.pricing-new {
  font-weight: 700;
}

.pricing-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #1f4b3f;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-grid.billing-yearly .pricing-price--monthly {
  display: none;
}

.pricing-grid.billing-yearly .pricing-price--yearly {
  display: inline;
}

.panel h2,
.templates h2,
.about h2,
.benefits h2,
.faq h2,
.blog h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  background: #f7f8f6;
  border-radius: 14px;
  padding: 18px;
}

.feature-grid h3 {
  margin: 0;
  font-size: 16px;
}

.feature-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.templates {
  margin-top: 48px;
}

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

.section-head a {
  font-size: 14px;
  color: var(--deep);
  font-weight: 500;
  transition: color 0.2s ease;
}

.section-head a:hover {
  color: var(--brand);
}

.template-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.template-card {
  min-width: 180px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0e2b23;
}

.template-card img {
  height: 220px;
  opacity: 0.84;
}

.template-card span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-weight: 700;
}

.about {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.about figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
}

.about p {
  margin: 18px 0 28px;
  color: var(--muted);
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
}

.benefits {
  margin-top: 72px;
  background: linear-gradient(90deg, #cfe2cf, #c2d8c4 50%, #bad1bd);
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
}

.benefits-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-copy p {
  color: #3f514a;
  margin: 12px 0 24px;
}

.benefit-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin-inline: auto;
}

.benefit-cards div {
  background: #34bf62;
  color: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(31, 75, 63, 0.25);
}

.benefit-cards div:nth-child(2) {
  background: #24a754;
}

.benefit-cards div:nth-child(3) {
  background: #1f4b3f;
}

.benefits figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.benefits figure img {
  height: 100%;
  margin-inline: auto;
  max-width: 580px;
}

.faq {
  margin-top: 72px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq details {
  background: #eef4ef;
  border-radius: 12px;
  padding: 0 18px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.faq summary::marker {
  content: "";
}

.faq summary::after {
  content: "▾";
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq p {
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 12px;
    align-items: start;
  }
  .faq h2 {
    grid-column: 1/-1;
  }
  .faq details {
    margin-bottom: 0;
  }
}
.cta {
  margin-top: 64px;
  background: #d3e6d3;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: center;
  padding: 16px 20px 0;
}

/* Spodní mezera jen u CTA, které je poslední v main nad footerem */
main > .cta.container:last-child {
  margin-bottom: 48px;
}

.cta h2 {
  max-width: 640px;
  margin-bottom: 20px !important;
  font-size: clamp(28px, 2.5vw, 36px);
}

.cta .btn {
  margin-top: 10px;
}

.cta img {
  border-radius: 14px;
  max-height: unset;
  height: auto;
  width: 100%;
  max-width: 420px;
  object-fit: cover;
}

.blog {
  margin-top: 64px;
  margin-bottom: 64px;
}

.blog-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.blog-main,
.blog-list article {
  background: var(--surface);
}

.blog img {
  border-radius: 16px;
  overflow: hidden;
}

.blog-main img {
  height: 280px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}

.blog-main h3 {
  margin: 16px 16px 0;
  font-size: 23px;
}

.blog-main p {
  margin: 10px 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.blog-list {
  display: grid;
  gap: 12px;
}

.blog-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.blog-list img {
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.blog-list h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

/* Contact & auth forms */
.form-card {
  max-width: 520px;
  background: #f8fbf9;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 75, 63, 0.16);
  padding: 26px 26px 24px;
  border: 1px solid rgba(31, 75, 63, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(47, 201, 95, 0.55);
  background: #fbfefc;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.auth-extra {
  margin-top: 10px;
  font-size: 13px;
}

/* Auth (login) layout */
.auth-section {
  margin-top: 72px;
  margin-bottom: 80px;
}

.auth-section h1 {
  margin-bottom: 6px;
}

.auth-section > p {
  max-width: 520px;
  color: var(--muted);
}

.auth-grid {
  align-items: stretch;
}

.auth-card {
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(47, 201, 95, 0.12), transparent 60%);
  pointer-events: none;
}

.auth-card .h3 {
  margin-top: 4px;
  margin-bottom: 8px;
}

.auth-card .form {
  margin-top: 6px;
}

.auth-benefits {
  background: #e8f4ee;
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 14px 30px rgba(31, 75, 63, 0.1);
  display: flex;
  align-items: center;
}

.auth-benefits .usp__container {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.auth-benefits ul {
  margin: 10px 0 18px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.auth-benefits li::marker {
  color: var(--brand);
}

@media (max-width: 768px) {
  .auth-section {
    margin-top: 40px;
    margin-bottom: 56px;
  }
  .auth-benefits {
    margin-top: 8px;
  }
}
/* ============== Ukázky webů (demo) ============== */
.examples-filters {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #eef8f1;
}

.examples-filter {
  border-radius: 999px;
  border: 1px solid #5cd785;
  background: transparent;
  color: #1f4b3f;
  font-size: 13px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.examples-filter.examples-filter--active {
  background: #1f4b3f;
  color: #ffffff;
  border-color: #1f4b3f;
  box-shadow: 0 6px 18px rgba(31, 75, 63, 0.25);
}

.examples-filter:hover {
  background: #296556;
  color: #ffffff;
}

.examples-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 768px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .examples-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.examples-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.examples-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(32, 41, 36, 0.18);
}

.examples-card figure {
  margin: 0;
  height: 180px;
  overflow: hidden;
}

.examples-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.examples-card header,
.examples-card__features,
.examples-card__meta {
  padding-inline: 20px;
}

.examples-card header {
  padding-top: 16px;
}

.examples-card__features {
  margin: 12px 0 0;
  padding-left: 18px;
}

.examples-card__features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 2px;
}

.examples-card__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f4b3f;
  margin: 0 0 4px;
}

.examples-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.examples-card__intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.examples-card__meta {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-top: 10px;
  padding-bottom: 16px;
}

.footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.88);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer p,
.footer li,
.footer small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer input {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
}

.footer input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
  margin-top: 30px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1100px) {
  .hero-content,
  .about,
  .benefits-inner,
  .blog-grid,
  .footer-grid,
  .cta {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: 450px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .template-row {
    grid-template-columns: repeat(5, 220px);
  }
  .blog-list article {
    grid-template-columns: 130px 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(1240px, 100% - 28px);
  }
  .nav {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  .menu {
    display: none;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    font-size: 13px;
    margin: 8px 0 0;
    flex-wrap: wrap;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-actions .login {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav.nav--open {
    flex-wrap: wrap;
  }
  .nav.nav--open .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.12);
    padding: 8px 0 4px;
    border-radius: 12px;
  }
  .nav.nav--open .menu li {
    width: 100%;
  }
  .nav.nav--open .menu a {
    display: block;
    width: 100%;
  }
  .nav.nav--open .nav-actions .login {
    display: inline-block;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .photo-left {
    width: 47%;
    height: 290px;
  }
  .photo-right {
    width: 50%;
    height: 350px;
  }
  .floating-card {
    width: auto;
    padding: 14px;
  }
  .floating-card.top {
    left: 0;
  }
  .floating-card.bottom {
    right: 0;
    bottom: 10px;
  }
  .panel {
    padding: 26px;
  }
  .feature-grid,
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  .blog-main img {
    height: 210px;
  }
  .blog-list article {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .blog-list img {
    height: 140px;
  }
}
.usp__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 576px) {
  .usp__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .usp__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.usp {
  /* Přihlášení – úprava USP tak, aby se na desktopu nerozpadly do 4 sloupců */
}
.usp .auth-benefits .usp__container {
  grid-template-columns: 1fr;
}
.usp .usp-item img {
  width: auto;
  height: 40px;
  margin-bottom: 19px;
}
.usp .usp-item .h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0%;
  margin: 0 0 4px;
}
.usp .usp-item p:not(.h3) {
  margin-top: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0%;
}