:root {
  --bg: #fff8f4;
  --bg-soft: #fff2ea;
  --bg-strong: #ffe2d1;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #fffaf7;
  --text: #34251e;
  --muted: #735d54;
  --line: rgba(124, 86, 62, 0.14);
  --primary: #ef8f6a;
  --primary-dark: #d86f48;
  --secondary: #ffb499;
  --accent: #ffd7c6;
  --dark: #2d1b14;
  --success: #4d8a67;
  --shadow: 0 20px 60px rgba(223, 138, 105, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 197, 170, 0.45), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 226, 209, 0.7), transparent 25%),
    radial-gradient(circle at 80% 85%, rgba(255, 180, 153, 0.22), transparent 26%),
    linear-gradient(180deg, #fff9f6 0%, #fff4ee 55%, #fff8f4 100%);
}

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

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239, 143, 106, 0.12);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title span {
  color: var(--primary-dark);
}

.section-subtitle {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.section-subtitle--right {
  max-width: 420px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head--center {
  display: block;
  text-align: center;
}

.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 800;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(239, 143, 106, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 22px 40px rgba(239, 143, 106, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 16px 35px rgba(45, 27, 20, 0.18);
}

.btn--sm {
  padding: 12px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 28px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: 0.25s ease;
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 244, 0.72);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 250, 247, 0.92);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(127, 88, 63, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.logo__image-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255, 228, 216, 0.92));
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow:
    0 12px 30px rgba(239, 143, 106, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.logo__image-wrap--footer {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.logo__text {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover {
  color: var(--primary-dark);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(223, 138, 105, 0.14);
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.header-phone:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(223, 138, 105, 0.2);
}

.header-phone .material-symbols-outlined {
  font-size: 20px;
  color: var(--primary-dark);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 10px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
  transition: 0.25s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 56px;
  padding-bottom: 70px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero__title span {
  display: block;
  color: var(--primary-dark);
  text-shadow: 0 10px 30px rgba(239, 143, 106, 0.18);
}

.hero__text {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--primary-dark);
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.66), rgba(255, 231, 219, 0.85));
  box-shadow: var(--shadow);
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.hero-badge {
  position: absolute;
  background: rgba(255, 250, 247, 0.95);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.hero-badge--main {
  left: -10px;
  bottom: 34px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 250px;
  padding: 16px;
  border-radius: 18px;
}

.hero-badge--main .material-symbols-outlined {
  font-size: 34px;
  color: var(--primary-dark);
}

.hero-badge--main strong {
  display: block;
  font-size: 15px;
}

.hero-badge--main p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-badge--accent {
  right: 10px;
  top: 22px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.impact-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffece2, #ffd9c8, #ffece2);
}

.impact-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 18px 0;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about__collage img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about__collage img:nth-child(1) {
  grid-row: span 2;
  height: 100%;
  min-height: 534px;
}

.about__content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about__features {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.feature-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.feature-card .material-symbols-outlined {
  color: var(--primary-dark);
  font-size: 28px;
}

.feature-card strong {
  display: block;
  margin-bottom: 4px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
}

.services {
  background: linear-gradient(180deg, rgba(255, 235, 225, 0.65), rgba(255, 248, 244, 0.35));
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card--accent {
  background: linear-gradient(180deg, rgba(255, 216, 199, 0.92), rgba(255,255,255,0.88));
}

.service-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 12px 30px rgba(239, 143, 106, 0.25);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--text);
}

.service-card li + li {
  margin-top: 8px;
}

.service-card__bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-card__bottom strong {
  color: var(--primary-dark);
  font-size: 22px;
}

.service-card__bottom a {
  font-weight: 800;
  color: var(--primary-dark);
}

.promo-banner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.promo-banner__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffcfba 0%, #ef8f6a 100%);
  color: #fff;
  box-shadow: 0 24px 55px rgba(239, 143, 106, 0.35);
}

.promo-banner__box .eyebrow {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.promo-banner__box h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-family: "Playfair Display", serif;
}

.promo-banner__box h2 span {
  color: #fff3eb;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.portfolio-card--large {
  grid-row: span 2;
  min-height: 620px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 20, 0.75) 100%);
  color: #fff;
}

.portfolio-card__overlay h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.portfolio-card__overlay p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.reasons {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255, 229, 216, 0.46));
}

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

.reason-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
}

.reason-card .material-symbols-outlined {
  font-size: 34px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
}

.reviews {
  background: linear-gradient(180deg, rgba(255, 223, 208, 0.45), rgba(255,248,244,0.1));
}

.reviews__slider {
  max-width: 860px;
  margin: 0 auto;
}

.reviews__track {
  position: relative;
}

.review-card {
  display: none;
  padding: 42px 34px;
  border-radius: 30px;
  text-align: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.review-card.active {
  display: block;
}

.review-stars {
  margin-bottom: 16px;
  color: var(--primary-dark);
  letter-spacing: 0.18em;
  font-size: 26px;
}

.review-card p {
  margin: 0 auto 20px;
  max-width: 700px;
  font-size: 24px;
  line-height: 1.45;
  font-family: "Playfair Display", serif;
}

.review-card strong {
  display: block;
  font-size: 18px;
}

.review-card span {
  color: var(--muted);
}

.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  background: #e3c1b1;
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary-dark);
}

.faq__wrap {
  max-width: 900px;
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-question .material-symbols-outlined {
  transition: transform 0.25s ease;
  color: var(--primary-dark);
}

.faq-item.active .faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact__box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255, 237, 227, 0.82));
  box-shadow: 0 30px 70px rgba(223, 138, 105, 0.24);
  border: 1px solid rgba(255,255,255,0.92);
}

.contact__box--single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.contact__intro p {
  color: var(--muted);
  font-size: 17px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.contact-points .material-symbols-outlined {
  color: var(--primary-dark);
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

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

.contact-direct__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.contact-direct__card:hover {
  transform: translateY(-6px);
}

.contact-direct__card .material-symbols-outlined {
  font-size: 28px;
  color: var(--primary-dark);
}

.contact-direct__card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-direct__card span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 36px 0 110px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer__brand p,
.footer__contacts a,
.footer__links a {
  color: var(--muted);
}

.footer__links,
.footer__contacts {
  display: grid;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(45, 27, 20, 0.92);
  color: #fff7f2;
  box-shadow: 0 20px 45px rgba(45, 27, 20, 0.25);
}

.cookie-banner a {
  color: #ffd1bd;
  text-decoration: underline;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 1100px) {
  .hero__grid,
  .about__grid,
  .contact__box,
  .footer__inner,
  .services__grid,
  .reasons__grid,
  .contact-direct {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .portfolio-card--large {
    grid-row: auto;
    min-height: 420px;
  }

  .impact-strip__inner {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .logo__image-wrap {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .header-phone {
    padding: 11px 16px;
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 250, 247, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero__grid,
  .about__grid,
  .contact__box,
  .footer__inner,
  .services__grid,
  .reasons__grid,
  .contact-direct,
  .contact-direct--duo {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    display: block;
  }

  .hero__stats,
  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .promo-banner__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__collage img:nth-child(1) {
    min-height: 280px;
  }

  .review-card p {
    font-size: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo__text {
    font-size: 18px;
  }

  .logo__image-wrap {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 16px;
  }

  .header-phone {
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__text,
  .section-subtitle,
  .contact__intro p {
    font-size: 16px;
  }

  .hero-badge--main,
  .hero-badge--accent {
    position: static;
    margin-top: 12px;
  }

  .hero__image-wrap {
    padding: 12px;
  }

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

  .about__collage img,
  .about__collage img:nth-child(1) {
    height: 240px;
    min-height: 240px;
  }

  .service-card,
  .reason-card,
  .review-card,
  .contact__box,
  .promo-banner__box,
  .contact-direct__card {
    padding: 22px;
  }

  .review-card p {
    font-size: 18px;
  }

  .header__inner {
    gap: 12px;
  }

  .logo {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .logo__text {
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .logo__image-wrap {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .logo__image {
    padding: 5px;
  }

  .header-phone {
    padding: 9px 12px;
    font-size: 0;
    min-width: 42px;
    justify-content: center;
  }

  .header-phone .material-symbols-outlined {
    font-size: 20px;
    margin: 0;
  }
}