/* ==========================================================================
   Аренда спецтехники — общие стили
   Палитра: тёмный асфальт / стальной серый / бетонный светлый / оранжевый / жёлтый
   ========================================================================== */

:root {
  --color-dark: #23262B;
  --color-steel: #4A5158;
  --color-bg: #F1EDE4;
  --color-accent: #E8641C;
  --color-yellow: #F4B942;
  --color-white: #FFFFFF;
  --color-text: #23262B;
  --color-text-muted: #5A5F66;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'PT Sans', sans-serif;

  --radius: 4px;
  --container: 1200px;
  --shadow-sm: 0 2px 8px rgba(35, 38, 43, 0.12);
  --shadow-md: 0 6px 20px rgba(35, 38, 43, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--color-dark);
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }

p { color: var(--color-text-muted); }

.section {
  padding: 56px 0;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-bg);
}
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}
.section--dark p {
  color: #C6C9CD;
}

.section--steel {
  background: var(--color-steel);
}
.section--steel h2 {
  color: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

/* ==========================================================================
   Кнопки
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn--primary:hover {
  background: #d2560f;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
}
.btn--yellow:hover {
  background: #e0a934;
}

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

.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  width: 30px;
  height: 25px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--color-white);
  line-height: 1.1;
}

.logo__text span {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
  margin-top: 2px;
}

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

.nav__list {
  display: flex;
  gap: 24px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.nav__list a {
  color: #D8DADD;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__phone svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--color-yellow);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 38px;
  margin-bottom: 18px;
}

.hero__subtitle {
  color: #CDD0D3;
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Track divider ("трак")
   ========================================================================== */

.track-divider {
  height: 22px;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 44px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='22' viewBox='0 0 44 22'%3E%3Crect x='1' y='9' width='42' height='4' rx='2' fill='%234A5158'/%3E%3Ccircle cx='11' cy='11' r='6' fill='none' stroke='%234A5158' stroke-width='3'/%3E%3Ccircle cx='33' cy='11' r='6' fill='none' stroke='%234A5158' stroke-width='3'/%3E%3C/svg%3E");
  opacity: 0.55;
}

.track-divider--light {
  opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='22' viewBox='0 0 44 22'%3E%3Crect x='1' y='9' width='42' height='4' rx='2' fill='%23F4B942'/%3E%3Ccircle cx='11' cy='11' r='6' fill='none' stroke='%23F4B942' stroke-width='3'/%3E%3Ccircle cx='33' cy='11' r='6' fill='none' stroke='%23F4B942' stroke-width='3'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Карточки техники (главная — превью)
   ========================================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.machine-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E1DBCB;
  display: flex;
  flex-direction: column;
}

.machine-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.machine-card__body p {
  flex: 1;
}

.placeholder-photo {
  background: var(--color-steel);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.placeholder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-photo svg {
  width: 30%;
  max-width: 120px;
  height: auto;
  stroke: var(--color-yellow);
  opacity: 0.9;
}

.placeholder-photo span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-bg);
  opacity: 0.8;
}

.placeholder-photo--sm {
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
   Почему мы
   ========================================================================== */

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature {
  background: var(--color-white);
  border: 1px solid #E1DBCB;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-yellow);
}

.feature h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

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

/* ==========================================================================
   Шаги "Как заказать"
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: step;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-yellow);
  color: var(--color-white);
  font-family: var(--font-head);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  color: var(--color-white);
  margin-bottom: 6px;
  font-size: 17px;
}

.step p {
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto;
}

/* ==========================================================================
   Форма заявки
   ========================================================================== */

.form-wrap {
  background: var(--color-white);
  border: 1px solid #E1DBCB;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row--2 {
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-steel);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid #D6D0C0;
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #C0392B;
}

.field__error {
  font-size: 12px;
  color: #C0392B;
  display: none;
}

.field.has-error .field__error {
  display: block;
}

.form-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 12px;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  display: none;
  background: #F5E3E1;
  border: 1px solid #D9A6A0;
  color: #8A3A32;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  background: #E7F3E8;
  border: 1px solid #A9D4AC;
  color: #2E6B33;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}

.form-success.is-visible {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-dark);
  color: #C6C9CD;
  padding: 44px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer .logo {
  margin-bottom: 12px;
}

.footer h4 {
  color: var(--color-white);
  font-size: 15px;
  margin-bottom: 14px;
}

.footer__list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer__list a:hover {
  color: var(--color-yellow);
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer__phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-yellow);
}

.footer__bottom {
  border-top: 1px solid #3A3E44;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #8A8F96;
}

/* ==========================================================================
   Шильдик — карточка характеристик техники (equipment.html)
   ========================================================================== */

.plate {
  background: var(--color-steel);
  border: 2px solid #6b7379;
  border-radius: 6px;
  position: relative;
  padding: 28px;
  color: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.plate__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(241, 237, 228, 0.35);
}

.plate__title {
  color: var(--color-white);
  font-size: 26px;
  margin-bottom: 4px;
}

.plate__subtitle {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-yellow);
  font-family: var(--font-head);
}

.plate__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.plate__spec {
  background: rgba(35, 38, 43, 0.35);
  border: 1px solid rgba(241, 237, 228, 0.2);
  border-radius: 4px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plate__spec svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-yellow);
  flex-shrink: 0;
}

.plate__spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #C6C9CD;
  display: block;
  margin-bottom: 4px;
}

.plate__spec-value {
  font-family: 'PT Sans', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.plate__attachments {
  margin-bottom: 22px;
}

.plate__attachments h4 {
  color: var(--color-white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.plate__attachments ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plate__attachments li {
  font-size: 13px;
  background: rgba(241, 237, 228, 0.12);
  border: 1px solid rgba(241, 237, 228, 0.25);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--color-bg);
  line-height: 1.4;
}

.plate__attachments li strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: var(--color-yellow);
  margin-bottom: 2px;
}

.plate__pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.price-box {
  background: rgba(35, 38, 43, 0.35);
  border: 1px solid rgba(241, 237, 228, 0.2);
  border-radius: 4px;
  text-align: center;
  padding: 12px 8px;
}

.price-box__label {
  font-size: 11px;
  text-transform: uppercase;
  color: #C6C9CD;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.price-box__value {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--color-yellow);
}

.price-box__value span {
  font-size: 11px;
  color: #C6C9CD;
  font-family: var(--font-body);
}

/* ==========================================================================
   О нас — доверие / инфо-блоки
   ========================================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  background: var(--color-white);
  border: 1px solid #E1DBCB;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  stroke: var(--color-accent);
  margin: 0 auto 12px;
}

.trust-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 13px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
  margin: 36px 0;
}

.stat-row__item .stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--color-accent);
  display: block;
}

.stat-row__item .stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
}

.doc-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.doc-list__title {
  display: block;
}

.doc-list__note {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   Контакты
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-block > div:last-child {
  flex: 1;
  min-width: 0;
}

.contact-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-yellow);
}

.contact-block h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-block a.big-phone {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--color-dark);
}

.messenger-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.messenger-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.messenger-links a:hover {
  background: var(--color-accent);
}

.messenger-links svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
  flex-shrink: 0;
}

.messenger-links a.messenger-pill {
  width: auto;
  border-radius: 21px;
  padding: 0 16px 0 11px;
  gap: 8px;
}

.messenger-pill svg {
  stroke: var(--color-yellow);
  color: var(--color-yellow);
}

.messenger-pill span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E1DBCB;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Breadcrumb / page header (внутренние страницы)
   ========================================================================== */

.page-hero {
  background: var(--color-dark);
  padding: 40px 0;
  color: var(--color-white);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 30px;
}

.page-hero p {
  color: #C6C9CD;
  margin-top: 8px;
}

/* ==========================================================================
   Утилиты
   ========================================================================== */

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ==========================================================================
   Media queries
   ========================================================================== */

@media (min-width: 480px) {
  .plate__specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  h1 { font-size: 42px; }
  .hero h1 { font-size: 46px; }
  h2 { font-size: 32px; }

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

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .nav__list {
    gap: 30px;
  }

  .nav__cta {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    transition: right 0.25s ease;
    z-index: 99;
    box-shadow: -6px 0 20px rgba(0,0,0,0.3);
  }

  .nav.is-open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 22px;
    font-size: 18px;
  }

  .header__phone-mobile-hide {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav__cta {
    margin-top: 30px;
  }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 52px; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}

.nav-overlay.is-open {
  display: block;
}
