/* =========================================
   LAZAR SOLUTIONS — Main Stylesheet
   Structure:
   1. CSS Variables
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Components (Buttons, Cards, Badges)
   6. Header & Navigation
   7. Hero Section
   8. About Section
   9. Services Section
   10. How It Works Section
   11. Why Us Section
   12. Contact Section
   13. Footer
   14. Scroll-to-top Button
   15. Animations
   16. Responsive — Tablet (≤1024px)
   17. Responsive — Mobile (≤768px)
   ========================================= */

/* =========================================
   1. CSS VARIABLES
   ========================================= */
:root {
  --color-primary:    #6290C3;
  --color-dark:       #2F3E57;
  --color-bg:         #F5F7FA;
  --color-white:      #FFFFFF;
  --color-success:    #2CA58D;
  --color-warning:    #F4A261;
  --color-error:      #D9534F;
  --color-text:       #1F2933;
  --color-text-sec:   #6B7280;
  --color-border:     #E5E7EB;

  --font-family: 'Inter', sans-serif;

  --shadow-sm:  0 2px 8px  rgba(47, 62, 87, 0.07);
  --shadow-md:  0 4px 20px rgba(47, 62, 87, 0.11);
  --shadow-lg:  0 8px 40px rgba(47, 62, 87, 0.15);

  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --transition: 0.22s ease;

  --container: 1200px;

  --section-py: 96px;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p {
  color: var(--color-text-sec);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================================
   4. LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   5. COMPONENTS
   ========================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn--light:hover {
  background: var(--color-bg);
  border-color: var(--color-bg);
}

/* Cards */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Icon wrapper */
.icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(98, 144, 195, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

/* =========================================
   6. HEADER & NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-dark);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px;
  width: auto;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition), background var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-white);
  background: rgba(98, 144, 195, 0.18);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 13px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition),
              background var(--transition);
  letter-spacing: 0.04em;
}

.lang-switch:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: rgba(98, 144, 195, 0.15);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav__hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  background: var(--color-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--color-primary);
}

.nav__mobile .lang-switch {
  margin-top: 16px;
}

/* =========================================
   7. HERO SECTION
   ========================================= */
.hero {
  background: var(--color-dark);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(98,144,195,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44,165,141,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(98,144,195,0.15);
  color: var(--color-primary);
  border: 1px solid rgba(98,144,195,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 40px;
}

/* =========================================
   8. ABOUT SECTION
   ========================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.about__text h2 {
  margin-bottom: 24px;
}

.about__text p {
  margin-bottom: 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.founder-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.founder-card__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
}

.founder-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.founder-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.founder-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-sec);
  margin-bottom: 12px;
}

.founder-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-sec);
  line-height: 1.6;
}

/* =========================================
   9. SERVICES SECTION
   ========================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-sec);
  line-height: 1.65;
}

/* =========================================
   10. HOW IT WORKS SECTION
   ========================================= */
.how-it-works {
  background: var(--color-dark);
  color: var(--color-white);
}

.how-it-works .section__header h2 {
  color: var(--color-white);
}

.how-it-works .section__header p {
  color: rgba(255,255,255,0.65);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.step__number {
  width: 72px;
  height: 72px;
  background: rgba(98,144,195,0.15);
  border: 1.5px solid rgba(98,144,195,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* =========================================
   11. WHY US SECTION
   ========================================= */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(98,144,195,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.why-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.why-item__desc {
  font-size: 0.9rem;
  color: var(--color-text-sec);
  line-height: 1.65;
}

/* =========================================
   12. CONTACT SECTION
   ========================================= */
.contact {
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(98,144,195,0.15);
  background: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-sec);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--color-text-sec);
  line-height: 1.55;
  cursor: pointer;
}

.form-consent label a {
  color: var(--color-primary);
  font-weight: 600;
}

.form-consent label a:hover {
  text-decoration: underline;
}

.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: rgba(44,165,141,0.1);
  border: 1px solid rgba(44,165,141,0.3);
  color: #1a7a68;
}

.form-status.error {
  display: block;
  background: rgba(217,83,79,0.08);
  border: 1px solid rgba(217,83,79,0.25);
  color: var(--color-error);
}

.form-status strong {
  display: block;
  margin-bottom: 4px;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(98,144,195,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.55;
  white-space: pre-line;
}

.contact-info__value a {
  display: block;
  color: var(--color-text);
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--color-primary);
}

/* =========================================
   13. FOOTER
   ========================================= */
.footer {
  background: var(--color-dark);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__brand img {
  height: 36px;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__nav-links a:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--color-white);
}

/* =========================================
   14. LEGAL PAGES (Impressum / Datenschutz)
   ========================================= */
.legal-hero {
  background: var(--color-dark);
  padding: 130px 0 56px;
}

.legal-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.legal-content {
  padding: 64px 0 96px;
  background: var(--color-white);
}

.legal-content__inner {
  max-width: 780px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--color-border);
}

.legal-section h3 {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin: 20px 0 8px;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--color-text-sec);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--color-primary);
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-section ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--color-text-sec);
  line-height: 1.7;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 48px;
  transition: gap var(--transition);
}

.legal-back:hover {
  gap: 12px;
}

.legal-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================================
   15. SCROLL-TO-TOP BUTTON
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition),
              background var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-dark);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   15. ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   16. RESPONSIVE — TABLET (≤1024px)
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card {
    max-width: 400px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps::before { display: none; }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =========================================
   17. RESPONSIVE — MOBILE (≤768px)
   ========================================= */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .hero {
    padding: 130px 0 72px;
  }

  .hero p { font-size: 1rem; }

  .section__header {
    margin-bottom: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .card { padding: 24px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step { padding: 0; }

  .step__number {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}
