:root {
  --blue: #0b2e4a;
  --blue-2: #123b59;
  --orange: #f28c28;
  --ink: #1f2933;
  --muted: #64748b;
  --soft: #f5f7fa;
  --line: #e5eaf0;
  --white: #ffffff;
  --green: #1b7f6b;
  --shadow: 0 18px 45px rgba(11, 46, 74, .12);
  --radius: 8px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--blue); color: var(--white); }
.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5vw, 52px); line-height: 1.05; max-width: 980px; }
h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 21px; line-height: 1.25; margin-bottom: 10px; }
p { color: var(--muted); }
.dark p, .hero p, .page-hero p { color: rgba(255,255,255,.78); }
.lead { font-size: 18px; max-width: 760px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.btn.primary { background: var(--orange); color: var(--white); }
.btn.primary:hover { background: #d87516; transform: translateY(-1px); }
.btn.secondary { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn.outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn.ghost { color: var(--blue); border-color: var(--line); background: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.topbar {
  background: #071f33;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar .container, .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.topbar .container { min-height: 42px; }
.topbar-left, .topbar-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.navbar .container { min-height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--blue); }
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent;
}
.logo small { display: block; color: var(--muted); font-weight: 700; font-size: 11px; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 28px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 270px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  display: none;
}
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; color: var(--muted); font-size: 14px; }
.dropdown a:hover { background: var(--soft); color: var(--blue); }
.nav-menu > li:hover .dropdown { display: block; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  color: var(--blue);
}
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 6px 10px; }

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
  background: var(--blue);
}
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}
.hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,31,51,.9), rgba(11,46,74,.68) 48%, rgba(11,46,74,.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 120px;
  pointer-events: none;
  user-select: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
.hero .hero-pagination.swiper-pagination-bullets,
.hero-pagination {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100vw - var(--container)) / 2 + 20px)) !important;
  right: auto !important;
  bottom: 54px;
  display: flex;
  gap: 10px;
  width: auto !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 38px;
  height: 4px;
  border-radius: 0;
  background: rgba(255,255,255,.42);
  opacity: 1;
  margin: 0 !important;
}
.hero-pagination .swiper-pagination-bullet-active { background: var(--orange); }

.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}
.card-body { padding: 24px; }
.product-card img, .case-card img, .media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
  transition: transform .35s ease;
}
.product-card:hover img, .case-card:hover img { transform: scale(1.035); }
.product-card .btn-row { margin-top: 20px; }
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  background: #edf6f4;
  border: 1px solid #cde8e1;
  color: var(--green);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--white);
}
.stat-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.stat {
  padding: 26px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.stat strong { display: block; color: var(--orange); font-size: clamp(30px, 3vw, 46px); line-height: 1; margin-bottom: 10px; }
.count-up {
  display: inline-block;
  min-width: 2.8ch;
  font-variant-numeric: tabular-nums;
}
.icon-card { padding: 28px; }
.service-card {
  display: block;
  min-height: 320px;
  color: inherit;
  transition: .2s ease;
}
.service-card:hover {
  border-color: rgba(242, 140, 40, .55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 800;
}
.service-card.is-hidden {
  display: none;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
  transition: .2s ease;
}
.carousel-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}
.certificate-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.certificate {
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}
.certificate:before {
  content: "";
  display: block;
  width: 64px;
  height: 80px;
  margin-bottom: 18px;
  border: 4px solid var(--orange);
  background: linear-gradient(#fff, #eef2f6);
}
.certificate-swiper {
  position: relative;
  overflow: hidden;
  padding: 4px 2px 42px;
  user-select: none;
}
.certificate-track {
  align-items: stretch;
}
.certificate-swiper .certificate {
  width: min(360px, calc(100vw - 48px));
  height: auto;
  min-height: 430px;
  padding: 22px;
}
.certificate-swiper .certificate:before {
  display: none;
}
.certificate-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  border: 8px solid #f4a449;
  background:
    linear-gradient(135deg, rgba(242,140,40,.18), rgba(11,46,74,.06)),
    linear-gradient(#ffffff, #f7fafc);
  box-shadow: inset 0 0 0 10px #ffffff, 0 16px 34px rgba(11, 46, 74, .12);
}
.certificate-visual:before,
.certificate-visual:after,
.certificate-visual span:before,
.certificate-visual span:after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 8px;
  background: #d8e1ea;
}
.certificate-visual span {
  position: absolute;
  inset: 0;
}
.certificate-visual:before { top: 22%; }
.certificate-visual:after { top: 33%; }
.certificate-visual span:before { top: 46%; }
.certificate-visual span:after {
  left: 38%;
  right: 38%;
  bottom: 18%;
  height: 54px;
  border-radius: 50%;
  background: rgba(242, 140, 40, .9);
  box-shadow: 0 0 0 8px rgba(242, 140, 40, .18);
}
.certificate-swiper .certificate h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.certificate-swiper .certificate p {
  font-size: 14px;
  line-height: 1.55;
  color: #8492a6;
  margin-bottom: 0;
}
.certificate-pagination {
  bottom: 0 !important;
}
.certificate-pagination .swiper-pagination-bullet {
  background: #9aa8b8;
  opacity: 1;
}
.certificate-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}
.faq-answer { display: none; padding-bottom: 18px; }
.faq-item.active .faq-answer { display: block; }
.form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #dfe7ef;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(11, 46, 74, .10);
  overflow: hidden;
}
.form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { font-size: 13px; font-weight: 800; color: var(--ink); }
.form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}
.form input,
.form select,
.form textarea {
  min-height: 44px;
  padding: 9px 12px;
  border-color: #dbe5ee;
  background: #ffffff;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: #c9d6e2;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 140, 40, .12);
}
.form select {
  font-weight: 700;
}
textarea { min-height: 130px; resize: vertical; }
.form textarea {
  min-height: 120px;
  padding-top: 11px;
}
.form input[type="file"] {
  min-height: 48px;
  padding: 8px 10px;
  background: #fff;
}
.form input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: 12px;
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.form .btn.primary {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  font-size: 16px;
  border-radius: 7px;
}
.form-wide-layout {
  display: grid;
  gap: 34px;
}
.form-wide-layout > div > p {
  max-width: 820px;
}
.form-wide-layout .form {
  width: 100%;
  margin: 0 auto;
}
.contact-info-grid {
  margin-top: 18px;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, rgba(7,31,51,.92), rgba(11,46,74,.72)), url("../img/hero-equipment.svg") center/cover;
}
.breadcrumb { color: rgba(255,255,255,.72); font-size: 14px; margin-bottom: 18px; }
.layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 36px; align-items: start; }
.product-layout {
  scroll-margin-top: 104px;
}
.side-nav, .sidebar-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}
.product-side-nav {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 124px);
  overflow: auto;
}
.side-nav a,
.side-nav button {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.side-nav a:hover,
.side-nav a.active,
.side-nav button:hover,
.side-nav button.active {
  background: var(--soft);
  color: var(--blue);
}
.product-list-panel {
  min-width: 0;
}
.product-card.is-hidden {
  display: none;
}
.product-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.product-pagination button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.product-pagination button:hover,
.product-pagination button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.service-detail-list {
  display: grid;
  gap: 24px;
}
.service-detail-block {
  scroll-margin-top: 110px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}
.service-detail-block ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}
.service-detail-block li {
  margin: 8px 0;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--white); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: var(--soft); color: var(--blue); }
.article-list { display: grid; gap: 22px; }
.article-item { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 22px; align-items: center; }
.article-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: 104px;
}
.sidebar-box h3 {
  margin-top: 20px;
}
.sidebar-box h3:first-child {
  margin-top: 0;
}
.sidebar-box a:not(.btn) {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.sidebar-box a:not(.btn):hover {
  color: var(--blue);
}
.sidebar-box .btn {
  margin-top: 8px;
}
.related-carousel-block + .related-carousel-block {
  margin-top: 56px;
}
.related-blog-swiper,
.related-service-swiper {
  padding: 4px 2px 42px;
}
.related-card,
.related-service-card {
  height: auto;
  transition: .2s ease;
}
.related-card:hover,
.related-service-card:hover {
  border-color: rgba(242, 140, 40, .55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}
.related-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.related-service-card {
  padding: 22px;
}
.related-service-card .icon {
  width: 40px;
  height: 40px;
}
.related-service-card h3 {
  font-size: 18px;
}
.related-blog-pagination,
.related-service-pagination {
  bottom: 0 !important;
}
.related-blog-pagination .swiper-pagination-bullet,
.related-service-pagination .swiper-pagination-bullet {
  background: #9aa8b8;
  opacity: 1;
}
.related-blog-pagination .swiper-pagination-bullet-active,
.related-service-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
}
.map-box {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11,46,74,.84), rgba(27,127,107,.74)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,.18) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,.18) 39px 40px);
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 30px;
}

.footer {
  background: #071f33;
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 30px; }
.footer h3 { color: var(--white); font-size: 16px; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.footer .logo {
  display: flex;
  color: var(--white);
  margin: 0 0 16px;
}
.footer .logo small {
  color: rgba(255,255,255,.64);
}
.footer a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

@media (min-width: 1500px) {
  :root { --container: 1360px; }
  .hero { min-height: 780px; }
  .hero-content { min-height: 780px; }
}
@media (max-width: 1420px) {
  .hero .hero-pagination.swiper-pagination-bullets,
  .hero-pagination {
    left: 20px !important;
  }
}
@media (max-width: 1180px) {
  .topbar { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 77px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 24px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 13px 6px; }
  .dropdown {
    position: static;
    display: block;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 10px;
  }
  .nav-actions .quote-btn { display: none; }
  .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-grid, .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .container { width: min(100% - 28px, var(--container)); }
  .hero, .hero-content { min-height: 650px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .detail-hero, .layout { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
  .product-side-nav {
    position: sticky;
    top: 72px;
    z-index: 8;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-height: none;
    padding: 12px;
  }
  .product-side-nav button {
    white-space: nowrap;
    width: auto;
    flex: 0 0 auto;
  }
  .stat-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-row { grid-template-columns: 1fr; }
  .article-item { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  h1 { font-size: 36px; }
  .hero, .hero-content { min-height: 620px; }
  .navbar .container { min-height: 70px; }
  .nav-menu { top: 71px; max-height: calc(100vh - 71px); }
  .logo small { display: none; }
  .stat-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .card-body, .form, .icon-card { padding: 20px; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
}
