.sec-doi-tac-modern {
  padding: 37px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sec-doi-tac-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.05) 0,
    transparent 100%
  );
  pointer-events: none;
}
.sec-doi-tac-modern .sec-title {
  text-align: center;
  margin-bottom: 16px;
}
.sec-doi-tac-modern .sec-title {
  text-align: center;
  margin-bottom: 16px;
}
.sec-doi-tac-modern .sec-subtitle {
  text-align: center;
  color: #15803d;
  font-size: 16px;
  margin-bottom: 48px;
}
.doi-tac-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.doi-tac-modern-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
}
.doi-tac-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
  border-color: #86efac;
}
.doi-tac-modern-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #4ade80, #22c55e);
  background-size: 200% 100%;
  animation: gradientSlide 3s ease infinite;
}
@keyframes gradientSlide {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.doi-tac-modern-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}
.doi-tac-modern-logo {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.doi-tac-modern-card:hover .doi-tac-modern-logo {
  background: #dcfce7;
}
.doi-tac-modern-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}
.doi-tac-modern-card:hover .doi-tac-modern-img {
  transform: scale(1.08);
  filter: grayscale(0);
}
.doi-tac-modern-placeholder {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #22c55e 0, #4ade80 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}
.doi-tac-modern-info {
  text-align: center;
  width: 100%;
}
.doi-tac-modern-name {
  font-size: 15px;
  font-weight: 600;
  color: #166534;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.doi-tac-modern-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.doi-tac-modern-card:hover .doi-tac-modern-overlay {
  opacity: 1;
  transform: scale(1);
}
.doi-tac-modern-overlay i {
  color: #fff;
  font-size: 14px;
}
50% {
  background-position: 100% 50%;
}
100% {
  background-position: 0 50%;
}
.sec-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
.sec-title h2::after {
  display: none;
  content: none;
}
.sec-hero {
  --hero-pad-top: 13px;
  --hero-pad-bottom: 12px;
  --hero-content-max: 1200px;
  --hero-menu-banner-gap: 50px;
  --hero-frame-min-h: calc(
    var(--hero-pad-top) + 344px + var(--hero-pad-bottom)
  );
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  min-height: var(--hero-frame-min-h);
  background: #fff;
}
.sec-hero .wrap-content {
  width: 100%;
  max-width: var(--hero-content-max);
  box-sizing: border-box;
}
.sec-hero__inner {
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  gap: var(--hero-menu-banner-gap);
  align-items: stretch;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.sec-hero__categories {
  --hero-menu-w: 282px;
  --hero-menu-h: 345px;
  --hero-menu-border: #e7e8e9;
  box-sizing: border-box;
  width: var(--hero-menu-w);
  min-width: var(--hero-menu-w);
  max-width: var(--hero-menu-w);
  height: auto;
  min-height: var(--hero-menu-h);
  max-height: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--hero-menu-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  justify-self: start;
  --hero-cat-pad-y: 11px;
  --hero-cat-pad-x: 24px;
  --hero-cat-icon-text-gap: 16px;
  --hero-cat-line-h: 14px;
  --hero-cat-text-color: #3f493f;
}
.hero-cat__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hero-cat__item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e7e8e9;
}
.hero-cat__item:last-child {
  border-bottom: none;
}
.hero-cat__item::before,
.hero-cat__item::marker {
  display: none !important;
  content: none !important;
}
.hero-cat__link {
  flex: 1;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  padding-left: var(--hero-cat-pad-x);
  padding-right: var(--hero-cat-pad-x);
  box-sizing: border-box;
  color: var(--hero-cat-text-color);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}
.hero-cat__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--color-primary, #2e7d32);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-cat__link:hover {
  background: #f5fcf7;
  color: var(--color-primary, #2e7d32) !important;
  text-decoration: none !important;
  padding-left: calc(var(--hero-cat-pad-x) + 4px);
}
.hero-cat__link:hover::before {
  transform: scaleY(1);
}
.hero-cat__link.is-active {
  background: linear-gradient(90deg, #d9f1e3 0, #ecf9f1 58%, #f4fcf8 100%);
  color: #0b5a31 !important;
  box-shadow: inset 4px 0 0 #0c7a43;
}
.hero-cat__link:hover .hero-cat__arrow {
  color: var(--color-primary, #2e7d32);
  transform: translateX(3px);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}
.hero-cat__arrow {
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}
.hero-cat__link:hover .hero-cat__icon {
  transform: scale(1.15);
  transition: transform 0.18s ease;
}
.hero-cat__icon {
  transition: transform 0.18s ease;
}
.hero-cat__link.is-active .hero-cat__arrow {
  color: #0c7a43;
}
.hero-cat__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--hero-cat-icon-text-gap);
  flex: 1 1 auto;
  min-width: 0;
}
.hero-cat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  color: var(--color-primary, #2e7d32);
  font-size: 14px;
  line-height: 1;
}
.hero-cat__icon .cat-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hero-cat__name {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  overflow: visible;
  word-wrap: break-word;
  line-height: 1.25;
  font-size: inherit;
  font-weight: inherit;
}
.hero-cat__arrow {
  font-size: 11px;
  color: #ccc;
  flex-shrink: 0;
  align-self: center;
}
.hero-cat__item:nth-child(n + 9) {
  display: none;
}
.hero-cat__see-more {
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 38px;
  background: #f4f9f5;
  border: none;
  border-top: 1px solid #e7e8e9;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-primary, #2e7d32);
  transition:
    background 0.15s ease,
    color 0.15s ease;
  padding: 0 14px;
  box-sizing: border-box;
  white-space: nowrap;
}
.hero-cat__see-more:hover {
  background: #e5f3ea;
  color: #1a5e2a;
}
.hero-cat__see-more-icon {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 10px;
  flex-shrink: 0;
}
.sec-hero__categories.is-expanded .hero-cat__see-more-icon {
  transform: rotate(180deg);
}
.sec-hero__categories.is-expanded .hero-cat__item {
  display: flex !important;
  flex: 0 0 auto;
  min-height: 44px;
}
.sec-hero__categories.is-expanded .hero-cat__list {
  flex: none;
}
.sec-hero__categories.is-expanded {
  align-self: start !important;
  height: auto !important;
}
.sec-hero__categories-panel {
  min-width: 0;
  width: 100%;
  position: relative;
}
.hero-cat__mega-preview {
  --hero-mega-h: 344px;
  --mx: 74%;
  --my: 18%;
  position: absolute;
  left: calc(100% + var(--hero-menu-banner-gap));
  top: 0;
  width: min(868px, calc(100vw - 360px));
  min-width: 560px;
  height: var(--hero-mega-h);
  min-height: var(--hero-mega-h);
  max-height: var(--hero-mega-h);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 5;
}
.hero-cat__mega-preview.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.hero-cat__mega-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(
    480px 220px at var(--mx) var(--my),
    rgba(32, 170, 102, 0.26) 0,
    rgba(32, 170, 102, 0) 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-cat__mega-preview.is-open::before {
  opacity: 1;
}
.hero-cat__mega-content {
  height: 100%;
  min-height: 0;
  position: relative;
  z-index: 1;
}
.hero-mega {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  background:
    radial-gradient(
      115% 120% at 100% 0,
      rgba(12, 122, 67, 0.28) 0,
      rgba(12, 122, 67, 0.02) 42%
    ),
    linear-gradient(145deg, #fff 0, #eaf8f0 45%, #daf0e4 100%);
  border: 1px solid rgba(12, 122, 67, 0.24);
  border-radius: 18px;
  box-shadow:
    0 20px 46px rgba(10, 66, 38, 0.24),
    0 6px 16px rgba(10, 66, 38, 0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
}
.hero-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(16, 123, 66, 0.45),
    rgba(16, 123, 66, 0.08),
    rgba(16, 123, 66, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-mega__head {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(12, 122, 67, 0.24);
}
.hero-mega__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #0a2a17;
  text-decoration: none !important;
}
.hero-mega__title:hover {
  color: #0c7a43;
}
.hero-mega__title::after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 11px;
  opacity: 0.55;
  transform: translateY(1px);
}
.hero-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 122, 67, 0.45) rgba(12, 122, 67, 0.12);
}
.hero-mega__grid::-webkit-scrollbar {
  width: 8px;
}
.hero-mega__grid::-webkit-scrollbar-track {
  background: rgba(12, 122, 67, 0.12);
  border-radius: 999px;
}
.hero-mega__grid::-webkit-scrollbar-thumb {
  background: rgba(12, 122, 67, 0.45);
  border-radius: 999px;
}
.hero-mega__grid::-webkit-scrollbar-thumb:hover {
  background: rgba(12, 122, 67, 0.62);
}
.hero-mega__col {
  min-width: 0;
  padding: 12px 12px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 122, 67, 0.16);
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}
.hero-cat__mega-preview.is-animating .hero-mega__col {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  animation: heroMegaReveal 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--stagger-delay, 0ms);
}
.hero-mega__col:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(12, 122, 67, 0.28);
  box-shadow: 0 10px 18px rgba(10, 66, 38, 0.12);
  background: rgba(255, 255, 255, 0.94);
}
.hero-mega__col-title {
  display: inline-block;
  margin-bottom: 8px;
  color: #0c6c3d;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
}
.hero-mega__col-title:hover {
  color: #095d33;
}
.hero-mega__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-mega__links li {
  margin: 0;
  padding: 0;
}
.hero-mega__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f3a33;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none !important;
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    letter-spacing 0.22s ease;
}
.hero-mega__links a:hover {
  color: #0a6a3a;
  transform: translateX(3px);
  letter-spacing: 0.1px;
}
.hero-mega__links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5ca17e;
  flex-shrink: 0;
}
.hero-mega__links a:hover::before {
  background: #0c7a43;
}
@keyframes heroMegaReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cat__mega-preview,
  .hero-cat__mega-preview::before,
  .hero-mega__col,
  .hero-mega__links a {
    transition: none !important;
    animation: none !important;
  }
}
.sec-hero__cat-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  border: 1px solid #e7e8e9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 6;
  -webkit-tap-highlight-color: transparent;
}
.sec-hero__cat-toggle:focus-visible {
  outline: 2px solid var(--color-primary, #107940);
  outline-offset: 2px;
}
.sec-hero__cat-toggle-label {
  flex: 1;
  min-width: 0;
}
.sec-hero__cat-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(16, 121, 64, 0.08);
  color: var(--color-primary, #107940);
  transition: transform 0.22s ease;
}
.sec-hero__categories-panel.is-open .sec-hero__cat-toggle-icon {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .sec-hero__cat-toggle {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .sec-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sec-hero__cat-toggle {
    display: flex;
  }
  .sec-hero__categories-panel:not(.is-open) .sec-hero__categories {
    display: none !important;
  }
  .sec-hero__categories-panel.is-open .sec-hero__categories {
    display: flex !important;
    flex-direction: column;
    margin-top: 12px;
  }
  .hero-cat__mega-preview {
    display: none !important;
  }
  .hero-cat__item:nth-child(n + 9) {
    display: flex;
  }
  .hero-cat__see-more {
    display: none !important;
  }
  .hero-promo-slide__title-line1 {
    font-size: clamp(22px, 4.8vw, 30px);
  }
  .hero-promo-slide__title-line2 {
    font-size: clamp(26px, 6vw, 38px);
  }
  .hero-promo-slide__desc {
    font-size: clamp(15px, 3.6vw, 18px);
    line-height: 1.38;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only) .hero-promo-slide__copy {
    padding: 14px 4px 8px;
    box-sizing: border-box;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(180deg, #fff 0, #f8faf8 100%);
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__visual {
    min-height: 210px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #eef5f0 0, #fff 55%);
  }
}
.sec-hero__promo {
  display: block;
  width: 868px;
  max-width: 100%;
  min-width: 0;
  align-self: start;
  margin: 0;
  justify-self: end;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}
.hero-slideshow {
  width: 868px;
  max-width: 100%;
  height: 344px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  box-sizing: border-box;
}
.hero-slideshow.swiper .swiper-wrapper {
  height: 344px;
  align-items: stretch;
}
.hero-slideshow .swiper-slide {
  height: 344px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow .swiper-slide > .hero-promo-slide {
  width: 100%;
  flex: 1 1 auto;
  align-self: stretch;
}
.hero-promo-slide {
  --hero-banner-w: 868px;
  --hero-banner-h: 344px;
  --hero-banner-pad-x: 0;
  --hero-copy-max-w: 350px;
  --hero-desc-max-w: 350px;
  --hero-copy-gap: 0px;
  --hero-visual-pull: -90px;
  --hero-title-line1: 40px;
  --hero-title-line2: 60px;
  --hero-title-line-gap: 8px;
  --hero-brand: #2e7d32;
  --hero-cta-bg: #219b59;
  --hero-title-banner-top: 24px;
  --hero-cta-banner-top: 270px;
  --hero-fg-w: 295.59px;
  --hero-fg-h: 297px;
  --hero-fg-left: 90px;
  --hero-fg-top: calc((var(--hero-banner-h) - var(--hero-fg-h)) / 2);
  --hero-fg-rotate: 3.85deg;
  --hero-bg-w: 386.1px;
  --hero-bg-h: 347.14px;
  --hero-bg-left: calc(76.2px + 90px - 108.88px);
  --hero-bg-top: calc((var(--hero-banner-h) - var(--hero-bg-h)) / 2);
  --hero-bg-rotate: 3.44deg;
  --hero-bg-opacity: 0.5;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, var(--hero-copy-max-w)) minmax(0, 1fr);
  gap: var(--hero-copy-gap);
  align-items: start;
  width: 100%;
  max-width: var(--hero-banner-w);
  height: var(--hero-banner-h);
  overflow: hidden;
  margin: 0;
  padding: 0 var(--hero-banner-pad-x);
  box-sizing: border-box;
}
.hero-promo-slide--image-only {
  grid-template-columns: 1fr;
  --hero-fg-left: calc(90px + var(--hero-copy-max-w) + var(--hero-copy-gap));
  --hero-bg-left: calc(
    76.2px + 90px - 108.88px + var(--hero-copy-max-w) + var(--hero-copy-gap)
  );
}
.hero-promo-slide--image-only .hero-promo-slide__visual {
  margin-left: 0;
}
.hero-promo-slide__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: var(--hero-copy-max-w);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: var(--hero-banner-h);
  overflow: visible;
  padding-top: var(--hero-title-banner-top);
}
.hero-promo-slide__title {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  color: #000;
  line-height: 1.08;
  margin: 0 0 8px;
  padding-top: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: visible;
}
.hero-promo-slide__title-line1 {
  font-size: var(--hero-title-line1);
  display: block;
  line-height: 1.08;
  overflow: visible;
}
.hero-promo-slide__title-line2 {
  font-size: var(--hero-title-line2);
  display: block;
  margin-top: var(--hero-title-line-gap);
  line-height: 1.08;
  overflow: visible;
}
.hero-promo-slide__desc {
  font-family: Nunito, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%;
  max-width: var(--hero-desc-max-w);
  margin: 0 0 16px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box;
  background: 0 0 !important;
  display: block;
  min-height: 0;
  color: #000 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}
.hero-promo-slide__desc *,
.hero-promo-slide__desc ::after,
.hero-promo-slide__desc ::before {
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.hero-promo-slide__desc * {
  color: #000 !important;
  font-size: inherit;
}
.hero-promo-slide__desc p {
  margin: 0 0 0.35em;
}
.hero-promo-slide__desc p:last-child {
  margin-bottom: 0;
}
.hero-promo-slide__desc b,
.hero-promo-slide__desc strong {
  color: var(--hero-cta-bg) !important;
  font-weight: 900;
  font-size: inherit;
}
.hero-promo-slide__desc b *,
.hero-promo-slide__desc strong * {
  color: inherit !important;
  font-weight: inherit;
}
.hero-promo-slide__desc a {
  color: #000 !important;
}
.hero-promo-slide__desc ol,
.hero-promo-slide__desc ul {
  list-style: none !important;
  margin: 0.35em 0 !important;
  padding-left: 0 !important;
}
.hero-promo-slide__desc li {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
.hero-promo-slide__desc li::marker {
  content: none !important;
}
.hero-slideshow .swiper-pagination,
.hero-slideshow .swiper-pagination-bullet,
.hero-slideshow .swiper-pagination-bullet-active {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}
.hero-promo__cta {
  position: absolute;
  top: var(--hero-cta-banner-top);
  left: 0;
  z-index: 12;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  padding: 8px 8px 8px 20px;
  border-radius: 8px;
  background: var(--hero-cta-bg);
  color: #fff !important;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  box-sizing: border-box;
  flex-shrink: 0;
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.32s ease,
    filter 0.32s ease,
    background-color 0.32s ease;
}
.hero-promo__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 155, 89, 0.38);
  filter: brightness(1.06);
}
.hero-promo__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(33, 155, 89, 0.28);
  filter: brightness(0.98);
  transition-duration: 0.12s;
}
.hero-promo__cta-label {
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-promo__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 14px;
}
.hero-promo__cta-icon i {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}
.hero-promo__cta:hover .hero-promo__cta-icon i {
  transform: translateX(4px);
}
.hero-promo-slide__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  height: var(--hero-banner-h);
  margin-left: var(--hero-visual-pull);
  overflow: hidden;
  isolation: isolate;
}
.hero-promo-slide__layer--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-promo-slide__bg-img,
.hero-promo-slide__layer--bg img,
.hero-promo-slide__layer--bg picture {
  position: absolute;
  left: var(--hero-bg-left);
  top: var(--hero-bg-top);
  width: var(--hero-bg-w);
  height: var(--hero-bg-h);
  display: block;
  object-fit: fill;
  opacity: var(--hero-bg-opacity);
  transform: rotate(var(--hero-bg-rotate));
  transform-origin: center center;
}
.hero-promo-slide__layer--bg picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: inherit;
}
.hero-promo-slide__layer--fg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-promo-slide__fg-wrap {
  position: absolute;
  left: var(--hero-fg-left);
  top: var(--hero-fg-top);
  z-index: 1;
  width: var(--hero-fg-w);
  height: var(--hero-fg-h);
  transform: rotate(var(--hero-fg-rotate));
  transform-origin: center center;
  pointer-events: auto;
}
.hero-promo-slide__img-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.hero-promo-slide__img-link picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-promo-slide__fg-wrap .hero-promo-slide__img,
.hero-promo-slide__img-link picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-promo-slide__badges {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  z-index: 12;
}
.hero-promo-slide__badge {
  pointer-events: auto;
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-promo-slide__badge-inner {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 360px;
  background: linear-gradient(135deg, #1ddf76 0, #107940 100%);
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.32s ease,
    filter 0.32s ease;
}
.hero-promo-slide__badge:hover .hero-promo-slide__badge-inner {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px rgba(16, 121, 64, 0.45);
  filter: brightness(1.07);
}
.hero-promo-slide__badge:active .hero-promo-slide__badge-inner {
  transform: translateY(0) scale(1.01);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
  filter: brightness(0.98);
  transition-duration: 0.12s;
}
a.hero-promo-slide__badge-inner {
  color: #fff;
}
a.hero-promo-slide__badge-inner:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
span.hero-promo-slide__badge-inner {
  cursor: default;
}
.hero-promo-slide__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.hero-promo-slide__badge-icon--none {
  display: none !important;
}
.hero-promo-slide__badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-promo-slide__badge-icon i {
  font-size: 13px;
  line-height: 1;
  color: #fff;
}
.hero-promo-slide__badge-label {
  padding: 0;
}
.hero-promo-slide__badge:nth-child(1) {
  top: 57px;
  right: 68px;
}
.hero-promo-slide__badge:nth-child(2) {
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.hero-promo-slide__badge:nth-child(3) {
  bottom: 43.69px;
  right: 43.69px;
}
.hero-slideshow .swiper-button-next,
.hero-slideshow .swiper-button-prev {
  background: 0 0 !important;
  box-shadow: none !important;
  color: var(--color-primary, #107940) !important;
  opacity: 0.92;
}
.hero-slideshow .swiper-button-next:hover,
.hero-slideshow .swiper-button-prev:hover {
  opacity: 1;
  background: rgba(16, 121, 64, 0.07) !important;
}
@media (min-width: 1181px) {
  .hero-slideshow .swiper-button-prev {
    left: 362px !important;
  }
}
@media (max-width: 1180px) {
  .hero-slideshow .swiper-button-prev {
    left: 10px !important;
    top: 58% !important;
  }
  .hero-slideshow .swiper-button-next {
    top: 58% !important;
  }
}
.hero-slideshow.swiper-fade .swiper-slide-active .hero-promo__cta,
.hero-slideshow.swiper-fade
  .swiper-slide-active
  a.hero-promo-slide__badge-inner {
  pointer-events: auto;
}
.hero-slideshow--single .swiper-button-next,
.hero-slideshow--single .swiper-button-prev {
  display: none !important;
}
.hero-slideshow .swiper-button-next,
.hero-slideshow .swiper-button-prev {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .hero-promo-slide__badge-inner,
  .hero-promo__cta,
  .hero-promo__cta-icon i {
    transition: none;
  }
  .hero-promo-slide__badge:active .hero-promo-slide__badge-inner,
  .hero-promo-slide__badge:hover .hero-promo-slide__badge-inner,
  .hero-promo__cta:active,
  .hero-promo__cta:hover {
    transform: none;
    filter: none;
  }
  .hero-promo__cta:hover .hero-promo__cta-icon i {
    transform: none;
  }
}
.hero-slideshow--empty {
  width: 868px;
  max-width: 100%;
  height: 344px;
  box-sizing: border-box;
  background: #ececec;
  border-radius: 12px;
}
@media (max-width: 1180px) {
  .sec-hero__inner {
    grid-template-columns: min(282px, 100%) minmax(0, 1fr);
    justify-content: start;
    gap: 24px;
  }
  .sec-hero__categories {
    width: min(282px, 100%);
    min-width: 0;
    max-width: min(282px, 100%);
    height: auto;
    min-height: 200px;
    max-height: none;
    display: block;
    overflow: visible;
  }
  .hero-cat__list {
    flex: none;
    min-height: 0;
  }
  .hero-cat__item {
    flex: none;
    min-height: 48px;
  }
  .hero-cat__link {
    flex: none;
    min-height: 48px;
  }
  .hero-cat__mega-preview {
    width: min(100vw - 350px, 760px);
    min-width: 420px;
  }
  .hero-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .hero-mega {
    padding: 18px 18px;
    gap: 14px;
  }
  .sec-hero__promo {
    width: 100%;
    justify-self: stretch;
  }
  .hero-slideshow,
  .hero-slideshow--empty {
    width: 100%;
    height: auto;
    max-height: none;
  }
  @media (min-width: 992px) {
    .hero-slideshow,
    .hero-slideshow--empty {
      aspect-ratio: 868/344;
    }
    .hero-slideshow.swiper .swiper-wrapper {
      height: 100%;
      min-height: 0;
    }
  }
  .hero-slideshow .swiper-slide {
    height: auto;
    min-height: 0;
  }
  .hero-promo-slide {
    --hero-banner-pad-x: 14px;
    --hero-copy-gap: 16px;
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .hero-promo-slide__copy {
    min-height: 0;
  }
  .hero-promo__cta {
    position: static;
    margin-top: 20px;
    left: auto;
  }
  .hero-promo-slide__badge:nth-child(1) {
    top: 12px;
    right: 8px;
  }
  .hero-promo-slide__badge:nth-child(2) {
    right: 44px;
  }
  .hero-promo-slide__badge:nth-child(3) {
    bottom: 12px;
    right: 8px;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__visual {
    min-height: 200px;
    max-height: none;
    margin-left: 0;
    overflow: visible;
  }
  .hero-promo-slide__bg-img,
  .hero-promo-slide__layer--bg img,
  .hero-promo-slide__layer--bg picture {
    position: static;
    left: auto;
    top: auto;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 344px !important;
    margin: 0 auto;
    transform: none;
    object-fit: contain;
    opacity: 1;
    overflow: visible;
  }
  .hero-promo-slide__layer--bg picture img {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    max-height: 344px !important;
    object-fit: contain;
  }
  .hero-promo-slide__layer--bg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__layer--fg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    pointer-events: auto;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__fg-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    transform: none;
    box-shadow: none;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__img-link {
    width: 100%;
    min-height: 200px;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__fg-wrap
    .hero-promo-slide__img,
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__img-link
    picture
    img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 344px !important;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__visual {
    order: -1;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only) .hero-promo-slide__copy {
    order: 1;
    width: 100%;
    max-width: none;
    padding-top: 8px;
  }
  .hero-slideshow,
  .sec-hero__promo {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 991.98px) {
  .hero-slideshow,
  .hero-slideshow--empty {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .hero-slideshow.swiper .swiper-wrapper {
    height: auto !important;
    min-height: 0 !important;
  }
  .hero-slideshow .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start;
  }
  .hero-promo-slide--image-only {
    height: auto !important;
    min-height: 0 !important;
  }
  .hero-promo-slide--image-only .hero-promo-slide__visual {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 12px;
    background: #f3f7f5;
    overflow: visible;
  }
  .hero-promo-slide--image-only .hero-promo-slide__layer--fg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block;
  }
  .hero-promo-slide--image-only .hero-promo-slide__fg-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    transform: none !important;
  }
  .hero-promo-slide--image-only .hero-promo-slide__img-link {
    min-height: 0 !important;
    height: auto !important;
    width: 100%;
    display: block;
  }
  .hero-promo-slide--image-only
    .hero-promo-slide__fg-wrap
    .hero-promo-slide__img,
  .hero-promo-slide--image-only .hero-promo-slide__img-link picture img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
  .hero-promo-slide--image-only .hero-promo-slide__badges {
    display: none !important;
  }
  .hero-promo__cta {
    display: inline-flex;
    width: auto;
    min-width: max-content;
    max-width: 100%;
    white-space: nowrap;
    padding: 8px 10px 8px 14px;
  }
  .hero-promo__cta-label {
    white-space: nowrap;
  }
  .hero-promo-slide__badge-inner {
    white-space: nowrap;
    font-size: 13px;
    line-height: 1;
    padding: 6px 10px;
    min-height: 38px;
  }
}
@media (max-width: 768px) {
  .hero-promo-slide {
    --hero-banner-pad-x: 12px;
    --hero-title-line-gap: 8px;
  }
  .sec-hero__inner {
    grid-template-columns: 1fr;
    justify-content: stretch;
    min-height: unset;
  }
  .sec-hero__categories {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    display: block;
  }
  .hero-cat__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex: none;
  }
  .hero-cat__item {
    flex: none;
    min-height: 0;
  }
  .hero-cat__link {
    min-height: 48px;
  }
  .hero-slideshow,
  .sec-hero__promo {
    width: 100%;
  }
  .hero-promo-slide__title-line1 {
    font-size: clamp(18px, 5.4vw, 26px);
  }
  .hero-promo-slide__title-line2 {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .hero-promo-slide__badge-inner {
    font-size: 14px;
    min-height: 40px;
    padding: 6px 12px;
  }
  .hero-promo-slide__badge-icon {
    width: 24px;
    height: 24px;
  }
  .sec-hero__promo {
    justify-self: stretch;
  }
}
body[data-site-com="trang-chu"] .dv-card__media,
body[data-site-com="trang-chu"] .hero-promo-slide__fg-wrap,
body[data-site-com="trang-chu"] .hero-promo-slide__layer--bg,
body[data-site-com="trang-chu"] .product .pic-product,
body[data-site-com="trang-chu"] .scale-img,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__gallery > div,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__main,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__thumb {
  position: relative;
  overflow: hidden;
}
body[data-site-com="trang-chu"] .dv-card__media::after,
body[data-site-com="trang-chu"] .hero-promo-slide__fg-wrap::after,
body[data-site-com="trang-chu"] .hero-promo-slide__layer--bg::after,
body[data-site-com="trang-chu"] .product .pic-product::after,
body[data-site-com="trang-chu"] .scale-img::after,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__gallery > div::after,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__main::after,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0.34) 44%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translate3d(-125%, 0, 0);
  opacity: 0;
}
body[data-site-com="trang-chu"] .dv-card:hover .dv-card__media::after,
body[data-site-com="trang-chu"] .hero-promo-slide__fg-wrap:hover::after,
body[data-site-com="trang-chu"] .hero-promo-slide__layer--bg:hover::after,
body[data-site-com="trang-chu"] .product:hover .pic-product::after,
body[data-site-com="trang-chu"] .scale-img:hover::after,
body[data-site-com="trang-chu"]
  .sec-dich-vu-showcase__gallery
  > div:hover::after,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__main:hover::after,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__thumb:hover::after {
  opacity: 1;
  transform: translate3d(125%, 0, 0);
  transition:
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}
body[data-site-com="trang-chu"] .dv-card:hover .dv-card__img,
body[data-site-com="trang-chu"] .hero-promo-slide__fg-wrap:hover img,
body[data-site-com="trang-chu"] .hero-promo-slide__layer--bg:hover img,
body[data-site-com="trang-chu"] .product:hover .pic-product img,
body[data-site-com="trang-chu"] .scale-img:hover picture img,
body[data-site-com="trang-chu"] .scale-img:hover > img,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__gallery > div:hover img,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__main:hover img,
body[data-site-com="trang-chu"] .sec-dich-vu-showcase__thumb:hover img {
  filter: brightness(1.05) saturate(1.06);
}
.sec-dich-vu {
  padding: 0 0 30px 0;
  background: #fff;
}
.sec-dich-vu__container {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.sec-dich-vu__header {
  text-align: center;
}
.sec-dich-vu__title {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  color: #000;
}
.sec-dich-vu__title-text {
  display: inline-block;
  background-image: none;
  background-clip: unset;
  font-size: 32px;
  font-weight: 700;
  color: #166534;
}
/* 
.sec-dich-vu__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px 8px 8px 20px;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid #0d96f8;
  background: #fff;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #0d96f8;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
} */

.sec-dich-vu__more:hover {
  color: #0b7fd4;
  border-color: #0b7fd4;
}
.sec-dich-vu__more-label {
  display: inline-block;
}
.sec-dich-vu__more-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  color: inherit;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .sec-dich-vu__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .sec-dich-vu__title {
    font-size: 28px;
    line-height: 1.1;
  }
  .sec-dich-vu__more {
    width: 100%;
    justify-content: center;
  }
}
.sec-dich-vu__items-wrap {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
}
@media (min-width: 992px) {
  .sec-dich-vu__items-wrap {
    height: 486.67px;
    min-height: 486.67px;
  }
}
.sec-dich-vu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 378.67px));
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  align-items: center;
  justify-content: start;
}
.dv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 448px;
  margin: 0;
  padding: 0;
  border-radius: 24px;
  border: 1px solid #e4e4e4;
  background: 0 0;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.09);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: box-shadow, border-color;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    filter 0.35s ease;
}
.dv-card:hover {
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.16),
    0 8px 18px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 124, 65, 0.24);
  filter: saturate(1.04);
}
.dv-card:focus-visible {
  outline: 2px solid #0d96f8;
  outline-offset: 3px;
}
.dv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0.32) 44%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translate3d(-115%, 0, 0);
  opacity: 0;
}
.dv-card:hover::after {
  opacity: 1;
  transition:
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
  transform: translate3d(130%, 0, 0);
}
.dv-card__inner {
  position: relative;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  width: 100%;
  display: block;
}
.dv-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
}
.dv-card__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.dv-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale3d(1, 1, 1) translateZ(0);
  transform-origin: center center;
  will-change: transform, filter;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
body[data-site-com="trang-chu"] .sec-dich-vu .dv-card__media {
  position: absolute;
  inset: 0;
}
body[data-site-com="trang-chu"] .sec-dich-vu .dv-card__media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dv-card:hover .dv-card__img {
  transform: scale3d(1, 1, 1);
  filter: brightness(1.03) saturate(1.06) contrast(1.01);
}
.dv-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 16, 28, 0.02) 36%,
    rgba(8, 16, 28, 0.2) 100%
  );
  pointer-events: none;
  opacity: 1;
  transition:
    opacity 0.35s ease,
    background 0.35s ease;
}
.dv-card:hover .dv-card__overlay {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(6, 19, 33, 0.02) 22%,
    rgba(6, 19, 33, 0.42) 100%
  );
}
.dv-card__panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  width: auto;
  min-height: 126.63px;
  padding: 20px 28px 20px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transform: translate3d(0, 0, 0);
  will-change: transform, box-shadow, background-color;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}
.dv-card:hover .dv-card__panel {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  background-color: rgba(255, 255, 255, 0.98);
}
.dv-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 230.67px;
}
.dv-card__name {
  margin: 0;
  padding: 0;
  font-family:
    Nunito,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #036;
}
.dv-card__desc {
  margin: 0;
  font-family:
    Nunito,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dv-card__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #107c41;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transform: translateZ(0);
  will-change: transform, box-shadow, background-color;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease,
    box-shadow 0.32s ease;
}
.dv-card:hover .dv-card__arrow {
  transform: scale(1.05) rotate(14deg);
  background: #0d6b36;
  box-shadow: 0 10px 20px rgba(16, 124, 65, 0.38);
}
.dv-card__arrow i {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.dv-card:hover .dv-card__arrow i {
  transform: rotate(31deg);
}
@media (prefers-reduced-motion: reduce) {
  .dv-card,
  .dv-card__arrow,
  .dv-card__arrow i,
  .dv-card__img,
  .dv-card__overlay,
  .dv-card__panel {
    transition-duration: 0s !important;
  }
  .dv-card:hover {
    transform: none;
  }
  .dv-card:hover .dv-card__img {
    transform: none;
    filter: none;
  }
  .dv-card:hover .dv-card__overlay {
    opacity: 1;
  }
  .dv-card:hover .dv-card__panel {
    transform: none;
  }
  .dv-card:hover .dv-card__arrow {
    transform: none;
    box-shadow: none;
  }
  .dv-card:hover .dv-card__arrow i {
    transform: none;
  }
}
@media (max-width: 991px) {
  .sec-hero__categories-panel {
    display: none !important;
  }
  .sec-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sec-dich-vu__items-wrap {
    min-height: 0;
    height: auto;
  }
  .sec-dich-vu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: none;
  }
  .dv-card {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  .dv-card__inner {
    min-height: 100%;
  }
  .dv-card__content {
    max-width: none;
  }
  .dv-card__panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 0;
    padding: 20px 18px 16px 18px;
  }
  .dv-card__name {
    font-size: 18px;
    line-height: 1.35;
  }
}
@media (max-width: 575px) {
  .sec-dich-vu__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dv-card__inner {
    min-height: 100%;
  }
}
@media (min-width: 992px) {
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__visual {
    position: relative;
    overflow: hidden;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__layer--bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__bg-img,
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__layer--bg
    img,
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__layer--bg
    picture {
    position: absolute;
    left: var(--hero-bg-left);
    top: var(--hero-bg-top);
    width: var(--hero-bg-w);
    height: var(--hero-bg-h);
    max-width: none;
    max-height: none;
    object-fit: fill;
    opacity: var(--hero-bg-opacity);
    transform: rotate(var(--hero-bg-rotate));
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__layer--fg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}
.sec-gioi-thieu {
  position: relative;
  z-index: 0;
  padding: 80px 0;
  background-color: #fff;
}
.sec-gioi-thieu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
  pointer-events: none;
}
.sec-gioi-thieu__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.sec-gioi-thieu__content {
  flex: 0 1 584px;
  max-width: 584px;
  min-width: 0;
  min-height: 496px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}
.gt-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  box-sizing: border-box;
  min-height: 35px;
  padding: 8px 16px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #107940;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: #f1fff7;
  border: none;
  border-radius: 9999px;
}
.gt-label i {
  font-size: 14px;
  color: #107940;
}
.gt-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}
.gt-title__line {
  display: block;
  max-width: 100%;
}
.gt-title__black {
  color: #1d2129;
}
.gt-title__line.gt-title__green {
  color: #107940;
  background: 0 0;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
}
.gt-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
.gt-prose {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
.gt-prose p {
  margin: 0;
}
.gt-prose > :first-child {
  margin-top: 0;
}
.gt-prose > :last-child {
  margin-bottom: 0;
}
.gt-bullets-grid {
  display: flex;
  gap: 24px;
  margin: 0;
}
.gt-bullets-col {
  flex: 1;
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gt-bullets-col li {
  position: relative;
  padding-left: 18px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin-bottom: 10px;
  list-style: none;
}
.gt-bullets-col li:last-child {
  margin-bottom: 0;
}
.gt-bullets-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #107940;
}
.gt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  box-sizing: border-box;
  min-width: 252px;
  min-height: 56px;
  padding: 14px 40px;
  background: #107940;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(27, 34, 50, 0.08);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.gt-cta:hover {
  background: #0d6234;
  color: #fff;
  box-shadow: 0 10px 28px rgba(27, 34, 50, 0.12);
}
.gt-cta i {
  font-size: 14px;
}
.sec-gioi-thieu__photos {
  flex: 0 0 auto;
  align-self: flex-start;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 255px);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 15.35px;
  box-sizing: border-box;
  width: 590.35px;
  max-width: 100%;
  height: 496px;
  min-width: 0;
}
.gt-photo--main {
  grid-column: 1;
  grid-row: 1/3;
}
.gt-photo--top {
  grid-column: 2;
  grid-row: 1;
}
.gt-photo--bottom {
  grid-column: 2;
  grid-row: 2;
}
.gt-photo--single {
  grid-column: 1/3;
  grid-row: 1/3;
}
.gt-photo {
  position: relative;
  border-radius: 10.97px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: 0 6px 24px rgba(16, 121, 64, 0.24);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.gt-photo:hover {
  box-shadow: 0 8px 28px rgba(16, 121, 64, 0.32);
}
.gt-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .gt-photo {
    transition: none;
  }
  .gt-photo:hover {
    box-shadow: 0 6px 24px rgba(16, 121, 64, 0.24);
  }
}
.pgt-bento.js-assemble-photos,
.sec-gioi-thieu__photos.js-assemble-photos {
  perspective: 1100px;
}
.js-assemble-photos .gt-photo,
.js-assemble-photos .pgt-shot {
  transform-style: preserve-3d;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.js-assemble-photos:not(.is-assembled) .gt-photo,
.js-assemble-photos:not(.is-assembled) .pgt-shot {
  opacity: 0;
}
.js-assemble-photos:not(.is-assembled) .gt-photo:nth-child(1),
.js-assemble-photos:not(.is-assembled) .pgt-shot--hero {
  transform: rotate(-12deg) translate3d(-14px, 38px, 0) scale(0.92);
  transform-origin: 55% 60%;
}
.js-assemble-photos:not(.is-assembled) .gt-photo:nth-child(2),
.js-assemble-photos:not(.is-assembled) .pgt-shot--a {
  transform: rotate(11deg) translate3d(26px, -32px, 0) scale(0.9);
  transform-origin: 40% 45%;
}
.js-assemble-photos:not(.is-assembled) .gt-photo:nth-child(3),
.js-assemble-photos:not(.is-assembled) .pgt-shot--b {
  transform: rotate(9deg) translate3d(20px, 28px, 0) scale(0.9);
  transform-origin: 50% 55%;
}
.js-assemble-photos:not(.is-assembled) .gt-photo--single,
.js-assemble-photos:not(.is-assembled) .pgt-shot--solo {
  transform: rotate(-6deg) translate3d(0, 28px, 0) scale(0.94);
  transform-origin: center center;
}
.js-assemble-photos.is-assembled .gt-photo,
.js-assemble-photos.is-assembled .pgt-shot {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.js-assemble-photos.is-assembled .gt-photo:nth-child(1),
.js-assemble-photos.is-assembled .pgt-shot--hero {
  transition-delay: 50ms;
}
.js-assemble-photos.is-assembled .gt-photo:nth-child(2),
.js-assemble-photos.is-assembled .pgt-shot--a {
  transition-delay: 0.18s;
}
.js-assemble-photos.is-assembled .gt-photo:nth-child(3),
.js-assemble-photos.is-assembled .pgt-shot--b {
  transition-delay: 0.32s;
}
.js-assemble-photos.is-assembled .gt-photo--single,
.js-assemble-photos.is-assembled .pgt-shot--solo {
  transition-delay: 80ms;
}
.js-assemble-photos .pgt-float {
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-assemble-photos:not(.is-assembled) .pgt-float {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}
.js-assemble-photos.is-assembled .pgt-float {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  .js-assemble-photos .gt-photo,
  .js-assemble-photos .pgt-float,
  .js-assemble-photos .pgt-shot {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-primary, #2e7d32);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-readmore:hover {
  background: #1b5e20;
  color: #fff;
}
@media (max-width: 1199px) {
  .sec-gioi-thieu__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 36px;
  }
  .sec-gioi-thieu__content {
    flex: 1 1 auto;
    max-width: none;
    min-height: 0;
  }
  .sec-gioi-thieu__photos {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 590.35/496;
    grid-template-columns: minmax(0, 320fr) minmax(0, 255fr);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  .sec-gioi-thieu {
    padding: 56px 0;
  }
  .gt-title {
    font-size: 32px;
  }
  .gt-desc {
    font-size: 18px;
    line-height: 1.45;
  }
  .gt-bullets-col li {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .sec-gioi-thieu {
    padding: 48px 0;
  }
  .gt-title {
    font-size: 26px;
  }
  .gt-desc {
    font-size: 17px;
  }
  .gt-bullets-col li {
    font-size: 14px;
  }
  .gt-bullets-grid {
    flex-direction: column;
    gap: 0;
  }
  .gt-cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}
.sec-san-pham {
  padding: 60px 0;
}
.sec-san-pham-list {
  padding: 40px 0;
  background: #f5f5f5;
}
.sec-san-pham-by-list {
  padding: 40px 0;
}
.sec-san-pham-by-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.title-pro {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.sec-tin-tuc {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  background: #fff;
  border-bottom-left-radius: clamp(28px, 5vw, 72px);
  border-bottom-right-radius: clamp(28px, 5vw, 72px);
  overflow: hidden;
}
.sec-tin-tuc .wrap-content {
  padding-top: 0;
}
.sec-tin-tuc .sec-title h2 {
  padding-bottom: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
}
.sec-tin-tuc .sec-title h2::after {
  display: none;
  content: none;
}
.sec-tin-tuc__cell-media,
.sec-tin-tuc__featured-media {
  border: 0;
  outline: 0;
  line-height: 0;
}
.sec-tin-tuc .sec-tin-tuc__cell-link:focus,
.sec-tin-tuc .sec-tin-tuc__cell-link:focus-visible,
.sec-tin-tuc .sec-tin-tuc__featured-link:focus,
.sec-tin-tuc .sec-tin-tuc__featured-link:focus-visible {
  outline: 0;
}
.sec-tin-tuc .sec-tin-tuc__cell-link:focus-visible,
.sec-tin-tuc .sec-tin-tuc__featured-link:focus-visible {
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.35);
}
.sec-tin-tuc__featured {
  margin: 0 auto 32px;
  width: 100%;
  max-width: 1152px;
}
.sec-tin-tuc__featured-link {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 520px);
  gap: 24px 32px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.sec-tin-tuc__featured-link:hover {
  opacity: 0.92;
}
.sec-tin-tuc__featured-media {
  position: relative;
  overflow: hidden;
  background: #eee;
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 600/349;
  border-radius: 14px 0 0 14px !important;
  isolation: isolate;
}
.sec-tin-tuc__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
}
.sec-tin-tuc .sec-tin-tuc__img--featured {
  border-radius: 0 !important;
  min-height: 0;
  min-width: 0;
}
.sec-tin-tuc__placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(135deg, #e8f5e9 0, #c8e6c9 100%);
}
.sec-tin-tuc__featured-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0;
  width: 100%;
  max-width: 520px;
  min-height: 215px;
  box-sizing: border-box;
  justify-content: flex-start;
}
.sec-tin-tuc__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary, #2e7d32);
  letter-spacing: 0.02em;
}
.sec-tin-tuc__date--bottom {
  margin-top: 4px;
}
.sec-tin-tuc__featured-body .sec-tin-tuc__date {
  margin-top: 0;
}
.sec-tin-tuc__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0;
}
.sec-tin-tuc__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.sec-tin-tuc__featured-body .sec-tin-tuc__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-tin-tuc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 24px;
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}
.sec-tin-tuc__cell-link {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  box-sizing: border-box;
  width: 100%;
  min-height: 180px;
  height: 180px;
  max-height: 180px;
  overflow: hidden;
}
.sec-tin-tuc__cell-link:hover {
  border-color: #c8e6c9;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.12);
}
.sec-tin-tuc__cell-media {
  position: relative;
  flex-shrink: 0;
  width: 248px;
  height: 164px;
  align-self: center;
  border-radius: 12px !important;
  overflow: hidden;
  background: #eee;
  isolation: isolate;
}
.sec-tin-tuc .sec-tin-tuc__img--grid {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
}
.sec-tin-tuc__placeholder--sm {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.sec-tin-tuc__cell-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px 10px 0;
  justify-content: flex-start;
  overflow: hidden;
}
.sec-tin-tuc__date--grid {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin: 0;
}
.sec-tin-tuc__title--grid {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-tin-tuc__excerpt--grid {
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 1024px) {
  .sec-tin-tuc__featured-link {
    grid-template-columns: 600px 520px;
    gap: 32px;
  }
}
@media (max-width: 1023px) {
  .sec-tin-tuc__featured-link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1219px) and (min-width: 768px) {
  .sec-tin-tuc__grid {
    column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .sec-tin-tuc__featured {
    max-width: none;
  }
  .sec-tin-tuc__featured-link {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sec-tin-tuc__featured-body {
    min-height: 0;
    max-width: none;
  }
  .sec-tin-tuc__featured-media {
    aspect-ratio: 600/349;
    max-width: none;
    border-radius: 12px !important;
  }
  .sec-tin-tuc__placeholder {
    border-radius: 12px;
  }
  .sec-tin-tuc__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .sec-tin-tuc__cell-link {
    grid-template-columns: 120px minmax(0, 1fr);
    height: auto;
    min-height: 140px;
    max-height: none;
  }
  .sec-tin-tuc__cell-media {
    position: relative;
    width: 120px;
    height: auto;
    aspect-ratio: 4/3;
    align-self: start;
    border-radius: 12px !important;
  }
  .sec-tin-tuc__placeholder--sm {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    height: 100%;
  }
}
@media (max-width: 479px) {
  .sec-tin-tuc__cell-link {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
    min-height: 0;
  }
  .sec-tin-tuc__cell-body {
    padding: 12px;
  }
  .sec-tin-tuc__cell-media {
    width: 100%;
    max-width: none;
    aspect-ratio: 16/10;
    height: auto;
    border-radius: 12px !important;
  }
  .sec-tin-tuc .sec-tin-tuc__img--grid {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
.sec-video {
  padding: 60px 0;
  background: #f9f9f9;
}
.sec-video__inner {
  display: flex;
  gap: 40px;
}
.sec-video__left {
  flex: 1.2;
}
.sec-video__right {
  flex: 1;
}
.home-endcap-wrap {
  width: 100%;
  background-color: #107940;
}
.home-endcap {
  background: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-endcap {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
}
.sec-doi-tac {
  padding: 50px 0;
  background: #fff;
}
.sec-doi-tac__item {
  display: block;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}
.sec-doi-tac__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.sec-doi-tac--modern {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #fff 0, #f6faf6 100%);
}
.sec-doi-tac__swiper {
  padding-bottom: 36px;
}
.sec-doi-tac__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px 14px;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(46, 125, 50, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}
.sec-doi-tac__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.12);
}
.sec-doi-tac__card-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-primary, #2e7d32);
  opacity: 0.95;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}
.sec-doi-tac__card-inner {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
.sec-doi-tac__card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sec-doi-tac__card-name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  color: #5a5f5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.sec-doi-tac__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary, #2e7d32);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid rgba(46, 125, 50, 0.35);
  transition:
    background 0.2s,
    color 0.2s;
}
.sec-doi-tac__more:hover {
  background: var(--color-primary, #2e7d32);
  color: #fff;
}
.page-doi-tac-net {
  position: relative;
  padding: 32px 0 56px;
  overflow: hidden;
}
.page-doi-tac-net__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(46, 125, 50, 0.06),
      transparent 55%
    ),
    linear-gradient(180deg, #f6faf6 0, #fff 45%, #f3f5f4 100%);
  pointer-events: none;
  z-index: 0;
}
.page-doi-tac-net__inner {
  position: relative;
  z-index: 1;
}
.page-doi-tac-net__head.sec-title {
  margin-bottom: 28px;
}
.page-doi-tac-net__head h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1a1a;
}
.page-doi-tac-net__stage {
  --node-size: 132px;
  --ring-r: min(34vw, 268px);
  position: relative;
  width: 100%;
  max-width: 840px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
}
.page-doi-tac-net__particles {
  position: absolute;
  inset: -4%;
  z-index: 0;
  pointer-events: none;
}
.page-doi-tac-net__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary, #2e7d32);
  opacity: 0.35;
  animation: pageDoiTacFloat 7s ease-in-out infinite;
}
.page-doi-tac-net__particle:nth-child(1) {
  left: 8%;
  top: 18%;
  animation-delay: 0s;
}
.page-doi-tac-net__particle:nth-child(2) {
  left: 22%;
  top: 8%;
  animation-delay: 0.4s;
  width: 4px;
  height: 4px;
}
.page-doi-tac-net__particle:nth-child(3) {
  left: 78%;
  top: 12%;
  animation-delay: 0.8s;
}
.page-doi-tac-net__particle:nth-child(4) {
  left: 88%;
  top: 28%;
  animation-delay: 1.1s;
  width: 5px;
  height: 5px;
}
.page-doi-tac-net__particle:nth-child(5) {
  left: 92%;
  top: 62%;
  animation-delay: 0.2s;
}
.page-doi-tac-net__particle:nth-child(6) {
  left: 72%;
  top: 88%;
  animation-delay: 1.4s;
}
.page-doi-tac-net__particle:nth-child(7) {
  left: 48%;
  top: 94%;
  animation-delay: 0.6s;
  width: 4px;
  height: 4px;
}
.page-doi-tac-net__particle:nth-child(8) {
  left: 18%;
  top: 78%;
  animation-delay: 1.2s;
}
.page-doi-tac-net__particle:nth-child(9) {
  left: 6%;
  top: 52%;
  animation-delay: 0.3s;
}
.page-doi-tac-net__particle:nth-child(10) {
  left: 38%;
  top: 4%;
  animation-delay: 0.9s;
}
.page-doi-tac-net__particle:nth-child(11) {
  left: 58%;
  top: 6%;
  animation-delay: 1.5s;
  width: 4px;
  height: 4px;
}
.page-doi-tac-net__particle:nth-child(12) {
  left: 94%;
  top: 44%;
  animation-delay: 0.5s;
}
.page-doi-tac-net__particle:nth-child(13) {
  left: 14%;
  top: 42%;
  animation-delay: 1s;
}
.page-doi-tac-net__particle:nth-child(14) {
  left: 64%;
  top: 96%;
  animation-delay: 0.7s;
}
.page-doi-tac-net__particle:nth-child(15) {
  left: 42%;
  top: 88%;
  animation-delay: 1.3s;
  width: 5px;
  height: 5px;
}
.page-doi-tac-net__particle:nth-child(16) {
  left: 30%;
  top: 62%;
  animation-delay: 0.15s;
}
.page-doi-tac-net__particle:nth-child(17) {
  left: 82%;
  top: 74%;
  animation-delay: 1.6s;
}
.page-doi-tac-net__particle:nth-child(18) {
  left: 52%;
  top: 2%;
  animation-delay: 0.85s;
}
@keyframes pageDoiTacFloat {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.28;
  }
  50% {
    transform: translate(4px, -6px);
    opacity: 0.55;
  }
}
.page-doi-tac-net__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.page-doi-tac-net__spoke {
  stroke: var(--color-primary, #2e7d32);
  stroke-width: 1.15;
  stroke-linecap: round;
  opacity: 0.55;
  vector-effect: non-scaling-stroke;
}
.page-doi-tac-net__mesh {
  stroke: rgba(46, 125, 50, 0.2);
  stroke-width: 0.85;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.page-doi-tac-net__stage--anim .page-doi-tac-net__spoke {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: pageDoiTacDraw 1s ease forwards;
}
.page-doi-tac-net__stage--anim .page-doi-tac-net__mesh {
  opacity: 0;
  animation: pageDoiTacFadeMesh 0.75s ease 0.45s forwards;
}
@keyframes pageDoiTacDraw {
  to {
    stroke-dashoffset: 0;
    opacity: 0.62;
  }
}
@keyframes pageDoiTacFadeMesh {
  to {
    opacity: 1;
  }
}
.page-doi-tac-net__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-doi-tac-net__hub-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 125, 50, 0.25);
  animation: pageDoiTacPulse 2.8s ease-out infinite;
}
.page-doi-tac-net__hub-pulse--delay {
  animation-delay: 1.4s;
  border-color: rgba(46, 125, 50, 0.12);
}
@keyframes pageDoiTacPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.page-doi-tac-net__hub-card {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(46, 125, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-doi-tac-net__hub-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.page-doi-tac-net__hub-fallback {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary, #2e7d32);
  letter-spacing: 0.02em;
}
.page-doi-tac-net__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.page-doi-tac-net__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--node-size);
  height: var(--node-size);
  margin-left: calc(var(--node-size) / -2);
  margin-top: calc(var(--node-size) / -2);
  transform: rotate(calc(var(--i) * 1turn / var(--n)))
    translateY(calc(-1 * var(--ring-r)))
    rotate(calc(var(--i) * -1turn / var(--n)));
  pointer-events: auto;
}
.page-doi-tac-net__node {
  width: 100%;
  height: 100%;
}
.page-doi-tac-net__node-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-doi-tac-net__node-link:hover {
  transform: translateY(-4px);
}
.page-doi-tac-net__node-visual {
  position: relative;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
}
.page-doi-tac-net__node-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-radius: 50%;
  background: var(--color-primary, #2e7d32);
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.35);
  z-index: 0;
}
.page-doi-tac-net__node-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.page-doi-tac-net__node-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.page-doi-tac-net__node-placeholder {
  color: #999;
  font-size: 1.2rem;
}
.page-doi-tac-net__node-name {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: #5a5f5c;
  max-width: 128px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-doi-tac-net__pager {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.page-doi-tac-net__pager .pagination {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .page-doi-tac-net__stage {
    --node-size: 118px;
    --ring-r: min(38vw, 220px);
  }
}
@media (max-width: 767.98px) {
  .page-doi-tac-net {
    padding-bottom: 40px;
  }
  .page-doi-tac-net__stage {
    aspect-ratio: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 0 12px;
  }
  .page-doi-tac-net__particles,
  .page-doi-tac-net__svg {
    display: none !important;
  }
  .page-doi-tac-net__hub {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 12px 0 20px;
  }
  .page-doi-tac-net__nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    width: 100%;
    max-width: 520px;
    pointer-events: auto;
    padding: 0 4px;
  }
  .page-doi-tac-net__orbit {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 168px;
    margin: 0;
    transform: none !important;
  }
  .page-doi-tac-net__node-link {
    background: #fff;
    border-radius: 16px;
    padding: 14px 10px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 125, 50, 0.1);
  }
  .page-doi-tac-net__node-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
  .page-doi-tac-net__node-disc {
    display: none;
  }
  .page-doi-tac-net__node-logo {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(46, 125, 50, 0.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-doi-tac-net__hub-pulse,
  .page-doi-tac-net__hub-pulse--delay,
  .page-doi-tac-net__particle {
    animation: none !important;
  }
  .page-doi-tac-net__stage--anim .page-doi-tac-net__spoke {
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }
  .page-doi-tac-net__stage--anim .page-doi-tac-net__mesh {
    opacity: 1 !important;
    animation: none !important;
  }
}
.sec-tags {
  padding: 30px 0;
  background: #f5f5f5;
}
.footer-tags .title-tags {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}
.footer-tags .flex-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tags .flex-tags a {
  padding: 4px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-tags .flex-tags a:hover {
  background: var(--color-primary, #2e7d32);
  color: #fff;
  border-color: var(--color-primary, #2e7d32);
}
@media (max-width: 768px) {
  .sec-gioi-thieu__inner {
    flex-direction: column;
  }
  .sec-video__inner {
    flex-direction: column;
  }
}
.sec-spl {
  padding: 0 0 32px;
}
.sec-spl + .sec-spl {
  padding-top: 0;
}
.sec-spl__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sec-spl__title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.sec-spl__head-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}
.sec-spl__more-wrap {
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  flex-shrink: 0;
}
.sec-spl__more-wrap:hover {
  border-color: var(--color-primary, #2e7d32);
  background: #f7fbf7;
}
.sec-spl__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary, #2e7d32);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  transition: color 0.2s ease;
  line-height: 1.25;
}
.sec-spl__more-label {
  display: inline-block;
}
.sec-spl__more-chevron {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.sec-spl__more:hover {
  color: var(--color-primary, #2e7d32);
  opacity: 1;
}
.sec-spl__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec-spl__cats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sec-spl__cat-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  user-select: none;
}
.sec-spl__cat-btn.active,
.sec-spl__cat-btn:hover {
  background: var(--color-primary, #2e7d32);
  border-color: var(--color-primary, #2e7d32);
  color: #fff;
}
.sec-spl--laptop {
  padding: 40px 0;
}
.sec-spl--laptop .sec-spl__head {
  margin-bottom: 28px;
  min-height: 50px;
  align-items: center;
  gap: 24px;
}
.sec-spl--laptop .sec-spl__title {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
}
.sec-spl--laptop .sec-spl__head-actions {
  gap: 32px;
}
.sec-spl--laptop .sec-spl__cats {
  gap: 16px;
}
.sec-spl--laptop .sec-spl__cat-btn {
  box-sizing: border-box;
  height: 50px;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}
.sec-spl--laptop .sec-spl__cat-btn.active,
.sec-spl--laptop .sec-spl__cat-btn:hover {
  background: #107940;
  border-color: #107940;
  color: #fff;
  box-shadow: 0 4px 14px rgba(16, 121, 64, 0.28);
}
.sec-spl--laptop .sec-spl__more-wrap {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08);
  overflow: visible;
}
.sec-spl--laptop .sec-spl__more-wrap:hover {
  border-color: #0d96f8;
  background: #fff;
}
.sec-spl--laptop .sec-spl__more {
  gap: 4px;
  min-height: 50px;
  padding: 8px 8px 8px 20px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #0d96f8;
}
.sec-spl--laptop .sec-spl__more:hover {
  color: #0b7fd4;
}
.sec-spl--laptop .sec-spl__more-label {
  color: inherit;
}
.sec-spl--laptop .sec-spl__more-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  color: inherit;
}
.sec-spl--laptop .paging-product {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.sec-spl--laptop .spl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 24px;
  column-gap: 24px;
  gap: 24px;
}
.sec-spl--laptop .prod-card {
  border-radius: 16px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-spl--laptop .prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.sec-spl--laptop .prod-card__img {
  border-radius: 16px 16px 0 0;
}
.sec-spl--laptop .prod-card__img img {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}
.sec-spl--laptop .prod-card:hover .prod-card__img img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
.sec-spl--laptop .prod-card__body {
  padding: 16px 16px 18px;
  gap: 12px;
}
.sec-spl--laptop .prod-card__name {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #000;
}
.sec-spl--laptop .prod-card__price-sale {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.sec-spl--laptop .prod-card__price-old {
  font-size: 14px;
}
.sec-spl--laptop .prod-card__btn {
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #107940;
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.sec-spl--laptop .prod-card__btn i {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-spl--laptop .prod-card:hover .prod-card__btn {
  background: #0d6234;
  box-shadow: 0 8px 20px rgba(16, 121, 64, 0.35);
}
.sec-spl--laptop .prod-card:hover .prod-card__btn i {
  transform: translateX(3px);
}
.sec-spl--laptop .prod-badge--new {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: #1565c0;
}
.sec-spl--laptop .prod-badge--sale {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  .sec-spl--laptop .prod-card,
  .sec-spl--laptop .prod-card__btn,
  .sec-spl--laptop .prod-card__btn i,
  .sec-spl--laptop .prod-card__img img {
    transition-duration: 0s !important;
  }
  .sec-spl--laptop .prod-card:hover {
    transform: none;
  }
  .sec-spl--laptop .prod-card:hover .prod-card__img img {
    transform: none;
    filter: none;
  }
}
@media (max-width: 991px) {
  .sec-spl--laptop .sec-spl__cats {
    gap: 16px;
  }
  .sec-spl--laptop .sec-spl__cat-btn {
    padding: 0 20px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sec-spl--laptop .sec-spl__title {
    font-size: 24px;
    white-space: normal;
  }
  .sec-spl--laptop .sec-spl__head-actions {
    gap: 16px;
  }
}
.spl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spl-grid-pager {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.spl-grid-pager__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.spl-grid-pager__btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.spl-grid-pager__btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--color-primary, #2e7d32);
  color: var(--color-primary, #2e7d32);
}
.spl-grid-pager__btn.is-active {
  background: var(--color-primary, #2e7d32);
  border-color: var(--color-primary, #2e7d32);
  color: #fff;
  cursor: default;
}
.spl-grid-pager__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.spl-grid-pager__btn--nav {
  font-size: 18px;
  line-height: 1;
  padding: 0 10px;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  min-height: 443px;
  color: inherit;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.prod-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}
.prod-card__img {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 380/350;
}
.prod-card:hover .prod-card__img img {
  transform: scale(1.04);
}
.prod-badge {
  position: absolute;
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  line-height: 1.4;
  z-index: 2;
}
.prod-badge--new {
  left: 10px;
  background: #1976d2;
  color: #fff;
}
.prod-badge--sale {
  right: 10px;
  background: #e53935;
  color: #fff;
}
.prod-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 16px;
  gap: 10px;
}
.prod-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.prod-card__tag {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 19px;
  padding: 2px 8px;
  border-radius: 4px;
  border: none;
  background: #f1fff7;
  color: #05572a;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0;
}
.prod-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.prod-card__price-sale {
  font-size: 16px;
  font-weight: 700;
  color: #e53935;
}
.prod-card__price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.prod-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--color-primary, #2e7d32);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.prod-card:hover .prod-card__btn {
  background: #1b5e20;
}
.sec-tuvan {
  padding: 40px 0 48px;
  background: #fff;
  overflow: visible;
}
.sec-tuvan__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 24px;
  align-items: center;
  overflow: visible;
}
@media (min-width: 992px) {
  .sec-tuvan__layout {
    align-items: end;
  }
}
.sec-tuvan__text {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-right: 0;
  overflow: visible;
  align-self: center;
  max-width: 520px;
}
@media (min-width: 992px) {
  .sec-tuvan__text {
    align-self: end;
    padding-bottom: 18.67px;
  }
}
.tuvan-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f1fff7;
  color: #05572a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.tuvan-title {
  margin: 0 0 16px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}
.tuvan-title__black {
  display: block;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: #000;
  margin-bottom: 6px;
}
.tuvan-title__line2 {
  display: block;
  margin-top: 2px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .tuvan-title__line2 {
    white-space: nowrap;
  }
}
.tuvan-title__gradient {
  display: inline;
  color: #107940;
  background-image: none;
  -webkit-text-fill-color: currentColor;
}
.tuvan-desc {
  margin: 0 0 23.3px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  max-width: 100%;
}
@media (min-width: 992px) {
  .tuvan-desc {
    max-width: 455px;
  }
}
.tuvan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 254px;
  padding: 8px 24px;
  border-radius: 12px;
  background: #107940;
  color: #fff !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}
.tuvan-cta:hover {
  background: #0d6234;
  color: #fff !important;
}
.sec-tuvan__media {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  align-self: center;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .sec-tuvan__media {
    margin-left: clamp(-18px, -2.8vw, -56px);
    align-self: end;
  }
}
.sec-tuvan__shots {
  display: grid;
  grid-template-columns: 410px 416px;
  column-gap: 16px;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
}
@media (min-width: 992px) {
  .sec-tuvan__shots {
    margin-left: 0;
  }
}
.sec-tuvan__shots-stack {
  grid-column: 1;
  grid-row: 1/-1;
  display: grid;
  grid-template-rows: 152px 210px;
  row-gap: 17px;
  width: 410px;
  max-width: 100%;
  min-height: 0;
}
.tuvan-shot--tall {
  grid-column: 2;
  grid-row: 1/-1;
  width: 416px;
  height: 379px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #e0e0e0;
}
.tuvan-shot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e0e0e0;
}
.tuvan-shot--top {
  width: 213px;
  height: 152px;
  max-width: 100%;
  justify-self: end;
  align-self: start;
}
.tuvan-shot--bottom {
  width: 410px;
  height: 210px;
  max-width: 100%;
  justify-self: stretch;
}
.tuvan-shot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tuvan-shot--tall .tuvan-shot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tuvan-shot--overlap-target {
  z-index: 1;
}
@media (max-width: 1199px) {
  .sec-tuvan__shots {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
  }
  .sec-tuvan__shots-stack {
    width: 100%;
    grid-template-rows: auto auto;
  }
  .tuvan-shot--top {
    width: min(213px, 58%);
    aspect-ratio: 213/152;
    height: auto;
  }
  .tuvan-shot--bottom {
    width: 100%;
    aspect-ratio: 410/210;
    height: auto;
  }
  .tuvan-shot--tall {
    width: 100%;
    height: auto;
    aspect-ratio: 416/379;
  }
}
@media (max-width: 991px) {
  .sec-tuvan__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }
  .sec-tuvan__text {
    align-self: stretch;
    max-width: none;
    padding-right: 0;
    padding-bottom: 0;
  }
  .sec-tuvan__media {
    align-self: stretch;
    margin-left: 0;
  }
  .sec-tuvan__shots {
    margin-left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .sec-tuvan__shots-stack {
    grid-column: 1;
    grid-row: auto;
  }
  .tuvan-shot--tall {
    grid-column: 1;
    grid-row: auto;
  }
  .tuvan-cta {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .tuvan-shot--top {
    width: min(213px, 72%);
  }
}
@media (max-width: 767px) {
  .tuvan-title__black {
    font-size: clamp(22px, 6.5vw, 36px);
    line-height: 1.12;
  }
  .tuvan-title__line2 {
    font-size: clamp(22px, 7vw, 40px);
    line-height: 1.12;
    white-space: normal;
  }
}
@media (max-width: 1199px) {
  .spl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sec-spl--laptop .spl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
    column-gap: 24px;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .spl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sec-spl--laptop .spl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
    column-gap: 24px;
    gap: 24px;
  }
  .sec-spl__title {
    font-size: 18px;
  }
  .sec-spl__head {
    gap: 12px;
  }
  .sec-spl__head-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 479px) {
  .spl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sec-spl--laptop .spl-grid {
    row-gap: 24px;
    column-gap: 24px;
    gap: 24px;
  }
  .prod-card__body {
    padding: 10px 10px 12px;
  }
  .prod-card__name {
    font-size: 13px;
  }
  .prod-card__price-sale {
    font-size: 14px;
  }
  .sec-spl--laptop .prod-card__btn {
    font-size: 12px;
    padding: 10px 8px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}
.sec-khach-hang-noi {
  padding: 40px 0;
  background: #fff;
}
.sec-khach-hang-noi__head {
  margin-bottom: 24px;
  text-align: center;
}
.sec-khach-hang-noi__head h2 {
  text-align: center;
}
.sec-khach-hang-noi__subtitle {
  max-width: 680px;
  margin: 14px auto 0;
  padding: 0 12px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-primary, #2e7d32);
  font-weight: 500;
}
.sec-khach-hang-noi .sec-title h2 {
  padding-bottom: 0;
}
.sec-khach-hang-noi .sec-title h2::after {
  display: none;
  content: none;
}
.sec-khach-hang-noi__subtitle {
  max-width: 680px;
  margin: 14px auto 0;
  padding: 0 12px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-primary, #2e7d32);
  font-weight: 500;
}
.sec-khach-hang-noi__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.sec-khach-hang-noi__stat-card {
  background: #fff;
  border: 1px solid #e0e4eb;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: left;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}
.sec-khach-hang-noi__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary, #2e7d32);
  line-height: 1.2;
  margin-bottom: 8px;
}
.sec-khach-hang-noi__stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary, #2e7d32);
  line-height: 1.4;
}
.sec-khach-hang-noi__slider-wrap {
  position: relative;
  padding-bottom: 8px;
}
.sec-khach-hang-noi__swiper {
  padding-bottom: 0;
}
.sec-khach-hang-noi__swiper.swiper .swiper-wrapper {
  align-items: stretch;
}
.sec-khach-hang-noi__swiper.swiper .swiper-slide {
  height: auto;
  align-self: stretch;
  display: flex;
  box-sizing: border-box;
}
.sec-khach-hang-noi__swiper.swiper .swiper-slide > .sec-khach-hang-noi__card {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
}
.sec-khach-hang-noi__card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e4eb;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  min-height: 0;
  box-shadow: 0 1px 10px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 15.4px;
  box-sizing: border-box;
}
.sec-khach-hang-noi__card-footer {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 0;
}
.sec-khach-hang-noi__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}
.sec-khach-hang-noi__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-khach-hang-noi__meta {
  flex: 1;
  min-width: 0;
}
.sec-khach-hang-noi__name {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.3;
}
.sec-khach-hang-noi__company {
  font-size: 13px;
  color: var(--color-primary, #2e7d32);
  font-weight: 600;
  margin-top: 2px;
}
.sec-khach-hang-noi__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.sec-khach-hang-noi__quote-decor {
  position: absolute;
  top: 23.8px;
  right: 23.47px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
  user-select: none;
}
.sec-khach-hang-noi__quote-decor-img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
}
.sec-khach-hang-noi__rating-fixed {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1;
  flex: 1;
  min-width: 0;
}
.sec-khach-hang-noi__rating-fixed .bi {
  flex-shrink: 0;
}
.sec-khach-hang-noi__star--on {
  color: #f5a623;
}
.sec-khach-hang-noi__star--off {
  color: #cfd8dc;
}
.sec-khach-hang-noi__quote {
  font-size: 14px;
  line-height: 1.65;
  color: #1a1a1a;
  flex: 1;
  font-weight: 500;
  margin: 0;
  min-height: 0;
  text-decoration: none;
}
.sec-khach-hang-noi__quote a {
  color: inherit;
  text-decoration: none;
}
.sec-khach-hang-noi__quote u {
  text-decoration: none;
}
@media (max-width: 991px) {
  .sec-khach-hang-noi__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .sec-khach-hang-noi {
    padding: 32px 0;
  }
  .sec-khach-hang-noi__card {
    padding: 22px;
    border-radius: 16px;
    gap: 12px;
  }
  .sec-khach-hang-noi__stats {
    grid-template-columns: 1fr;
  }
}
.sec-du-an-tieu-bieu {
  margin-bottom: 40px;
}
.sec-du-an-tieu-bieu .wrap-content.sec-du-an-tieu-bieu__head,
.sec-du-an-tieu-bieu .wrap-content.sec-du-an-tieu-bieu__slider-wrap {
  max-width: 1200px;
  width: calc(100% - 32px);
}
.sec-du-an-tieu-bieu__head {
  margin-bottom: 52px;
}
.sec-du-an-tieu-bieu .sec-title h2 {
  padding-bottom: 0;
}
.sec-du-an-tieu-bieu .sec-title h2::after {
  display: none;
  content: none;
}
.sec-du-an-tieu-bieu__title-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
.sec-du-an-tieu-bieu__slider-wrap {
  width: 100%;
}
.sec-du-an-tieu-bieu__slider-outer {
  width: 100%;
}
.sec-du-an__swiper {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 638px;
  max-height: 638px;
  min-height: 0;
}
.sec-du-an__swiper .swiper-slide,
.sec-du-an__swiper .swiper-wrapper {
  height: 100%;
}
.sec-du-an__slide {
  position: relative;
  min-height: 280px;
  height: 100%;
}
.sec-du-an__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 8px;
}
.sec-du-an__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sec-du-an__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sec-du-an__bg--placeholder {
  background: linear-gradient(135deg, #263238 0, #37474f 45%, #1b5e20 100%);
}
.sec-du-an__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.55) 72%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.sec-du-an__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 48px clamp(20px, 11vw, 160px) 48px;
  text-align: center;
  box-sizing: border-box;
}
.sec-du-an__content {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .sec-du-an__content {
    gap: 24px;
  }
}
.sec-du-an__headline {
  margin: 0;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.sec-du-an__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.sec-du-an__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--color-primary, #2e7d32);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.sec-du-an__btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.5);
}
.sec-du-an__btn .bi {
  font-size: 0.95em;
}
.sec-du-an-tieu-bieu .sec-du-an__pagi.swiper-pagination {
  bottom: 14px !important;
  left: 0;
  right: 0;
  z-index: 4;
  padding-top: 0;
}
.sec-du-an-tieu-bieu .sec-du-an__pagi .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 5px !important;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  vertical-align: middle;
}
.sec-du-an-tieu-bieu .sec-du-an__pagi .swiper-pagination-bullet-active {
  background: var(--color-primary, #2e7d32);
  transform: scale(1.15);
}
@media (max-width: 1199px) {
  .sec-du-an__swiper {
    height: min(638px, 70vw);
    max-height: 638px;
  }
}
@media (max-width: 991px) {
  .sec-du-an-tieu-bieu__head {
    margin-bottom: 36px;
  }
  .sec-du-an__swiper {
    height: auto;
    min-height: 420px;
    max-height: none;
    aspect-ratio: 16/10;
  }
  .sec-du-an__inner {
    justify-content: flex-end;
    padding: 24px 20px 46px;
  }
}
@media (max-width: 575px) {
  .sec-du-an__inner {
    padding: 16px 14px 42px;
  }
  .sec-du-an__headline {
    font-size: 1.05rem;
  }
  .sec-du-an__swiper {
    min-height: 320px;
    aspect-ratio: 4/3;
  }
}
.sec-dich-vu-showcase {
  position: relative;
  min-height: 826px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 39px clamp(16px, 4.9vw, 47px) 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.sec-dich-vu-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0d3010;
  background-image:
    radial-gradient(
      ellipse 85% 55% at 8% 5%,
      rgba(255, 255, 255, 0.09) 0,
      transparent 52%
    ),
    radial-gradient(
      ellipse 70% 50% at 92% 88%,
      rgba(129, 199, 132, 0.35) 0,
      transparent 48%
    ),
    radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.18) 0, transparent 45%),
    repeating-linear-gradient(
      125deg,
      transparent 0,
      transparent 14px,
      rgba(255, 255, 255, 0.035) 14px,
      rgba(255, 255, 255, 0.035) 15px
    ),
    linear-gradient(
      128deg,
      #062208 0,
      #0d3d12 18%,
      var(--color-primary, #2e7d32) 48%,
      #43a047 72%,
      #81c784 100%
    );
}
.sec-dich-vu-showcase__bg::after,
.sec-dich-vu-showcase__bg::before {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 12px rgba(255, 255, 255, 0.04),
    0 0 0 28px rgba(255, 255, 255, 0.025);
}
.sec-dich-vu-showcase__bg::before {
  width: min(460px, 95vw);
  height: min(460px, 95vw);
  top: -140px;
  left: -100px;
  opacity: 0.65;
}
.sec-dich-vu-showcase__bg::after {
  width: min(400px, 88vw);
  height: min(400px, 88vw);
  bottom: -120px;
  right: -80px;
  opacity: 0.5;
}
.sec-dich-vu-showcase__outer {
  position: relative;
  z-index: 1;
}
.sec-dich-vu-showcase .wrap-content.sec-dich-vu-showcase__outer {
  max-width: min(98vw, 1810px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sec-dich-vu-showcase__card {
  display: grid;
  grid-template-columns: minmax(280px, 720px) minmax(260px, 1fr);
  gap: 32px 40px;
  align-items: center;
  background: #fff;
  border-radius: 35px;
  padding: 65px 57px 60px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  overflow: visible;
}
.sec-dich-vu-showcase__card--text-only {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.sec-dich-vu-showcase__left {
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.sec-dich-vu-showcase__logo {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
.sec-dich-vu-showcase__logo-img {
  display: block;
  width: min(100%, 680px);
  max-width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: center center;
}
.sec-dich-vu-showcase__title {
  margin: 0;
  max-width: 100%;
  width: 100%;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #107940;
}
.sec-dich-vu-showcase__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}
.sec-dich-vu-showcase__line {
  margin: 0;
  width: 100%;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #000;
}
@media (min-width: 1200px) {
  .sec-dich-vu-showcase__card:not(.sec-dich-vu-showcase__card--text-only)
    .sec-dich-vu-showcase__line {
    white-space: nowrap;
  }
}
.sec-dich-vu-showcase__line--1 {
  margin-bottom: 0;
}
.sec-dich-vu-showcase__right {
  min-width: 0;
  overflow: visible;
}
.sec-dich-vu-showcase__gallery {
  position: relative;
  overflow: visible;
  --dv-thumb-strip-half: 104px;
  --dv-thumb-side-inset: clamp(10px, 3.2vw, 38px);
}
.sec-dich-vu-showcase__main {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 0;
  aspect-ratio: 1139/550;
  background: #eceff1;
}
.sec-dich-vu-showcase__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    116deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.82) 45%,
    rgba(255, 255, 255, 0) 68%
  );
  transform: translate3d(-130%, 0, 0);
  opacity: 0;
}
.sec-dich-vu-showcase__main:hover::after {
  opacity: 1 !important;
  animation: dvShowcaseSheen 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec-dich-vu-showcase__main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.35s ease;
}
.sec-dich-vu-showcase__main:hover .sec-dich-vu-showcase__main-img {
  filter: brightness(1.16) saturate(1.16) !important;
}
.sec-dich-vu-showcase__thumbs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 20px);
  align-items: stretch;
  width: calc(100% - 2 * var(--dv-thumb-side-inset, 38px));
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  transform: translateY(-50%);
  margin-bottom: calc(-1 * var(--dv-thumb-strip-half, 104px));
  padding: 23px;
  background: #fff;
  border-radius: 44px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.48),
    0 10px 24px rgba(0, 0, 0, 0.32),
    0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  min-height: 0;
}
.sec-dich-vu-showcase__thumb {
  border-radius: 21px;
  overflow: hidden;
  aspect-ratio: 328/163;
  background: #eceff1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}
.sec-dich-vu-showcase__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    116deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.82) 45%,
    rgba(255, 255, 255, 0) 68%
  );
  transform: translate3d(-130%, 0, 0);
  opacity: 0;
}
.sec-dich-vu-showcase__thumb:hover::after {
  opacity: 1 !important;
  animation: dvShowcaseSheen 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec-dich-vu-showcase__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.35s ease;
}
.sec-dich-vu-showcase__thumb:hover .sec-dich-vu-showcase__thumb-img {
  filter: brightness(1.16) saturate(1.16) !important;
}
@keyframes dvShowcaseSheen {
  0% {
    opacity: 0;
    transform: translate3d(-135%, 0, 0);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(135%, 0, 0);
  }
}
@media (max-width: 1199px) {
  .sec-dich-vu-showcase__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 40px 48px;
  }
}
@media (max-width: 991px) {
  .sec-dich-vu-showcase__gallery {
    --dv-thumb-strip-half: 82px;
  }
  .sec-dich-vu-showcase {
    min-height: auto;
    padding: 32px clamp(14px, 4vw, 32px) 36px;
  }
  .sec-dich-vu-showcase__card {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 32px 20px 40px;
  }
  .sec-dich-vu-showcase__main {
    border-radius: 24px;
    aspect-ratio: 16/10;
  }
  .sec-dich-vu-showcase__thumbs {
    width: calc(100% - 2 * var(--dv-thumb-side-inset, 24px));
    max-width: 1064px;
    margin-top: 0;
    transform: translateY(-50%);
    margin-bottom: calc(-1 * var(--dv-thumb-strip-half, 82px));
    padding: 16px;
    border-radius: 32px;
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.42),
      0 8px 18px rgba(0, 0, 0, 0.28);
  }
  .sec-dich-vu-showcase__thumb {
    border-radius: 16px;
    aspect-ratio: 4/3;
  }
  .sec-dich-vu-showcase__card--text-only {
    max-width: none;
  }
  .sec-dich-vu-showcase__left {
    order: 1;
  }
  .sec-dich-vu-showcase__right {
    order: 2;
  }
}
@media (max-width: 575px) {
  .sec-dich-vu-showcase__gallery {
    --dv-thumb-strip-half: 58px;
    --dv-thumb-side-inset: clamp(8px, 4vw, 20px);
  }
  .sec-dich-vu-showcase {
    padding: 24px 14px 28px;
  }
  .sec-dich-vu-showcase__left {
    gap: 24px;
  }
  .sec-dich-vu-showcase__thumbs {
    gap: 10px;
    margin-top: 0;
    transform: translateY(-50%);
    margin-bottom: calc(-1 * var(--dv-thumb-strip-half, 58px));
    padding: 12px;
    border-radius: 26px;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.4),
      0 6px 14px rgba(0, 0, 0, 0.28);
  }
  .sec-dich-vu-showcase__thumb {
    border-radius: 14px;
  }
}
@media (max-width: 991.98px) {
  .hero-slideshow .swiper-button-next,
  .hero-slideshow .swiper-button-prev,
  .sec-doi-tac .swiper-button-next,
  .sec-doi-tac .swiper-button-prev {
    -webkit-tap-highlight-color: transparent;
  }
}
@media (max-width: 991.98px) {
  body[data-site-com="trang-chu"] .sec-hero {
    --hero-page-margin-x: clamp(12px, 4.2vw, 22px);
    --hero-pad-top: 10px;
    --hero-pad-bottom: 14px;
  }
  body[data-site-com="trang-chu"] .sec-hero__inner {
    gap: clamp(12px, 3.2vw, 20px);
  }
  body[data-site-com="trang-chu"] .sec-hero__cat-toggle {
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 14px;
  }
  body[data-site-com="trang-chu"] .sec-title {
    margin-bottom: clamp(18px, 4vw, 26px);
  }
  body[data-site-com="trang-chu"] .sec-title h2 {
    font-size: clamp(20px, 4.8vw, 26px);
    line-height: 1.22;
  }
  body[data-site-com="trang-chu"] .sec-dich-vu {
    padding-top: clamp(8px, 2.2vw, 16px);
    padding-bottom: clamp(24px, 5vw, 36px);
  }
  body[data-site-com="trang-chu"] .sec-dich-vu__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  body[data-site-com="trang-chu"] .sec-gioi-thieu {
    padding-block: clamp(28px, 5.5vw, 44px);
  }
  body[data-site-com="trang-chu"] .sec-tuvan {
    padding-block: clamp(24px, 5vw, 36px);
  }
  body[data-site-com="trang-chu"] .sec-khach-hang-noi {
    padding-block: clamp(28px, 5vw, 38px);
  }
  body[data-site-com="trang-chu"] .sec-du-an-tieu-bieu {
    padding-block: clamp(24px, 4.5vw, 36px);
  }
  body[data-site-com="trang-chu"] .sec-tin-tuc {
    padding-top: clamp(22px, 4.5vw, 32px);
    padding-bottom: clamp(18px, 4vw, 28px);
  }
  body[data-site-com="trang-chu"] .sec-video {
    padding-block: clamp(28px, 5vw, 40px);
  }
  body[data-site-com="trang-chu"] .sec-doi-tac--modern {
    padding-block: clamp(36px, 6vw, 48px);
  }
  body[data-site-com="trang-chu"] .sec-spl__head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 18px;
  }
  body[data-site-com="trang-chu"] .sec-spl__title {
    white-space: normal;
    width: 100%;
    line-height: 1.2;
  }
  body[data-site-com="trang-chu"] .sec-spl__head-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl__cats {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 8px;
    padding-bottom: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl__cats::-webkit-scrollbar {
    height: 4px;
  }
  body[data-site-com="trang-chu"] .sec-spl__cats::-webkit-scrollbar-thumb {
    background: rgba(46, 125, 50, 0.35);
    border-radius: 4px;
  }
  body[data-site-com="trang-chu"] .sec-spl__cat-btn {
    flex-shrink: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl__more-wrap {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl--laptop .sec-spl__head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-height: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl--laptop .sec-spl__title {
    font-size: clamp(22px, 5.2vw, 30px);
    white-space: normal;
  }
  body[data-site-com="trang-chu"] .sec-spl--laptop .sec-spl__head-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl--laptop .sec-spl__cats {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 0;
  }
  body[data-site-com="trang-chu"] .sec-spl--laptop .sec-spl__cat-btn {
    flex-shrink: 0;
  }
  body[data-site-com="trang-chu"]
    .sec-spl
    .sec-spl__cats
    .sec-spl__cat-btn:nth-child(n + 3) {
    display: none;
  }
  body[data-site-com="trang-chu"] .sec-hero {
    --hero-page-margin-x: 0;
    padding-left: 0;
    padding-right: 0;
  }
  body[data-site-com="trang-chu"] .sec-hero .wrap-content {
    max-width: none;
    width: 100%;
    padding-inline: 0;
  }
  body[data-site-com="trang-chu"] .sec-hero__inner {
    padding-inline: clamp(12px, 3.8vw, 18px);
  }
  body[data-site-com="trang-chu"] .sec-hero__categories-panel {
    margin-inline: 0;
  }
  body[data-site-com="trang-chu"] .sec-hero__promo,
  body[data-site-com="trang-chu"] .sec-hero__promo .hero-slideshow {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    justify-self: stretch;
  }
  body[data-site-com="trang-chu"] .hero-slideshow {
    border-radius: 0 0 16px 16px;
    overflow-x: hidden;
    overflow-y: visible;
  }
  body[data-site-com="trang-chu"]
    .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__copy {
    margin-inline: clamp(12px, 3.8vw, 18px);
    border-radius: 0 0 14px 14px;
  }
}
@media (max-width: 575px) {
  body[data-site-com="trang-chu"] .hero-cat__list {
    grid-template-columns: 1fr;
  }
  body[data-site-com="trang-chu"] .hero-cat__link {
    min-height: 46px;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  body[data-site-com="trang-chu"] .sec-title h2 {
    font-size: clamp(18px, 5.2vw, 22px);
  }
  body[data-site-com="trang-chu"] .sec-khach-hang-noi__stats {
    gap: 10px;
  }
  body[data-site-com="trang-chu"] .sec-khach-hang-noi__stat-card {
    padding: 12px 10px;
  }
  body[data-site-com="trang-chu"] .sec-du-an__inner.wrap-content {
    padding-inline: clamp(10px, 3.5vw, 16px);
  }
  body[data-site-com="trang-chu"] .sec-dich-vu-showcase__outer {
    padding-inline: clamp(8px, 3vw, 14px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body[data-site-com="trang-chu"] .sec-hero__inner {
    grid-template-columns: minmax(248px, 280px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
  }
  body[data-site-com="trang-chu"] .sec-hero__categories-panel,
  body[data-site-com="trang-chu"] .sec-hero__promo {
    align-self: stretch;
  }
  body[data-site-com="trang-chu"] .sec-hero__categories {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 344px;
    height: 100%;
    max-height: none;
  }
  body[data-site-com="trang-chu"] .sec-hero__promo,
  body[data-site-com="trang-chu"] .sec-hero__promo .hero-slideshow {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
  body[data-site-com="trang-chu"] .hero-slideshow {
    aspect-ratio: 868/344;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
}
@media (max-width: 991.98px) {
  .hero-slideshow,
  .hero-slideshow--empty {
    aspect-ratio: 868/344;
    height: auto !important;
    min-height: clamp(240px, 48vw, 340px);
  }
  .hero-slideshow .swiper-slide,
  .hero-slideshow.swiper .swiper-wrapper {
    height: 100% !important;
    min-height: 0 !important;
  }
  .hero-slideshow .swiper-slide {
    align-items: stretch !important;
    overflow: hidden !important;
  }
  .hero-promo-slide {
    --hero-banner-pad-x: clamp(8px, 2.4vw, 12px);
    --hero-copy-max-w: 43%;
    --hero-desc-max-w: 100%;
    --hero-copy-gap: 0px;
    height: 100% !important;
    min-height: inherit;
    max-height: none;
    grid-template-columns: minmax(0, var(--hero-copy-max-w)) minmax(0, 1fr);
    overflow: hidden;
  }
  .hero-promo-slide:not(.hero-promo-slide--image-only) .hero-promo-slide__copy,
  .hero-promo-slide:not(.hero-promo-slide--image-only)
    .hero-promo-slide__visual {
    order: 0;
  }
  .hero-promo-slide__copy {
    min-height: 100%;
    max-width: none;
    padding-top: clamp(10px, 2.5vw, 18px);
    padding-bottom: clamp(8px, 2vw, 14px);
  }
  .hero-promo-slide__title {
    margin-bottom: 6px;
  }
  .hero-promo-slide__title-line1 {
    font-size: clamp(18px, 4.6vw, 34px);
  }
  .hero-promo-slide__title-line2 {
    font-size: clamp(24px, 6.4vw, 46px);
    margin-top: clamp(2px, 0.7vw, 6px);
  }
  .hero-promo-slide__desc {
    font-size: clamp(11px, 2.9vw, 16px);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .hero-promo__cta {
    position: static;
    left: auto;
    bottom: auto;
    top: auto;
    margin-top: clamp(8px, 2.2vw, 12px);
    height: 34px;
    padding: 6px 8px 6px 14px;
  }
  .hero-promo__cta-label {
    white-space: nowrap;
    font-size: 13px;
  }
  .hero-promo-slide__visual {
    position: relative;
    margin-left: 0;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
  }
  .hero-promo-slide__layer--bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block !important;
    pointer-events: none;
  }
  .hero-promo-slide__layer--bg picture {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
  }
  .hero-promo-slide__bg-img,
  .hero-promo-slide__layer--bg picture img {
    position: absolute !important;
    left: -10% !important;
    top: 50% !important;
    width: 124% !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateY(-50%) !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: saturate(1.08) contrast(1.02);
  }
  .hero-promo-slide__layer--fg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    pointer-events: none;
  }
  .hero-promo-slide__fg-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(78%, 320px) !important;
    max-width: 78% !important;
    height: auto !important;
    min-height: 0 !important;
    transform: translateY(-4%) !important;
    box-shadow: none;
    pointer-events: auto;
  }
  .hero-promo-slide__fg-wrap .hero-promo-slide__img,
  .hero-promo-slide__img-link,
  .hero-promo-slide__img-link picture,
  .hero-promo-slide__img-link picture img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }
  .hero-promo-slide__badges {
    position: absolute;
    inset: 0;
  }
  .hero-promo-slide__badge-inner {
    white-space: nowrap;
    font-size: clamp(12px, 2.9vw, 14px);
    min-height: 34px;
    padding: 5px 10px;
  }
  .hero-promo-slide__badge-icon {
    width: 22px;
    height: 22px;
  }
  .hero-promo-slide__badge:nth-child(1) {
    top: clamp(8px, 2vw, 16px);
    right: clamp(6px, 1.8vw, 12px);
  }
  .hero-promo-slide__badge:nth-child(2) {
    right: clamp(8px, 2.4vw, 14px);
  }
  .hero-promo-slide__badge:nth-child(3) {
    bottom: clamp(8px, 2vw, 16px);
    right: clamp(6px, 1.8vw, 12px);
  }
}
.sec-tin-tuc-horizontal {
  background: #fff;
  overflow: hidden;
}
.sec-tin-tuc-horizontal .sec-title {
  text-align: center;
}
.sec-tin-tuc-horizontal .sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sec-doi-tac-modern .sec-title {
  text-align: center;
}
.sec-doi-tac-modern .sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sec-du-an-tieu-bieu .sec-title {
  text-align: center;
}
.sec-du-an-tieu-bieu .sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tin-tuc-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tin-tuc-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tin-tuc-scroll-track::-webkit-scrollbar {
  display: none;
}
.tin-tuc-card-horizontal {
  flex: 0 0 340px;
  max-width: 340px;
}
.tin-tuc-card-link {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  min-height: 140px;
}
.tin-tuc-card-link:hover {
  border-color: #107940;
  box-shadow: 0 8px 24px rgba(16, 121, 64, 0.15);
  transform: translateY(-2px);
}
.tin-tuc-card-media {
  flex: 0 0 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
}
.tin-tuc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tin-tuc-card-link:hover .tin-tuc-card-img {
  transform: scale(1.05);
}
.tin-tuc-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tin-tuc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tin-tuc-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tin-tuc-card-date {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.tin-tuc-card-excerpt {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.tin-tuc-card-more {
  font-size: 0.85rem;
  color: #107940;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.tin-tuc-card-more i {
  transition: transform 0.3s ease;
}
.tin-tuc-card-link:hover .tin-tuc-card-more i {
  transform: translateX(4px);
}
.tin-tuc-scroll-btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.tin-tuc-scroll-btn:hover {
  background: #107940;
  border-color: #107940;
  color: #fff;
}
.tin-tuc-scroll-btn:focus {
  outline: 2px solid #107940;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .tin-tuc-card-horizontal {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .tin-tuc-card-media {
    flex: 0 0 100px;
    height: 100px;
  }
  .tin-tuc-scroll-btn {
    display: none;
  }
}
.sec-doi-tac {
  padding: 4rem 0;
  background: #f7f8fa;
  overflow: hidden;
}
.sec-doi-tac .sec-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sec-doi-tac .sec-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.sec-doi-tac .sec-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}
.doi-tac-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.doi-tac-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.doi-tac-scroll-track::-webkit-scrollbar {
  display: none;
}
.doi-tac-card {
  flex: 0 0 280px;
  max-width: 280px;
}
.doi-tac-card-link {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.doi-tac-card-link:hover {
  border-color: #107940;
  box-shadow: 0 8px 30px rgba(16, 121, 64, 0.15);
  transform: translateY(-4px);
}
.doi-tac-card-media {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doi-tac-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 0.5rem;
}
.doi-tac-card-link:hover .doi-tac-card-img {
  transform: scale(1.05);
}
.doi-tac-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 2rem;
}
.doi-tac-card-body {
  flex: 1;
}
.doi-tac-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.doi-tac-card-desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.doi-tac-scroll-btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}
.doi-tac-scroll-btn:hover {
  background: #107940;
  border-color: #107940;
  color: #fff;
}
.doi-tac-scroll-btn:focus {
  outline: 2px solid #107940;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .doi-tac-card {
    flex: 0 0 240px;
    max-width: 240px;
  }
  .doi-tac-card-media {
    width: 100px;
    height: 100px;
  }
  .doi-tac-scroll-btn {
    display: none;
  }
}
.doi-tac-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}
.doi-tac-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.doi-tac-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.doi-tac-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.doi-tac-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.doi-tac-item:hover .doi-tac-img {
  transform: scale(1.05);
}
.doi-tac-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.doi-tac-name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #333;
  line-height: 1.4;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
50% {
  background-position: 100% 50%;
}
100% {
  background-position: 0 50%;
}
