/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4c992b;
  --secondary-color: #578690;
  --accent-color: #015249;
  --gray-color: #a5a5a5;
  --light-bg: #f8f9fa;
  --dark-text: #333;
  --light-text: #666;
  --white: #ffffff;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);

  /* Premium Typography */
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Bebas Neue", "Inter", sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--dark-text);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */

h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
}

h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700 !important;
  color: var(--dark-text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Contact Bar */
.top-contact-bar {
  background: var(--accent-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.language-switcher {
  display: flex;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 15px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-info .contact-item {
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-info .contact-item i {
  font-size: 16px;
}

.contact-info .contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-link {
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  border: none;
}

.social-link i {
  text-decoration: none !important;
  border: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  max-width: 250px;
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  font-style: italic;
}

.nav-link i {
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section Redesign */
.hero-section {
  position: relative;
  height: calc(100vh - 110px); /* Высота на весь экран за вычетом шапки */
  min-height: 600px;
  display: flex;
  align-items: center;
  background: repeating-radial-gradient(
    circle at 50% center,
    rgba(229, 229, 229, 0.32) 81.93%,
    #ffffff
  );
  overflow: hidden;
  padding: 0;
}

.hero-left-side {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  max-width: 600px;
  padding: 0 50px;
  margin-right: 50px;
}

.hero-right-side {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-image-container {
  height: 100%;
  width: calc(100% + 100px); /* Расширяем контейнер вправо */
  position: relative;
  left: -45px; /* Сдвигаем влево на 100px */
}

.hero-image-mask {
  height: 100%;
  width: 100%;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  position: relative;
}

.hero-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* Фото теперь начинается строго сверху, чтобы видеть лица */
  transition: transform 0.5s ease;
}

.hero-section:hover .hero-img-new {
  transform: scale(
    1.02
  ); /* Уменьшил масштаб при наведении, чтобы не сильно "прыгало" */
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: float-element 4s ease-in-out infinite;
  border: 2px solid rgba(76, 153, 43, 0.1);
}

.circle-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.circle-2 {
  top: 65%;
  left: 8%;
  animation-delay: 1s;
}
.circle-3 {
  top: 20%;
  left: 45%;
  animation-delay: 2s;
  z-index: 3;
}
.circle-4 {
  bottom: 20%;
  left: 42%;
  animation-delay: 3s;
  z-index: 3;
}

@keyframes float-element {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.hero-badge-float {
  position: absolute;
  bottom: 350px; /* Поднял на 50px выше (было 80px) */
  left: 100px;
  background: var(--white);
  padding: 15px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 10; /* Поверх декоративных линий */
  border-left: 6px solid var(--primary-color);
}

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

.badge-content .number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.badge-content .text {
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  margin-bottom: 40px;
  margin-top: 30px;
  line-height: 1.4;
}

.cta-button {
  font-family: var(--font-heading);
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
  padding: 15px 35px;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(76, 153, 43, 0.3);
  font-style: italic;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 153, 43, 0.4);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 35px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.service-description {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.4;
  flex-grow: 1; /* Ключевое свойство для выравнивания кнопок */
}

.service-specialist {
  font-family: var(--font-body);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 0.95rem;
  padding: 8px 15px;
  background: rgba(76, 153, 43, 0.05);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  align-self: center;
  letter-spacing: 0.01em;
}

.service-button {
  font-family: var(--font-heading);
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  align-self: center;
  font-style: italic;
}

.service-button:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  background: var(--light-bg);
}

.services-list-container {
  margin: 0 auto 60px;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.services-list-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 35px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.services-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-detailed-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--light-bg);
  line-height: 1.4;
  color: var(--light-text);
  position: relative;
  padding-left: 35px;
}

.services-detailed-list li:last-child {
  border-bottom: none;
}

.services-detailed-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.services-detailed-list li strong {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.services-list-footer {
  font-family: var(--font-body);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  padding-top: 25px;
  border-top: 2px solid var(--secondary-color);
  letter-spacing: 0.01em;
}

.team-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.team-specialty {
  font-family: var(--font-body);
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;

  font-style: italic;
  text-transform: uppercase;
}

.team-contact {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 25px;
  text-align: left;
}

.team-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-contact a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-contact a:hover {
  color: var(--secondary-color);
}

.team-contact i {
  color: var(--secondary-color);
  width: 16px;
}

.team-description {
  color: var(--light-text);
  line-height: 1.4;
  margin-bottom: 15px;
}

.more-link {
  color: var(--secondary-color);
  cursor: pointer;
  font-weight: 600;
}

.team-full-info {
  background: #f0f7f8;
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--dark-text);
  border-left: 5px solid var(--secondary-color);
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 45px;
  height: 100%;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail i {
  color: var(--secondary-color);
  font-size: 24px;
  margin-top: 5px;
}

.contact-detail div {
  color: var(--light-text);
  line-height: 1.4;
}

.contact-detail a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-detail strong {
  font-family: var(--font-heading);
  color: var(--accent-color);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  font-style: italic;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  opacity: 0.8;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.footer-social-link:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-bottom-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--white);
}

/* Responsive Design */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
}

.language-switcher-mobile {
  display: flex;
  gap: 5px;
}

.language-switcher-mobile .lang-btn {
  padding: 4px 8px;
  font-size: 12px;
  background: rgba(1, 82, 73, 0.1);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.language-switcher-mobile .lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.mobile-menu-footer {
  text-align: center;
}

.social-link-dark {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.social-link-dark:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .hero-section {
    height: 100vh; /* Ровно на весь экран */
    min-height: 100vh;
    position: relative;
  }
  .hero-left-side {
    justify-content: center;
    padding: 60px 20px;
    background: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
  }
  .hero-right-side {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .hero-image-container {
    height: 100%;
    width: 100%;
    left: 0; /* Убираем сдвиг на мобильных */
  }
  .hero-image-mask {
    clip-path: none;
    height: 100%;
    width: 100%;
  }
  .hero-image-mask::before {
    display: none; /* Убираем декоративные линии в мобилке */
  }
  /* Затемнение для читаемости текста на мобильных */
  .hero-image-mask::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6)
    );
    z-index: 1;
  }
  .hero-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Покрываем весь экран без обрезки */
    object-position: center center; /* Центрируем фото */
  }
  .hero-content-wrapper {
    margin-right: 0;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
  .hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .cta-button {
    background: var(--light-bg);
    color: var(--dark-text);
    border-color: var(--light-bg);
  }
  .cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
  }
  .hero-circle {
    display: none; /* Убираем летающие иконки на мобильных */
  }
  .hero-badge-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px; /* Поднял выше от нижнего края */
    z-index: 10;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  .hero-badge-float .number {
    font-size: 2.5rem;
  }
  .hero-badge-float .text {
    font-size: 0.9rem;
  }
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 90vh; /* Ровно на весь экран */
    min-height: 90vh;
    padding: 0;
  }
  .hero-content {
    margin: 0 auto;
  }

  .hero-badge-float {
    bottom: 100px; /* Поднял выше от нижнего края */
  }
  .hero-title {
    text-transform: uppercase;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-content-wrapper {
    transform: translateY(-20px);
  }

  .hero-badge-float .number {
    font-size: 2.2rem;
  }
  .hero-badge-float .text {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .language-switcher {
    border-right: none;
    padding-right: 0;
    margin-bottom: 15px;
  }
  .top-contact-bar .text-end {
    flex-direction: column;
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 100vh; /* Ровно на весь экран */
    min-height: 100vh;
  }
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .hero-content-wrapper {
    padding: 0 15px;
  }
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .hero-badge-float {
    bottom: 40px; /* Поднял выше для маленьких экранов */
    padding: 16px 22px;
    border-radius: 12px;
  }
  .hero-badge-float .number {
    font-size: 2rem;
    margin-bottom: 2px;
  }
  .hero-badge-float .text {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}
