/* =========================================================
   ROOT
========================================================= */

:root {
  --main-color: rgb(0, 13, 255);
  --main-color-rgb: 0, 13, 255;

  --color-two: rgb(193, 21, 236);
  --color-two-rgb: 193, 21, 236;

  --color-three: rgb(221, 221, 221);

  --color-four: rgb(242, 242, 242);

  --white-color: rgb(255, 255, 255);

  --black-color: rgb(0, 0, 0);

  --main-gradient: linear-gradient(
    90deg,
    rgba(0, 13, 255, 1) 0%,
    rgba(193, 21, 236, 1) 100%
  );

  --glass-white: rgba(255, 255, 255, 0.1);

  --glass-border: rgba(255, 255, 255, 0.25);
}

/* =========================================================
   RESET
========================================================= */

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background: var(--color-four);

  color: var(--black-color);
}

/* =========================================================
   HERO
========================================================= */

.tech-hero {
  position: relative;

  width: 100%;

  min-height: 85vh;

  overflow: hidden;

  background: linear-gradient(
    90deg,
    rgba(0, 13, 255, 1) 0%,
    rgba(193, 21, 236, 1) 100%
  );

  isolation: isolate;
}

/* =========================================================
   GRID
========================================================= */

.tech-grid {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);

  background-size: 65px 65px;

  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 90%);

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9),
    transparent 90%
  );

  opacity: 0.75;
}

/* =========================================================
   COLOR GLOW
========================================================= */

.color-glow {
  position: absolute;

  width: 850px;
  height: 700px;

  right: -100px;
  top: 30px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(193, 21, 236, 0.22) 25%,
    rgba(0, 13, 255, 0.18) 48%,
    transparent 72%
  );

  filter: blur(55px);

  pointer-events: none;

  opacity: 0.55;
}

/* =========================================================
   DOT PATTERN
========================================================= */

.dot-pattern {
  position: absolute;

  width: 180px;
  height: 120px;

  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55) 2px,
    transparent 2.5px
  );

  background-size: 18px 18px;

  opacity: 0.35;

  pointer-events: none;
}

.dots-left {
  left: 0;
  top: 50px;
}

.dots-top-right {
  right: 30px;
  top: 5px;
  opacity: 0.5;
}

.dots-center {
  right: 620px;
  top: 100px;
  opacity: 0.4;
}

.dots-bottom {
  right: 100px;
  bottom: 100px;
  opacity: 0.25;
}

/* =========================================================
   DIAGONAL BANDS
========================================================= */

.diagonal-layer {
  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 2;
}

.stripe {
  position: absolute;

  transform: rotate(45deg);

  transform-origin: center;

  filter: saturate(105%);

  opacity: 0.38;
}

.stripe-orange {
  width: 170px;
  height: 1500px;

  top: -390px;
  right: 620px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45),
    rgba(193, 21, 236, 0.15),
    rgba(255, 255, 255, 0.25)
  );
}

.stripe-orange-light {
  width: 55px;
  height: 1500px;

  top: -350px;
  right: 550px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.55)
  );

  opacity: 0.3;
}

.stripe-red {
  width: 155px;
  height: 1500px;

  top: -370px;
  right: 470px;

  background: linear-gradient(
    to bottom,
    rgba(193, 21, 236, 0.6),
    rgba(193, 21, 236, 0.2),
    rgba(0, 13, 255, 0.45)
  );
}

.stripe-pink {
  width: 160px;
  height: 1500px;

  top: -350px;
  right: 310px;

  background: linear-gradient(
    to bottom,
    rgba(193, 21, 236, 0.75),
    rgba(255, 255, 255, 0.15),
    rgba(0, 13, 255, 0.55)
  );
}

.stripe-blue {
  width: 175px;
  height: 1500px;

  top: -340px;
  right: 130px;

  background: linear-gradient(
    to bottom,
    rgba(193, 21, 236, 0.65),
    rgba(0, 13, 255, 0.75)
  );
}

.stripe-blue-light {
  width: 70px;
  height: 1500px;

  top: -350px;
  right: 20px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(0, 13, 255, 0.65)
  );

  opacity: 0.35;
}

/* =========================================================
   CIRCUITS
========================================================= */

.circuit-system {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;

  z-index: 3;
}

.circuit {
  fill: none;

  stroke: rgba(255, 255, 255, 0.3);

  stroke-width: 1;

  vector-effect: non-scaling-stroke;
}

.circuit.colored {
  stroke: rgba(255, 255, 255, 0.65);
}

.circuit.pink {
  stroke: rgba(255, 255, 255, 0.55);
}

.circuit.blue {
  stroke: rgba(255, 255, 255, 0.5);
}

.circuit-node {
  fill: rgba(255, 255, 255, 0.95);

  stroke-width: 1.5;

  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

/* =========================================================
   SIGNALS
========================================================= */

.signal {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.6);

  z-index: 6;
}

.signal.pink {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.95),
    0 0 20px rgba(193, 21, 236, 0.9);
}

.signal.blue {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 20px rgba(0, 13, 255, 0.9);
}

/* =========================================================
   HUD
========================================================= */

.hud {
  position: absolute;

  width: 330px;
  height: 330px;

  right: 7%;
  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;
  justify-content: center;

  z-index: 8;

  opacity: 0;
}

/* =========================================================
   HUD RINGS
========================================================= */

.hud-ring {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hud-ring:nth-child(1) {
  border-top-color: transparent;

  border-bottom-color: rgba(255, 255, 255, 0.95);
}

.hud-ring:nth-child(2) {
  inset: 15px;

  border: 1px dashed rgba(255, 255, 255, 0.55);
}

.hud-ring:nth-child(3) {
  inset: 35px;

  border: 2px solid rgba(255, 255, 255, 0.4);

  border-left-color: transparent;

  border-right-color: rgba(255, 255, 255, 0.85);
}

.hud-ring:nth-child(4) {
  inset: 55px;

  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hud-ring:nth-child(5) {
  inset: 70px;

  border: 2px dashed rgba(255, 255, 255, 0.45);
}

/* =========================================================
   HUD CORE
========================================================= */

.hud-core {
  position: relative;

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.06) 60%,
    transparent
  );

  border: 2px solid rgba(255, 255, 255, 0.8);

  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.15);

  display: flex;

  align-items: center;
  justify-content: center;
}

/* CORE INNER */

.hud-core::before {
  content: "";

  width: 55px;
  height: 55px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.85);

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* =========================================================
   LOADING TEXT
========================================================= */
.hud-loading {

    position: absolute;

    z-index: 10;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 170px;

    text-align: center;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    white-space: nowrap;

    text-shadow:
        0 0 8px rgba(255,255,255,.95),
        0 0 20px rgba(193,21,236,.8);

    opacity: 0;

    pointer-events: none;
}


.hud-status-cursor {

    display: inline-block;

    width: 2px;

    height: 12px;

    margin-left: 4px;

    vertical-align: middle;

    background: #fff;

    box-shadow:
        0 0 8px rgba(255,255,255,.9);

    animation:
        cursorBlink .65s infinite;
}
/* =========================================================
   HUD SCAN LINE
========================================================= */

.hud-scan {
  position: absolute;

  width: 100%;
  height: 2px;

  left: 0;

  top: 50%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );

  filter: blur(1px);

  opacity: 0.5;

  transform: translateY(-100px);
}

/* =========================================================
   HUD LINE
========================================================= */

.hud-line {
  position: absolute;

  width: 40px;
  height: 2px;

  background: rgba(255, 255, 255, 0.8);

  right: -28px;
  top: 50%;
}

/* =========================================================
   HUD MARKERS
========================================================= */

.hud-marker {
  position: absolute;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.marker-one {
  top: 18px;
  left: 70px;
}

.marker-two {
  right: 15px;
  top: 100px;
}

.marker-three {
  bottom: 45px;
  left: 40px;
}

/* =========================================================
   PARTICLES
========================================================= */

.particle {
  position: absolute;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);

  pointer-events: none;

  z-index: 6;
}

.particle.pink {
  box-shadow: 0 0 10px rgba(193, 21, 236, 0.95);
}

.particle.blue {
  box-shadow: 0 0 10px rgba(0, 13, 255, 0.95);
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.tech-container {
  position: relative;

  z-index: 20;

  width: min(1400px, 90%);

  min-height: 85vh;

  margin: 0 auto;

  padding: 50px;

  display: grid;

  grid-template-columns: 0.85fr 1.8fr;

  grid-template-rows: 1fr auto;

  column-gap: 55px;

  align-items: center;
}

/* =========================================================
   CONTENT
========================================================= */

.tech-content {
  position: relative;

  z-index: 30;

  max-width: 500px;
}

/* =========================================================
   ROBOT TYPING LABEL
========================================================= */

.tech-label {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 18px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  color: #fff;

  min-height: 18px;
}

/* cursor */

.typing-cursor {
  display: inline-block;

  width: 2px;

  height: 14px;

  margin-left: 3px;

  background: #fff;

  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);

  animation: cursorBlink 0.65s infinite;
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

/* =========================================================
   TITLE
========================================================= */

.tech-title {
  margin: 0;

  font-size: clamp(42px, 4.5vw, 55px);

  line-height: 0.98;

  font-weight: 800;

  letter-spacing: -3px;

  color: #fff;
}

.tech-title span {
  display: block;

  min-height: 1em;
}

/* title cursor */

.title-cursor {
  display: inline-block;

  width: 3px;

  height: 0.85em;

  margin-left: 5px;

  vertical-align: middle;

  background: #fff;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);

  animation: cursorBlink 0.65s infinite;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.tech-description {
  max-width: 440px;

  margin-top: 22px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 15px;

  line-height: 1.7;

  min-height: 52px;
}

/* =========================================================
   CARDS
========================================================= */

.tech-cards {
  position: relative;

  z-index: 30;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;

  width: 100%;
}

/* =========================================================
   GLASS AI CARD
========================================================= */

.tech-card {
  position: relative;

  min-height: 310px;

  padding: 22px 18px 18px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  border-radius: 18px;

  /*
       AI GLASS
    */

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.08)
  );

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 0 25px rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(25px) saturate(150%);

  -webkit-backdrop-filter: blur(25px) saturate(150%);

  opacity: 0;

  transform: translateY(70px) scale(0.85) rotateX(15deg);

  transform-origin: center bottom;

  will-change: transform, opacity;
}

/* =========================================================
   GLASS SHINE
========================================================= */

.tech-card::after {
  content: "";

  position: absolute;

  inset: -100%;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 65%
  );

  transform: translateX(-100%) rotate(15deg);

  pointer-events: none;

  transition: transform 1s ease;
}

.tech-card:hover::after {
  transform: translateX(100%) rotate(15deg);
}

/* =========================================================
   CARD GLOW
========================================================= */

.tech-card::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  top: -120px;

  right: -100px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35),
    rgba(193, 21, 236, 0.12),
    transparent 70%
  );

  filter: blur(10px);

  pointer-events: none;

  transition: 0.5s ease;
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.02);

  border-color: rgba(255, 255, 255, 0.65);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.28), 0 0 40px rgba(193, 21, 236, 0.15);
}

/* =========================================================
   CARD NUMBER
========================================================= */

.tech-number {
  position: absolute;

  top: 16px;

  right: 17px;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   CARD DOT
========================================================= */

.card-dot {
  position: absolute;

  top: 20px;

  left: 18px;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 18px rgba(193, 21, 236, 0.8);
}

/* =========================================================
   ICON
========================================================= */

.tech-icon {
  position: relative;

  width: 52px;

  height: 52px;

  margin-top: 22px;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  color: #fff;

  background: rgba(255, 255, 255, 0.13);

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(193, 21, 236, 0.12);

  font-size: 20px;

  transition: 0.4s ease;
}

.tech-card:hover .tech-icon {
  transform: translateY(-5px) rotate(-5deg);

  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15),
    0 0 25px rgba(193, 21, 236, 0.25);
}

/* =========================================================
   CARD TITLE
========================================================= */

.tech-card h3 {
  position: relative;

  margin: 0;

  min-height: 50px;

  color: #fff;

  font-size: 17px;

  line-height: 1.2;

  font-weight: 800;

  letter-spacing: -0.4px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   CARD LINE
========================================================= */

.card-title-line {
  width: 35px;

  height: 2px;

  margin: 13px 0;

  border-radius: 5px;

  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.15));
}

/* =========================================================
   TECHNOLOGY LIST
========================================================= */

.tech-list {
  list-style: none;

  margin: 0;

  padding: 0;

  display: flex;

  flex-direction: column;

  gap: 7px;
}

.tech-list li {
  position: relative;

  padding-left: 13px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;

  line-height: 1.3;
}

.tech-list li::before {
  content: "";

  position: absolute;

  left: 0;

  top: 5px;

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 7px rgba(255, 255, 255, 0.8);
}

/* =========================================================
   EXPLORE
========================================================= */

.tech-explore {
  margin-top: auto;

  padding-top: 15px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: rgba(255, 255, 255, 0.85);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.tech-explore i {
  width: 26px;

  height: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.25);

  font-size: 9px;

  transition: 0.35s ease;
}

.tech-card:hover .tech-explore i {
  transform: translate(3px, -3px) rotate(45deg);

  background: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   VIEW ALL
========================================================= */

.view-all {
  grid-column: 2;

  justify-self: end;

  margin-top: 15px;

  opacity: 0;

  transform: translateY(20px);
}

.view-all a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 18px;

  color: #fff;

  text-decoration: none;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  transition: 0.3s ease;
}

.view-all a:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.2);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.view-all i {
  color: #fff;

  transition: 0.3s ease;
}

.view-all a:hover i {
  transform: translateX(5px);
}

/* =========================================================
   ROBOT GLITCH
========================================================= */

.robot-glitch {
  animation: robotGlitch 0.15s infinite;
}

@keyframes robotGlitch {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(1px);
  }

  50% {
    transform: translateX(-1px);
  }

  75% {
    transform: translateX(0.5px);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================================
   RESPONSIVE 1200
========================================================= */

@media (max-width: 1200px) {
  .tech-container {
    width: 94%;

    grid-template-columns: 0.8fr 1.7fr;

    column-gap: 30px;
  }

  .tech-cards {
    gap: 10px;
  }

  .tech-card {
    padding-left: 15px;

    padding-right: 15px;
  }
}

/* =========================================================
   RESPONSIVE 1050
========================================================= */

@media (max-width: 1050px) {
  .tech-hero {
    min-height: auto;
  }

  .tech-container {
    width: 92%;

    min-height: auto;

    grid-template-columns: 1fr;

    grid-template-rows:
      auto
      auto
      auto;

    gap: 25px;

    padding-top: 60px;

    padding-bottom: 50px;
  }

  .tech-content {
    max-width: 700px;
  }

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

  .view-all {
    grid-column: 1;

    justify-self: end;
  }

  .hud {
    right: 3%;

    opacity: 0.35;
  }
}

/* =========================================================
   RESPONSIVE 768
========================================================= */

@media (max-width: 768px) {
  .tech-container {
    width: 92%;

    padding: 50px 0 40px;

    gap: 25px;
  }

  .tech-title {
    font-size: clamp(38px, 8vw, 55px);

    letter-spacing: -2px;
  }

  .tech-description {
    font-size: 14px;
  }

  .tech-cards {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

  .tech-card {
    min-height: 270px;
  }

  .hud {
    width: 260px;

    height: 260px;

    right: -80px;

    top: 35%;

    opacity: 0.3;
  }

  .dots-center {
    display: none;
  }

  .stripe-orange,
  .stripe-orange-light {
    right: 450px;
  }
}

/* =========================================================
   RESPONSIVE 480
========================================================= */

@media (max-width: 480px) {
  .tech-container {
    width: 90%;

    padding: 40px 0 30px;
  }

  .tech-label {
    font-size: 9px;

    letter-spacing: 1.5px;
  }

  .tech-title {
    font-size: 34px;

    line-height: 1.05;

    letter-spacing: -1.5px;
  }

  .tech-description {
    font-size: 12px;

    line-height: 1.6;
  }

  .tech-cards {
    gap: 8px;
  }

  .tech-card {
    min-height: 235px;

    padding: 16px 12px;
  }

  .tech-number {
    top: 12px;

    right: 12px;

    font-size: 8px;
  }

  .card-dot {
    top: 16px;

    left: 13px;

    width: 5px;

    height: 5px;
  }

  .tech-icon {
    width: 40px;

    height: 40px;

    margin-top: 18px;

    margin-bottom: 13px;

    border-radius: 9px;

    font-size: 16px;
  }

  .tech-card h3 {
    min-height: 40px;

    font-size: 14px;
  }

  .card-title-line {
    width: 25px;

    margin: 9px 0 10px;
  }

  .tech-list {
    gap: 5px;
  }

  .tech-list li {
    padding-left: 11px;

    font-size: 9px;
  }

  .tech-explore {
    font-size: 8px;
  }

  .tech-explore i {
    width: 22px;

    height: 22px;

    font-size: 8px;
  }

  .hud {
    width: 200px;

    height: 200px;

    right: -90px;

    opacity: 0.2;
  }

  .hud-core {
    width: 70px;

    height: 70px;
  }

  .hud-core::before {
    width: 35px;

    height: 35px;
  }

  .hud-loading {
    font-size: 7px;

    letter-spacing: 2px;
  }

  .dots-bottom,
  .dots-top-right {
    opacity: 0.15;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}
